Whamcloud - gitweb
LU-4030 tests: use free_fd() to allocate file descriptor
[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$testnum.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         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1002         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1003
1004         mkdir -p $DIR/$tdir
1005         createmany -m $DIR/$tdir/$tfile $NRFILES
1006
1007         cancel_lru_locks mdc
1008         lctl set_param mdc.*.stats clear
1009
1010         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1011
1012         # LU-5 large readdir
1013         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1014         #               8 bytes for name(filename is mostly 5 in this test) +
1015         #               8 bytes for luda_type
1016         # take into account of overhead in lu_dirpage header and end mark in
1017         # each page, plus one in RPC_NUM calculation.
1018         DIRENT_SIZE=48
1019         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1020         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1021         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1022                                 awk '/^mds_readpage/ {print $2}')
1023         [ $mds_readpage -gt $RPC_NUM ] && \
1024                 error "large readdir doesn't take effect"
1025
1026         simple_cleanup_common
1027 }
1028 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1029
1030 test_24w() { # bug21506
1031         SZ1=234852
1032         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1033         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1034         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1035         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1036         [ "$SZ1" = "$SZ2" ] || \
1037                 error "Error reading at the end of the file $tfile"
1038 }
1039 run_test 24w "Reading a file larger than 4Gb"
1040
1041 test_24x() {
1042         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1044         local MDTIDX=1
1045         local remote_dir=$DIR/$tdir/remote_dir
1046
1047         mkdir -p $DIR/$tdir
1048         $LFS mkdir -i $MDTIDX $remote_dir ||
1049                 error "create remote directory failed"
1050
1051         mkdir -p $DIR/$tdir/src_dir
1052         touch $DIR/$tdir/src_file
1053         mkdir -p $remote_dir/tgt_dir
1054         touch $remote_dir/tgt_file
1055
1056         mrename $remote_dir $DIR/ &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1060                 error "rename dir cross MDT works!"
1061
1062         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1063                 error "rename file cross MDT works!"
1064
1065         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1066                 error "ln file cross MDT should not work!"
1067
1068         rm -rf $DIR/$tdir || error "Can not delete directories"
1069 }
1070 run_test 24x "cross rename/link should be failed"
1071
1072 test_24y() {
1073         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1075         local MDTIDX=1
1076         local remote_dir=$DIR/$tdir/remote_dir
1077
1078         mkdir -p $DIR/$tdir
1079         $LFS mkdir -i $MDTIDX $remote_dir ||
1080                    error "create remote directory failed"
1081
1082         mkdir -p $remote_dir/src_dir
1083         touch $remote_dir/src_file
1084         mkdir -p $remote_dir/tgt_dir
1085         touch $remote_dir/tgt_file
1086
1087         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1088                 error "rename subdir in the same remote dir failed!"
1089
1090         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1091                 error "rename files in the same remote dir failed!"
1092
1093         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1094                 error "link files in the same remote dir failed!"
1095
1096         rm -rf $DIR/$tdir || error "Can not delete directories"
1097 }
1098 run_test 24y "rename/link on the same dir should succeed"
1099
1100 test_24z() {
1101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1103         local MDTIDX=1
1104         local remote_src=$DIR/$tdir/remote_dir
1105         local remote_tgt=$DIR/$tdir/remote_tgt
1106
1107         mkdir -p $DIR/$tdir
1108         $LFS mkdir -i $MDTIDX $remote_src ||
1109                    error "create remote directory failed"
1110
1111         $LFS mkdir -i $MDTIDX $remote_tgt ||
1112                    error "create remote directory failed"
1113
1114         mrename $remote_src $remote_tgt &&
1115                 error "rename remote dirs should not work!"
1116
1117         # If target dir does not exists, it should succeed
1118         rm -rf $remote_tgt
1119         mrename $remote_src $remote_tgt ||
1120                 error "rename remote dirs(tgt dir does not exists) failed!"
1121
1122         rm -rf $DIR/$tdir || error "Can not delete directories"
1123 }
1124 run_test 24z "rename one remote dir to another remote dir should fail"
1125
1126 test_24A() { # LU-3182
1127         local NFILES=5000
1128
1129         rm -rf $DIR/$tdir
1130         mkdir -p $DIR/$tdir
1131         createmany -m $DIR/$tdir/$tfile $NFILES
1132         local t=`ls $DIR/$tdir | wc -l`
1133         local u=`ls $DIR/$tdir | sort -u | wc -l`
1134         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1135                 error "Expected $NFILES files, got $t ($u unique)"
1136         fi
1137
1138         rm -rf $DIR/$tdir || error "Can not delete directories"
1139 }
1140 run_test 24A "readdir() returns correct number of entries."
1141
1142 test_25a() {
1143         echo '== symlink sanity ============================================='
1144
1145         test_mkdir $DIR/d25
1146         ln -s d25 $DIR/s25
1147         touch $DIR/s25/foo || error
1148 }
1149 run_test 25a "create file in symlinked directory ==============="
1150
1151 test_25b() {
1152         [ ! -d $DIR/d25 ] && test_25a
1153         $CHECKSTAT -t file $DIR/s25/foo || error
1154 }
1155 run_test 25b "lookup file in symlinked directory ==============="
1156
1157 test_26a() {
1158         test_mkdir $DIR/d26
1159         test_mkdir $DIR/d26/d26-2
1160         ln -s d26/d26-2 $DIR/s26
1161         touch $DIR/s26/foo || error
1162 }
1163 run_test 26a "multiple component symlink ======================="
1164
1165 test_26b() {
1166         test_mkdir -p $DIR/d26b/d26-2
1167         ln -s d26b/d26-2/foo $DIR/s26-2
1168         touch $DIR/s26-2 || error
1169 }
1170 run_test 26b "multiple component symlink at end of lookup ======"
1171
1172 test_26c() {
1173         test_mkdir $DIR/d26.2
1174         touch $DIR/d26.2/foo
1175         ln -s d26.2 $DIR/s26.2-1
1176         ln -s s26.2-1 $DIR/s26.2-2
1177         ln -s s26.2-2 $DIR/s26.2-3
1178         chmod 0666 $DIR/s26.2-3/foo
1179 }
1180 run_test 26c "chain of symlinks ================================"
1181
1182 # recursive symlinks (bug 439)
1183 test_26d() {
1184         ln -s d26-3/foo $DIR/d26-3
1185 }
1186 run_test 26d "create multiple component recursive symlink ======"
1187
1188 test_26e() {
1189         [ ! -h $DIR/d26-3 ] && test_26d
1190         rm $DIR/d26-3
1191 }
1192 run_test 26e "unlink multiple component recursive symlink ======"
1193
1194 # recursive symlinks (bug 7022)
1195 test_26f() {
1196         test_mkdir -p $DIR/$tdir
1197         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1198         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1199         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1200         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1201         cd $tfile                || error "cd $tfile failed"
1202         ln -s .. dotdot          || error "ln dotdot failed"
1203         ln -s dotdot/lndir lndir || error "ln lndir failed"
1204         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1205         output=`ls $tfile/$tfile/lndir/bar1`
1206         [ "$output" = bar1 ] && error "unexpected output"
1207         rm -r $tfile             || error "rm $tfile failed"
1208         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1209 }
1210 run_test 26f "rm -r of a directory which has recursive symlink ="
1211
1212 test_27a() {
1213         echo '== stripe sanity =============================================='
1214         test_mkdir -p $DIR/d27 || error "mkdir failed"
1215         $GETSTRIPE $DIR/d27
1216         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1217         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1218         pass
1219         log "== test_27a: write to one stripe file ========================="
1220         cp /etc/hosts $DIR/d27/f0 || error
1221 }
1222 run_test 27a "one stripe file =================================="
1223
1224 test_27b() {
1225         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1226         test_mkdir -p $DIR/d27
1227         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1228         $GETSTRIPE -c $DIR/d27/f01
1229         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1230                 error "two-stripe file doesn't have two stripes"
1231
1232         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1233 }
1234 run_test 27b "create and write to two stripe file"
1235
1236 test_27d() {
1237         test_mkdir -p $DIR/d27
1238         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1239         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1240         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1241 }
1242 run_test 27d "create file with default settings ================"
1243
1244 test_27e() {
1245         test_mkdir -p $DIR/d27
1246         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1247         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1248         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1249 }
1250 run_test 27e "setstripe existing file (should return error) ======"
1251
1252 test_27f() {
1253         test_mkdir -p $DIR/d27
1254         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1255         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1256         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1257 }
1258 run_test 27f "setstripe with bad stripe size (should return error)"
1259
1260 test_27g() {
1261         test_mkdir -p $DIR/d27
1262         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1263         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1264                 error "$DIR/d27/fnone has object"
1265 }
1266 run_test 27g "$GETSTRIPE with no objects"
1267
1268 test_27i() {
1269         touch $DIR/d27/fsome || error "touch failed"
1270         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1271 }
1272 run_test 27i "$GETSTRIPE with some objects"
1273
1274 test_27j() {
1275         test_mkdir -p $DIR/d27
1276         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1277 }
1278 run_test 27j "setstripe with bad stripe offset (should return error)"
1279
1280 test_27k() { # bug 2844
1281         test_mkdir -p $DIR/d27
1282         FILE=$DIR/d27/f27k
1283         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1284         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1285         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1286         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1287         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1288         dd if=/dev/zero of=$FILE bs=4k count=1
1289         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1290         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1291 }
1292 run_test 27k "limit i_blksize for broken user apps ============="
1293
1294 test_27l() {
1295         test_mkdir -p $DIR/d27
1296         mcreate $DIR/f27l || error "creating file"
1297         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1298                 error "setstripe should have failed" || true
1299 }
1300 run_test 27l "check setstripe permissions (should return error)"
1301
1302 test_27m() {
1303         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1304                 return
1305         if [ $ORIGFREE -gt $MAXFREE ]; then
1306                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1307                 return
1308         fi
1309         trap simple_cleanup_common EXIT
1310         test_mkdir -p $DIR/$tdir
1311         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1312         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1313                 error "dd should fill OST0"
1314         i=2
1315         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1316                 i=`expr $i + 1`
1317                 [ $i -gt 256 ] && break
1318         done
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         i=`expr $i + 1`
1324         touch $DIR/$tdir/f27m_$i
1325         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1326                 error "OST0 was full but new created file still use it"
1327         simple_cleanup_common
1328 }
1329 run_test 27m "create file while OST0 was full =================="
1330
1331 sleep_maxage() {
1332         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1333         sleep $DELAY
1334 }
1335
1336 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1337 # if the OST isn't full anymore.
1338 reset_enospc() {
1339         local OSTIDX=${1:-""}
1340
1341         local list=$(comma_list $(osts_nodes))
1342         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1343
1344         do_nodes $list lctl set_param fail_loc=0
1345         sync    # initiate all OST_DESTROYs from MDS to OST
1346         sleep_maxage
1347 }
1348
1349 exhaust_precreations() {
1350         local OSTIDX=$1
1351         local FAILLOC=$2
1352         local FAILIDX=${3:-$OSTIDX}
1353
1354         test_mkdir -p $DIR/$tdir
1355         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1356         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1357
1358         local OST=$(ostname_from_index $OSTIDX)
1359         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1360                           sed -e 's/_UUID$//;s/^.*-//')
1361
1362         # on the mdt's osc
1363         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1364         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1365                         osc.$mdtosc_proc1.prealloc_last_id)
1366         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1367                         osc.$mdtosc_proc1.prealloc_next_id)
1368
1369         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1370         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1371
1372         test_mkdir -p $DIR/$tdir/${OST}
1373         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1374 #define OBD_FAIL_OST_ENOSPC              0x215
1375         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1377         echo "Creating to objid $last_id on ost $OST..."
1378         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1379         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1380         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1381         sleep_maxage
1382 }
1383
1384 exhaust_all_precreations() {
1385         local i
1386         for (( i=0; i < OSTCOUNT; i++ )) ; do
1387                 exhaust_precreations $i $1 -1
1388         done
1389 }
1390
1391 test_27n() {
1392         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1395         remote_ost_nodsh && skip "remote OST with nodsh" && return
1396
1397         reset_enospc
1398         rm -f $DIR/$tdir/$tfile
1399         exhaust_precreations 0 0x80000215
1400         $SETSTRIPE -c -1 $DIR/$tdir
1401         touch $DIR/$tdir/$tfile || error
1402         $GETSTRIPE $DIR/$tdir/$tfile
1403         reset_enospc
1404 }
1405 run_test 27n "create file with some full OSTs =================="
1406
1407 test_27o() {
1408         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1410         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1411         remote_ost_nodsh && skip "remote OST with nodsh" && return
1412
1413         reset_enospc
1414         rm -f $DIR/$tdir/$tfile
1415         exhaust_all_precreations 0x215
1416
1417         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1418
1419         reset_enospc
1420         rm -rf $DIR/$tdir/*
1421 }
1422 run_test 27o "create file with all full OSTs (should error) ===="
1423
1424 test_27p() {
1425         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1428         remote_ost_nodsh && skip "remote OST with nodsh" && return
1429
1430         reset_enospc
1431         rm -f $DIR/$tdir/$tfile
1432         test_mkdir -p $DIR/$tdir
1433
1434         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1435         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1436         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1437
1438         exhaust_precreations 0 0x80000215
1439         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1440         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1441         $GETSTRIPE $DIR/$tdir/$tfile
1442
1443         reset_enospc
1444 }
1445 run_test 27p "append to a truncated file with some full OSTs ==="
1446
1447 test_27q() {
1448         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1451         remote_ost_nodsh && skip "remote OST with nodsh" && return
1452
1453         reset_enospc
1454         rm -f $DIR/$tdir/$tfile
1455
1456         test_mkdir -p $DIR/$tdir
1457         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1458         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1459         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1460
1461         exhaust_all_precreations 0x215
1462
1463         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1464         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1465
1466         reset_enospc
1467 }
1468 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1469
1470 test_27r() {
1471         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1473         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1474         remote_ost_nodsh && skip "remote OST with nodsh" && return
1475
1476         reset_enospc
1477         rm -f $DIR/$tdir/$tfile
1478         exhaust_precreations 0 0x80000215
1479
1480         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1481
1482         reset_enospc
1483 }
1484 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1485
1486 test_27s() { # bug 10725
1487         test_mkdir -p $DIR/$tdir
1488         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1489         local stripe_count=0
1490         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1491         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1492                 error "stripe width >= 2^32 succeeded" || true
1493
1494 }
1495 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1496
1497 test_27t() { # bug 10864
1498         WDIR=`pwd`
1499         WLFS=`which lfs`
1500         cd $DIR
1501         touch $tfile
1502         $WLFS getstripe $tfile
1503         cd $WDIR
1504 }
1505 run_test 27t "check that utils parse path correctly"
1506
1507 test_27u() { # bug 4900
1508         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1510         local index
1511         local list=$(comma_list $(mdts_nodes))
1512
1513 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1514         do_nodes $list $LCTL set_param fail_loc=0x139
1515         test_mkdir -p $DIR/$tdir
1516         rm -rf $DIR/$tdir/*
1517         createmany -o $DIR/$tdir/t- 1000
1518         do_nodes $list $LCTL set_param fail_loc=0
1519
1520         TLOG=$DIR/$tfile.getstripe
1521         $GETSTRIPE $DIR/$tdir > $TLOG
1522         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1523         unlinkmany $DIR/$tdir/t- 1000
1524         [ $OBJS -gt 0 ] && \
1525                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1526 }
1527 run_test 27u "skip object creation on OSC w/o objects =========="
1528
1529 test_27v() { # bug 4900
1530         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1533         remote_ost_nodsh && skip "remote OST with nodsh" && return
1534
1535         exhaust_all_precreations 0x215
1536         reset_enospc
1537
1538         test_mkdir -p $DIR/$tdir
1539         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1540
1541         touch $DIR/$tdir/$tfile
1542         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1543         # all except ost1
1544         for (( i=1; i < OSTCOUNT; i++ )); do
1545                 do_facet ost$i lctl set_param fail_loc=0x705
1546         done
1547         local START=`date +%s`
1548         createmany -o $DIR/$tdir/$tfile 32
1549
1550         local FINISH=`date +%s`
1551         local TIMEOUT=`lctl get_param -n timeout`
1552         local PROCESS=$((FINISH - START))
1553         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1554                error "$FINISH - $START >= $TIMEOUT / 2"
1555         sleep $((TIMEOUT / 2 - PROCESS))
1556         reset_enospc
1557 }
1558 run_test 27v "skip object creation on slow OST ================="
1559
1560 test_27w() { # bug 10997
1561         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1562         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1563         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1564                 error "stripe size $size != 65536" || true
1565         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1566                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1567 }
1568 run_test 27w "check $SETSTRIPE -S option"
1569
1570 test_27wa() {
1571         [ "$OSTCOUNT" -lt "2" ] &&
1572                 skip_env "skipping multiple stripe count/offset test" && return
1573
1574         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1575         for i in $(seq 1 $OSTCOUNT); do
1576                 offset=$((i - 1))
1577                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1578                         error "setstripe -c $i -i $offset failed"
1579                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1580                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1581                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1582                 [ $index -ne $offset ] &&
1583                         error "stripe offset $index != $offset" || true
1584         done
1585 }
1586 run_test 27wa "check $SETSTRIPE -c -i options"
1587
1588 test_27x() {
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1592         OFFSET=$(($OSTCOUNT - 1))
1593         OSTIDX=0
1594         local OST=$(ostname_from_index $OSTIDX)
1595
1596         test_mkdir -p $DIR/$tdir
1597         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1598         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1599         sleep_maxage
1600         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1601         for i in `seq 0 $OFFSET`; do
1602                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1603                 error "OST0 was degraded but new created file still use it"
1604         done
1605         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1606 }
1607 run_test 27x "create files while OST0 is degraded"
1608
1609 test_27y() {
1610         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1611         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1612         remote_ost_nodsh && skip "remote OST with nodsh" && return
1613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1614
1615         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1616         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1617             osc.$mdtosc.prealloc_last_id)
1618         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1619             osc.$mdtosc.prealloc_next_id)
1620         local fcount=$((last_id - next_id))
1621         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1622         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1623
1624         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1625                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1626         local OST_DEACTIVE_IDX=-1
1627         local OSC
1628         local OSTIDX
1629         local OST
1630
1631         for OSC in $MDS_OSCS; do
1632                 OST=$(osc_to_ost $OSC)
1633                 OSTIDX=$(index_from_ostuuid $OST)
1634                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1635                         OST_DEACTIVE_IDX=$OSTIDX
1636                 fi
1637                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1638                         echo $OSC "is Deactivated:"
1639                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1640                 fi
1641         done
1642
1643         OSTIDX=$(index_from_ostuuid $OST)
1644         mkdir -p $DIR/$tdir
1645         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1646
1647         for OSC in $MDS_OSCS; do
1648                 OST=$(osc_to_ost $OSC)
1649                 OSTIDX=$(index_from_ostuuid $OST)
1650                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1651                         echo $OST "is degraded:"
1652                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1653                                                 obdfilter.$OST.degraded=1
1654                 fi
1655         done
1656
1657         sleep_maxage
1658         createmany -o $DIR/$tdir/$tfile $fcount
1659
1660         for OSC in $MDS_OSCS; do
1661                 OST=$(osc_to_ost $OSC)
1662                 OSTIDX=$(index_from_ostuuid $OST)
1663                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1664                         echo $OST "is recovered from degraded:"
1665                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1666                                                 obdfilter.$OST.degraded=0
1667                 else
1668                         do_facet $SINGLEMDS lctl --device %$OSC activate
1669                 fi
1670         done
1671
1672         # all osp devices get activated, hence -1 stripe count restored
1673         local stripecnt=0
1674
1675         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1676         # devices get activated.
1677         sleep_maxage
1678         $SETSTRIPE -c -1 $DIR/$tfile
1679         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1680         rm -f $DIR/$tfile
1681         [ $stripecnt -ne $OSTCOUNT ] &&
1682                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1683         return 0
1684 }
1685 run_test 27y "create files while OST0 is degraded and the rest inactive"
1686
1687 check_seq_oid()
1688 {
1689         log "check file $1"
1690
1691         lmm_count=$($GETSTRIPE -c $1)
1692         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1693         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1694
1695         local old_ifs="$IFS"
1696         IFS=$'[:]'
1697         fid=($($LFS path2fid $1))
1698         IFS="$old_ifs"
1699
1700         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1701         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1702
1703         # compare lmm_seq and lu_fid->f_seq
1704         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1705         # compare lmm_object_id and lu_fid->oid
1706         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1707
1708         # check the trusted.fid attribute of the OST objects of the file
1709         local have_obdidx=false
1710         local stripe_nr=0
1711         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1712                 # skip lines up to and including "obdidx"
1713                 [ -z "$obdidx" ] && break
1714                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1715                 $have_obdidx || continue
1716
1717                 local ost=$((obdidx + 1))
1718                 local dev=$(ostdevname $ost)
1719                 local oid_hex
1720
1721                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1722
1723                 seq=$(echo $seq | sed -e "s/^0x//g")
1724                 if [ $seq == 0 ]; then
1725                         oid_hex=$(echo $oid)
1726                 else
1727                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1728                 fi
1729                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1730
1731                 local ff
1732                 #
1733                 # Don't unmount/remount the OSTs if we don't need to do that.
1734                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1735                 # update too, until that use mount/ll_decode_filter_fid/mount.
1736                 # Re-enable when debugfs will understand new filter_fid.
1737                 #
1738                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1739                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1740                                 $dev 2>/dev/null" | grep "parent=")
1741                 else
1742                         stop ost$ost
1743                         mount_fstype ost$ost
1744                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1745                                 $(facet_mntpt ost$ost)/$obj_file)
1746                         unmount_fstype ost$ost
1747                         start ost$ost $dev $OST_MOUNT_OPTS
1748                 fi
1749
1750                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1751
1752                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1753
1754                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1755                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1756                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1757                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1758                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1759                 local ff_pstripe
1760                 if echo $ff_parent | grep -q 'stripe='; then
1761                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1762                 else
1763                         #
1764                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1765                         # into f_ver in this case.  See the comment on
1766                         # ff_parent.
1767                         #
1768                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1769                                 sed -e 's/\]//')
1770                 fi
1771
1772                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1773                 [ $ff_pseq = $lmm_seq ] ||
1774                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1775                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1776                 [ $ff_poid = $lmm_oid ] ||
1777                         error "FF parent OID $ff_poid != $lmm_oid"
1778                 (($ff_pstripe == $stripe_nr)) ||
1779                         error "FF stripe $ff_pstripe != $stripe_nr"
1780
1781                 stripe_nr=$((stripe_nr + 1))
1782         done
1783 }
1784
1785 test_27z() {
1786         remote_ost_nodsh && skip "remote OST with nodsh" && return
1787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1788         test_mkdir -p $DIR/$tdir
1789
1790         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1791                 { error "setstripe -c -1 failed"; return 1; }
1792         # We need to send a write to every object to get parent FID info set.
1793         # This _should_ also work for setattr, but does not currently.
1794         # touch $DIR/$tdir/$tfile-1 ||
1795         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1796                 { error "dd $tfile-1 failed"; return 2; }
1797         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1798                 { error "setstripe -c -1 failed"; return 3; }
1799         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1800                 { error "dd $tfile-2 failed"; return 4; }
1801
1802         # make sure write RPCs have been sent to OSTs
1803         sync; sleep 5; sync
1804
1805         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1806         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1807 }
1808 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1809
1810 test_27A() { # b=19102
1811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1812         local restore_size=$($GETSTRIPE -S $MOUNT)
1813         local restore_count=$($GETSTRIPE -c $MOUNT)
1814         local restore_offset=$($GETSTRIPE -i $MOUNT)
1815         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1816         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1817                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1818         local default_size=$($GETSTRIPE -S $MOUNT)
1819         local default_offset=$($GETSTRIPE -i $MOUNT)
1820         local dsize=$((1024 * 1024))
1821         [ $default_size -eq $dsize ] ||
1822                 error "stripe size $default_size != $dsize"
1823         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1824         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1825 }
1826 run_test 27A "check filesystem-wide default LOV EA values"
1827
1828 test_27B() { # LU-2523
1829         test_mkdir -p $DIR/$tdir
1830         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1831         touch $DIR/$tdir/f0
1832         # open f1 with O_LOV_DELAY_CREATE
1833         # rename f0 onto 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:nB1c \
1837                 $DIR/$tdir/f0
1838
1839         rm -f $DIR/$tdir/f1
1840         # open f1 with O_LOV_DELAY_CREATE
1841         # unlink f1
1842         # call setstripe ioctl on open file descriptor for f1
1843         # close
1844         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1845
1846         # Allow multiop to fail in imitation of NFS's busted semantics.
1847         true
1848 }
1849 run_test 27B "call setstripe on open unlinked file/rename victim"
1850
1851 test_27C() { #LU-2871
1852         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1853
1854         declare -a ost_idx
1855         local index
1856         local found
1857         local i
1858         local j
1859
1860         test_mkdir -p $DIR/$tdir
1861         cd $DIR/$tdir
1862         for i in $(seq 0 $((OSTCOUNT - 1))); do
1863                 # set stripe across all OSTs starting from OST$i
1864                 $SETSTRIPE -i $i -c -1 $tfile$i
1865                 # get striping information
1866                 ost_idx=($($GETSTRIPE $tfile$i |
1867                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1868                 echo ${ost_idx[@]}
1869
1870                 # check the layout
1871                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1872                         error "${#ost_idx[@]} != $OSTCOUNT"
1873
1874                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1875                         found=0
1876                         for j in $(echo ${ost_idx[@]}); do
1877                                 if [ $index -eq $j ]; then
1878                                         found=1
1879                                         break
1880                                 fi
1881                         done
1882                         [ $found = 1 ] ||
1883                                 error "Can not find $index in ${ost_idx[@]}"
1884                 done
1885         done
1886 }
1887 run_test 27C "check full striping across all OSTs"
1888
1889 # createtest also checks that device nodes are created and
1890 # then visible correctly (#2091)
1891 test_28() { # bug 2091
1892         test_mkdir $DIR/d28
1893         $CREATETEST $DIR/d28/ct || error
1894 }
1895 run_test 28 "create/mknod/mkdir with bad file types ============"
1896
1897 test_29() {
1898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1899         cancel_lru_locks mdc
1900         test_mkdir $DIR/d29
1901         touch $DIR/d29/foo
1902         log 'first d29'
1903         ls -l $DIR/d29
1904
1905         declare -i LOCKCOUNTORIG=0
1906         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1907                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1908         done
1909         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1910
1911         declare -i LOCKUNUSEDCOUNTORIG=0
1912         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1913                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1914         done
1915
1916         log 'second d29'
1917         ls -l $DIR/d29
1918         log 'done'
1919
1920         declare -i LOCKCOUNTCURRENT=0
1921         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1922                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1923         done
1924
1925         declare -i LOCKUNUSEDCOUNTCURRENT=0
1926         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1927                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1928         done
1929
1930         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1931                 lctl set_param -n ldlm.dump_namespaces ""
1932                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1933                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1934                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1935                 return 2
1936         fi
1937         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1938                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1939                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1940                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1941                 return 3
1942         fi
1943 }
1944 run_test 29 "IT_GETATTR regression  ============================"
1945
1946 test_30a() { # was test_30
1947         cp `which ls` $DIR || cp /bin/ls $DIR
1948         $DIR/ls / || error
1949         rm $DIR/ls
1950 }
1951 run_test 30a "execute binary from Lustre (execve) =============="
1952
1953 test_30b() {
1954         cp `which ls` $DIR || cp /bin/ls $DIR
1955         chmod go+rx $DIR/ls
1956         $RUNAS $DIR/ls / || error
1957         rm $DIR/ls
1958 }
1959 run_test 30b "execute binary from Lustre as non-root ==========="
1960
1961 test_30c() { # b=22376
1962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1963         cp `which ls` $DIR || cp /bin/ls $DIR
1964         chmod a-rw $DIR/ls
1965         cancel_lru_locks mdc
1966         cancel_lru_locks osc
1967         $RUNAS $DIR/ls / || error
1968         rm -f $DIR/ls
1969 }
1970 run_test 30c "execute binary from Lustre without read perms ===="
1971
1972 test_31a() {
1973         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1974         $CHECKSTAT -a $DIR/f31 || error
1975 }
1976 run_test 31a "open-unlink file =================================="
1977
1978 test_31b() {
1979         touch $DIR/f31 || error
1980         ln $DIR/f31 $DIR/f31b || error
1981         $MULTIOP $DIR/f31b Ouc || error
1982         $CHECKSTAT -t file $DIR/f31 || error
1983 }
1984 run_test 31b "unlink file with multiple links while open ======="
1985
1986 test_31c() {
1987         touch $DIR/f31 || error
1988         ln $DIR/f31 $DIR/f31c || error
1989         multiop_bg_pause $DIR/f31 O_uc || return 1
1990         MULTIPID=$!
1991         $MULTIOP $DIR/f31c Ouc
1992         kill -USR1 $MULTIPID
1993         wait $MULTIPID
1994 }
1995 run_test 31c "open-unlink file with multiple links ============="
1996
1997 test_31d() {
1998         opendirunlink $DIR/d31d $DIR/d31d || error
1999         $CHECKSTAT -a $DIR/d31d || error
2000 }
2001 run_test 31d "remove of open directory ========================="
2002
2003 test_31e() { # bug 2904
2004         check_kernel_version 34 || return 0
2005         openfilleddirunlink $DIR/d31e || error
2006 }
2007 run_test 31e "remove of open non-empty directory ==============="
2008
2009 test_31f() { # bug 4554
2010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2011         set -vx
2012         test_mkdir $DIR/d31f
2013         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2014         cp /etc/hosts $DIR/d31f
2015         ls -l $DIR/d31f
2016         $GETSTRIPE $DIR/d31f/hosts
2017         multiop_bg_pause $DIR/d31f D_c || return 1
2018         MULTIPID=$!
2019
2020         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2021         test_mkdir $DIR/d31f
2022         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2023         cp /etc/hosts $DIR/d31f
2024         ls -l $DIR/d31f
2025         $GETSTRIPE $DIR/d31f/hosts
2026         multiop_bg_pause $DIR/d31f D_c || return 1
2027         MULTIPID2=$!
2028
2029         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2030         wait $MULTIPID || error "first opendir $MULTIPID failed"
2031
2032         sleep 6
2033
2034         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2035         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2036         set +vx
2037 }
2038 run_test 31f "remove of open directory with open-unlink file ==="
2039
2040 test_31g() {
2041         echo "-- cross directory link --"
2042         test_mkdir $DIR/d31ga
2043         test_mkdir $DIR/d31gb
2044         touch $DIR/d31ga/f
2045         ln $DIR/d31ga/f $DIR/d31gb/g
2046         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2047         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2048         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2049         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2050 }
2051 run_test 31g "cross directory link==============="
2052
2053 test_31h() {
2054         echo "-- cross directory link --"
2055         test_mkdir $DIR/d31h
2056         test_mkdir $DIR/d31h/dir
2057         touch $DIR/d31h/f
2058         ln $DIR/d31h/f $DIR/d31h/dir/g
2059         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2060         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2061         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2062         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2063 }
2064 run_test 31h "cross directory link under child==============="
2065
2066 test_31i() {
2067         echo "-- cross directory link --"
2068         test_mkdir $DIR/d31i
2069         test_mkdir $DIR/d31i/dir
2070         touch $DIR/d31i/dir/f
2071         ln $DIR/d31i/dir/f $DIR/d31i/g
2072         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2073         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2074         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2075         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2076 }
2077 run_test 31i "cross directory link under parent==============="
2078
2079
2080 test_31j() {
2081         test_mkdir $DIR/d31j
2082         test_mkdir $DIR/d31j/dir1
2083         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2084         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2085         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2086         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2087         return 0
2088 }
2089 run_test 31j "link for directory==============="
2090
2091
2092 test_31k() {
2093         test_mkdir $DIR/d31k
2094         touch $DIR/d31k/s
2095         touch $DIR/d31k/exist
2096         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2097         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2098         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2099         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2100         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2101         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2102         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2103         return 0
2104 }
2105 run_test 31k "link to file: the same, non-existing, dir==============="
2106
2107 test_31m() {
2108         test_mkdir $DIR/d31m
2109         touch $DIR/d31m/s
2110         test_mkdir $DIR/d31m2
2111         touch $DIR/d31m2/exist
2112         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2113         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2114         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2115         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2116         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2117         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2118         return 0
2119 }
2120 run_test 31m "link to file: the same, non-existing, dir==============="
2121
2122 test_31n() {
2123         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2124         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2125         nlink=$(stat --format=%h $DIR/$tfile)
2126         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2127         local fd=$(free_fd)
2128         local cmd="exec $fd<$DIR/$tfile"
2129         eval $cmd
2130         cmd="exec $fd<&-"
2131         trap "eval $cmd" EXIT
2132         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2133         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2134         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2135         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2136         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2137         eval $cmd
2138 }
2139 run_test 31n "check link count of unlinked file"
2140
2141 link_one() {
2142         local TEMPNAME=$(mktemp $1_XXXXXX)
2143         mlink $TEMPNAME $1 2> /dev/null &&
2144                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2145         munlink $TEMPNAME
2146 }
2147
2148 test_31o() { # LU-2901
2149         mkdir -p $DIR/$tdir
2150         for LOOP in $(seq 100); do
2151                 rm -f $DIR/$tdir/$tfile*
2152                 for THREAD in $(seq 8); do
2153                         link_one $DIR/$tdir/$tfile.$LOOP &
2154                 done
2155                 wait
2156                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2157                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2158                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2159                         break || true
2160         done
2161 }
2162 run_test 31o "duplicate hard links with same filename"
2163
2164 cleanup_test32_mount() {
2165         trap 0
2166         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2167 }
2168
2169 test_32a() {
2170         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2171         echo "== more mountpoints and symlinks ================="
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         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2177         cleanup_test32_mount
2178 }
2179 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2180
2181 test_32b() {
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         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2188         cleanup_test32_mount
2189 }
2190 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2191
2192 test_32c() {
2193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2194         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2195         trap cleanup_test32_mount EXIT
2196         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2197         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2198         test_mkdir -p $DIR/$tdir/d2/test_dir
2199         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2200         cleanup_test32_mount
2201 }
2202 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2203
2204 test_32d() {
2205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2206         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2207         trap cleanup_test32_mount EXIT
2208         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2209         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2210         test_mkdir -p $DIR/$tdir/d2/test_dir
2211         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2212         cleanup_test32_mount
2213 }
2214 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2215
2216 test_32e() {
2217         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2218         test_mkdir -p $DIR/d32e/tmp
2219         TMP_DIR=$DIR/d32e/tmp
2220         ln -s $DIR/d32e $TMP_DIR/symlink11
2221         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2222         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2223         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2224 }
2225 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2226
2227 test_32f() {
2228         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2229         test_mkdir -p $DIR/d32f/tmp
2230         TMP_DIR=$DIR/d32f/tmp
2231         ln -s $DIR/d32f $TMP_DIR/symlink11
2232         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2233         ls $DIR/d32f/tmp/symlink11  || error
2234         ls $DIR/d32f/symlink01 || error
2235 }
2236 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2237
2238 test_32g() {
2239         TMP_DIR=$DIR/$tdir/tmp
2240         test_mkdir -p $DIR/$tdir/tmp
2241         test_mkdir $DIR/${tdir}2
2242         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2243         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2244         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2245         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2246         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2247         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2248 }
2249 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2250
2251 test_32h() {
2252         rm -fr $DIR/$tdir $DIR/${tdir}2
2253         TMP_DIR=$DIR/$tdir/tmp
2254         test_mkdir -p $DIR/$tdir/tmp
2255         test_mkdir $DIR/${tdir}2
2256         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2257         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2258         ls $TMP_DIR/symlink12 || error
2259         ls $DIR/$tdir/symlink02  || error
2260 }
2261 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2262
2263 test_32i() {
2264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2265         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2266         trap cleanup_test32_mount EXIT
2267         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2268         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2269         touch $DIR/$tdir/test_file
2270         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2271         cleanup_test32_mount
2272 }
2273 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2274
2275 test_32j() {
2276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2277         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2278         trap cleanup_test32_mount EXIT
2279         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2280         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2281         touch $DIR/$tdir/test_file
2282         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2283         cleanup_test32_mount
2284 }
2285 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2286
2287 test_32k() {
2288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2289         rm -fr $DIR/$tdir
2290         trap cleanup_test32_mount EXIT
2291         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2292         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2293         test_mkdir -p $DIR/$tdir/d2
2294         touch $DIR/$tdir/d2/test_file || error
2295         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2296         cleanup_test32_mount
2297 }
2298 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2299
2300 test_32l() {
2301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2302         rm -fr $DIR/$tdir
2303         trap cleanup_test32_mount EXIT
2304         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2305         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2306         test_mkdir -p $DIR/$tdir/d2
2307         touch $DIR/$tdir/d2/test_file
2308         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2309         cleanup_test32_mount
2310 }
2311 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2312
2313 test_32m() {
2314         rm -fr $DIR/d32m
2315         test_mkdir -p $DIR/d32m/tmp
2316         TMP_DIR=$DIR/d32m/tmp
2317         ln -s $DIR $TMP_DIR/symlink11
2318         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2319         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2320         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2321 }
2322 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2323
2324 test_32n() {
2325         rm -fr $DIR/d32n
2326         test_mkdir -p $DIR/d32n/tmp
2327         TMP_DIR=$DIR/d32n/tmp
2328         ln -s $DIR $TMP_DIR/symlink11
2329         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2330         ls -l $DIR/d32n/tmp/symlink11  || error
2331         ls -l $DIR/d32n/symlink01 || error
2332 }
2333 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2334
2335 test_32o() {
2336         rm -fr $DIR/d32o $DIR/$tfile
2337         touch $DIR/$tfile
2338         test_mkdir -p $DIR/d32o/tmp
2339         TMP_DIR=$DIR/d32o/tmp
2340         ln -s $DIR/$tfile $TMP_DIR/symlink12
2341         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2342         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2343         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2344         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2345         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2346 }
2347 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2348
2349 test_32p() {
2350     log 32p_1
2351         rm -fr $DIR/d32p
2352     log 32p_2
2353         rm -f $DIR/$tfile
2354     log 32p_3
2355         touch $DIR/$tfile
2356     log 32p_4
2357         test_mkdir -p $DIR/d32p/tmp
2358     log 32p_5
2359         TMP_DIR=$DIR/d32p/tmp
2360     log 32p_6
2361         ln -s $DIR/$tfile $TMP_DIR/symlink12
2362     log 32p_7
2363         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2364     log 32p_8
2365         cat $DIR/d32p/tmp/symlink12 || error
2366     log 32p_9
2367         cat $DIR/d32p/symlink02 || error
2368     log 32p_10
2369 }
2370 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2371
2372 cleanup_testdir_mount() {
2373         trap 0
2374         $UMOUNT -d $DIR/$tdir
2375 }
2376
2377 test_32q() {
2378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2379         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2380         trap cleanup_testdir_mount EXIT
2381         test_mkdir -p $DIR/$tdir
2382         touch $DIR/$tdir/under_the_mount
2383         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2384         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2385         cleanup_testdir_mount
2386 }
2387 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2388
2389 test_32r() {
2390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2391         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2392         trap cleanup_testdir_mount EXIT
2393         test_mkdir -p $DIR/$tdir
2394         touch $DIR/$tdir/under_the_mount
2395         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2396         ls $DIR/$tdir | grep -q under_the_mount && error || true
2397         cleanup_testdir_mount
2398 }
2399 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2400
2401 test_33aa() {
2402         rm -f $DIR/$tfile
2403         touch $DIR/$tfile
2404         chmod 444 $DIR/$tfile
2405         chown $RUNAS_ID $DIR/$tfile
2406         log 33_1
2407         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2408         log 33_2
2409 }
2410 run_test 33aa "write file with mode 444 (should return error) ===="
2411
2412 test_33a() {
2413         rm -fr $DIR/d33
2414         test_mkdir -p $DIR/d33
2415         chown $RUNAS_ID $DIR/d33
2416         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2417         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2418                 error "open RDWR" || true
2419 }
2420 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2421
2422 test_33b() {
2423         rm -fr $DIR/d33
2424         test_mkdir -p $DIR/d33
2425         chown $RUNAS_ID $DIR/d33
2426         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2427 }
2428 run_test 33b "test open file with malformed flags (No panic and return error)"
2429
2430 test_33c() {
2431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2432         local ostnum
2433         local ostname
2434         local write_bytes
2435         local all_zeros
2436
2437         remote_ost_nodsh && skip "remote OST with nodsh" && return
2438         all_zeros=:
2439         rm -fr $DIR/d33
2440         test_mkdir -p $DIR/d33
2441         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2442
2443         sync
2444         for ostnum in $(seq $OSTCOUNT); do
2445                 # test-framework's OST numbering is one-based, while Lustre's
2446                 # is zero-based
2447                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2448                 # Parsing llobdstat's output sucks; we could grep the /proc
2449                 # path, but that's likely to not be as portable as using the
2450                 # llobdstat utility.  So we parse lctl output instead.
2451                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2452                         obdfilter/$ostname/stats |
2453                         awk '/^write_bytes/ {print $7}' )
2454                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2455                 if (( ${write_bytes:-0} > 0 ))
2456                 then
2457                         all_zeros=false
2458                         break;
2459                 fi
2460         done
2461
2462         $all_zeros || return 0
2463
2464         # Write four bytes
2465         echo foo > $DIR/d33/bar
2466         # Really write them
2467         sync
2468
2469         # Total up write_bytes after writing.  We'd better find non-zeros.
2470         for ostnum in $(seq $OSTCOUNT); do
2471                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2472                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2473                         obdfilter/$ostname/stats |
2474                         awk '/^write_bytes/ {print $7}' )
2475                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2476                 if (( ${write_bytes:-0} > 0 ))
2477                 then
2478                         all_zeros=false
2479                         break;
2480                 fi
2481         done
2482
2483         if $all_zeros
2484         then
2485                 for ostnum in $(seq $OSTCOUNT); do
2486                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2487                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2488                         do_facet ost$ostnum lctl get_param -n \
2489                                 obdfilter/$ostname/stats
2490                 done
2491                 error "OST not keeping write_bytes stats (b22312)"
2492         fi
2493 }
2494 run_test 33c "test llobdstat and write_bytes"
2495
2496 test_33d() {
2497         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2499         local MDTIDX=1
2500         local remote_dir=$DIR/$tdir/remote_dir
2501
2502         mkdir -p $DIR/$tdir
2503         $LFS mkdir -i $MDTIDX $remote_dir ||
2504                 error "create remote directory failed"
2505
2506         touch $remote_dir/$tfile
2507         chmod 444 $remote_dir/$tfile
2508         chown $RUNAS_ID $remote_dir/$tfile
2509
2510         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2511
2512         chown $RUNAS_ID $remote_dir
2513         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2514                                         error "create" || true
2515         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2516                                     error "open RDWR" || true
2517         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2518                                     error "create" || true
2519 }
2520 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2521
2522 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2523 test_34a() {
2524         rm -f $DIR/f34
2525         $MCREATE $DIR/f34 || error
2526         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2527         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2528         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2529         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2530 }
2531 run_test 34a "truncate file that has not been opened ==========="
2532
2533 test_34b() {
2534         [ ! -f $DIR/f34 ] && test_34a
2535         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2536         $OPENFILE -f O_RDONLY $DIR/f34
2537         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2538         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2539 }
2540 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2541
2542 test_34c() {
2543         [ ! -f $DIR/f34 ] && test_34a
2544         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2545         $OPENFILE -f O_RDWR $DIR/f34
2546         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2547         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2548 }
2549 run_test 34c "O_RDWR opening file-with-size works =============="
2550
2551 test_34d() {
2552         [ ! -f $DIR/f34 ] && test_34a
2553         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2554         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2555         rm $DIR/f34
2556 }
2557 run_test 34d "write to sparse file ============================="
2558
2559 test_34e() {
2560         rm -f $DIR/f34e
2561         $MCREATE $DIR/f34e || error
2562         $TRUNCATE $DIR/f34e 1000 || error
2563         $CHECKSTAT -s 1000 $DIR/f34e || error
2564         $OPENFILE -f O_RDWR $DIR/f34e
2565         $CHECKSTAT -s 1000 $DIR/f34e || error
2566 }
2567 run_test 34e "create objects, some with size and some without =="
2568
2569 test_34f() { # bug 6242, 6243
2570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2571         SIZE34F=48000
2572         rm -f $DIR/f34f
2573         $MCREATE $DIR/f34f || error
2574         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2575         dd if=$DIR/f34f of=$TMP/f34f
2576         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2577         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2578         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2579         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2580         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2581 }
2582 run_test 34f "read from a file with no objects until EOF ======="
2583
2584 test_34g() {
2585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2586         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2587         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2588         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2589         cancel_lru_locks osc
2590         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2591                 error "wrong size after lock cancel"
2592
2593         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2594         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2595                 error "expanding truncate failed"
2596         cancel_lru_locks osc
2597         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2598                 error "wrong expanded size after lock cancel"
2599 }
2600 run_test 34g "truncate long file ==============================="
2601
2602 test_34h() {
2603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2604         local gid=10
2605         local sz=1000
2606
2607         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2608         sync # Flush the cache so that multiop below does not block on cache
2609              # flush when getting the group lock
2610         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2611         MULTIPID=$!
2612
2613         # Since just timed wait is not good enough, let's do a sync write
2614         # that way we are sure enough time for a roundtrip + processing
2615         # passed + 2 seconds of extra margin.
2616         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2617         rm $DIR/${tfile}-1
2618         sleep 2
2619
2620         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2621                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2622                 kill -9 $MULTIPID
2623         fi
2624         wait $MULTIPID
2625         local nsz=`stat -c %s $DIR/$tfile`
2626         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2627 }
2628 run_test 34h "ftruncate file under grouplock should not block"
2629
2630 test_35a() {
2631         cp /bin/sh $DIR/f35a
2632         chmod 444 $DIR/f35a
2633         chown $RUNAS_ID $DIR/f35a
2634         $RUNAS $DIR/f35a && error || true
2635         rm $DIR/f35a
2636 }
2637 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2638
2639 test_36a() {
2640         rm -f $DIR/f36
2641         utime $DIR/f36 || error
2642 }
2643 run_test 36a "MDS utime check (mknod, utime) ==================="
2644
2645 test_36b() {
2646         echo "" > $DIR/f36
2647         utime $DIR/f36 || error
2648 }
2649 run_test 36b "OST utime check (open, utime) ===================="
2650
2651 test_36c() {
2652         rm -f $DIR/d36/f36
2653         test_mkdir $DIR/d36
2654         chown $RUNAS_ID $DIR/d36
2655         $RUNAS utime $DIR/d36/f36 || error
2656 }
2657 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2658
2659 test_36d() {
2660         [ ! -d $DIR/d36 ] && test_36c
2661         echo "" > $DIR/d36/f36
2662         $RUNAS utime $DIR/d36/f36 || error
2663 }
2664 run_test 36d "non-root OST utime check (open, utime) ==========="
2665
2666 test_36e() {
2667         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2668         test_mkdir -p $DIR/$tdir
2669         touch $DIR/$tdir/$tfile
2670         $RUNAS utime $DIR/$tdir/$tfile && \
2671                 error "utime worked, expected failure" || true
2672 }
2673 run_test 36e "utime on non-owned file (should return error) ===="
2674
2675 subr_36fh() {
2676         local fl="$1"
2677         local LANG_SAVE=$LANG
2678         local LC_LANG_SAVE=$LC_LANG
2679         export LANG=C LC_LANG=C # for date language
2680
2681         DATESTR="Dec 20  2000"
2682         test_mkdir -p $DIR/$tdir
2683         lctl set_param fail_loc=$fl
2684         date; date +%s
2685         cp /etc/hosts $DIR/$tdir/$tfile
2686         sync & # write RPC generated with "current" inode timestamp, but delayed
2687         sleep 1
2688         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2689         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2690         cancel_lru_locks osc
2691         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2692         date; date +%s
2693         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2694                 echo "BEFORE: $LS_BEFORE" && \
2695                 echo "AFTER : $LS_AFTER" && \
2696                 echo "WANT  : $DATESTR" && \
2697                 error "$DIR/$tdir/$tfile timestamps changed" || true
2698
2699         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2700 }
2701
2702 test_36f() {
2703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2704         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2705         subr_36fh "0x80000214"
2706 }
2707 run_test 36f "utime on file racing with OST BRW write =========="
2708
2709 test_36g() {
2710         remote_ost_nodsh && skip "remote OST with nodsh" && return
2711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2712         local fmd_max_age
2713         local fmd_before
2714         local fmd_after
2715
2716         test_mkdir -p $DIR/$tdir
2717         fmd_max_age=$(do_facet ost1 \
2718                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2719                 head -n 1")
2720
2721         fmd_before=$(do_facet ost1 \
2722                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2723         touch $DIR/$tdir/$tfile
2724         sleep $((fmd_max_age + 12))
2725         fmd_after=$(do_facet ost1 \
2726                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2727
2728         echo "fmd_before: $fmd_before"
2729         echo "fmd_after: $fmd_after"
2730         [ "$fmd_after" -gt "$fmd_before" ] && \
2731                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2732                 error "fmd didn't expire after ping" || true
2733 }
2734 run_test 36g "filter mod data cache expiry ====================="
2735
2736 test_36h() {
2737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2738         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2739         subr_36fh "0x80000227"
2740 }
2741 run_test 36h "utime on file racing with OST BRW write =========="
2742
2743 # test_37 - duplicate with tests 32q 32r
2744
2745 test_38() {
2746         local file=$DIR/$tfile
2747         touch $file
2748         openfile -f O_DIRECTORY $file
2749         local RC=$?
2750         local ENOTDIR=20
2751         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2752         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2753 }
2754 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2755
2756 test_39() {
2757         touch $DIR/$tfile
2758         touch $DIR/${tfile}2
2759 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2760 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2761 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2762         sleep 2
2763         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2764         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2765                 echo "mtime"
2766                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2767                 echo "atime"
2768                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2769                 echo "ctime"
2770                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2771                 error "O_TRUNC didn't change timestamps"
2772         fi
2773 }
2774 run_test 39 "mtime changed on create ==========================="
2775
2776 test_39b() {
2777         test_mkdir -p $DIR/$tdir
2778         cp -p /etc/passwd $DIR/$tdir/fopen
2779         cp -p /etc/passwd $DIR/$tdir/flink
2780         cp -p /etc/passwd $DIR/$tdir/funlink
2781         cp -p /etc/passwd $DIR/$tdir/frename
2782         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2783
2784         sleep 1
2785         echo "aaaaaa" >> $DIR/$tdir/fopen
2786         echo "aaaaaa" >> $DIR/$tdir/flink
2787         echo "aaaaaa" >> $DIR/$tdir/funlink
2788         echo "aaaaaa" >> $DIR/$tdir/frename
2789
2790         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2791         local link_new=`stat -c %Y $DIR/$tdir/flink`
2792         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2793         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2794
2795         cat $DIR/$tdir/fopen > /dev/null
2796         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2797         rm -f $DIR/$tdir/funlink2
2798         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2799
2800         for (( i=0; i < 2; i++ )) ; do
2801                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2802                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2803                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2804                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2805
2806                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2807                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2808                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2809                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2810
2811                 cancel_lru_locks osc
2812                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2813         done
2814 }
2815 run_test 39b "mtime change on open, link, unlink, rename  ======"
2816
2817 # this should be set to past
2818 TEST_39_MTIME=`date -d "1 year ago" +%s`
2819
2820 # bug 11063
2821 test_39c() {
2822         touch $DIR1/$tfile
2823         sleep 2
2824         local mtime0=`stat -c %Y $DIR1/$tfile`
2825
2826         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2827         local mtime1=`stat -c %Y $DIR1/$tfile`
2828         [ "$mtime1" = $TEST_39_MTIME ] || \
2829                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2830
2831         local d1=`date +%s`
2832         echo hello >> $DIR1/$tfile
2833         local d2=`date +%s`
2834         local mtime2=`stat -c %Y $DIR1/$tfile`
2835         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2836                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2837
2838         mv $DIR1/$tfile $DIR1/$tfile-1
2839
2840         for (( i=0; i < 2; i++ )) ; do
2841                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2842                 [ "$mtime2" = "$mtime3" ] || \
2843                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2844
2845                 cancel_lru_locks osc
2846                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2847         done
2848 }
2849 run_test 39c "mtime change on rename ==========================="
2850
2851 # bug 21114
2852 test_39d() {
2853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2854         touch $DIR1/$tfile
2855
2856         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2857
2858         for (( i=0; i < 2; i++ )) ; do
2859                 local mtime=`stat -c %Y $DIR1/$tfile`
2860                 [ $mtime = $TEST_39_MTIME ] || \
2861                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2862
2863                 cancel_lru_locks osc
2864                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2865         done
2866 }
2867 run_test 39d "create, utime, stat =============================="
2868
2869 # bug 21114
2870 test_39e() {
2871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2872         touch $DIR1/$tfile
2873         local mtime1=`stat -c %Y $DIR1/$tfile`
2874
2875         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2876
2877         for (( i=0; i < 2; i++ )) ; do
2878                 local mtime2=`stat -c %Y $DIR1/$tfile`
2879                 [ $mtime2 = $TEST_39_MTIME ] || \
2880                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2881
2882                 cancel_lru_locks osc
2883                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2884         done
2885 }
2886 run_test 39e "create, stat, utime, stat ========================"
2887
2888 # bug 21114
2889 test_39f() {
2890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2891         touch $DIR1/$tfile
2892         mtime1=`stat -c %Y $DIR1/$tfile`
2893
2894         sleep 2
2895         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2896
2897         for (( i=0; i < 2; i++ )) ; do
2898                 local mtime2=`stat -c %Y $DIR1/$tfile`
2899                 [ $mtime2 = $TEST_39_MTIME ] || \
2900                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2901
2902                 cancel_lru_locks osc
2903                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2904         done
2905 }
2906 run_test 39f "create, stat, sleep, utime, stat ================="
2907
2908 # bug 11063
2909 test_39g() {
2910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2911         echo hello >> $DIR1/$tfile
2912         local mtime1=`stat -c %Y $DIR1/$tfile`
2913
2914         sleep 2
2915         chmod o+r $DIR1/$tfile
2916
2917         for (( i=0; i < 2; i++ )) ; do
2918                 local mtime2=`stat -c %Y $DIR1/$tfile`
2919                 [ "$mtime1" = "$mtime2" ] || \
2920                         error "lost mtime: $mtime2, should be $mtime1"
2921
2922                 cancel_lru_locks osc
2923                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2924         done
2925 }
2926 run_test 39g "write, chmod, stat ==============================="
2927
2928 # bug 11063
2929 test_39h() {
2930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2931         touch $DIR1/$tfile
2932         sleep 1
2933
2934         local d1=`date`
2935         echo hello >> $DIR1/$tfile
2936         local mtime1=`stat -c %Y $DIR1/$tfile`
2937
2938         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2939         local d2=`date`
2940         if [ "$d1" != "$d2" ]; then
2941                 echo "write and touch not within one second"
2942         else
2943                 for (( i=0; i < 2; i++ )) ; do
2944                         local mtime2=`stat -c %Y $DIR1/$tfile`
2945                         [ "$mtime2" = $TEST_39_MTIME ] || \
2946                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2947
2948                         cancel_lru_locks osc
2949                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2950                 done
2951         fi
2952 }
2953 run_test 39h "write, utime within one second, stat ============="
2954
2955 test_39i() {
2956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2957         touch $DIR1/$tfile
2958         sleep 1
2959
2960         echo hello >> $DIR1/$tfile
2961         local mtime1=`stat -c %Y $DIR1/$tfile`
2962
2963         mv $DIR1/$tfile $DIR1/$tfile-1
2964
2965         for (( i=0; i < 2; i++ )) ; do
2966                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2967
2968                 [ "$mtime1" = "$mtime2" ] || \
2969                         error "lost mtime: $mtime2, should be $mtime1"
2970
2971                 cancel_lru_locks osc
2972                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2973         done
2974 }
2975 run_test 39i "write, rename, stat =============================="
2976
2977 test_39j() {
2978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2979         start_full_debug_logging
2980         touch $DIR1/$tfile
2981         sleep 1
2982
2983         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2984         lctl set_param fail_loc=0x80000412
2985         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2986                 error "multiop failed"
2987         local multipid=$!
2988         local mtime1=`stat -c %Y $DIR1/$tfile`
2989
2990         mv $DIR1/$tfile $DIR1/$tfile-1
2991
2992         kill -USR1 $multipid
2993         wait $multipid || error "multiop close failed"
2994
2995         for (( i=0; i < 2; i++ )) ; do
2996                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2997                 [ "$mtime1" = "$mtime2" ] ||
2998                         error "mtime is lost on close: $mtime2, " \
2999                               "should be $mtime1"
3000
3001                 cancel_lru_locks osc
3002                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3003         done
3004         lctl set_param fail_loc=0
3005         stop_full_debug_logging
3006 }
3007 run_test 39j "write, rename, close, stat ======================="
3008
3009 test_39k() {
3010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3011         touch $DIR1/$tfile
3012         sleep 1
3013
3014         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3015         local multipid=$!
3016         local mtime1=`stat -c %Y $DIR1/$tfile`
3017
3018         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3019
3020         kill -USR1 $multipid
3021         wait $multipid || error "multiop close failed"
3022
3023         for (( i=0; i < 2; i++ )) ; do
3024                 local mtime2=`stat -c %Y $DIR1/$tfile`
3025
3026                 [ "$mtime2" = $TEST_39_MTIME ] || \
3027                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3028
3029                 cancel_lru_locks osc
3030                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3031         done
3032 }
3033 run_test 39k "write, utime, close, stat ========================"
3034
3035 # this should be set to future
3036 TEST_39_ATIME=`date -d "1 year" +%s`
3037
3038 test_39l() {
3039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3040         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3041         local atime_diff=$(do_facet $SINGLEMDS \
3042                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3043         rm -rf $DIR/$tdir
3044         mkdir -p $DIR/$tdir
3045
3046         # test setting directory atime to future
3047         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3048         local atime=$(stat -c %X $DIR/$tdir)
3049         [ "$atime" = $TEST_39_ATIME ] || \
3050                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3051
3052         # test setting directory atime from future to now
3053         local d1=$(date +%s)
3054         ls $DIR/$tdir
3055         local d2=$(date +%s)
3056
3057         cancel_lru_locks mdc
3058         atime=$(stat -c %X $DIR/$tdir)
3059         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3060                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3061
3062         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3063         sleep 3
3064
3065         # test setting directory atime when now > dir atime + atime_diff
3066         d1=$(date +%s)
3067         ls $DIR/$tdir
3068         d2=$(date +%s)
3069         cancel_lru_locks mdc
3070         atime=$(stat -c %X $DIR/$tdir)
3071         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3072                 error "atime is not updated  : $atime, should be $d2"
3073
3074         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3075         sleep 3
3076
3077         # test not setting directory atime when now < dir atime + atime_diff
3078         ls $DIR/$tdir
3079         cancel_lru_locks mdc
3080         atime=$(stat -c %X $DIR/$tdir)
3081         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3082                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3083
3084         do_facet $SINGLEMDS \
3085                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3086 }
3087 run_test 39l "directory atime update ==========================="
3088
3089 test_39m() {
3090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3091         touch $DIR1/$tfile
3092         sleep 2
3093         local far_past_mtime=$(date -d "May 29 1953" +%s)
3094         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3095
3096         touch -m -d @$far_past_mtime $DIR1/$tfile
3097         touch -a -d @$far_past_atime $DIR1/$tfile
3098
3099         for (( i=0; i < 2; i++ )) ; do
3100                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3101                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3102                         error "atime or mtime set incorrectly"
3103
3104                 cancel_lru_locks osc
3105                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3106         done
3107 }
3108 run_test 39m "test atime and mtime before 1970"
3109
3110 test_39n() { # LU-3832
3111         local atime_diff=$(do_facet $SINGLEMDS \
3112                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3113         local atime0
3114         local atime1
3115         local atime2
3116
3117         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3118
3119         rm -rf $DIR/$tfile
3120         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3121         atime0=$(stat -c %X $DIR/$tfile)
3122
3123         sleep 5
3124         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3125         atime1=$(stat -c %X $DIR/$tfile)
3126
3127         sleep 5
3128         cancel_lru_locks mdc
3129         cancel_lru_locks osc
3130         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3131         atime2=$(stat -c %X $DIR/$tfile)
3132
3133         do_facet $SINGLEMDS \
3134                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3135
3136         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3137         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3138 }
3139 run_test 39n "check that O_NOATIME is honored"
3140
3141 test_39o() {
3142         TESTDIR=$DIR/$tdir/$tfile
3143         [ -e $TESTDIR ] && rm -rf $TESTDIR
3144         test_mkdir -p $TESTDIR
3145         cd $TESTDIR
3146         links1=2
3147         ls
3148         mkdir a b
3149         ls
3150         links2=$(stat -c %h .)
3151         [ $(($links1 + 2)) != $links2 ] &&
3152                 error "wrong links count $(($links1 + 2)) != $links2"
3153         rmdir b
3154         links3=$(stat -c %h .)
3155         [ $(($links1 + 1)) != $links3 ] &&
3156                 error "wrong links count $links1 != $links3"
3157         return 0
3158 }
3159 run_test 39o "directory cached attributes updated after create ========"
3160
3161 test_39p() {
3162         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3163         local MDTIDX=1
3164         TESTDIR=$DIR/$tdir/$tfile
3165         [ -e $TESTDIR ] && rm -rf $TESTDIR
3166         test_mkdir -p $TESTDIR
3167         cd $TESTDIR
3168         links1=2
3169         ls
3170         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3171         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3172         ls
3173         links2=$(stat -c %h .)
3174         [ $(($links1 + 2)) != $links2 ] &&
3175                 error "wrong links count $(($links1 + 2)) != $links2"
3176         rmdir remote_dir2
3177         links3=$(stat -c %h .)
3178         [ $(($links1 + 1)) != $links3 ] &&
3179                 error "wrong links count $links1 != $links3"
3180         return 0
3181 }
3182 run_test 39p "remote directory cached attributes updated after create ========"
3183
3184
3185 test_40() {
3186         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3187         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3188                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3189         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3190                 error "$tfile is not 4096 bytes in size"
3191 }
3192 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3193
3194 test_41() {
3195         # bug 1553
3196         small_write $DIR/f41 18
3197 }
3198 run_test 41 "test small file write + fstat ====================="
3199
3200 count_ost_writes() {
3201         lctl get_param -n osc.*.stats |
3202             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3203 }
3204
3205 # decent default
3206 WRITEBACK_SAVE=500
3207 DIRTY_RATIO_SAVE=40
3208 MAX_DIRTY_RATIO=50
3209 BG_DIRTY_RATIO_SAVE=10
3210 MAX_BG_DIRTY_RATIO=25
3211
3212 start_writeback() {
3213         trap 0
3214         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3215         # dirty_ratio, dirty_background_ratio
3216         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3217                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3218                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3219                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3220         else
3221                 # if file not here, we are a 2.4 kernel
3222                 kill -CONT `pidof kupdated`
3223         fi
3224 }
3225
3226 stop_writeback() {
3227         # setup the trap first, so someone cannot exit the test at the
3228         # exact wrong time and mess up a machine
3229         trap start_writeback EXIT
3230         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3231         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3232                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3233                 sysctl -w vm.dirty_writeback_centisecs=0
3234                 sysctl -w vm.dirty_writeback_centisecs=0
3235                 # save and increase /proc/sys/vm/dirty_ratio
3236                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3237                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3238                 # save and increase /proc/sys/vm/dirty_background_ratio
3239                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3240                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3241         else
3242                 # if file not here, we are a 2.4 kernel
3243                 kill -STOP `pidof kupdated`
3244         fi
3245 }
3246
3247 # ensure that all stripes have some grant before we test client-side cache
3248 setup_test42() {
3249         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3250                 dd if=/dev/zero of=$i bs=4k count=1
3251                 rm $i
3252         done
3253 }
3254
3255 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3256 # file truncation, and file removal.
3257 test_42a() {
3258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3259         setup_test42
3260         cancel_lru_locks osc
3261         stop_writeback
3262         sync; sleep 1; sync # just to be safe
3263         BEFOREWRITES=`count_ost_writes`
3264         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3265         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3266         AFTERWRITES=`count_ost_writes`
3267         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3268                 error "$BEFOREWRITES < $AFTERWRITES"
3269         start_writeback
3270 }
3271 run_test 42a "ensure that we don't flush on close =============="
3272
3273 test_42b() {
3274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3275         setup_test42
3276         cancel_lru_locks osc
3277         stop_writeback
3278         sync
3279         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3280         BEFOREWRITES=`count_ost_writes`
3281         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3282         AFTERWRITES=`count_ost_writes`
3283         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3284                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3285         fi
3286         BEFOREWRITES=`count_ost_writes`
3287         sync || error "sync: $?"
3288         AFTERWRITES=`count_ost_writes`
3289         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3290                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3291         fi
3292         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3293         start_writeback
3294         return 0
3295 }
3296 run_test 42b "test destroy of file with cached dirty data ======"
3297
3298 # if these tests just want to test the effect of truncation,
3299 # they have to be very careful.  consider:
3300 # - the first open gets a {0,EOF}PR lock
3301 # - the first write conflicts and gets a {0, count-1}PW
3302 # - the rest of the writes are under {count,EOF}PW
3303 # - the open for truncate tries to match a {0,EOF}PR
3304 #   for the filesize and cancels the PWs.
3305 # any number of fixes (don't get {0,EOF} on open, match
3306 # composite locks, do smarter file size management) fix
3307 # this, but for now we want these tests to verify that
3308 # the cancellation with truncate intent works, so we
3309 # start the file with a full-file pw lock to match against
3310 # until the truncate.
3311 trunc_test() {
3312         test=$1
3313         file=$DIR/$test
3314         offset=$2
3315         cancel_lru_locks osc
3316         stop_writeback
3317         # prime the file with 0,EOF PW to match
3318         touch $file
3319         $TRUNCATE $file 0
3320         sync; sync
3321         # now the real test..
3322         dd if=/dev/zero of=$file bs=1024 count=100
3323         BEFOREWRITES=`count_ost_writes`
3324         $TRUNCATE $file $offset
3325         cancel_lru_locks osc
3326         AFTERWRITES=`count_ost_writes`
3327         start_writeback
3328 }
3329
3330 test_42c() {
3331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3332         trunc_test 42c 1024
3333         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3334             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3335         rm $file
3336 }
3337 run_test 42c "test partial truncate of file with cached dirty data"
3338
3339 test_42d() {
3340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3341         trunc_test 42d 0
3342         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3343             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3344         rm $file
3345 }
3346 run_test 42d "test complete truncate of file with cached dirty data"
3347
3348 test_42e() { # bug22074
3349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3350         local TDIR=$DIR/${tdir}e
3351         local pagesz=$(page_size)
3352         local pages=16 # hardcoded 16 pages, don't change it.
3353         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3354         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3355         local max_dirty_mb
3356         local warmup_files
3357
3358         test_mkdir -p $DIR/${tdir}e
3359         $SETSTRIPE -c 1 $TDIR
3360         createmany -o $TDIR/f $files
3361
3362         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3363
3364         # we assume that with $OSTCOUNT files, at least one of them will
3365         # be allocated on OST0.
3366         warmup_files=$((OSTCOUNT * max_dirty_mb))
3367         createmany -o $TDIR/w $warmup_files
3368
3369         # write a large amount of data into one file and sync, to get good
3370         # avail_grant number from OST.
3371         for ((i=0; i<$warmup_files; i++)); do
3372                 idx=$($GETSTRIPE -i $TDIR/w$i)
3373                 [ $idx -ne 0 ] && continue
3374                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3375                 break
3376         done
3377         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3378         sync
3379         $LCTL get_param $proc_osc0/cur_dirty_bytes
3380         $LCTL get_param $proc_osc0/cur_grant_bytes
3381
3382         # create as much dirty pages as we can while not to trigger the actual
3383         # RPCs directly. but depends on the env, VFS may trigger flush during this
3384         # period, hopefully we are good.
3385         for ((i=0; i<$warmup_files; i++)); do
3386                 idx=$($GETSTRIPE -i $TDIR/w$i)
3387                 [ $idx -ne 0 ] && continue
3388                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3389         done
3390         $LCTL get_param $proc_osc0/cur_dirty_bytes
3391         $LCTL get_param $proc_osc0/cur_grant_bytes
3392
3393         # perform the real test
3394         $LCTL set_param $proc_osc0/rpc_stats 0
3395         for ((;i<$files; i++)); do
3396                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3397                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3398         done
3399         sync
3400         $LCTL get_param $proc_osc0/rpc_stats
3401
3402         local percent=0
3403         local have_ppr=false
3404         $LCTL get_param $proc_osc0/rpc_stats |
3405                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3406                         # skip lines until we are at the RPC histogram data
3407                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3408                         $have_ppr || continue
3409
3410                         # we only want the percent stat for < 16 pages
3411                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3412
3413                         percent=$((percent + WPCT))
3414                         if [ $percent -gt 15 ]; then
3415                                 error "less than 16-pages write RPCs" \
3416                                       "$percent% > 15%"
3417                                 break
3418                         fi
3419                 done
3420         rm -rf $TDIR
3421 }
3422 run_test 42e "verify sub-RPC writes are not done synchronously"
3423
3424 test_43() {
3425         test_mkdir -p $DIR/$tdir
3426         cp -p /bin/ls $DIR/$tdir/$tfile
3427         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3428         pid=$!
3429         # give multiop a chance to open
3430         sleep 1
3431
3432         $DIR/$tdir/$tfile && error || true
3433         kill -USR1 $pid
3434 }
3435 run_test 43 "execution of file opened for write should return -ETXTBSY"
3436
3437 test_43a() {
3438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3439         test_mkdir -p $DIR/$tdir
3440         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3441                         cp -p multiop $DIR/$tdir/multiop
3442         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3443                         return 1
3444         MULTIOP_PID=$!
3445         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3446         kill -USR1 $MULTIOP_PID || return 2
3447         wait $MULTIOP_PID || return 3
3448         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3449 }
3450 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3451
3452 test_43b() {
3453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3454         test_mkdir -p $DIR/$tdir
3455         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3456                         cp -p multiop $DIR/$tdir/multiop
3457         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3458                         return 1
3459         MULTIOP_PID=$!
3460         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3461         kill -USR1 $MULTIOP_PID || return 2
3462         wait $MULTIOP_PID || return 3
3463         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3464 }
3465 run_test 43b "truncate of file being executed should return -ETXTBSY"
3466
3467 test_43c() {
3468         local testdir="$DIR/$tdir"
3469         test_mkdir -p $DIR/$tdir
3470         cp $SHELL $testdir/
3471         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3472                 ( cd $testdir && md5sum -c)
3473 }
3474 run_test 43c "md5sum of copy into lustre========================"
3475
3476 test_44() {
3477         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3478         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3479         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3480 }
3481 run_test 44 "zero length read from a sparse stripe ============="
3482
3483 test_44a() {
3484     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3485                          awk '{print $2}'`
3486     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3487     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3488     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3489                       awk '{print $2}'`
3490     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3491         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3492     fi
3493
3494     OFFSETS="0 $((stride/2)) $((stride-1))"
3495     for offset in $OFFSETS ; do
3496       for i in `seq 0 $((nstripe-1))`; do
3497         local GLOBALOFFSETS=""
3498         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3499         local myfn=$DIR/d44a-$size
3500         echo "--------writing $myfn at $size"
3501         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3502         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3503         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3504                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3505
3506         for j in `seq 0 $((nstripe-1))`; do
3507             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3508             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3509             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3510         done
3511         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3512                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3513         rm -f $myfn
3514       done
3515     done
3516 }
3517 run_test 44a "test sparse pwrite ==============================="
3518
3519 dirty_osc_total() {
3520         tot=0
3521         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3522                 tot=$(($tot + $d))
3523         done
3524         echo $tot
3525 }
3526 do_dirty_record() {
3527         before=`dirty_osc_total`
3528         echo executing "\"$*\""
3529         eval $*
3530         after=`dirty_osc_total`
3531         echo before $before, after $after
3532 }
3533 test_45() {
3534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3535         f="$DIR/f45"
3536         # Obtain grants from OST if it supports it
3537         echo blah > ${f}_grant
3538         stop_writeback
3539         sync
3540         do_dirty_record "echo blah > $f"
3541         [ $before -eq $after ] && error "write wasn't cached"
3542         do_dirty_record "> $f"
3543         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3544         do_dirty_record "echo blah > $f"
3545         [ $before -eq $after ] && error "write wasn't cached"
3546         do_dirty_record "sync"
3547         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3548         do_dirty_record "echo blah > $f"
3549         [ $before -eq $after ] && error "write wasn't cached"
3550         do_dirty_record "cancel_lru_locks osc"
3551         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3552         start_writeback
3553 }
3554 run_test 45 "osc io page accounting ============================"
3555
3556 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3557 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3558 # objects offset and an assert hit when an rpc was built with 1023's mapped
3559 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3560 test_46() {
3561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3562         f="$DIR/f46"
3563         stop_writeback
3564         sync
3565         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3566         sync
3567         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3568         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3569         sync
3570         start_writeback
3571 }
3572 run_test 46 "dirtying a previously written page ================"
3573
3574 # test_47 is removed "Device nodes check" is moved to test_28
3575
3576 test_48a() { # bug 2399
3577         check_kernel_version 34 || return 0
3578         test_mkdir -p $DIR/$tdir
3579         cd $DIR/$tdir
3580         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3581         test_mkdir $DIR/$tdir || error "recreate directory failed"
3582         touch foo || error "'touch foo' failed after recreating cwd"
3583         test_mkdir $DIR/$tdir/bar ||
3584                      error "'mkdir foo' failed after recreating cwd"
3585         if check_kernel_version 44; then
3586                 touch .foo || error "'touch .foo' failed after recreating cwd"
3587                 test_mkdir $DIR/$tdir/.bar ||
3588                               error "'mkdir .foo' failed after recreating cwd"
3589         fi
3590         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3591         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3592         cd . || error "'cd .' failed after recreating cwd"
3593         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3594         rmdir . && error "'rmdir .' worked after recreating cwd"
3595         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3596         cd .. || error "'cd ..' failed after recreating cwd"
3597 }
3598 run_test 48a "Access renamed working dir (should return errors)="
3599
3600 test_48b() { # bug 2399
3601         check_kernel_version 34 || return 0
3602         rm -rf $DIR/$tdir
3603         test_mkdir -p $DIR/$tdir
3604         cd $DIR/$tdir
3605         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3606         touch foo && error "'touch foo' worked after removing cwd"
3607         test_mkdir $DIR/$tdir/foo &&
3608                      error "'mkdir foo' worked after removing cwd"
3609         if check_kernel_version 44; then
3610                 touch .foo && error "'touch .foo' worked after removing cwd"
3611                 test_mkdir $DIR/$tdir/.foo &&
3612                               error "'mkdir .foo' worked after removing cwd"
3613         fi
3614         ls . > /dev/null && error "'ls .' worked after removing cwd"
3615         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3616         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3617         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3618         rmdir . && error "'rmdir .' worked after removing cwd"
3619         ln -s . foo && error "'ln -s .' worked after removing cwd"
3620         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3621 }
3622 run_test 48b "Access removed working dir (should return errors)="
3623
3624 test_48c() { # bug 2350
3625         check_kernel_version 36 || return 0
3626         #lctl set_param debug=-1
3627         #set -vx
3628         rm -rf $DIR/$tdir
3629         test_mkdir -p $DIR/$tdir/dir
3630         cd $DIR/$tdir/dir
3631         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3632         $TRACE touch foo && error "touch foo worked after removing cwd"
3633         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3634         if check_kernel_version 44; then
3635                 touch .foo && error "touch .foo worked after removing cwd"
3636                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3637         fi
3638         $TRACE ls . && error "'ls .' worked after removing cwd"
3639         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3640         is_patchless || ( $TRACE cd . &&
3641                         error "'cd .' worked after removing cwd" )
3642         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3643         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3644         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3645         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3646 }
3647 run_test 48c "Access removed working subdir (should return errors)"
3648
3649 test_48d() { # bug 2350
3650         check_kernel_version 36 || return 0
3651         #lctl set_param debug=-1
3652         #set -vx
3653         rm -rf $DIR/$tdir
3654         test_mkdir -p $DIR/$tdir/dir
3655         cd $DIR/$tdir/dir
3656         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3657         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3658         $TRACE touch foo && error "'touch foo' worked after removing parent"
3659         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3660         if check_kernel_version 44; then
3661                 touch .foo && error "'touch .foo' worked after removing parent"
3662                 test_mkdir .foo &&
3663                               error "mkdir .foo worked after removing parent"
3664         fi
3665         $TRACE ls . && error "'ls .' worked after removing parent"
3666         $TRACE ls .. && error "'ls ..' worked after removing parent"
3667         is_patchless || ( $TRACE cd . &&
3668                         error "'cd .' worked after recreate parent" )
3669         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3670         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3671         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3672         is_patchless || ( $TRACE cd .. &&
3673                         error "'cd ..' worked after removing parent" || true )
3674 }
3675 run_test 48d "Access removed parent subdir (should return errors)"
3676
3677 test_48e() { # bug 4134
3678         check_kernel_version 41 || return 0
3679         #lctl set_param debug=-1
3680         #set -vx
3681         rm -rf $DIR/$tdir
3682         test_mkdir -p $DIR/$tdir/dir
3683         cd $DIR/$tdir/dir
3684         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3685         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3686         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3687         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3688         # On a buggy kernel addition of "touch foo" after cd .. will
3689         # produce kernel oops in lookup_hash_it
3690         touch ../foo && error "'cd ..' worked after recreate parent"
3691         cd $DIR
3692         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3693 }
3694 run_test 48e "Access to recreated parent subdir (should return errors)"
3695
3696 test_49() { # LU-1030
3697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3698         # get ost1 size - lustre-OST0000
3699         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3700         # write 800M at maximum
3701         [ $ost1_size -gt 819200 ] && ost1_size=819200
3702
3703         lfs setstripe -c 1 -i 0 $DIR/$tfile
3704         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3705         local dd_pid=$!
3706
3707         # change max_pages_per_rpc while writing the file
3708         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3709         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3710         # loop until dd process exits
3711         while ps ax -opid | grep -wq $dd_pid; do
3712                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3713                 sleep $((RANDOM % 5 + 1))
3714         done
3715         # restore original max_pages_per_rpc
3716         $LCTL set_param $osc1_mppc=$orig_mppc
3717         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3718 }
3719 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3720
3721 test_50() {
3722         # bug 1485
3723         test_mkdir $DIR/$tdir
3724         cd $DIR/$tdir
3725         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3726 }
3727 run_test 50 "special situations: /proc symlinks  ==============="
3728
3729 test_51a() {    # was test_51
3730         # bug 1516 - create an empty entry right after ".." then split dir
3731         test_mkdir -p $DIR/$tdir
3732         touch $DIR/$tdir/foo
3733         $MCREATE $DIR/$tdir/bar
3734         rm $DIR/$tdir/foo
3735         createmany -m $DIR/$tdir/longfile 201
3736         FNUM=202
3737         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3738                 $MCREATE $DIR/$tdir/longfile$FNUM
3739                 FNUM=$(($FNUM + 1))
3740                 echo -n "+"
3741         done
3742         echo
3743         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3744 }
3745 run_test 51a "special situations: split htree with empty entry =="
3746
3747 export NUMTEST=70000
3748 test_51b() {
3749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3750         local BASE=$DIR/$tdir
3751
3752         # cleanup the directory
3753         rm -fr $BASE
3754
3755         test_mkdir -p $BASE
3756
3757         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3758         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3759         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3760                 return
3761
3762         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3763                 echo "reduced count to $NUMTEST due to inodes"
3764
3765         # need to check free space for the directories as well
3766         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3767         numfree=$((blkfree / 4))
3768         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3769                 echo "reduced count to $NUMTEST due to blocks"
3770
3771         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3772                 echo "failed" > $BASE/fnum
3773 }
3774 run_test 51b "exceed 64k subdirectory nlink limit"
3775
3776 test_51ba() { # LU-993
3777         local BASE=$DIR/$tdir
3778         # unlink all but 100 subdirectories, then check it still works
3779         local LEFT=100
3780         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3781
3782         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3783         local DELETE=$((NUMTEST - LEFT))
3784
3785         # continue on to run this test even if 51b didn't finish,
3786         # just to delete the many subdirectories created.
3787         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3788
3789         # for ldiskfs the nlink count should be 1, but this is OSD specific
3790         # and so this is listed for informational purposes only
3791         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3792         unlinkmany -d $BASE/d $DELETE
3793         RC=$?
3794
3795         if [ $RC -ne 0 ]; then
3796                 if [ "$NUMPREV" == "failed" ]; then
3797                         skip "previous setup failed"
3798                         return 0
3799                 else
3800                         error "unlink of first $DELETE subdirs failed"
3801                         return $RC
3802                 fi
3803         fi
3804
3805         echo "nlink between: $(stat -c %h $BASE)"
3806         # trim the first line of ls output
3807         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3808         [ $FOUND -ne $LEFT ] &&
3809                 error "can't find subdirs: found only $FOUND/$LEFT"
3810
3811         unlinkmany -d $BASE/d $DELETE $LEFT ||
3812                 error "unlink of second $LEFT subdirs failed"
3813         # regardless of whether the backing filesystem tracks nlink accurately
3814         # or not, the nlink count shouldn't be more than "." and ".." here
3815         local AFTER=$(stat -c %h $BASE)
3816         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3817                 echo "nlink after: $AFTER"
3818 }
3819 run_test 51ba "verify nlink for many subdirectory cleanup"
3820
3821 test_51d() {
3822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3823         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3824         test_mkdir -p $DIR/$tdir
3825         createmany -o $DIR/$tdir/t- 1000
3826         $GETSTRIPE $DIR/$tdir > $TMP/files
3827         for N in `seq 0 $((OSTCOUNT - 1))`; do
3828             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3829             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3830             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3831         done
3832         unlinkmany $DIR/$tdir/t- 1000
3833
3834         NLAST=0
3835         for N in `seq 1 $((OSTCOUNT - 1))`; do
3836             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3837                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3838             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3839                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3840
3841             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3842                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3843             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3844                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3845             NLAST=$N
3846         done
3847 }
3848 run_test 51d "check object distribution ===================="
3849
3850 test_52a() {
3851         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3852         test_mkdir -p $DIR/$tdir
3853         touch $DIR/$tdir/foo
3854         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3855         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3856         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3857         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3858         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3859                                         error "link worked"
3860         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3861         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3862         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3863                                                      error "lsattr"
3864         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3865         cp -r $DIR/$tdir /tmp/
3866         rm -fr $DIR/$tdir || error "cleanup rm failed"
3867 }
3868 run_test 52a "append-only flag test (should return errors) ====="
3869
3870 test_52b() {
3871         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3872         test_mkdir -p $DIR/$tdir
3873         touch $DIR/$tdir/foo
3874         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3875         cat test > $DIR/$tdir/foo && error "cat test worked"
3876         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3877         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3878         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3879                                         error "link worked"
3880         echo foo >> $DIR/$tdir/foo && error "echo worked"
3881         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3882         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3883         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3884         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3885                                                         error "lsattr"
3886         chattr -i $DIR/$tdir/foo || error "chattr failed"
3887
3888         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3889 }
3890 run_test 52b "immutable flag test (should return errors) ======="
3891
3892 test_53() {
3893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3894         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3895         remote_ost_nodsh && skip "remote OST with nodsh" && return
3896
3897         local param
3898         local param_seq
3899         local ostname
3900         local mds_last
3901         local mds_last_seq
3902         local ost_last
3903         local ost_last_seq
3904         local ost_last_id
3905         local ostnum
3906         local node
3907         local found=0
3908
3909         # only test MDT0000
3910         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3911         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3912                 param=$(echo ${value[0]} | cut -d "=" -f1)
3913                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3914                 param_seq=$(echo ${param} |
3915                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3916                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3917                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3918
3919                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3920                 node=$(facet_active_host ost$((ostnum+1)))
3921                 param="obdfilter.$ostname.last_id"
3922                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3923                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3924                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3925                                       sed -e "s/^0x//g")
3926                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3927                         if [ $ost_last_seq = $mds_last_seq ]; then
3928                                 if [ $ost_last_id != $mds_last ]; then
3929                                         error "$ost_last != $mds_last_id"
3930                                 else
3931                                         found=1
3932                                         break
3933                                 fi
3934                         fi
3935                 done
3936         done
3937         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3938         return 0
3939 }
3940 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3941
3942 test_54a() {
3943         $SOCKETSERVER $DIR/socket ||
3944                 error "$SOCKETSERVER $DIR/socket failed: $?"
3945         $SOCKETCLIENT $DIR/socket ||
3946                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3947         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3948 }
3949 run_test 54a "unix domain socket test =========================="
3950
3951 test_54b() {
3952         f="$DIR/f54b"
3953         mknod $f c 1 3
3954         chmod 0666 $f
3955         dd if=/dev/zero of=$f bs=$(page_size) count=1
3956 }
3957 run_test 54b "char device works in lustre ======================"
3958
3959 find_loop_dev() {
3960         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3961         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3962         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3963
3964         for i in $(seq 3 7); do
3965                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3966                 LOOPDEV=$LOOPBASE$i
3967                 LOOPNUM=$i
3968                 break
3969         done
3970 }
3971
3972 test_54c() {
3973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3974         tfile="$DIR/f54c"
3975         tdir="$DIR/d54c"
3976         loopdev="$DIR/loop54c"
3977
3978         find_loop_dev
3979         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3980         mknod $loopdev b 7 $LOOPNUM
3981         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3982         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3983         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3984         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3985         test_mkdir -p $tdir
3986         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3987         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3988         df $tdir
3989         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3990         $UMOUNT -d $tdir
3991         losetup -d $loopdev
3992         rm $loopdev
3993 }
3994 run_test 54c "block device works in lustre ====================="
3995
3996 test_54d() {
3997         f="$DIR/f54d"
3998         string="aaaaaa"
3999         mknod $f p
4000         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4001 }
4002 run_test 54d "fifo device works in lustre ======================"
4003
4004 test_54e() {
4005         check_kernel_version 46 || return 0
4006         f="$DIR/f54e"
4007         string="aaaaaa"
4008         cp -aL /dev/console $f
4009         echo $string > $f || error "echo $string to $f failed"
4010 }
4011 run_test 54e "console/tty device works in lustre ======================"
4012
4013 #The test_55 used to be iopen test and it was removed by bz#24037.
4014 #run_test 55 "check iopen_connect_dentry() ======================"
4015
4016 test_56a() {    # was test_56
4017         rm -rf $DIR/$tdir
4018         $SETSTRIPE -d $DIR
4019         test_mkdir -p $DIR/$tdir/dir
4020         NUMFILES=3
4021         NUMFILESx2=$(($NUMFILES * 2))
4022         for i in `seq 1 $NUMFILES` ; do
4023                 touch $DIR/$tdir/file$i
4024                 touch $DIR/$tdir/dir/file$i
4025         done
4026
4027         # test lfs getstripe with --recursive
4028         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
4029         [ $FILENUM -eq $NUMFILESx2 ] ||
4030                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4031         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
4032         [ $FILENUM -eq $NUMFILES ] ||
4033                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4034         echo "$GETSTRIPE --recursive passed."
4035
4036         # test lfs getstripe with file instead of dir
4037         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
4038         [ $FILENUM  -eq 1 ] || error \
4039                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4040         echo "$GETSTRIPE file1 passed."
4041
4042         #test lfs getstripe with --verbose
4043         [ `$GETSTRIPE --verbose $DIR/$tdir |
4044                         grep -c lmm_magic` -eq $NUMFILES ] ||
4045                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4046         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
4047             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4048         echo "$GETSTRIPE --verbose passed."
4049
4050         #test lfs getstripe with --obd
4051         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4052                                         grep -q "unknown obduuid" ||
4053                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4054
4055         [  "$OSTCOUNT" -lt 2 ] &&
4056                 skip_env "skipping other $GETSTRIPE --obd test" && return
4057
4058         OSTIDX=1
4059         OBDUUID=$(ostuuid_from_index $OSTIDX)
4060         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4061         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4062         [ $FOUND -eq $FILENUM ] ||
4063                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4064         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4065                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4066                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4067                 error "$GETSTRIPE --obd: should not show file on other obd"
4068         echo "$GETSTRIPE --obd passed"
4069 }
4070 run_test 56a "check $GETSTRIPE"
4071
4072 NUMFILES=3
4073 NUMDIRS=3
4074 setup_56() {
4075         local LOCAL_NUMFILES="$1"
4076         local LOCAL_NUMDIRS="$2"
4077         local MKDIR_PARAMS="$3"
4078
4079         if [ ! -d "$TDIR" ] ; then
4080                 test_mkdir -p $TDIR
4081                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4082                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4083                         touch $TDIR/file$i
4084                 done
4085                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4086                         test_mkdir $TDIR/dir$i
4087                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4088                                 touch $TDIR/dir$i/file$j
4089                         done
4090                 done
4091         fi
4092 }
4093
4094 setup_56_special() {
4095         LOCAL_NUMFILES=$1
4096         LOCAL_NUMDIRS=$2
4097         setup_56 $1 $2
4098         if [ ! -e "$TDIR/loop1b" ] ; then
4099                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4100                         mknod $TDIR/loop${i}b b 7 $i
4101                         mknod $TDIR/null${i}c c 1 3
4102                         ln -s $TDIR/file1 $TDIR/link${i}l
4103                 done
4104                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4105                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4106                         mknod $TDIR/dir$i/null${i}c c 1 3
4107                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4108                 done
4109         fi
4110 }
4111
4112 test_56g() {
4113         $SETSTRIPE -d $DIR
4114
4115         TDIR=$DIR/${tdir}g
4116         setup_56 $NUMFILES $NUMDIRS
4117
4118         EXPECTED=$(($NUMDIRS + 2))
4119         # test lfs find with -name
4120         for i in $(seq 1 $NUMFILES) ; do
4121                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4122                 [ $NUMS -eq $EXPECTED ] ||
4123                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4124                               "found $NUMS, expected $EXPECTED"
4125         done
4126 }
4127 run_test 56g "check lfs find -name ============================="
4128
4129 test_56h() {
4130         $SETSTRIPE -d $DIR
4131
4132         TDIR=$DIR/${tdir}g
4133         setup_56 $NUMFILES $NUMDIRS
4134
4135         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4136         # test lfs find with ! -name
4137         for i in $(seq 1 $NUMFILES) ; do
4138                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4139                 [ $NUMS -eq $EXPECTED ] ||
4140                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4141                               "found $NUMS, expected $EXPECTED"
4142         done
4143 }
4144 run_test 56h "check lfs find ! -name ============================="
4145
4146 test_56i() {
4147        tdir=${tdir}i
4148        test_mkdir -p $DIR/$tdir
4149        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4150        CMD="$LFIND -ost $UUID $DIR/$tdir"
4151        OUT=$($CMD)
4152        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4153 }
4154 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4155
4156 test_56j() {
4157         TDIR=$DIR/${tdir}g
4158         setup_56_special $NUMFILES $NUMDIRS
4159
4160         EXPECTED=$((NUMDIRS + 1))
4161         CMD="$LFIND -type d $TDIR"
4162         NUMS=$($CMD | wc -l)
4163         [ $NUMS -eq $EXPECTED ] ||
4164                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4165 }
4166 run_test 56j "check lfs find -type d ============================="
4167
4168 test_56k() {
4169         TDIR=$DIR/${tdir}g
4170         setup_56_special $NUMFILES $NUMDIRS
4171
4172         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4173         CMD="$LFIND -type f $TDIR"
4174         NUMS=$($CMD | wc -l)
4175         [ $NUMS -eq $EXPECTED ] ||
4176                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4177 }
4178 run_test 56k "check lfs find -type f ============================="
4179
4180 test_56l() {
4181         TDIR=$DIR/${tdir}g
4182         setup_56_special $NUMFILES $NUMDIRS
4183
4184         EXPECTED=$((NUMDIRS + NUMFILES))
4185         CMD="$LFIND -type b $TDIR"
4186         NUMS=$($CMD | wc -l)
4187         [ $NUMS -eq $EXPECTED ] ||
4188                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4189 }
4190 run_test 56l "check lfs find -type b ============================="
4191
4192 test_56m() {
4193         TDIR=$DIR/${tdir}g
4194         setup_56_special $NUMFILES $NUMDIRS
4195
4196         EXPECTED=$((NUMDIRS + NUMFILES))
4197         CMD="$LFIND -type c $TDIR"
4198         NUMS=$($CMD | wc -l)
4199         [ $NUMS -eq $EXPECTED ] ||
4200                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4201 }
4202 run_test 56m "check lfs find -type c ============================="
4203
4204 test_56n() {
4205         TDIR=$DIR/${tdir}g
4206         setup_56_special $NUMFILES $NUMDIRS
4207
4208         EXPECTED=$((NUMDIRS + NUMFILES))
4209         CMD="$LFIND -type l $TDIR"
4210         NUMS=$($CMD | wc -l)
4211         [ $NUMS -eq $EXPECTED ] ||
4212                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4213 }
4214 run_test 56n "check lfs find -type l ============================="
4215
4216 test_56o() {
4217         TDIR=$DIR/${tdir}o
4218         setup_56 $NUMFILES $NUMDIRS
4219
4220         utime $TDIR/file1 > /dev/null || error "utime (1)"
4221         utime $TDIR/file2 > /dev/null || error "utime (2)"
4222         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4223         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4224         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4225         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4226
4227         EXPECTED=4
4228         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4229         [ $NUMS -eq $EXPECTED ] || \
4230                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4231
4232         EXPECTED=12
4233         CMD="$LFIND -mtime 0 $TDIR"
4234         NUMS=$($CMD | wc -l)
4235         [ $NUMS -eq $EXPECTED ] ||
4236                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4237 }
4238 run_test 56o "check lfs find -mtime for old files =========================="
4239
4240 test_56p() {
4241         [ $RUNAS_ID -eq $UID ] &&
4242                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4243
4244         TDIR=$DIR/${tdir}p
4245         setup_56 $NUMFILES $NUMDIRS
4246
4247         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4248         EXPECTED=$NUMFILES
4249         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4250         NUMS=$($CMD | wc -l)
4251         [ $NUMS -eq $EXPECTED ] || \
4252                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4253
4254         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4255         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4256         NUMS=$($CMD | wc -l)
4257         [ $NUMS -eq $EXPECTED ] || \
4258                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4259 }
4260 run_test 56p "check lfs find -uid and ! -uid ==============================="
4261
4262 test_56q() {
4263         [ $RUNAS_ID -eq $UID ] &&
4264                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4265
4266         TDIR=$DIR/${tdir}q
4267         setup_56 $NUMFILES $NUMDIRS
4268
4269         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4270
4271         EXPECTED=$NUMFILES
4272         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4273         NUMS=$($CMD | wc -l)
4274         [ $NUMS -eq $EXPECTED ] ||
4275                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4276
4277         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4278         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4279         NUMS=$($CMD | wc -l)
4280         [ $NUMS -eq $EXPECTED ] ||
4281                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4282 }
4283 run_test 56q "check lfs find -gid and ! -gid ==============================="
4284
4285 test_56r() {
4286         TDIR=$DIR/${tdir}r
4287         setup_56 $NUMFILES $NUMDIRS
4288
4289         EXPECTED=12
4290         CMD="$LFIND -size 0 -type f $TDIR"
4291         NUMS=$($CMD | wc -l)
4292         [ $NUMS -eq $EXPECTED ] ||
4293                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4294         EXPECTED=0
4295         CMD="$LFIND ! -size 0 -type f $TDIR"
4296         NUMS=$($CMD | wc -l)
4297         [ $NUMS -eq $EXPECTED ] ||
4298                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4299         echo "test" > $TDIR/$tfile
4300         echo "test2" > $TDIR/$tfile.2 && sync
4301         EXPECTED=1
4302         CMD="$LFIND -size 5 -type f $TDIR"
4303         NUMS=$($CMD | wc -l)
4304         [ $NUMS -eq $EXPECTED ] ||
4305                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4306         EXPECTED=1
4307         CMD="$LFIND -size +5 -type f $TDIR"
4308         NUMS=$($CMD | wc -l)
4309         [ $NUMS -eq $EXPECTED ] ||
4310                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4311         EXPECTED=2
4312         CMD="$LFIND -size +0 -type f $TDIR"
4313         NUMS=$($CMD | wc -l)
4314         [ $NUMS -eq $EXPECTED ] ||
4315                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4316         EXPECTED=2
4317         CMD="$LFIND ! -size -5 -type f $TDIR"
4318         NUMS=$($CMD | wc -l)
4319         [ $NUMS -eq $EXPECTED ] ||
4320                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4321         EXPECTED=12
4322         CMD="$LFIND -size -5 -type f $TDIR"
4323         NUMS=$($CMD | wc -l)
4324         [ $NUMS -eq $EXPECTED ] ||
4325                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4326 }
4327 run_test 56r "check lfs find -size works =========================="
4328
4329 test_56s() { # LU-611
4330         TDIR=$DIR/${tdir}s
4331         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4332
4333         if [ $OSTCOUNT -gt 1 ]; then
4334                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4335                 ONESTRIPE=4
4336                 EXTRA=4
4337         else
4338                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4339                 EXTRA=0
4340         fi
4341
4342         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4343         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4344         NUMS=$($CMD | wc -l)
4345         [ $NUMS -eq $EXPECTED ] ||
4346                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4347
4348         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4349         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4350         NUMS=$($CMD | wc -l)
4351         [ $NUMS -eq $EXPECTED ] ||
4352                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4353
4354         EXPECTED=$ONESTRIPE
4355         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4356         NUMS=$($CMD | wc -l)
4357         [ $NUMS -eq $EXPECTED ] ||
4358                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4359
4360         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4361         NUMS=$($CMD | wc -l)
4362         [ $NUMS -eq $EXPECTED ] ||
4363                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4364
4365         EXPECTED=0
4366         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4367         NUMS=$($CMD | wc -l)
4368         [ $NUMS -eq $EXPECTED ] ||
4369                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4370 }
4371 run_test 56s "check lfs find -stripe-count works"
4372
4373 test_56t() { # LU-611
4374         TDIR=$DIR/${tdir}t
4375         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4376
4377         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4378
4379         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4380         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4381         NUMS=$($CMD | wc -l)
4382         [ $NUMS -eq $EXPECTED ] ||
4383                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4384
4385         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4386         NUMS=$($CMD | wc -l)
4387         [ $NUMS -eq $EXPECTED ] ||
4388                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4389
4390         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4391         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4392         NUMS=$($CMD | wc -l)
4393         [ $NUMS -eq $EXPECTED ] ||
4394                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4395
4396         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4397         NUMS=$($CMD | wc -l)
4398         [ $NUMS -eq $EXPECTED ] ||
4399                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4400
4401         EXPECTED=4
4402         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4403         NUMS=$($CMD | wc -l)
4404         [ $NUMS -eq $EXPECTED ] ||
4405                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4406
4407         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4408         NUMS=$($CMD | wc -l)
4409         [ $NUMS -eq $EXPECTED ] ||
4410                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4411
4412         EXPECTED=0
4413         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4414         NUMS=$($CMD | wc -l)
4415         [ $NUMS -eq $EXPECTED ] ||
4416                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4417 }
4418 run_test 56t "check lfs find -stripe-size works"
4419
4420 test_56u() { # LU-611
4421         TDIR=$DIR/${tdir}u
4422         setup_56 $NUMFILES $NUMDIRS "-i 0"
4423
4424         if [ $OSTCOUNT -gt 1 ]; then
4425                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4426                 ONESTRIPE=4
4427         else
4428                 ONESTRIPE=0
4429         fi
4430
4431         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4432         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4433         NUMS=$($CMD | wc -l)
4434         [ $NUMS -eq $EXPECTED ] ||
4435                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4436
4437         EXPECTED=$ONESTRIPE
4438         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4439         NUMS=$($CMD | wc -l)
4440         [ $NUMS -eq $EXPECTED ] ||
4441                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4442
4443         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4444         NUMS=$($CMD | wc -l)
4445         [ $NUMS -eq $EXPECTED ] ||
4446                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4447
4448         EXPECTED=0
4449         # This should produce an error and not return any files
4450         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4451         NUMS=$($CMD 2>/dev/null | wc -l)
4452         [ $NUMS -eq $EXPECTED ] ||
4453                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4454
4455         if [ $OSTCOUNT -gt 1 ]; then
4456                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4457                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4458                 NUMS=$($CMD | wc -l)
4459                 [ $NUMS -eq $EXPECTED ] ||
4460                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4461         fi
4462 }
4463 run_test 56u "check lfs find -stripe-index works"
4464
4465 test_56v() {
4466     local MDT_IDX=0
4467
4468     TDIR=$DIR/${tdir}v
4469     rm -rf $TDIR
4470     setup_56 $NUMFILES $NUMDIRS
4471
4472     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4473     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4474
4475     for file in $($LFIND -mdt $UUID $TDIR); do
4476         file_mdt_idx=$($GETSTRIPE -M $file)
4477         [ $file_mdt_idx -eq $MDT_IDX ] ||
4478             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4479     done
4480 }
4481 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4482
4483 # Get and check the actual stripe count of one file.
4484 # Usage: check_stripe_count <file> <expected_stripe_count>
4485 check_stripe_count() {
4486     local file=$1
4487     local expected=$2
4488     local actual
4489
4490     [[ -z "$file" || -z "$expected" ]] &&
4491         error "check_stripe_count: invalid argument!"
4492
4493     local cmd="$GETSTRIPE -c $file"
4494     actual=$($cmd) || error "$cmd failed"
4495     actual=${actual%% *}
4496
4497     if [[ $actual -ne $expected ]]; then
4498         [[ $expected -eq -1 ]] ||
4499             error "$cmd wrong: found $actual, expected $expected"
4500         [[ $actual -eq $OSTCOUNT ]] ||
4501             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4502     fi
4503 }
4504
4505 test_56w() {
4506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4507         TDIR=$DIR/${tdir}w
4508
4509     rm -rf $TDIR || error "remove $TDIR failed"
4510     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4511
4512     local stripe_size
4513     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4514         error "$GETSTRIPE -S -d $TDIR failed"
4515     stripe_size=${stripe_size%% *}
4516
4517     local file_size=$((stripe_size * OSTCOUNT))
4518     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4519     local required_space=$((file_num * file_size))
4520     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4521     [[ $free_space -le $((required_space / 1024)) ]] &&
4522         skip_env "need at least $required_space bytes free space," \
4523                  "have $free_space kbytes" && return
4524
4525     local dd_bs=65536
4526     local dd_count=$((file_size / dd_bs))
4527
4528     # write data into the files
4529     local i
4530     local j
4531     local file
4532     for i in $(seq 1 $NUMFILES); do
4533         file=$TDIR/file$i
4534         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4535             error "write data into $file failed"
4536     done
4537     for i in $(seq 1 $NUMDIRS); do
4538         for j in $(seq 1 $NUMFILES); do
4539             file=$TDIR/dir$i/file$j
4540             yes | dd bs=$dd_bs count=$dd_count of=$file \
4541                 >/dev/null 2>&1 ||
4542                 error "write data into $file failed"
4543         done
4544     done
4545
4546     local expected=-1
4547     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4548
4549     # lfs_migrate file
4550     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4551     echo "$cmd"
4552     eval $cmd || error "$cmd failed"
4553
4554     check_stripe_count $TDIR/file1 $expected
4555
4556     # lfs_migrate dir
4557     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4558     echo "$cmd"
4559     eval $cmd || error "$cmd failed"
4560
4561     for j in $(seq 1 $NUMFILES); do
4562         check_stripe_count $TDIR/dir1/file$j $expected
4563     done
4564
4565     # lfs_migrate works with lfs find
4566     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4567          $LFS_MIGRATE -y -c $expected"
4568     echo "$cmd"
4569     eval $cmd || error "$cmd failed"
4570
4571     for i in $(seq 2 $NUMFILES); do
4572         check_stripe_count $TDIR/file$i $expected
4573     done
4574     for i in $(seq 2 $NUMDIRS); do
4575         for j in $(seq 1 $NUMFILES); do
4576             check_stripe_count $TDIR/dir$i/file$j $expected
4577         done
4578     done
4579 }
4580 run_test 56w "check lfs_migrate -c stripe_count works"
4581
4582 test_56x() {
4583         check_swap_layouts_support && return 0
4584         [ "$OSTCOUNT" -lt "2" ] &&
4585                 skip_env "need 2 OST, skipping test" && return
4586
4587         local dir0=$DIR/$tdir/$testnum
4588         mkdir -p $dir0 || error "creating dir $dir0"
4589
4590         local ref1=/etc/passwd
4591         local file1=$dir0/file1
4592
4593         $SETSTRIPE -c 2 $file1
4594         cp $ref1 $file1
4595         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4596         stripe=$($GETSTRIPE -c $file1)
4597         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4598         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4599
4600         # clean up
4601         rm -f $file1
4602 }
4603 run_test 56x "lfs migration support"
4604
4605 test_56y() {
4606         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4607                 skip "No HSM support on MDS of $(get_lustre_version)," \
4608                          "need 2.4.53 at least" && return
4609         local res=""
4610
4611         local dir0=$DIR/$tdir/$testnum
4612         mkdir -p $dir0 || error "creating dir $dir0"
4613         local f1=$dir0/file1
4614         local f2=$dir0/file2
4615
4616         touch $f1 || error "creating std file $f1"
4617         $MULTIOP $f2 H2c || error "creating released file $f2"
4618
4619         # a directory can be raid0, so ask only for files
4620         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4621         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4622
4623         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4624         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4625
4626         # only files can be released, so no need to force file search
4627         res=$($LFIND $dir0 -L released)
4628         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4629
4630         res=$($LFIND $dir0 \! -L released)
4631         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4632
4633 }
4634 run_test 56y "lfs find -L raid0|released"
4635
4636 test_57a() {
4637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4638         # note test will not do anything if MDS is not local
4639         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4640                 skip "Only applicable to ldiskfs-based MDTs"
4641                 return
4642         fi
4643
4644         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4645         local MNTDEV="osd*.*MDT*.mntdev"
4646         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4647         [ -z "$DEV" ] && error "can't access $MNTDEV"
4648         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4649                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4650                         error "can't access $DEV"
4651                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4652                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4653                 rm $TMP/t57a.dump
4654         done
4655 }
4656 run_test 57a "verify MDS filesystem created with large inodes =="
4657
4658 test_57b() {
4659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4660         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4661                 skip "Only applicable to ldiskfs-based MDTs"
4662                 return
4663         fi
4664
4665         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4666         local dir=$DIR/d57b
4667
4668         local FILECOUNT=100
4669         local FILE1=$dir/f1
4670         local FILEN=$dir/f$FILECOUNT
4671
4672         rm -rf $dir || error "removing $dir"
4673         test_mkdir -p $dir || error "creating $dir"
4674         local num=$(get_mds_dir $dir)
4675         local mymds=mds$num
4676
4677         echo "mcreating $FILECOUNT files"
4678         createmany -m $dir/f 1 $FILECOUNT || \
4679                 error "creating files in $dir"
4680
4681         # verify that files do not have EAs yet
4682         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4683         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4684
4685         sync
4686         sleep 1
4687         df $dir  #make sure we get new statfs data
4688         local MDSFREE=$(do_facet $mymds \
4689                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4690         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4691         echo "opening files to create objects/EAs"
4692         local FILE
4693         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4694                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4695         done
4696
4697         # verify that files have EAs now
4698         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4699         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4700
4701         sleep 1  #make sure we get new statfs data
4702         df $dir
4703         local MDSFREE2=$(do_facet $mymds \
4704                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4705         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4706         if [ "$MDCFREE2" -lt "$((MDCFREE - 16))" ]; then
4707                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4708                         error "MDC before $MDCFREE != after $MDCFREE2"
4709                 else
4710                         echo "MDC before $MDCFREE != after $MDCFREE2"
4711                         echo "unable to confirm if MDS has large inodes"
4712                 fi
4713         fi
4714         rm -rf $dir
4715 }
4716 run_test 57b "default LOV EAs are stored inside large inodes ==="
4717
4718 test_58() {
4719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4720         [ -z "$(which wiretest 2>/dev/null)" ] &&
4721                         skip_env "could not find wiretest" && return
4722         wiretest
4723 }
4724 run_test 58 "verify cross-platform wire constants =============="
4725
4726 test_59() {
4727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4728         echo "touch 130 files"
4729         createmany -o $DIR/f59- 130
4730         echo "rm 130 files"
4731         unlinkmany $DIR/f59- 130
4732         sync
4733         # wait for commitment of removal
4734         wait_delete_completed
4735 }
4736 run_test 59 "verify cancellation of llog records async ========="
4737
4738 TEST60_HEAD="test_60 run $RANDOM"
4739 test_60a() {
4740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4741         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4742         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4743                 skip_env "missing subtest run-llog.sh" && return
4744         log "$TEST60_HEAD - from kernel mode"
4745         do_facet mgs sh run-llog.sh
4746 }
4747 run_test 60a "llog sanity tests run from kernel module =========="
4748
4749 test_60b() { # bug 6411
4750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4751         dmesg > $DIR/$tfile
4752         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4753                                  /llog.test/ {
4754                                          if (marker)
4755                                                  from_marker++
4756                                          from_begin++
4757                                  }
4758                                  END {
4759                                          if (marker)
4760                                                  print from_marker
4761                                          else
4762                                                  print from_begin
4763                                  }"`
4764         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4765 }
4766 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4767
4768 test_60c() {
4769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4770         echo "create 5000 files"
4771         createmany -o $DIR/f60c- 5000
4772 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4773         lctl set_param fail_loc=0x80000137
4774         unlinkmany $DIR/f60c- 5000
4775         lctl set_param fail_loc=0
4776 }
4777 run_test 60c "unlink file when mds full"
4778
4779 test_60d() {
4780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4781         SAVEPRINTK=$(lctl get_param -n printk)
4782
4783         # verify "lctl mark" is even working"
4784         MESSAGE="test message ID $RANDOM $$"
4785         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4786         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4787
4788         lctl set_param printk=0 || error "set lnet.printk failed"
4789         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4790         MESSAGE="new test message ID $RANDOM $$"
4791         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4792         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4793         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4794
4795         lctl set_param -n printk="$SAVEPRINTK"
4796 }
4797 run_test 60d "test printk console message masking"
4798
4799 test_61() {
4800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4801         f="$DIR/f61"
4802         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4803         cancel_lru_locks osc
4804         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4805         sync
4806 }
4807 run_test 61 "mmap() writes don't make sync hang ================"
4808
4809 # bug 2330 - insufficient obd_match error checking causes LBUG
4810 test_62() {
4811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4812         f="$DIR/f62"
4813         echo foo > $f
4814         cancel_lru_locks osc
4815         lctl set_param fail_loc=0x405
4816         cat $f && error "cat succeeded, expect -EIO"
4817         lctl set_param fail_loc=0
4818 }
4819 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4820 # match every page all of the time.
4821 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4822
4823 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4824 test_63a() {    # was test_63
4825         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4826         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4827         lctl set_param -n osc.*.max_dirty_mb 0
4828         for i in `seq 10` ; do
4829                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4830                 sleep 5
4831                 kill $!
4832                 sleep 1
4833         done
4834
4835         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4836         rm -f $DIR/f63 || true
4837 }
4838 run_test 63a "Verify oig_wait interruption does not crash ======="
4839
4840 # bug 2248 - async write errors didn't return to application on sync
4841 # bug 3677 - async write errors left page locked
4842 test_63b() {
4843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4844         debugsave
4845         lctl set_param debug=-1
4846
4847         # ensure we have a grant to do async writes
4848         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4849         rm $DIR/$tfile
4850
4851         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4852         lctl set_param fail_loc=0x80000406
4853         $MULTIOP $DIR/$tfile Owy && \
4854                 error "sync didn't return ENOMEM"
4855         sync; sleep 2; sync     # do a real sync this time to flush page
4856         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4857                 error "locked page left in cache after async error" || true
4858         debugrestore
4859 }
4860 run_test 63b "async write errors should be returned to fsync ==="
4861
4862 test_64a () {
4863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4864         df $DIR
4865         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4866 }
4867 run_test 64a "verify filter grant calculations (in kernel) ====="
4868
4869 test_64b () {
4870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4871         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4872 }
4873 run_test 64b "check out-of-space detection on client ==========="
4874
4875 test_64c() {
4876         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4877 }
4878 run_test 64c "verify grant shrink ========================------"
4879
4880 # bug 1414 - set/get directories' stripe info
4881 test_65a() {
4882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4883         test_mkdir -p $DIR/$tdir
4884         touch $DIR/$tdir/f1
4885         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4886 }
4887 run_test 65a "directory with no stripe info ===================="
4888
4889 test_65b() {
4890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4891         test_mkdir -p $DIR/$tdir
4892         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4893                                                 error "setstripe"
4894         touch $DIR/$tdir/f2
4895         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4896 }
4897 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4898
4899 test_65c() {
4900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4901         if [ $OSTCOUNT -gt 1 ]; then
4902                 test_mkdir -p $DIR/$tdir
4903                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4904                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4905                 touch $DIR/$tdir/f3
4906                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4907         fi
4908 }
4909 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4910
4911 test_65d() {
4912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4913         test_mkdir -p $DIR/$tdir
4914         if [ $STRIPECOUNT -le 0 ]; then
4915                 sc=1
4916         elif [ $STRIPECOUNT -gt 2000 ]; then
4917 #LOV_MAX_STRIPE_COUNT is 2000
4918                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4919         else
4920                 sc=$(($STRIPECOUNT - 1))
4921         fi
4922         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4923         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4924         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4925                                                 error "lverify failed"
4926 }
4927 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4928
4929 test_65e() {
4930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4931         test_mkdir -p $DIR/$tdir
4932
4933         $SETSTRIPE $DIR/$tdir || error "setstripe"
4934         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4935                                         error "no stripe info failed"
4936         touch $DIR/$tdir/f6
4937         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4938 }
4939 run_test 65e "directory setstripe defaults ======================="
4940
4941 test_65f() {
4942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4943         test_mkdir -p $DIR/${tdir}f
4944         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4945 }
4946 run_test 65f "dir setstripe permission (should return error) ==="
4947
4948 test_65g() {
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         test_mkdir -p $DIR/$tdir
4951         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4952                                                         error "setstripe"
4953         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4954         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4955                 error "delete default stripe failed"
4956 }
4957 run_test 65g "directory setstripe -d ==========================="
4958
4959 test_65h() {
4960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4961         test_mkdir -p $DIR/$tdir
4962         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4963                                                         error "setstripe"
4964         test_mkdir -p $DIR/$tdir/dd1
4965         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4966                 error "stripe info inherit failed"
4967 }
4968 run_test 65h "directory stripe info inherit ===================="
4969
4970 test_65i() { # bug6367
4971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4972         $SETSTRIPE -S 65536 -c -1 $MOUNT
4973 }
4974 run_test 65i "set non-default striping on root directory (bug 6367)="
4975
4976 test_65ia() { # bug12836
4977         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4978         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4979 }
4980 run_test 65ia "getstripe on -1 default directory striping"
4981
4982 test_65ib() { # bug12836
4983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4984         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4985 }
4986 run_test 65ib "getstripe -v on -1 default directory striping"
4987
4988 test_65ic() { # bug12836
4989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4990         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4991 }
4992 run_test 65ic "new find on -1 default directory striping"
4993
4994 test_65j() { # bug6367
4995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4996         sync; sleep 1
4997         # if we aren't already remounting for each test, do so for this test
4998         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4999                 cleanup || error "failed to unmount"
5000                 setup
5001         fi
5002         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5003 }
5004 run_test 65j "set default striping on root directory (bug 6367)="
5005
5006 test_65k() { # bug11679
5007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5008         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
5009         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5010
5011     echo "Check OST status: "
5012     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5013               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5014
5015     for OSC in $MDS_OSCS; do
5016         echo $OSC "is activate"
5017         do_facet $SINGLEMDS lctl --device %$OSC activate
5018     done
5019
5020     mkdir -p $DIR/$tdir
5021     for INACTIVE_OSC in $MDS_OSCS; do
5022         echo "Deactivate: " $INACTIVE_OSC
5023         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5024         for STRIPE_OSC in $MDS_OSCS; do
5025             OST=`osc_to_ost $STRIPE_OSC`
5026             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5027                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5028
5029             [ -f $DIR/$tdir/$IDX ] && continue
5030             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5031             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5032             RC=$?
5033             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5034         done
5035         rm -f $DIR/$tdir/*
5036         echo $INACTIVE_OSC "is Activate."
5037         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5038     done
5039 }
5040 run_test 65k "validate manual striping works properly with deactivated OSCs"
5041
5042 test_65l() { # bug 12836
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         test_mkdir -p $DIR/$tdir/test_dir
5045         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5046         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5047 }
5048 run_test 65l "lfs find on -1 stripe dir ========================"
5049
5050 # bug 2543 - update blocks count on client
5051 test_66() {
5052         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5053         COUNT=${COUNT:-8}
5054         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5055         sync; sync_all_data; sync; sync_all_data
5056         cancel_lru_locks osc
5057         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5058         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5059 }
5060 run_test 66 "update inode blocks count on client ==============="
5061
5062 LLOOP=
5063 LLITELOOPLOAD=
5064 cleanup_68() {
5065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5066         trap 0
5067         if [ ! -z "$LLOOP" ]; then
5068                 if swapon -s | grep -q $LLOOP; then
5069                         swapoff $LLOOP || error "swapoff failed"
5070                 fi
5071
5072                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5073                 rm -f $LLOOP
5074                 unset LLOOP
5075         fi
5076         if [ ! -z "$LLITELOOPLOAD" ]; then
5077                 rmmod llite_lloop
5078                 unset LLITELOOPLOAD
5079         fi
5080         rm -f $DIR/f68*
5081 }
5082
5083 meminfo() {
5084         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5085 }
5086
5087 swap_used() {
5088         swapon -s | awk '($1 == "'$1'") { print $4 }'
5089 }
5090
5091 # test case for lloop driver, basic function
5092 test_68a() {
5093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5094         [ "$UID" != 0 ] && skip_env "must run as root" && return
5095         llite_lloop_enabled || \
5096                 { skip_env "llite_lloop module disabled" && return; }
5097
5098         trap cleanup_68 EXIT
5099
5100         if ! module_loaded llite_lloop; then
5101                 if load_module llite/llite_lloop; then
5102                         LLITELOOPLOAD=yes
5103                 else
5104                         skip_env "can't find module llite_lloop"
5105                         return
5106                 fi
5107         fi
5108
5109         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5110         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5111         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5112
5113         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5114         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5115
5116         cleanup_68
5117 }
5118 run_test 68a "lloop driver - basic test ========================"
5119
5120 # excercise swapping to lustre by adding a high priority swapfile entry
5121 # and then consuming memory until it is used.
5122 test_68b() {  # was test_68
5123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5124         [ "$UID" != 0 ] && skip_env "must run as root" && return
5125         lctl get_param -n devices | grep -q obdfilter && \
5126                 skip "local OST" && return
5127
5128         grep -q llite_lloop /proc/modules
5129         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5130
5131         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5132                 skip "can't reliably test swap with TCP" && return
5133
5134         MEMTOTAL=`meminfo MemTotal`
5135         NR_BLOCKS=$((MEMTOTAL>>8))
5136         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5137
5138         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5139         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5140         mkswap $DIR/f68b
5141
5142         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5143
5144         trap cleanup_68 EXIT
5145
5146         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5147
5148         echo "before: `swapon -s | grep $LLOOP`"
5149         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5150         echo "after: `swapon -s | grep $LLOOP`"
5151         SWAPUSED=`swap_used $LLOOP`
5152
5153         cleanup_68
5154
5155         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5156 }
5157 run_test 68b "support swapping to Lustre ========================"
5158
5159 # bug5265, obdfilter oa2dentry return -ENOENT
5160 # #define OBD_FAIL_OST_ENOENT 0x217
5161 test_69() {
5162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5163         remote_ost_nodsh && skip "remote OST with nodsh" && return
5164
5165         f="$DIR/$tfile"
5166         $SETSTRIPE -c 1 -i 0 $f
5167
5168         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5169
5170         do_facet ost1 lctl set_param fail_loc=0x217
5171         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5172         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5173
5174         do_facet ost1 lctl set_param fail_loc=0
5175         $DIRECTIO write $f 0 2 || error "write error"
5176
5177         cancel_lru_locks osc
5178         $DIRECTIO read $f 0 1 || error "read error"
5179
5180         do_facet ost1 lctl set_param fail_loc=0x217
5181         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5182
5183         do_facet ost1 lctl set_param fail_loc=0
5184         rm -f $f
5185 }
5186 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5187
5188 test_71() {
5189     test_mkdir -p $DIR/$tdir
5190     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5191 }
5192 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5193
5194 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5196         [ "$RUNAS_ID" = "$UID" ] &&
5197                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5198
5199         # Check that testing environment is properly set up. Skip if not
5200         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5201                 skip_env "User $RUNAS_ID does not exist - skipping"
5202                 return 0
5203         }
5204         # We had better clear the $DIR to get enough space for dd
5205         rm -rf $DIR/*
5206         touch $DIR/$tfile
5207         chmod 777 $DIR/$tfile
5208         chmod ug+s $DIR/$tfile
5209         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5210                 error "$RUNAS dd $DIR/$tfile failed"
5211         # See if we are still setuid/sgid
5212         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5213                 error "S/gid is not dropped on write"
5214         # Now test that MDS is updated too
5215         cancel_lru_locks mdc
5216         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5217                 error "S/gid is not dropped on MDS"
5218         rm -f $DIR/$tfile
5219 }
5220 run_test 72a "Test that remove suid works properly (bug5695) ===="
5221
5222 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5223         local perm
5224
5225         [ "$RUNAS_ID" = "$UID" ] && \
5226                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5227         [ "$RUNAS_ID" -eq 0 ] && \
5228                 skip_env "RUNAS_ID = 0 -- skipping" && return
5229
5230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5231         # Check that testing environment is properly set up. Skip if not
5232         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5233                 skip_env "User $RUNAS_ID does not exist - skipping"
5234                 return 0
5235         }
5236         touch $DIR/${tfile}-f{g,u}
5237         test_mkdir $DIR/${tfile}-dg
5238         test_mkdir $DIR/${tfile}-du
5239         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5240         chmod g+s $DIR/${tfile}-{f,d}g
5241         chmod u+s $DIR/${tfile}-{f,d}u
5242         for perm in 777 2777 4777; do
5243                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5244                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5245                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5246                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5247         done
5248         true
5249 }
5250 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5251
5252 # bug 3462 - multiple simultaneous MDC requests
5253 test_73() {
5254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5255         test_mkdir $DIR/d73-1
5256         test_mkdir $DIR/d73-2
5257         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5258         pid1=$!
5259
5260         lctl set_param fail_loc=0x80000129
5261         $MULTIOP $DIR/d73-1/f73-2 Oc &
5262         sleep 1
5263         lctl set_param fail_loc=0
5264
5265         $MULTIOP $DIR/d73-2/f73-3 Oc &
5266         pid3=$!
5267
5268         kill -USR1 $pid1
5269         wait $pid1 || return 1
5270
5271         sleep 25
5272
5273         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5274         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5275         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5276
5277         rm -rf $DIR/d73-*
5278 }
5279 run_test 73 "multiple MDC requests (should not deadlock)"
5280
5281 test_74a() { # bug 6149, 6184
5282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5283         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5284         #
5285         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5286         # will spin in a tight reconnection loop
5287         touch $DIR/f74a
5288         lctl set_param fail_loc=0x8000030e
5289         # get any lock that won't be difficult - lookup works.
5290         ls $DIR/f74a
5291         lctl set_param fail_loc=0
5292         true
5293         rm -f $DIR/f74a
5294 }
5295 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5296
5297 test_74b() { # bug 13310
5298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5299         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5300         #
5301         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5302         # will spin in a tight reconnection loop
5303         lctl set_param fail_loc=0x8000030e
5304         # get a "difficult" lock
5305         touch $DIR/f74b
5306         lctl set_param fail_loc=0
5307         true
5308         rm -f $DIR/f74b
5309 }
5310 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5311
5312 test_74c() {
5313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5314 #define OBD_FAIL_LDLM_NEW_LOCK
5315         lctl set_param fail_loc=0x80000319
5316         touch $DIR/$tfile && error "Touch successful"
5317         true
5318 }
5319 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5320
5321 num_inodes() {
5322         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5323 }
5324
5325 get_inode_slab_tunables() {
5326         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5327 }
5328
5329 set_inode_slab_tunables() {
5330         echo "lustre_inode_cache $1" > /proc/slabinfo
5331 }
5332
5333 test_76() { # Now for bug 20433, added originally in bug 1443
5334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5335         local SLAB_SETTINGS=`get_inode_slab_tunables`
5336         local CPUS=`getconf _NPROCESSORS_ONLN`
5337         # we cannot set limit below 1 which means 1 inode in each
5338         # per-cpu cache is still allowed
5339         set_inode_slab_tunables "1 1 0"
5340         cancel_lru_locks osc
5341         BEFORE_INODES=`num_inodes`
5342         echo "before inodes: $BEFORE_INODES"
5343         local COUNT=1000
5344         [ "$SLOW" = "no" ] && COUNT=100
5345         for i in `seq $COUNT`; do
5346                 touch $DIR/$tfile
5347                 rm -f $DIR/$tfile
5348         done
5349         cancel_lru_locks osc
5350         AFTER_INODES=`num_inodes`
5351         echo "after inodes: $AFTER_INODES"
5352         local wait=0
5353         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5354                 sleep 2
5355                 AFTER_INODES=`num_inodes`
5356                 wait=$((wait+2))
5357                 echo "wait $wait seconds inodes: $AFTER_INODES"
5358                 if [ $wait -gt 30 ]; then
5359                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5360                 fi
5361         done
5362         set_inode_slab_tunables "$SLAB_SETTINGS"
5363 }
5364 run_test 76 "confirm clients recycle inodes properly ===="
5365
5366
5367 export ORIG_CSUM=""
5368 set_checksums()
5369 {
5370         # Note: in sptlrpc modes which enable its own bulk checksum, the
5371         # original crc32_le bulk checksum will be automatically disabled,
5372         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5373         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5374         # In this case set_checksums() will not be no-op, because sptlrpc
5375         # bulk checksum will be enabled all through the test.
5376
5377         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5378         lctl set_param -n osc.*.checksums $1
5379         return 0
5380 }
5381
5382 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5383                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5384 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5385 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5386 set_checksum_type()
5387 {
5388         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5389         log "set checksum type to $1"
5390         return 0
5391 }
5392 F77_TMP=$TMP/f77-temp
5393 F77SZ=8
5394 setup_f77() {
5395         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5396                 error "error writing to $F77_TMP"
5397 }
5398
5399 test_77a() { # bug 10889
5400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5401         $GSS && skip "could not run with gss" && return
5402         [ ! -f $F77_TMP ] && setup_f77
5403         set_checksums 1
5404         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5405         set_checksums 0
5406         rm -f $DIR/$tfile
5407 }
5408 run_test 77a "normal checksum read/write operation"
5409
5410 test_77b() { # bug 10889
5411         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5412         $GSS && skip "could not run with gss" && return
5413         [ ! -f $F77_TMP ] && setup_f77
5414         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5415         $LCTL set_param fail_loc=0x80000409
5416         set_checksums 1
5417
5418         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5419                 error "dd error: $?"
5420         $LCTL set_param fail_loc=0
5421
5422         for algo in $CKSUM_TYPES; do
5423                 cancel_lru_locks osc
5424                 set_checksum_type $algo
5425                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5426                 $LCTL set_param fail_loc=0x80000408
5427                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5428                 $LCTL set_param fail_loc=0
5429         done
5430         set_checksums 0
5431         set_checksum_type $ORIG_CSUM_TYPE
5432         rm -f $DIR/$tfile
5433 }
5434 run_test 77b "checksum error on client write, read"
5435
5436 test_77d() { # bug 10889
5437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5438         $GSS && skip "could not run with gss" && return
5439         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5440         $LCTL set_param fail_loc=0x80000409
5441         set_checksums 1
5442         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5443                 error "direct write: rc=$?"
5444         $LCTL set_param fail_loc=0
5445         set_checksums 0
5446
5447         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5448         $LCTL set_param fail_loc=0x80000408
5449         set_checksums 1
5450         cancel_lru_locks osc
5451         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5452                 error "direct read: rc=$?"
5453         $LCTL set_param fail_loc=0
5454         set_checksums 0
5455 }
5456 run_test 77d "checksum error on OST direct write, read"
5457
5458 test_77f() { # bug 10889
5459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5460         $GSS && skip "could not run with gss" && return
5461         set_checksums 1
5462         for algo in $CKSUM_TYPES; do
5463                 cancel_lru_locks osc
5464                 set_checksum_type $algo
5465                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5466                 $LCTL set_param fail_loc=0x409
5467                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5468                         error "direct write succeeded"
5469                 $LCTL set_param fail_loc=0
5470         done
5471         set_checksum_type $ORIG_CSUM_TYPE
5472         set_checksums 0
5473 }
5474 run_test 77f "repeat checksum error on write (expect error)"
5475
5476 test_77g() { # bug 10889
5477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5478         $GSS && skip "could not run with gss" && return
5479         remote_ost_nodsh && skip "remote OST with nodsh" && return
5480
5481         [ ! -f $F77_TMP ] && setup_f77
5482
5483         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5484         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5485         do_facet ost1 lctl set_param fail_loc=0x8000021a
5486         set_checksums 1
5487         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5488                 error "write error: rc=$?"
5489         do_facet ost1 lctl set_param fail_loc=0
5490         set_checksums 0
5491
5492         cancel_lru_locks osc
5493         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5494         do_facet ost1 lctl set_param fail_loc=0x8000021b
5495         set_checksums 1
5496         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5497         do_facet ost1 lctl set_param fail_loc=0
5498         set_checksums 0
5499 }
5500 run_test 77g "checksum error on OST write, read"
5501
5502 test_77i() { # bug 13805
5503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5504         $GSS && skip "could not run with gss" && return
5505         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5506         lctl set_param fail_loc=0x40b
5507         remount_client $MOUNT
5508         lctl set_param fail_loc=0
5509         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5510                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5511                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5512                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5513         done
5514         remount_client $MOUNT
5515 }
5516 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5517
5518 test_77j() { # bug 13805
5519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5520         $GSS && skip "could not run with gss" && return
5521         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5522         lctl set_param fail_loc=0x40c
5523         remount_client $MOUNT
5524         lctl set_param fail_loc=0
5525         sleep 2 # wait async osc connect to finish
5526         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5527                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5528                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5529                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5530         done
5531         remount_client $MOUNT
5532 }
5533 run_test 77j "client only supporting ADLER32"
5534
5535 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5536 rm -f $F77_TMP
5537 unset F77_TMP
5538
5539 test_78() { # bug 10901
5540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5541         remote_ost || { skip_env "local OST" && return; }
5542
5543         NSEQ=5
5544         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5545         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5546         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5547         echo "MemTotal: $MEMTOTAL"
5548 # reserve 256MB of memory for the kernel and other running processes,
5549 # and then take 1/2 of the remaining memory for the read/write buffers.
5550     if [ $MEMTOTAL -gt 512 ] ;then
5551         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5552     else
5553         # for those poor memory-starved high-end clusters...
5554         MEMTOTAL=$((MEMTOTAL / 2))
5555     fi
5556         echo "Mem to use for directio: $MEMTOTAL"
5557         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5558         [ $F78SIZE -gt 512 ] && F78SIZE=512
5559         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5560         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5561         echo "Smallest OST: $SMALLESTOST"
5562         [ $SMALLESTOST -lt 10240 ] && \
5563                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5564
5565         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5566                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5567
5568         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5569         echo "File size: $F78SIZE"
5570         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5571         for i in `seq 1 $NSEQ`
5572         do
5573                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5574                 echo directIO rdwr round $i of $NSEQ
5575                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5576         done
5577
5578         rm -f $DIR/$tfile
5579 }
5580 run_test 78 "handle large O_DIRECT writes correctly ============"
5581
5582 test_79() { # bug 12743
5583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5584         wait_delete_completed
5585
5586         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5587         BKFREE=$(calc_osc_kbytes kbytesfree)
5588         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5589
5590         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5591         DFTOTAL=`echo $STRING | cut -d, -f1`
5592         DFUSED=`echo $STRING  | cut -d, -f2`
5593         DFAVAIL=`echo $STRING | cut -d, -f3`
5594         DFFREE=$(($DFTOTAL - $DFUSED))
5595
5596         ALLOWANCE=$((64 * $OSTCOUNT))
5597
5598         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5599            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5600                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5601         fi
5602         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5603            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5604                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5605         fi
5606         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5607            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5608                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5609         fi
5610 }
5611 run_test 79 "df report consistency check ======================="
5612
5613 test_80() { # bug 10718
5614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5615         # relax strong synchronous semantics for slow backends like ZFS
5616         local soc="obdfilter.*.sync_on_lock_cancel"
5617         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5618         local hosts=
5619         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5620                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5621                           facet_active_host $host; done | sort -u)
5622                 do_nodes $hosts lctl set_param $soc=never
5623         fi
5624
5625         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5626         sync; sleep 1; sync
5627         local BEFORE=`date +%s`
5628         cancel_lru_locks osc
5629         local AFTER=`date +%s`
5630         local DIFF=$((AFTER-BEFORE))
5631         if [ $DIFF -gt 1 ] ; then
5632                 error "elapsed for 1M@1T = $DIFF"
5633         fi
5634
5635         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5636
5637         rm -f $DIR/$tfile
5638 }
5639 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5640
5641 test_81a() { # LU-456
5642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5643         remote_ost_nodsh && skip "remote OST with nodsh" && return
5644         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5645         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5646         do_facet ost1 lctl set_param fail_loc=0x80000228
5647
5648         # write should trigger a retry and success
5649         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5650         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5651         RC=$?
5652         if [ $RC -ne 0 ] ; then
5653                 error "write should success, but failed for $RC"
5654         fi
5655 }
5656 run_test 81a "OST should retry write when get -ENOSPC ==============="
5657
5658 test_81b() { # LU-456
5659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5660         remote_ost_nodsh && skip "remote OST with nodsh" && return
5661         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5662         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5663         do_facet ost1 lctl set_param fail_loc=0x228
5664
5665         # write should retry several times and return -ENOSPC finally
5666         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5667         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5668         RC=$?
5669         ENOSPC=28
5670         if [ $RC -ne $ENOSPC ] ; then
5671                 error "dd should fail for -ENOSPC, but succeed."
5672         fi
5673 }
5674 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5675
5676 test_82() { # LU-1031
5677         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5678         local gid1=14091995
5679         local gid2=16022000
5680
5681         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5682         local MULTIPID1=$!
5683         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5684         local MULTIPID2=$!
5685         kill -USR1 $MULTIPID2
5686         sleep 2
5687         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5688                 error "First grouplock does not block second one"
5689         else
5690                 echo "Second grouplock blocks first one"
5691         fi
5692         kill -USR1 $MULTIPID1
5693         wait $MULTIPID1
5694         wait $MULTIPID2
5695 }
5696 run_test 82 "Basic grouplock test ==============================="
5697
5698 test_99a() {
5699         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5700                 return
5701         test_mkdir -p $DIR/d99cvsroot
5702         chown $RUNAS_ID $DIR/d99cvsroot
5703         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5704         cd $TMP
5705
5706         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5707         cd $oldPWD
5708 }
5709 run_test 99a "cvs init ========================================="
5710
5711 test_99b() {
5712         [ -z "$(which cvs 2>/dev/null)" ] &&
5713                 skip_env "could not find cvs" && return
5714         [ ! -d $DIR/d99cvsroot ] && test_99a
5715         cd /etc/init.d
5716         # some versions of cvs import exit(1) when asked to import links or
5717         # files they can't read.  ignore those files.
5718         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5719                         ! -perm +4 -printf '-I %f\n')
5720         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5721                 d99reposname vtag rtag
5722 }
5723 run_test 99b "cvs import ======================================="
5724
5725 test_99c() {
5726         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5727         [ ! -d $DIR/d99cvsroot ] && test_99b
5728         cd $DIR
5729         test_mkdir -p $DIR/d99reposname
5730         chown $RUNAS_ID $DIR/d99reposname
5731         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5732 }
5733 run_test 99c "cvs checkout ====================================="
5734
5735 test_99d() {
5736         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5737         [ ! -d $DIR/d99cvsroot ] && test_99c
5738         cd $DIR/d99reposname
5739         $RUNAS touch foo99
5740         $RUNAS cvs add -m 'addmsg' foo99
5741 }
5742 run_test 99d "cvs add =========================================="
5743
5744 test_99e() {
5745         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5746         [ ! -d $DIR/d99cvsroot ] && test_99c
5747         cd $DIR/d99reposname
5748         $RUNAS cvs update
5749 }
5750 run_test 99e "cvs update ======================================="
5751
5752 test_99f() {
5753         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5754         [ ! -d $DIR/d99cvsroot ] && test_99d
5755         cd $DIR/d99reposname
5756         $RUNAS cvs commit -m 'nomsg' foo99
5757     rm -fr $DIR/d99cvsroot
5758 }
5759 run_test 99f "cvs commit ======================================="
5760
5761 test_100() {
5762         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5763         [ "$NETTYPE" = tcp ] || \
5764                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5765                         return ; }
5766
5767         remote_ost_nodsh && skip "remote OST with nodsh" && return
5768         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5769         remote_servers || \
5770                 { skip "useless for local single node setup" && return; }
5771
5772         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5773                 [ "$PROT" != "tcp" ] && continue
5774                 RPORT=$(echo $REMOTE | cut -d: -f2)
5775                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5776
5777                 rc=0
5778                 LPORT=`echo $LOCAL | cut -d: -f2`
5779                 if [ $LPORT -ge 1024 ]; then
5780                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5781                         netstat -tna
5782                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5783                 fi
5784         done
5785         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5786 }
5787 run_test 100 "check local port using privileged port ==========="
5788
5789 function get_named_value()
5790 {
5791     local tag
5792
5793     tag=$1
5794     while read ;do
5795         line=$REPLY
5796         case $line in
5797         $tag*)
5798             echo $line | sed "s/^$tag[ ]*//"
5799             break
5800             ;;
5801         esac
5802     done
5803 }
5804
5805 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5806                    awk '/^max_cached_mb/ { print $2 }')
5807
5808 cleanup_101a() {
5809         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5810         trap 0
5811 }
5812
5813 test_101a() {
5814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5815         local s
5816         local discard
5817         local nreads=10000
5818         local cache_limit=32
5819
5820         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5821         trap cleanup_101a EXIT
5822         $LCTL set_param -n llite.*.read_ahead_stats 0
5823         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5824
5825         #
5826         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5827         #
5828         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5829         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5830
5831         discard=0
5832         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5833                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5834                         discard=$(($discard + $s))
5835         done
5836         cleanup_101a
5837
5838         if [ $(($discard * 10)) -gt $nreads ] ;then
5839                 $LCTL get_param osc.*-osc*.rpc_stats
5840                 $LCTL get_param llite.*.read_ahead_stats
5841                 error "too many ($discard) discarded pages"
5842         fi
5843         rm -f $DIR/$tfile || true
5844 }
5845 run_test 101a "check read-ahead for random reads ================"
5846
5847 setup_test101bc() {
5848         test_mkdir -p $DIR/$tdir
5849         STRIPE_SIZE=1048576
5850         STRIPE_COUNT=$OSTCOUNT
5851         STRIPE_OFFSET=0
5852
5853         local list=$(comma_list $(osts_nodes))
5854         set_osd_param $list '' read_cache_enable 0
5855         set_osd_param $list '' writethrough_cache_enable 0
5856
5857         trap cleanup_test101bc EXIT
5858         # prepare the read-ahead file
5859         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5860
5861         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5862 }
5863
5864 cleanup_test101bc() {
5865         trap 0
5866         rm -rf $DIR/$tdir
5867         rm -f $DIR/$tfile
5868
5869         local list=$(comma_list $(osts_nodes))
5870         set_osd_param $list '' read_cache_enable 1
5871         set_osd_param $list '' writethrough_cache_enable 1
5872 }
5873
5874 calc_total() {
5875         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5876 }
5877
5878 ra_check_101() {
5879         local READ_SIZE=$1
5880         local STRIPE_SIZE=1048576
5881         local RA_INC=1048576
5882         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5883         local FILE_LENGTH=$((64*100))
5884         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5885                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5886         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5887                         get_named_value 'read but discarded' | \
5888                         cut -d" " -f1 | calc_total`
5889         if [ $DISCARD -gt $discard_limit ]; then
5890                 $LCTL get_param llite.*.read_ahead_stats
5891                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5892         else
5893                 echo "Read-ahead success for size ${READ_SIZE}"
5894         fi
5895 }
5896
5897 test_101b() {
5898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5899         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5900         local STRIPE_SIZE=1048576
5901         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5902         local FILE_LENGTH=$((STRIPE_SIZE*100))
5903         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5904         # prepare the read-ahead file
5905         setup_test101bc
5906         cancel_lru_locks osc
5907         for BIDX in 2 4 8 16 32 64 128 256
5908         do
5909                 local BSIZE=$((BIDX*4096))
5910                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5911                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5912                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5913                 $LCTL set_param -n llite.*.read_ahead_stats 0
5914                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5915                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5916                 cancel_lru_locks osc
5917                 ra_check_101 $BSIZE
5918         done
5919         cleanup_test101bc
5920         true
5921 }
5922 run_test 101b "check stride-io mode read-ahead ================="
5923
5924 test_101c() {
5925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5926         local STRIPE_SIZE=1048576
5927         local FILE_LENGTH=$((STRIPE_SIZE*100))
5928         local nreads=10000
5929         local osc_rpc_stats
5930
5931         setup_test101bc
5932
5933         cancel_lru_locks osc
5934         $LCTL set_param osc.*.rpc_stats 0
5935         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5936         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5937                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5938                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5939                 local size
5940
5941                 if [ $lines -le 20 ]; then
5942                         continue
5943                 fi
5944                 for size in 1 2 4 8; do
5945                         local rpc=$(echo "$stats" |
5946                                     awk '($1 == "'$size':") {print $2; exit; }')
5947                         [ $rpc != 0 ] &&
5948                                 error "Small $((size*4))k read IO $rpc !"
5949                 done
5950                 echo "$osc_rpc_stats check passed!"
5951         done
5952         cleanup_test101bc
5953         true
5954 }
5955 run_test 101c "check stripe_size aligned read-ahead ================="
5956
5957 set_read_ahead() {
5958    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5959    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5960 }
5961
5962 test_101d() {
5963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5964         local file=$DIR/$tfile
5965         local size=${FILESIZE_101c:-500}
5966         local ra_MB=${READAHEAD_MB:-40}
5967
5968         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5969         [ $space -gt $((size * 1024)) ] ||
5970                 { skip "Need free space ${size}M, have ${space}K" && return; }
5971
5972         echo "Creating test file $file of size ${size}M with ${space}K free space"
5973         $SETSTRIPE -c -1 $file || error "setstripe failed"
5974         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5975         echo Cancel LRU locks on lustre client to flush the client cache
5976         cancel_lru_locks osc
5977
5978     echo Disable read-ahead
5979     local old_READAHEAD=$(set_read_ahead 0)
5980
5981     echo Reading the test file $file with read-ahead disabled
5982     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5983
5984     echo Cancel LRU locks on lustre client to flush the client cache
5985     cancel_lru_locks osc
5986     echo Enable read-ahead with ${ra_MB}MB
5987     set_read_ahead $ra_MB
5988
5989     echo Reading the test file $file with read-ahead enabled
5990     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5991
5992     echo read-ahead disabled time read $time_ra_OFF
5993     echo read-ahead enabled  time read $time_ra_ON
5994
5995         set_read_ahead $old_READAHEAD
5996         rm -f $file
5997         wait_delete_completed
5998
5999     [ $time_ra_ON -lt $time_ra_OFF ] ||
6000         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
6001                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
6002 }
6003 run_test 101d "file read with and without read-ahead enabled  ================="
6004
6005 test_101e() {
6006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6007     local file=$DIR/$tfile
6008     local size=500  #KB
6009     local count=100
6010     local blksize=1024
6011
6012     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6013     local need_space=$((count * size))
6014     [ $space -gt $need_space ] ||
6015         { skip_env "Need free space $need_space, have $space" && return; }
6016
6017     echo Creating $count ${size}K test files
6018     for ((i = 0; i < $count; i++)); do
6019         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
6020     done
6021
6022     echo Cancel LRU locks on lustre client to flush the client cache
6023     cancel_lru_locks osc
6024
6025     echo Reset readahead stats
6026     $LCTL set_param -n llite.*.read_ahead_stats 0
6027
6028     for ((i = 0; i < $count; i++)); do
6029         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
6030     done
6031
6032     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
6033           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6034
6035     for ((i = 0; i < $count; i++)); do
6036         rm -rf ${file}_${i} 2>/dev/null
6037     done
6038
6039     #10000 means 20% reads are missing in readahead
6040     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
6041 }
6042 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6043
6044 cleanup_test101f() {
6045     trap 0
6046     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6047     rm -rf $DIR/$tfile 2>/dev/null
6048 }
6049
6050 test_101f() {
6051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6052     local file=$DIR/$tfile
6053     local nreads=1000
6054
6055     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6056     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6057     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6058     trap cleanup_test101f EXIT
6059
6060     echo Cancel LRU locks on lustre client to flush the client cache
6061     cancel_lru_locks osc
6062
6063     echo Reset readahead stats
6064     $LCTL set_param -n llite.*.read_ahead_stats 0
6065     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6066     # readahead should read in 2M file on second read, so only miss
6067     # 2 pages.
6068     echo Random 4K reads on 2M file for 1000 times
6069     $READS -f $file -s 2097152 -b 4096 -n $nreads
6070
6071     echo checking missing pages
6072     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6073           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6074
6075     [ $miss -lt 3 ] || error "misses too much pages!"
6076     cleanup_test101f
6077 }
6078 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6079
6080 setup_test102() {
6081         test_mkdir -p $DIR/$tdir
6082         chown $RUNAS_ID $DIR/$tdir
6083         STRIPE_SIZE=65536
6084         STRIPE_OFFSET=1
6085         STRIPE_COUNT=$OSTCOUNT
6086         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6087
6088         trap cleanup_test102 EXIT
6089         cd $DIR
6090         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6091         cd $DIR/$tdir
6092         for num in 1 2 3 4; do
6093                 for count in $(seq 1 $STRIPE_COUNT); do
6094                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6095                                 local size=`expr $STRIPE_SIZE \* $num`
6096                                 local file=file"$num-$idx-$count"
6097                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6098                         done
6099                 done
6100         done
6101
6102         cd $DIR
6103         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6104 }
6105
6106 cleanup_test102() {
6107         trap 0
6108         rm -f $TMP/f102.tar
6109         rm -rf $DIR/d0.sanity/d102
6110 }
6111
6112 test_102a() {
6113         local testfile=$DIR/xattr_testfile
6114
6115         touch $testfile
6116
6117         [ "$UID" != 0 ] && skip_env "must run as root" && return
6118         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6119                 skip_env "must have user_xattr" && return
6120
6121         [ -z "$(which setfattr 2>/dev/null)" ] &&
6122                 skip_env "could not find setfattr" && return
6123
6124         echo "set/get xattr..."
6125         setfattr -n trusted.name1 -v value1 $testfile ||
6126                 error "setfattr -n trusted.name1=value1 $testfile failed"
6127         getfattr -n trusted.name1 $testfile 2> /dev/null |
6128           grep "trusted.name1=.value1" ||
6129                 error "$testfile missing trusted.name1=value1"
6130
6131         setfattr -n user.author1 -v author1 $testfile ||
6132                 error "setfattr -n user.author1=author1 $testfile failed"
6133         getfattr -n user.author1 $testfile 2> /dev/null |
6134           grep "user.author1=.author1" ||
6135                 error "$testfile missing trusted.author1=author1"
6136
6137         echo "listxattr..."
6138         setfattr -n trusted.name2 -v value2 $testfile ||
6139                 error "$testfile unable to set trusted.name2"
6140         setfattr -n trusted.name3 -v value3 $testfile ||
6141                 error "$testfile unable to set trusted.name3"
6142         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6143             grep "trusted.name" | wc -l) -eq 3 ] ||
6144                 error "$testfile missing 3 trusted.name xattrs"
6145
6146         setfattr -n user.author2 -v author2 $testfile ||
6147                 error "$testfile unable to set user.author2"
6148         setfattr -n user.author3 -v author3 $testfile ||
6149                 error "$testfile unable to set user.author3"
6150         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6151             grep "user.author" | wc -l) -eq 3 ] ||
6152                 error "$testfile missing 3 user.author xattrs"
6153
6154         echo "remove xattr..."
6155         setfattr -x trusted.name1 $testfile ||
6156                 error "$testfile error deleting trusted.name1"
6157         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6158                 error "$testfile did not delete trusted.name1 xattr"
6159
6160         setfattr -x user.author1 $testfile ||
6161                 error "$testfile error deleting user.author1"
6162         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6163                 error "$testfile did not delete trusted.name1 xattr"
6164
6165         # b10667: setting lustre special xattr be silently discarded
6166         echo "set lustre special xattr ..."
6167         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6168                 error "$testfile allowed setting trusted.lov"
6169 }
6170 run_test 102a "user xattr test =================================="
6171
6172 test_102b() {
6173         # b10930: get/set/list trusted.lov xattr
6174         echo "get/set/list trusted.lov xattr ..."
6175         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6176         local testfile=$DIR/$tfile
6177         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6178                 error "setstripe failed"
6179         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6180                 error "getstripe failed"
6181         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6182         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6183
6184         local testfile2=${testfile}2
6185         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6186                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6187
6188         $MCREATE $testfile2
6189         setfattr -n trusted.lov -v $value $testfile2
6190         local stripe_size=$($GETSTRIPE -S $testfile2)
6191         local stripe_count=$($GETSTRIPE -c $testfile2)
6192         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6193         [ $stripe_count -eq $STRIPECOUNT ] ||
6194                 error "stripe count $stripe_count != $STRIPECOUNT"
6195         rm -f $DIR/$tfile
6196 }
6197 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6198
6199 test_102c() {
6200         # b10930: get/set/list lustre.lov xattr
6201         echo "get/set/list lustre.lov xattr ..."
6202         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6203         test_mkdir -p $DIR/$tdir
6204         chown $RUNAS_ID $DIR/$tdir
6205         local testfile=$DIR/$tdir/$tfile
6206         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6207                 error "setstripe failed"
6208         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6209                 error "getstripe failed"
6210         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6211         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6212
6213         local testfile2=${testfile}2
6214         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6215                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6216
6217         $RUNAS $MCREATE $testfile2
6218         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6219         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6220         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6221         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6222         [ $stripe_count -eq $STRIPECOUNT ] ||
6223                 error "stripe count $stripe_count != $STRIPECOUNT"
6224 }
6225 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6226
6227 compare_stripe_info1() {
6228         local stripe_index_all_zero=true
6229
6230         for num in 1 2 3 4; do
6231                 for count in $(seq 1 $STRIPE_COUNT); do
6232                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6233                                 local size=$((STRIPE_SIZE * num))
6234                                 local file=file"$num-$offset-$count"
6235                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6236                                 [ $stripe_size -ne $size ] &&
6237                                     error "$file: size $stripe_size != $size"
6238                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6239                                 # allow fewer stripes to be created, ORI-601
6240                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6241                                     error "$file: count $stripe_count != $count"
6242                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6243                                 [ $stripe_index -ne 0 ] &&
6244                                         stripe_index_all_zero=false
6245                         done
6246                 done
6247         done
6248         $stripe_index_all_zero &&
6249                 error "all files are being extracted starting from OST index 0"
6250         return 0
6251 }
6252
6253 find_lustre_tar() {
6254         [ -n "$(which tar 2>/dev/null)" ] &&
6255                 strings $(which tar) | grep -q "lustre" && echo tar
6256 }
6257
6258 test_102d() {
6259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6260         # b10930: tar test for trusted.lov xattr
6261         TAR=$(find_lustre_tar)
6262         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6263         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6264         setup_test102
6265         test_mkdir -p $DIR/d102d
6266         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6267         cd $DIR/d102d/$tdir
6268         compare_stripe_info1
6269 }
6270 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6271
6272 test_102f() {
6273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6274         # b10930: tar test for trusted.lov xattr
6275         TAR=$(find_lustre_tar)
6276         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6277         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6278         setup_test102
6279         test_mkdir -p $DIR/d102f
6280         cd $DIR
6281         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6282         cd $DIR/d102f/$tdir
6283         compare_stripe_info1
6284 }
6285 run_test 102f "tar copy files, not keep osts ==========="
6286
6287 grow_xattr() {
6288         local xsize=${1:-1024}  # in bytes
6289         local file=$DIR/$tfile
6290
6291         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6292                 skip "must have user_xattr" && return 0
6293         [ -z "$(which setfattr 2>/dev/null)" ] &&
6294                 skip_env "could not find setfattr" && return 0
6295         [ -z "$(which getfattr 2>/dev/null)" ] &&
6296                 skip_env "could not find getfattr" && return 0
6297
6298         touch $file
6299
6300         local value="$(generate_string $xsize)"
6301
6302         local xbig=trusted.big
6303         log "save $xbig on $file"
6304         setfattr -n $xbig -v $value $file ||
6305                 error "saving $xbig on $file failed"
6306
6307         local orig=$(get_xattr_value $xbig $file)
6308         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6309
6310         local xsml=trusted.sml
6311         log "save $xsml on $file"
6312         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6313
6314         local new=$(get_xattr_value $xbig $file)
6315         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6316
6317         log "grow $xsml on $file"
6318         setfattr -n $xsml -v "$value" $file ||
6319                 error "growing $xsml on $file failed"
6320
6321         new=$(get_xattr_value $xbig $file)
6322         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6323         log "$xbig still valid after growing $xsml"
6324
6325         rm -f $file
6326 }
6327
6328 test_102h() { # bug 15777
6329         grow_xattr 1024
6330 }
6331 run_test 102h "grow xattr from inside inode to external block"
6332
6333 test_102ha() {
6334         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6335         grow_xattr $(max_xattr_size)
6336 }
6337 run_test 102ha "grow xattr from inside inode to external inode"
6338
6339 test_102i() { # bug 17038
6340         touch $DIR/$tfile
6341         ln -s $DIR/$tfile $DIR/${tfile}link
6342         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6343         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"
6344         rm -f $DIR/$tfile $DIR/${tfile}link
6345 }
6346 run_test 102i "lgetxattr test on symbolic link ============"
6347
6348 test_102j() {
6349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6350         TAR=$(find_lustre_tar)
6351         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6352         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6353         setup_test102 "$RUNAS"
6354         test_mkdir -p $DIR/d102j
6355         chown $RUNAS_ID $DIR/d102j
6356         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6357         cd $DIR/d102j/$tdir
6358         compare_stripe_info1 "$RUNAS"
6359 }
6360 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6361
6362 test_102k() {
6363         touch $DIR/$tfile
6364         # b22187 just check that does not crash for regular file.
6365         setfattr -n trusted.lov $DIR/$tfile
6366         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6367         local test_kdir=$DIR/d102k
6368         test_mkdir $test_kdir
6369         local default_size=`$GETSTRIPE -S $test_kdir`
6370         local default_count=`$GETSTRIPE -c $test_kdir`
6371         local default_offset=`$GETSTRIPE -i $test_kdir`
6372         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6373                 error 'dir setstripe failed'
6374         setfattr -n trusted.lov $test_kdir
6375         local stripe_size=`$GETSTRIPE -S $test_kdir`
6376         local stripe_count=`$GETSTRIPE -c $test_kdir`
6377         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6378         [ $stripe_size -eq $default_size ] ||
6379                 error "stripe size $stripe_size != $default_size"
6380         [ $stripe_count -eq $default_count ] ||
6381                 error "stripe count $stripe_count != $default_count"
6382         [ $stripe_offset -eq $default_offset ] ||
6383                 error "stripe offset $stripe_offset != $default_offset"
6384         rm -rf $DIR/$tfile $test_kdir
6385 }
6386 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6387
6388 test_102l() {
6389         # LU-532 trusted. xattr is invisible to non-root
6390         local testfile=$DIR/$tfile
6391
6392         touch $testfile
6393
6394         echo "listxattr as user..."
6395         chown $RUNAS_ID $testfile
6396         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6397             grep -q "trusted" &&
6398                 error "$testfile trusted xattrs are user visible"
6399
6400         return 0;
6401 }
6402 run_test 102l "listxattr size test =================================="
6403
6404 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6405         local path=$DIR/$tfile
6406         touch $path
6407
6408         listxattr_size_check $path || error "listattr_size_check $path failed"
6409 }
6410 run_test 102m "Ensure listxattr fails on small bufffer ========"
6411
6412 cleanup_test102
6413
6414 run_acl_subtest()
6415 {
6416     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6417     return $?
6418 }
6419
6420 test_103 () {
6421         [ "$UID" != 0 ] && skip_env "must run as root" && return
6422         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6423                 skip "must have acl enabled" && return
6424         [ -z "$(which setfacl 2>/dev/null)" ] &&
6425                 skip_env "could not find setfacl" && return
6426         $GSS && skip "could not run under gss" && return
6427
6428         declare -a identity_old
6429
6430         for num in $(seq $MDSCOUNT); do
6431                 switch_identity $num true || identity_old[$num]=$?
6432         done
6433
6434         SAVE_UMASK=$(umask)
6435         umask 0022
6436         cd $DIR
6437
6438         echo "performing cp ..."
6439         run_acl_subtest cp || error "run_acl_subtest cp failed"
6440         echo "performing getfacl-noacl..."
6441         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6442         echo "performing misc..."
6443         run_acl_subtest misc || error  "misc test failed"
6444         echo "performing permissions..."
6445         run_acl_subtest permissions || error "permissions failed"
6446         echo "performing setfacl..."
6447         run_acl_subtest setfacl || error  "setfacl test failed"
6448
6449         # inheritance test got from HP
6450         echo "performing inheritance..."
6451         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6452         chmod +x make-tree || error "chmod +x failed"
6453         run_acl_subtest inheritance || error "inheritance test failed"
6454         rm -f make-tree
6455
6456         echo "LU-974 ignore umask when acl is enabled..."
6457         run_acl_subtest 974 || error "LU-974 umask test failed"
6458         if [ $MDSCOUNT -ge 2 ]; then
6459                 run_acl_subtest 974_remote ||
6460                         error "LU-974 umask test failed under remote dir"
6461         fi
6462
6463         echo "LU-2561 newly created file is same size as directory..."
6464         run_acl_subtest 2561 || error "LU-2561 test failed"
6465
6466         cd $SAVE_PWD
6467         umask $SAVE_UMASK
6468
6469         for num in $(seq $MDSCOUNT); do
6470                 if [ "${identity_old[$num]}" = 1 ]; then
6471                         switch_identity $num false || identity_old[$num]=$?
6472                 fi
6473         done
6474 }
6475 run_test 103 "acl test ========================================="
6476
6477 test_104a() {
6478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6479         touch $DIR/$tfile
6480         lfs df || error "lfs df failed"
6481         lfs df -ih || error "lfs df -ih failed"
6482         lfs df -h $DIR || error "lfs df -h $DIR failed"
6483         lfs df -i $DIR || error "lfs df -i $DIR failed"
6484         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6485         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6486
6487         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6488         lctl --device %$OSC deactivate
6489         lfs df || error "lfs df with deactivated OSC failed"
6490         lctl --device %$OSC activate
6491         # wait the osc back to normal
6492         wait_osc_import_state client ost FULL
6493
6494         lfs df || error "lfs df with reactivated OSC failed"
6495         rm -f $DIR/$tfile
6496 }
6497 run_test 104a "lfs df [-ih] [path] test ========================="
6498
6499 test_104b() {
6500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6501         [ $RUNAS_ID -eq $UID ] &&
6502                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6503         chmod 666 /dev/obd
6504         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6505                         grep "Permission denied" | wc -l)))
6506         if [ $denied_cnt -ne 0 ]; then
6507                 error "lfs check servers test failed"
6508         fi
6509 }
6510 run_test 104b "$RUNAS lfs check servers test ===================="
6511
6512 test_105a() {
6513         # doesn't work on 2.4 kernels
6514         touch $DIR/$tfile
6515         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6516                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6517         else
6518                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6519         fi
6520         rm -f $DIR/$tfile
6521 }
6522 run_test 105a "flock when mounted without -o flock test ========"
6523
6524 test_105b() {
6525         touch $DIR/$tfile
6526         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6527                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6528         else
6529                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6530         fi
6531         rm -f $DIR/$tfile
6532 }
6533 run_test 105b "fcntl when mounted without -o flock test ========"
6534
6535 test_105c() {
6536         touch $DIR/$tfile
6537         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6538                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6539         else
6540                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6541         fi
6542         rm -f $DIR/$tfile
6543 }
6544 run_test 105c "lockf when mounted without -o flock test ========"
6545
6546 test_105d() { # bug 15924
6547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6548         test_mkdir -p $DIR/$tdir
6549         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6550                 skip "mount w/o flock enabled" && return
6551         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6552         $LCTL set_param fail_loc=0x80000315
6553         flocks_test 2 $DIR/$tdir
6554 }
6555 run_test 105d "flock race (should not freeze) ========"
6556
6557 test_105e() { # bug 22660 && 22040
6558         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6559                 skip "mount w/o flock enabled" && return
6560         touch $DIR/$tfile
6561         flocks_test 3 $DIR/$tfile
6562 }
6563 run_test 105e "Two conflicting flocks from same process ======="
6564
6565 test_106() { #bug 10921
6566         test_mkdir -p $DIR/$tdir
6567         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6568         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6569 }
6570 run_test 106 "attempt exec of dir followed by chown of that dir"
6571
6572 test_107() {
6573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6574         CDIR=`pwd`
6575         cd $DIR
6576
6577         local file=core
6578         rm -f $file
6579
6580         local save_pattern=$(sysctl -n kernel.core_pattern)
6581         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6582         sysctl -w kernel.core_pattern=$file
6583         sysctl -w kernel.core_uses_pid=0
6584
6585         ulimit -c unlimited
6586         sleep 60 &
6587         SLEEPPID=$!
6588
6589         sleep 1
6590
6591         kill -s 11 $SLEEPPID
6592         wait $SLEEPPID
6593         if [ -e $file ]; then
6594                 size=`stat -c%s $file`
6595                 [ $size -eq 0 ] && error "Fail to create core file $file"
6596         else
6597                 error "Fail to create core file $file"
6598         fi
6599         rm -f $file
6600         sysctl -w kernel.core_pattern=$save_pattern
6601         sysctl -w kernel.core_uses_pid=$save_uses_pid
6602         cd $CDIR
6603 }
6604 run_test 107 "Coredump on SIG"
6605
6606 test_110() {
6607         test_mkdir -p $DIR/$tdir
6608         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6609                 error "mkdir with 255 char failed"
6610         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6611                 error "mkdir with 256 char should fail, but did not"
6612         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6613                 error "create with 255 char failed"
6614         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6615                 error "create with 256 char should fail, but did not"
6616
6617         ls -l $DIR/$tdir
6618         rm -rf $DIR/$tdir
6619 }
6620 run_test 110 "filename length checking"
6621
6622 test_115() {
6623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6624         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6625             cut -c11-20)
6626         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6627             return
6628         echo "Starting with $OSTIO_pre threads"
6629
6630         NUMTEST=20000
6631         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6632         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6633         echo "$NUMTEST creates/unlinks"
6634         test_mkdir -p $DIR/$tdir
6635         createmany -o $DIR/$tdir/$tfile $NUMTEST
6636         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6637
6638         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6639             cut -c11-20)
6640
6641         # don't return an error
6642         [ $OSTIO_post == $OSTIO_pre ] && echo \
6643             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6644             echo "This may be fine, depending on what ran before this test" &&
6645             echo "and how fast this system is." && return
6646
6647         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6648 }
6649 run_test 115 "verify dynamic thread creation===================="
6650
6651 free_min_max () {
6652         wait_delete_completed
6653         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6654         echo OST kbytes available: ${AVAIL[@]}
6655         MAXI=0; MAXV=${AVAIL[0]}
6656         MINI=0; MINV=${AVAIL[0]}
6657         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6658             #echo OST $i: ${AVAIL[i]}kb
6659             if [ ${AVAIL[i]} -gt $MAXV ]; then
6660                 MAXV=${AVAIL[i]}; MAXI=$i
6661             fi
6662             if [ ${AVAIL[i]} -lt $MINV ]; then
6663                 MINV=${AVAIL[i]}; MINI=$i
6664             fi
6665         done
6666         echo Min free space: OST $MINI: $MINV
6667         echo Max free space: OST $MAXI: $MAXV
6668 }
6669
6670 test_116a() { # was previously test_116()
6671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6672         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6673
6674         echo -n "Free space priority "
6675         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6676                 head -1
6677         declare -a AVAIL
6678         free_min_max
6679
6680         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6681         trap simple_cleanup_common EXIT
6682
6683         # Check if we need to generate uneven OSTs
6684         test_mkdir -p $DIR/$tdir/OST${MINI}
6685         local FILL=$(($MINV / 4))
6686         local DIFF=$(($MAXV - $MINV))
6687         local DIFF2=$(($DIFF * 100 / $MINV))
6688
6689         local threshold=$(do_facet $SINGLEMDS \
6690                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6691         threshold=${threshold%%%}
6692         echo -n "Check for uneven OSTs: "
6693         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6694
6695         if [ $DIFF2 -gt $threshold ]; then
6696                 echo "ok"
6697                 echo "Don't need to fill OST$MINI"
6698         else
6699                 # generate uneven OSTs. Write 2% over the QOS threshold value
6700                 echo "no"
6701                 DIFF=$(($threshold - $DIFF2 + 2))
6702                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6703                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6704                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6705                         error "setstripe failed"
6706                 DIFF=$(($DIFF2 / 2048))
6707                 i=0
6708                 while [ $i -lt $DIFF ]; do
6709                         i=$(($i + 1))
6710                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6711                                 bs=2M count=1 2>/dev/null
6712                         echo -n .
6713                 done
6714                 echo .
6715                 sync
6716                 sleep_maxage
6717                 free_min_max
6718         fi
6719
6720         DIFF=$(($MAXV - $MINV))
6721         DIFF2=$(($DIFF * 100 / $MINV))
6722         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6723         if [ $DIFF2 -gt $threshold ]; then
6724                 echo "ok"
6725         else
6726                 echo "failed - QOS mode won't be used"
6727                 skip "QOS imbalance criteria not met"
6728                 simple_cleanup_common
6729                 return
6730         fi
6731
6732         MINI1=$MINI; MINV1=$MINV
6733         MAXI1=$MAXI; MAXV1=$MAXV
6734
6735         # now fill using QOS
6736         $SETSTRIPE -c 1 $DIR/$tdir
6737         FILL=$(($FILL / 200))
6738         if [ $FILL -gt 600 ]; then
6739                 FILL=600
6740         fi
6741         echo "writing $FILL files to QOS-assigned OSTs"
6742         i=0
6743         while [ $i -lt $FILL ]; do
6744                 i=$(($i + 1))
6745                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6746                         count=1 2>/dev/null
6747                 echo -n .
6748         done
6749         echo "wrote $i 200k files"
6750         sync
6751         sleep_maxage
6752
6753         echo "Note: free space may not be updated, so measurements might be off"
6754         free_min_max
6755         DIFF2=$(($MAXV - $MINV))
6756         echo "free space delta: orig $DIFF final $DIFF2"
6757         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6758         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6759         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6760         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6761         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6762         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6763         [ $DIFF -gt 0 ] &&
6764                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6765
6766         # Figure out which files were written where
6767         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6768                   awk '/'$MINI1': / {print $2; exit}')
6769         echo $UUID
6770         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6771         echo "$MINC files created on smaller OST $MINI1"
6772         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6773                   awk '/'$MAXI1': / {print $2; exit}')
6774         echo $UUID
6775         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6776         echo "$MAXC files created on larger OST $MAXI1"
6777         FILL=$(($MAXC * 100 / $MINC - 100))
6778         [ $MINC -gt 0 ] &&
6779                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6780         [ $MAXC -gt $MINC ] ||
6781                 error_ignore LU-9 "stripe QOS didn't balance free space"
6782         simple_cleanup_common
6783 }
6784 run_test 116a "stripe QOS: free space balance ==================="
6785
6786 test_116b() { # LU-2093
6787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6788 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6789         local old_rr
6790         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6791         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6792         mkdir -p $DIR/$tdir
6793         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6794         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6795         do_facet $SINGLEMDS lctl set_param fail_loc=0
6796         rm -rf $DIR/$tdir
6797         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6798 }
6799 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6800
6801 test_117() # bug 10891
6802 {
6803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6804         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6805         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6806         lctl set_param fail_loc=0x21e
6807         > $DIR/$tfile || error "truncate failed"
6808         lctl set_param fail_loc=0
6809         echo "Truncate succeeded."
6810         rm -f $DIR/$tfile
6811 }
6812 run_test 117 "verify osd extend =========="
6813
6814 NO_SLOW_RESENDCOUNT=4
6815 export OLD_RESENDCOUNT=""
6816 set_resend_count () {
6817         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6818         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6819         lctl set_param -n $PROC_RESENDCOUNT $1
6820         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6821 }
6822
6823 # for reduce test_118* time (b=14842)
6824 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6825
6826 # Reset async IO behavior after error case
6827 reset_async() {
6828         FILE=$DIR/reset_async
6829
6830         # Ensure all OSCs are cleared
6831         $SETSTRIPE -c -1 $FILE
6832         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6833         sync
6834         rm $FILE
6835 }
6836
6837 test_118a() #bug 11710
6838 {
6839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6840         reset_async
6841
6842         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6843         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6844         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6845
6846         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6847                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6848                 return 1;
6849         fi
6850         rm -f $DIR/$tfile
6851 }
6852 run_test 118a "verify O_SYNC works =========="
6853
6854 test_118b()
6855 {
6856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6857         remote_ost_nodsh && skip "remote OST with nodsh" && return
6858
6859         reset_async
6860
6861         #define OBD_FAIL_OST_ENOENT 0x217
6862         set_nodes_failloc "$(osts_nodes)" 0x217
6863         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6864         RC=$?
6865         set_nodes_failloc "$(osts_nodes)" 0
6866         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6867         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6868                     grep -c writeback)
6869
6870         if [[ $RC -eq 0 ]]; then
6871                 error "Must return error due to dropped pages, rc=$RC"
6872                 return 1;
6873         fi
6874
6875         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6876                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6877                 return 1;
6878         fi
6879
6880         echo "Dirty pages not leaked on ENOENT"
6881
6882         # Due to the above error the OSC will issue all RPCs syncronously
6883         # until a subsequent RPC completes successfully without error.
6884         $MULTIOP $DIR/$tfile Ow4096yc
6885         rm -f $DIR/$tfile
6886
6887         return 0
6888 }
6889 run_test 118b "Reclaim dirty pages on fatal error =========="
6890
6891 test_118c()
6892 {
6893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6894
6895         # for 118c, restore the original resend count, LU-1940
6896         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6897                                 set_resend_count $OLD_RESENDCOUNT
6898         remote_ost_nodsh && skip "remote OST with nodsh" && return
6899
6900         reset_async
6901
6902         #define OBD_FAIL_OST_EROFS               0x216
6903         set_nodes_failloc "$(osts_nodes)" 0x216
6904
6905         # multiop should block due to fsync until pages are written
6906         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6907         MULTIPID=$!
6908         sleep 1
6909
6910         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6911                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6912         fi
6913
6914         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6915                     grep -c writeback)
6916         if [[ $WRITEBACK -eq 0 ]]; then
6917                 error "No page in writeback, writeback=$WRITEBACK"
6918         fi
6919
6920         set_nodes_failloc "$(osts_nodes)" 0
6921         wait $MULTIPID
6922         RC=$?
6923         if [[ $RC -ne 0 ]]; then
6924                 error "Multiop fsync failed, rc=$RC"
6925         fi
6926
6927         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6928         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6929                     grep -c writeback)
6930         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6931                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6932         fi
6933
6934         rm -f $DIR/$tfile
6935         echo "Dirty pages flushed via fsync on EROFS"
6936         return 0
6937 }
6938 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6939
6940 # continue to use small resend count to reduce test_118* time (b=14842)
6941 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6942
6943 test_118d()
6944 {
6945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6946         remote_ost_nodsh && skip "remote OST with nodsh" && return
6947
6948         reset_async
6949
6950         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6951         set_nodes_failloc "$(osts_nodes)" 0x214
6952         # multiop should block due to fsync until pages are written
6953         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6954         MULTIPID=$!
6955         sleep 1
6956
6957         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6958                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6959         fi
6960
6961         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6962                     grep -c writeback)
6963         if [[ $WRITEBACK -eq 0 ]]; then
6964                 error "No page in writeback, writeback=$WRITEBACK"
6965         fi
6966
6967         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6968         set_nodes_failloc "$(osts_nodes)" 0
6969
6970         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6971         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6972                     grep -c writeback)
6973         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6974                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6975         fi
6976
6977         rm -f $DIR/$tfile
6978         echo "Dirty pages gaurenteed flushed via fsync"
6979         return 0
6980 }
6981 run_test 118d "Fsync validation inject a delay of the bulk =========="
6982
6983 test_118f() {
6984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6985         reset_async
6986
6987         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6988         lctl set_param fail_loc=0x8000040a
6989
6990         # Should simulate EINVAL error which is fatal
6991         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6992         RC=$?
6993         if [[ $RC -eq 0 ]]; then
6994                 error "Must return error due to dropped pages, rc=$RC"
6995         fi
6996
6997         lctl set_param fail_loc=0x0
6998
6999         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7000         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7001         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7002                     grep -c writeback)
7003         if [[ $LOCKED -ne 0 ]]; then
7004                 error "Locked pages remain in cache, locked=$LOCKED"
7005         fi
7006
7007         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7008                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7009         fi
7010
7011         rm -f $DIR/$tfile
7012         echo "No pages locked after fsync"
7013
7014         reset_async
7015         return 0
7016 }
7017 run_test 118f "Simulate unrecoverable OSC side error =========="
7018
7019 test_118g() {
7020         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7021         reset_async
7022
7023         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7024         lctl set_param fail_loc=0x406
7025
7026         # simulate local -ENOMEM
7027         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7028         RC=$?
7029
7030         lctl set_param fail_loc=0
7031         if [[ $RC -eq 0 ]]; then
7032                 error "Must return error due to dropped pages, rc=$RC"
7033         fi
7034
7035         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7036         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7037         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7038                         grep -c writeback)
7039         if [[ $LOCKED -ne 0 ]]; then
7040                 error "Locked pages remain in cache, locked=$LOCKED"
7041         fi
7042
7043         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7044                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7045         fi
7046
7047         rm -f $DIR/$tfile
7048         echo "No pages locked after fsync"
7049
7050         reset_async
7051         return 0
7052 }
7053 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7054
7055 test_118h() {
7056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7057         remote_ost_nodsh && skip "remote OST with nodsh" && return
7058
7059         reset_async
7060
7061         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7062         set_nodes_failloc "$(osts_nodes)" 0x20e
7063         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7064         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7065         RC=$?
7066
7067         set_nodes_failloc "$(osts_nodes)" 0
7068         if [[ $RC -eq 0 ]]; then
7069                 error "Must return error due to dropped pages, rc=$RC"
7070         fi
7071
7072         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7073         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7074         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7075                     grep -c writeback)
7076         if [[ $LOCKED -ne 0 ]]; then
7077                 error "Locked pages remain in cache, locked=$LOCKED"
7078         fi
7079
7080         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7081                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7082         fi
7083
7084         rm -f $DIR/$tfile
7085         echo "No pages locked after fsync"
7086
7087         return 0
7088 }
7089 run_test 118h "Verify timeout in handling recoverables errors  =========="
7090
7091 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7092
7093 test_118i() {
7094         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7095         remote_ost_nodsh && skip "remote OST with nodsh" && return
7096
7097         reset_async
7098
7099         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7100         set_nodes_failloc "$(osts_nodes)" 0x20e
7101
7102         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7103         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7104         PID=$!
7105         sleep 5
7106         set_nodes_failloc "$(osts_nodes)" 0
7107
7108         wait $PID
7109         RC=$?
7110         if [[ $RC -ne 0 ]]; then
7111                 error "got error, but should be not, rc=$RC"
7112         fi
7113
7114         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7115         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7116         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7117         if [[ $LOCKED -ne 0 ]]; then
7118                 error "Locked pages remain in cache, locked=$LOCKED"
7119         fi
7120
7121         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7122                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7123         fi
7124
7125         rm -f $DIR/$tfile
7126         echo "No pages locked after fsync"
7127
7128         return 0
7129 }
7130 run_test 118i "Fix error before timeout in recoverable error  =========="
7131
7132 [ "$SLOW" = "no" ] && set_resend_count 4
7133
7134 test_118j() {
7135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7136         remote_ost_nodsh && skip "remote OST with nodsh" && return
7137
7138         reset_async
7139
7140         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7141         set_nodes_failloc "$(osts_nodes)" 0x220
7142
7143         # return -EIO from OST
7144         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7145         RC=$?
7146         set_nodes_failloc "$(osts_nodes)" 0x0
7147         if [[ $RC -eq 0 ]]; then
7148                 error "Must return error due to dropped pages, rc=$RC"
7149         fi
7150
7151         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7152         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7153         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7154         if [[ $LOCKED -ne 0 ]]; then
7155                 error "Locked pages remain in cache, locked=$LOCKED"
7156         fi
7157
7158         # in recoverable error on OST we want resend and stay until it finished
7159         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7160                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7161         fi
7162
7163         rm -f $DIR/$tfile
7164         echo "No pages locked after fsync"
7165
7166         return 0
7167 }
7168 run_test 118j "Simulate unrecoverable OST side error =========="
7169
7170 test_118k()
7171 {
7172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7173         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7174
7175         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7176         set_nodes_failloc "$(osts_nodes)" 0x20e
7177         test_mkdir -p $DIR/$tdir
7178
7179         for ((i=0;i<10;i++)); do
7180                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7181                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7182                 SLEEPPID=$!
7183                 sleep 0.500s
7184                 kill $SLEEPPID
7185                 wait $SLEEPPID
7186         done
7187
7188         set_nodes_failloc "$(osts_nodes)" 0
7189         rm -rf $DIR/$tdir
7190 }
7191 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7192
7193 test_118l()
7194 {
7195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7196         # LU-646
7197         test_mkdir -p $DIR/$tdir
7198         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7199         rm -rf $DIR/$tdir
7200 }
7201 run_test 118l "fsync dir ========="
7202
7203 test_118m() # LU-3066
7204 {
7205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7206         test_mkdir -p $DIR/$tdir
7207         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7208         rm -rf $DIR/$tdir
7209 }
7210 run_test 118m "fdatasync dir ========="
7211
7212 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7213
7214 test_119a() # bug 11737
7215 {
7216         BSIZE=$((512 * 1024))
7217         directio write $DIR/$tfile 0 1 $BSIZE
7218         # We ask to read two blocks, which is more than a file size.
7219         # directio will indicate an error when requested and actual
7220         # sizes aren't equeal (a normal situation in this case) and
7221         # print actual read amount.
7222         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7223         if [ "$NOB" != "$BSIZE" ]; then
7224                 error "read $NOB bytes instead of $BSIZE"
7225         fi
7226         rm -f $DIR/$tfile
7227 }
7228 run_test 119a "Short directIO read must return actual read amount"
7229
7230 test_119b() # bug 11737
7231 {
7232         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7233
7234         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7235         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7236         sync
7237         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7238                 error "direct read failed"
7239         rm -f $DIR/$tfile
7240 }
7241 run_test 119b "Sparse directIO read must return actual read amount"
7242
7243 test_119c() # bug 13099
7244 {
7245         BSIZE=1048576
7246         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7247         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7248         rm -f $DIR/$tfile
7249 }
7250 run_test 119c "Testing for direct read hitting hole"
7251
7252 test_119d() # bug 15950
7253 {
7254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7255         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7256         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7257         BSIZE=1048576
7258         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7259         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7260         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7261         lctl set_param fail_loc=0x40d
7262         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7263         pid_dio=$!
7264         sleep 1
7265         cat $DIR/$tfile > /dev/null &
7266         lctl set_param fail_loc=0
7267         pid_reads=$!
7268         wait $pid_dio
7269         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7270         sleep 2
7271         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7272         error "the read rpcs have not completed in 2s"
7273         rm -f $DIR/$tfile
7274         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7275 }
7276 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7277
7278 test_120a() {
7279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7280         test_mkdir -p $DIR/$tdir
7281         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7282                skip "no early lock cancel on server" && return 0
7283
7284         lru_resize_disable mdc
7285         lru_resize_disable osc
7286         cancel_lru_locks mdc
7287         # asynchronous object destroy at MDT could cause bl ast to client
7288         cancel_lru_locks osc
7289
7290         stat $DIR/$tdir > /dev/null
7291         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7292         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7293         test_mkdir $DIR/$tdir/d1
7294         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7295         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7296         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7297         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7298         lru_resize_enable mdc
7299         lru_resize_enable osc
7300 }
7301 run_test 120a "Early Lock Cancel: mkdir test"
7302
7303 test_120b() {
7304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7305         test_mkdir -p $DIR/$tdir
7306         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7307                skip "no early lock cancel on server" && return 0
7308         lru_resize_disable mdc
7309         lru_resize_disable osc
7310         cancel_lru_locks mdc
7311         stat $DIR/$tdir > /dev/null
7312         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7313         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7314         touch $DIR/$tdir/f1
7315         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7316         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7317         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7318         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7319         lru_resize_enable mdc
7320         lru_resize_enable osc
7321 }
7322 run_test 120b "Early Lock Cancel: create test"
7323
7324 test_120c() {
7325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7326         test_mkdir -p $DIR/$tdir
7327         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7328                skip "no early lock cancel on server" && return 0
7329         lru_resize_disable mdc
7330         lru_resize_disable osc
7331         test_mkdir -p $DIR/$tdir/d1
7332         test_mkdir -p $DIR/$tdir/d2
7333         touch $DIR/$tdir/d1/f1
7334         cancel_lru_locks mdc
7335         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7336         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7337         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7338         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7339         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7340         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7341         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7342         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7343         lru_resize_enable mdc
7344         lru_resize_enable osc
7345 }
7346 run_test 120c "Early Lock Cancel: link test"
7347
7348 test_120d() {
7349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7350         test_mkdir -p $DIR/$tdir
7351         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7352                skip "no early lock cancel on server" && return 0
7353         lru_resize_disable mdc
7354         lru_resize_disable osc
7355         touch $DIR/$tdir
7356         cancel_lru_locks mdc
7357         stat $DIR/$tdir > /dev/null
7358         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7359         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7360         chmod a+x $DIR/$tdir
7361         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7362         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7363         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7364         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7365         lru_resize_enable mdc
7366         lru_resize_enable osc
7367 }
7368 run_test 120d "Early Lock Cancel: setattr test"
7369
7370 test_120e() {
7371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7372         test_mkdir -p $DIR/$tdir
7373         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7374                skip "no early lock cancel on server" && return 0
7375         lru_resize_disable mdc
7376         lru_resize_disable osc
7377         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7378         cancel_lru_locks mdc
7379         cancel_lru_locks osc
7380         dd if=$DIR/$tdir/f1 of=/dev/null
7381         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7382         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7383               awk '/ldlm_cancel/ {print $2}'`
7384         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7385               awk '/ldlm_bl_callback/ {print $2}'`
7386         unlink $DIR/$tdir/f1
7387         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7388               awk '/ldlm_cancel/ {print $2}'`
7389         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7390               awk '/ldlm_bl_callback/ {print $2}'`
7391         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7392         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7393         lru_resize_enable mdc
7394         lru_resize_enable osc
7395 }
7396 run_test 120e "Early Lock Cancel: unlink test"
7397
7398 test_120f() {
7399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7400         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7401                skip "no early lock cancel on server" && return 0
7402         test_mkdir -p $DIR/$tdir
7403         lru_resize_disable mdc
7404         lru_resize_disable osc
7405         test_mkdir -p $DIR/$tdir/d1
7406         test_mkdir -p $DIR/$tdir/d2
7407         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7408         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7409         cancel_lru_locks mdc
7410         cancel_lru_locks osc
7411         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7412         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7413         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7414         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7415               awk '/ldlm_cancel/ {print $2}'`
7416         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7417               awk '/ldlm_bl_callback/ {print $2}'`
7418         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7419         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7420               awk '/ldlm_cancel/ {print $2}'`
7421         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7422               awk '/ldlm_bl_callback/ {print $2}'`
7423         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7424         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7425         lru_resize_enable mdc
7426         lru_resize_enable osc
7427 }
7428 run_test 120f "Early Lock Cancel: rename test"
7429
7430 test_120g() {
7431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7432         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7433                skip "no early lock cancel on server" && return 0
7434         lru_resize_disable mdc
7435         lru_resize_disable osc
7436         count=10000
7437         echo create $count files
7438         test_mkdir -p $DIR/$tdir
7439         cancel_lru_locks mdc
7440         cancel_lru_locks osc
7441         t0=`date +%s`
7442
7443         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7444               awk '/ldlm_cancel/ {print $2}'`
7445         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7446               awk '/ldlm_bl_callback/ {print $2}'`
7447         createmany -o $DIR/$tdir/f $count
7448         sync
7449         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7450               awk '/ldlm_cancel/ {print $2}'`
7451         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7452               awk '/ldlm_bl_callback/ {print $2}'`
7453         t1=`date +%s`
7454         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7455         echo rm $count files
7456         rm -r $DIR/$tdir
7457         sync
7458         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7459               awk '/ldlm_cancel/ {print $2}'`
7460         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7461               awk '/ldlm_bl_callback/ {print $2}'`
7462         t2=`date +%s`
7463         echo total: $count removes in $((t2-t1))
7464         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7465         sleep 2
7466         # wait for commitment of removal
7467         lru_resize_enable mdc
7468         lru_resize_enable osc
7469 }
7470 run_test 120g "Early Lock Cancel: performance test"
7471
7472 test_121() { #bug #10589
7473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7474         rm -rf $DIR/$tfile
7475         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7476 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7477         lctl set_param fail_loc=0x310
7478         cancel_lru_locks osc > /dev/null
7479         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7480         lctl set_param fail_loc=0
7481         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7482 }
7483 run_test 121 "read cancel race ========="
7484
7485 test_123a() { # was test 123, statahead(bug 11401)
7486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7487         SLOWOK=0
7488         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7489             log "testing on UP system. Performance may be not as good as expected."
7490                         SLOWOK=1
7491         fi
7492
7493         rm -rf $DIR/$tdir
7494         test_mkdir -p $DIR/$tdir
7495         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7496         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7497         MULT=10
7498         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7499                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7500
7501                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7502                 lctl set_param -n llite.*.statahead_max 0
7503                 lctl get_param llite.*.statahead_max
7504                 cancel_lru_locks mdc
7505                 cancel_lru_locks osc
7506                 stime=`date +%s`
7507                 time ls -l $DIR/$tdir | wc -l
7508                 etime=`date +%s`
7509                 delta=$((etime - stime))
7510                 log "ls $i files without statahead: $delta sec"
7511                 lctl set_param llite.*.statahead_max=$max
7512
7513                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7514                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7515                 cancel_lru_locks mdc
7516                 cancel_lru_locks osc
7517                 stime=`date +%s`
7518                 time ls -l $DIR/$tdir | wc -l
7519                 etime=`date +%s`
7520                 delta_sa=$((etime - stime))
7521                 log "ls $i files with statahead: $delta_sa sec"
7522                 lctl get_param -n llite.*.statahead_stats
7523                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7524
7525                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7526                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7527
7528                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7529                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7530                     lctl set_param -n llite.*.statahead_max 0
7531                     lctl get_param llite.*.statahead_max
7532                     cancel_lru_locks mdc
7533                     cancel_lru_locks osc
7534                     stime=`date +%s`
7535                     time ls -l $DIR/$tdir | wc -l
7536                     etime=`date +%s`
7537                     delta=$((etime - stime))
7538                     log "ls $i files again without statahead: $delta sec"
7539                     lctl set_param llite.*.statahead_max=$max
7540                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7541                         if [  $SLOWOK -eq 0 ]; then
7542                                 error "ls $i files is slower with statahead!"
7543                         else
7544                                 log "ls $i files is slower with statahead!"
7545                         fi
7546                         break
7547                     fi
7548                 fi
7549
7550                 [ $delta -gt 20 ] && break
7551                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7552                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7553         done
7554         log "ls done"
7555
7556         stime=`date +%s`
7557         rm -r $DIR/$tdir
7558         sync
7559         etime=`date +%s`
7560         delta=$((etime - stime))
7561         log "rm -r $DIR/$tdir/: $delta seconds"
7562         log "rm done"
7563         lctl get_param -n llite.*.statahead_stats
7564 }
7565 run_test 123a "verify statahead work"
7566
7567 test_123b () { # statahead(bug 15027)
7568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7569         test_mkdir -p $DIR/$tdir
7570         createmany -o $DIR/$tdir/$tfile-%d 1000
7571
7572         cancel_lru_locks mdc
7573         cancel_lru_locks osc
7574
7575 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7576         lctl set_param fail_loc=0x80000803
7577         ls -lR $DIR/$tdir > /dev/null
7578         log "ls done"
7579         lctl set_param fail_loc=0x0
7580         lctl get_param -n llite.*.statahead_stats
7581         rm -r $DIR/$tdir
7582         sync
7583
7584 }
7585 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7586
7587 test_124a() {
7588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7589         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7590                skip "no lru resize on server" && return 0
7591         local NR=2000
7592         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7593
7594         log "create $NR files at $DIR/$tdir"
7595         createmany -o $DIR/$tdir/f $NR ||
7596                 error "failed to create $NR files in $DIR/$tdir"
7597
7598         cancel_lru_locks mdc
7599         ls -l $DIR/$tdir > /dev/null
7600
7601         local NSDIR=""
7602         local LRU_SIZE=0
7603         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7604                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7605                 LRU_SIZE=$(lctl get_param -n $PARAM)
7606                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7607                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7608                                                 log "NSDIR=$NSDIR"
7609                         log "NS=$(basename $NSDIR)"
7610                         break
7611                 fi
7612         done
7613
7614         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7615                 skip "Not enough cached locks created!"
7616                 return 0
7617         fi
7618         log "LRU=$LRU_SIZE"
7619
7620         local SLEEP=30
7621
7622         # We know that lru resize allows one client to hold $LIMIT locks
7623         # for 10h. After that locks begin to be killed by client.
7624         local MAX_HRS=10
7625         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7626                 log "LIMIT=$LIMIT"
7627
7628         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7629         # killing locks. Some time was spent for creating locks. This means
7630         # that up to the moment of sleep finish we must have killed some of
7631         # them (10-100 locks). This depends on how fast ther were created.
7632         # Many of them were touched in almost the same moment and thus will
7633         # be killed in groups.
7634         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7635
7636         # Use $LRU_SIZE_B here to take into account real number of locks
7637         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7638         local LRU_SIZE_B=$LRU_SIZE
7639         log "LVF=$LVF"
7640         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7641                 log "OLD_LVF=$OLD_LVF"
7642         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7643
7644         # Let's make sure that we really have some margin. Client checks
7645         # cached locks every 10 sec.
7646         SLEEP=$((SLEEP+20))
7647         log "Sleep ${SLEEP} sec"
7648         local SEC=0
7649         while ((SEC<$SLEEP)); do
7650                 echo -n "..."
7651                 sleep 5
7652                 SEC=$((SEC+5))
7653                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7654                 echo -n "$LRU_SIZE"
7655         done
7656         echo ""
7657         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7658         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7659
7660         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7661                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7662                 unlinkmany $DIR/$tdir/f $NR
7663                 return
7664         }
7665
7666         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7667         log "unlink $NR files at $DIR/$tdir"
7668         unlinkmany $DIR/$tdir/f $NR
7669 }
7670 run_test 124a "lru resize ======================================="
7671
7672 get_max_pool_limit()
7673 {
7674         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7675         local max=0
7676         for l in $limit; do
7677                 if test $l -gt $max; then
7678                         max=$l
7679                 fi
7680         done
7681         echo $max
7682 }
7683
7684 test_124b() {
7685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7686         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7687                skip "no lru resize on server" && return 0
7688
7689         LIMIT=`get_max_pool_limit`
7690
7691         NR=$(($(default_lru_size)*20))
7692         if [ $NR -gt $LIMIT ]; then
7693                 log "Limit lock number by $LIMIT locks"
7694                 NR=$LIMIT
7695         fi
7696         lru_resize_disable mdc
7697         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7698                 error "failed to create $DIR/$tdir/disable_lru_resize"
7699
7700         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7701         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7702         cancel_lru_locks mdc
7703         stime=`date +%s`
7704         PID=""
7705         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7706         PID="$PID $!"
7707         sleep 2
7708         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7709         PID="$PID $!"
7710         sleep 2
7711         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7712         PID="$PID $!"
7713         wait $PID
7714         etime=`date +%s`
7715         nolruresize_delta=$((etime-stime))
7716         log "ls -la time: $nolruresize_delta seconds"
7717         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7718         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7719
7720         lru_resize_enable mdc
7721         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7722                 error "failed to create $DIR/$tdir/enable_lru_resize"
7723
7724         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7725         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7726         cancel_lru_locks mdc
7727         stime=`date +%s`
7728         PID=""
7729         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7730         PID="$PID $!"
7731         sleep 2
7732         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7733         PID="$PID $!"
7734         sleep 2
7735         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7736         PID="$PID $!"
7737         wait $PID
7738         etime=`date +%s`
7739         lruresize_delta=$((etime-stime))
7740         log "ls -la time: $lruresize_delta seconds"
7741         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7742
7743         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7744                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7745         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7746                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7747         else
7748                 log "lru resize performs the same with no lru resize"
7749         fi
7750         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7751 }
7752 run_test 124b "lru resize (performance test) ======================="
7753
7754 test_125() { # 13358
7755         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7756         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7757         test_mkdir -p $DIR/d125 || error "mkdir failed"
7758         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7759         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7760         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7761 }
7762 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7763
7764 test_126() { # bug 12829/13455
7765         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7766         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7767         $GSS && skip "must run as gss disabled" && return
7768
7769         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7770         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7771         rm -f $DIR/$tfile
7772         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7773 }
7774 run_test 126 "check that the fsgid provided by the client is taken into account"
7775
7776 test_127a() { # bug 15521
7777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7778         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7779         $LCTL set_param osc.*.stats=0
7780         FSIZE=$((2048 * 1024))
7781         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7782         cancel_lru_locks osc
7783         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7784
7785         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7786         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7787                 echo "got $COUNT $NAME"
7788                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7789                 eval $NAME=$COUNT || error "Wrong proc format"
7790
7791                 case $NAME in
7792                         read_bytes|write_bytes)
7793                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7794                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7795                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7796                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7797                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7798                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7799                                 error "sumsquare is too small: $SUMSQ"
7800                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7801                                 error "sumsquare is too big: $SUMSQ"
7802                         ;;
7803                         *) ;;
7804                 esac
7805         done < $DIR/${tfile}.tmp
7806
7807         #check that we actually got some stats
7808         [ "$read_bytes" ] || error "Missing read_bytes stats"
7809         [ "$write_bytes" ] || error "Missing write_bytes stats"
7810         [ "$read_bytes" != 0 ] || error "no read done"
7811         [ "$write_bytes" != 0 ] || error "no write done"
7812 }
7813 run_test 127a "verify the client stats are sane"
7814
7815 test_127b() { # bug LU-333
7816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7817         $LCTL set_param llite.*.stats=0
7818         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7819         # perform 2 reads and writes so MAX is different from SUM.
7820         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7821         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7822         cancel_lru_locks osc
7823         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7824         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7825
7826         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7827         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7828                 echo "got $COUNT $NAME"
7829                 eval $NAME=$COUNT || error "Wrong proc format"
7830
7831         case $NAME in
7832                 read_bytes)
7833                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7834                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7835                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7836                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7837                         ;;
7838                 write_bytes)
7839                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7840                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7841                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7842                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7843                         ;;
7844                         *) ;;
7845                 esac
7846         done < $TMP/${tfile}.tmp
7847
7848         #check that we actually got some stats
7849         [ "$read_bytes" ] || error "Missing read_bytes stats"
7850         [ "$write_bytes" ] || error "Missing write_bytes stats"
7851         [ "$read_bytes" != 0 ] || error "no read done"
7852         [ "$write_bytes" != 0 ] || error "no write done"
7853 }
7854 run_test 127b "verify the llite client stats are sane"
7855
7856 test_128() { # bug 15212
7857         touch $DIR/$tfile
7858         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7859                 find $DIR/$tfile
7860                 find $DIR/$tfile
7861         EOF
7862
7863         result=$(grep error $TMP/$tfile.log)
7864         rm -f $DIR/$tfile
7865         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7866 }
7867 run_test 128 "interactive lfs for 2 consecutive find's"
7868
7869 set_dir_limits () {
7870         local mntdev
7871         local canondev
7872         local node
7873
7874         local LDPROC=/proc/fs/ldiskfs
7875         local facets=$(get_facets MDS)
7876
7877         for facet in ${facets//,/ }; do
7878                 canondev=$(ldiskfs_canon \
7879                            *.$(convert_facet2label $facet).mntdev $facet)
7880                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7881                                                 LDPROC=/sys/fs/ldiskfs
7882                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7883         done
7884 }
7885
7886 test_129() {
7887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7888         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7889                 skip "Only applicable to ldiskfs-based MDTs"
7890                 return
7891         fi
7892         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7893
7894         ENOSPC=28
7895         EFBIG=27
7896
7897         test_mkdir -p $DIR/$tdir
7898
7899         MAX=$(stat -c%s "$DIR/$tdir")
7900         set_dir_limits $MAX
7901         local I=0
7902         local J=0
7903         while [ ! $I -gt $MAX ]; do
7904                 $MULTIOP $DIR/$tdir/$J Oc
7905                 rc=$?
7906                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7907                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7908                 #and EFBIG for previous versions
7909                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7910                         set_dir_limits 0
7911                         echo "return code $rc received as expected"
7912                         multiop $DIR/$tdir/$J Oc
7913                         rc=$?
7914                         I=$(stat -c%s "$DIR/$tdir")
7915                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7916                                 return 0
7917                         else
7918                                 error_exit "return code $rc current dir size $I " \
7919                                            "previous limit $MAX"
7920                         fi
7921                 elif [ $rc -ne 0 ]; then
7922                         set_dir_limits 0
7923                         error_exit "return code $rc received instead of expected " \
7924                                    "$EFBIG or $ENOSPC, files in dir $I"
7925                 fi
7926                 J=$((J+1))
7927                 I=$(stat -c%s "$DIR/$tdir")
7928         done
7929
7930         set_dir_limits 0
7931         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7932 }
7933 run_test 129 "test directory size limit ========================"
7934
7935 OLDIFS="$IFS"
7936 cleanup_130() {
7937         trap 0
7938         IFS="$OLDIFS"
7939 }
7940
7941 test_130a() {
7942         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7943         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7944                 return
7945
7946         trap cleanup_130 EXIT RETURN
7947
7948         local fm_file=$DIR/$tfile
7949         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7950         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7951                 error "dd failed for $fm_file"
7952
7953         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7954         filefrag -ves $fm_file
7955         RC=$?
7956         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7957                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7958         [ $RC != 0 ] && error "filefrag $fm_file failed"
7959
7960         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7961                       grep -v "ext:" | grep -v "found")
7962         lun=$($GETSTRIPE -i $fm_file)
7963
7964         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7965         IFS=$'\n'
7966         tot_len=0
7967         for line in $filefrag_op
7968         do
7969                 frag_lun=`echo $line | cut -d: -f5`
7970                 ext_len=`echo $line | cut -d: -f4`
7971                 if (( $frag_lun != $lun )); then
7972                         cleanup_130
7973                         error "FIEMAP on 1-stripe file($fm_file) failed"
7974                         return
7975                 fi
7976                 (( tot_len += ext_len ))
7977         done
7978
7979         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7980                 cleanup_130
7981                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7982                 return
7983         fi
7984
7985         cleanup_130
7986
7987         echo "FIEMAP on single striped file succeeded"
7988 }
7989 run_test 130a "FIEMAP (1-stripe file)"
7990
7991 test_130b() {
7992         [ "$OSTCOUNT" -lt "2" ] &&
7993                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7994
7995         [ "$OSTCOUNT" -ge "10" ] &&
7996                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7997
7998         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7999         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8000                 return
8001
8002         trap cleanup_130 EXIT RETURN
8003
8004         local fm_file=$DIR/$tfile
8005         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8006         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8007                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8008
8009         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8010                 error "dd failed on $fm_file"
8011
8012         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8013         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8014                       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                         if (( tot_len != 1024 )); then
8027                                 cleanup_130
8028                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8029                                 return
8030                         else
8031                                 (( num_luns += 1 ))
8032                                 tot_len=0
8033                         fi
8034                 fi
8035                 (( tot_len += ext_len ))
8036                 last_lun=$frag_lun
8037         done
8038         if (( num_luns != 2 || tot_len != 1024 )); then
8039                 cleanup_130
8040                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8041                 return
8042         fi
8043
8044         cleanup_130
8045
8046         echo "FIEMAP on 2-stripe file succeeded"
8047 }
8048 run_test 130b "FIEMAP (2-stripe file)"
8049
8050 test_130c() {
8051         [ "$OSTCOUNT" -lt "2" ] &&
8052                 skip_env "skipping FIEMAP on 2-stripe file" && return
8053
8054         [ "$OSTCOUNT" -ge "10" ] &&
8055                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8056
8057         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8058         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8059                 return
8060
8061         trap cleanup_130 EXIT RETURN
8062
8063         local fm_file=$DIR/$tfile
8064         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8065         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8066                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8067
8068         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8069
8070         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8071         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8072
8073         last_lun=`echo $filefrag_op | cut -d: -f5`
8074
8075         IFS=$'\n'
8076         tot_len=0
8077         num_luns=1
8078         for line in $filefrag_op
8079         do
8080                 frag_lun=`echo $line | cut -d: -f5`
8081                 ext_len=`echo $line | cut -d: -f4`
8082                 if (( $frag_lun != $last_lun )); then
8083                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8084                         if (( logical != 512 )); then
8085                                 cleanup_130
8086                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8087                                 return
8088                         fi
8089                         if (( tot_len != 512 )); then
8090                                 cleanup_130
8091                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8092                                 return
8093                         else
8094                                 (( num_luns += 1 ))
8095                                 tot_len=0
8096                         fi
8097                 fi
8098                 (( tot_len += ext_len ))
8099                 last_lun=$frag_lun
8100         done
8101         if (( num_luns != 2 || tot_len != 512 )); then
8102                 cleanup_130
8103                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8104                 return
8105         fi
8106
8107         cleanup_130
8108
8109         echo "FIEMAP on 2-stripe file with hole succeeded"
8110 }
8111 run_test 130c "FIEMAP (2-stripe file with hole)"
8112
8113 test_130d() {
8114         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8115
8116         [ "$OSTCOUNT" -ge "10" ] &&
8117                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8118
8119         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8120         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8121
8122         trap cleanup_130 EXIT RETURN
8123
8124         local fm_file=$DIR/$tfile
8125         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8126         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8127                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8128
8129         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8130         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8131                 error "dd failed on $fm_file"
8132
8133         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8134         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8135                 grep -v "ext:" | grep -v "found"`
8136
8137         last_lun=`echo $filefrag_op | cut -d: -f5`
8138
8139         IFS=$'\n'
8140         tot_len=0
8141         num_luns=1
8142         for line in $filefrag_op
8143         do
8144                 frag_lun=`echo $line | cut -d: -f5`
8145                 ext_len=`echo $line | cut -d: -f4`
8146                 if (( $frag_lun != $last_lun )); then
8147                         if (( tot_len != 1024 )); then
8148                                 cleanup_130
8149                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8150                                 return
8151                         else
8152                                 (( num_luns += 1 ))
8153                                 tot_len=0
8154                         fi
8155                 fi
8156                 (( tot_len += ext_len ))
8157                 last_lun=$frag_lun
8158         done
8159         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8160                 cleanup_130
8161                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8162                 return
8163         fi
8164
8165         cleanup_130
8166
8167         echo "FIEMAP on N-stripe file succeeded"
8168 }
8169 run_test 130d "FIEMAP (N-stripe file)"
8170
8171 test_130e() {
8172         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8173
8174         [ "$OSTCOUNT" -ge "10" ] &&
8175                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8176
8177         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8178         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8179
8180         trap cleanup_130 EXIT RETURN
8181
8182         local fm_file=$DIR/$tfile
8183         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8184         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8185                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8186
8187         NUM_BLKS=512
8188         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8189         for ((i = 0; i < $NUM_BLKS; i++))
8190         do
8191                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8192         done
8193
8194         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8195         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8196
8197         last_lun=`echo $filefrag_op | cut -d: -f5`
8198
8199         IFS=$'\n'
8200         tot_len=0
8201         num_luns=1
8202         for line in $filefrag_op
8203         do
8204                 frag_lun=`echo $line | cut -d: -f5`
8205                 ext_len=`echo $line | cut -d: -f4`
8206                 if (( $frag_lun != $last_lun )); then
8207                         if (( tot_len != $EXPECTED_LEN )); then
8208                                 cleanup_130
8209                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8210                                 return
8211                         else
8212                                 (( num_luns += 1 ))
8213                                 tot_len=0
8214                         fi
8215                 fi
8216                 (( tot_len += ext_len ))
8217                 last_lun=$frag_lun
8218         done
8219         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8220                 cleanup_130
8221                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8222                 return
8223         fi
8224
8225         cleanup_130
8226
8227         echo "FIEMAP with continuation calls succeeded"
8228 }
8229 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8230
8231 # Test for writev/readv
8232 test_131a() {
8233         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8234         error "writev test failed"
8235         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8236         error "readv failed"
8237         rm -f $DIR/$tfile
8238 }
8239 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8240
8241 test_131b() {
8242         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8243         error "append writev test failed"
8244         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8245         error "append writev test failed"
8246         rm -f $DIR/$tfile
8247 }
8248 run_test 131b "test append writev"
8249
8250 test_131c() {
8251         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8252         error "NOT PASS"
8253 }
8254 run_test 131c "test read/write on file w/o objects"
8255
8256 test_131d() {
8257         rwv -f $DIR/$tfile -w -n 1 1572864
8258         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8259         if [ "$NOB" != 1572864 ]; then
8260                 error "Short read filed: read $NOB bytes instead of 1572864"
8261         fi
8262         rm -f $DIR/$tfile
8263 }
8264 run_test 131d "test short read"
8265
8266 test_131e() {
8267         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8268         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8269         error "read hitting hole failed"
8270         rm -f $DIR/$tfile
8271 }
8272 run_test 131e "test read hitting hole"
8273
8274 get_ost_param() {
8275         local token=$1
8276         local gl_sum=0
8277         for node in $(osts_nodes); do
8278                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8279                 [ x$gl = x"" ] && gl=0
8280                 gl_sum=$((gl_sum + gl))
8281         done
8282         echo $gl_sum
8283 }
8284
8285 som_mode_switch() {
8286         local som=$1
8287         local gl1=$2
8288         local gl2=$3
8289
8290         if [ x$som = x"enabled" ]; then
8291                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8292                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8293                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8294         else
8295                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8296                 MOUNTOPT="$MOUNTOPT,som_preview"
8297                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8298         fi
8299
8300         # do remount to make new mount-conf parameters actual
8301         echo remounting...
8302         sync
8303         stopall
8304         setupall
8305 }
8306
8307 test_132() { #1028, SOM
8308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8309         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8310         local num=$(get_mds_dir $DIR)
8311         local mymds=mds${num}
8312         local MOUNTOPT_SAVE=$MOUNTOPT
8313
8314         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8315         cancel_lru_locks osc
8316
8317         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8318
8319         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8320         stat $DIR/$tfile >/dev/null
8321         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8322         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8323         rm $DIR/$tfile
8324         som_mode_switch $som1 $gl1 $gl2
8325
8326         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8327         cancel_lru_locks osc
8328
8329         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8330         if [ $som1 == $som2 ]; then
8331             error "som is still "$som2
8332             if [ x$som2 = x"enabled" ]; then
8333                 som2="disabled"
8334             else
8335                 som2="enabled"
8336             fi
8337         fi
8338
8339         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8340         stat $DIR/$tfile >/dev/null
8341         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8342         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8343         som_mode_switch $som2 $gl1 $gl2
8344         MOUNTOPT=$MOUNTOPT_SAVE
8345 }
8346 run_test 132 "som avoids glimpse rpc"
8347
8348 check_stats() {
8349         local res
8350         local count
8351         case $1 in
8352         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8353                  ;;
8354         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8355                  ;;
8356         *) error "Wrong argument $1" ;;
8357         esac
8358         echo $res
8359         count=`echo $res | awk '{print $2}'`
8360         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8361         # if the argument $3 is zero, it means any stat increment is ok.
8362         if [ $3 -gt 0 ] ; then
8363                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8364         fi
8365 }
8366
8367 test_133a() {
8368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8369         remote_ost_nodsh && skip "remote OST with nodsh" && return
8370         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8371
8372         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8373                 { skip "MDS doesn't support rename stats"; return; }
8374         local testdir=$DIR/${tdir}/stats_testdir
8375         mkdir -p $DIR/${tdir}
8376
8377         # clear stats.
8378         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8379         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8380
8381         # verify mdt stats first.
8382         mkdir ${testdir} || error "mkdir failed"
8383         check_stats $SINGLEMDS "mkdir" 1
8384         touch ${testdir}/${tfile} || "touch failed"
8385         check_stats $SINGLEMDS "open" 1
8386         check_stats $SINGLEMDS "close" 1
8387         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8388         check_stats $SINGLEMDS "mknod" 1
8389         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8390         check_stats $SINGLEMDS "unlink" 1
8391         rm -f ${testdir}/${tfile} || error "file remove failed"
8392         check_stats $SINGLEMDS "unlink" 2
8393
8394         # remove working dir and check mdt stats again.
8395         rmdir ${testdir} || error "rmdir failed"
8396         check_stats $SINGLEMDS "rmdir" 1
8397
8398         local testdir1=$DIR/${tdir}/stats_testdir1
8399         mkdir -p ${testdir}
8400         mkdir -p ${testdir1}
8401         touch ${testdir1}/test1
8402         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8403         check_stats $SINGLEMDS "crossdir_rename" 1
8404
8405         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8406         check_stats $SINGLEMDS "samedir_rename" 1
8407
8408         rm -rf $DIR/${tdir}
8409 }
8410 run_test 133a "Verifying MDT stats ========================================"
8411
8412 test_133b() {
8413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8414         remote_ost_nodsh && skip "remote OST with nodsh" && return
8415         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8416         local testdir=$DIR/${tdir}/stats_testdir
8417         mkdir -p ${testdir} || error "mkdir failed"
8418         touch ${testdir}/${tfile} || "touch failed"
8419         cancel_lru_locks mdc
8420
8421         # clear stats.
8422         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8423         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8424
8425         # extra mdt stats verification.
8426         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8427         check_stats $SINGLEMDS "setattr" 1
8428         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8429         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8430         then            # LU-1740
8431                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8432                 check_stats $SINGLEMDS "getattr" 1
8433         fi
8434         $LFS df || error "lfs failed"
8435         check_stats $SINGLEMDS "statfs" 1
8436
8437         rm -rf $DIR/${tdir}
8438 }
8439 run_test 133b "Verifying extra MDT stats =================================="
8440
8441 test_133c() {
8442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8443         remote_ost_nodsh && skip "remote OST with nodsh" && return
8444         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8445         local testdir=$DIR/${tdir}/stats_testdir
8446         test_mkdir -p ${testdir} || error "mkdir failed"
8447
8448         # verify obdfilter stats.
8449         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8450         sync
8451         cancel_lru_locks osc
8452         wait_delete_completed
8453
8454         # clear stats.
8455         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8456         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8457
8458         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8459         sync
8460         cancel_lru_locks osc
8461         check_stats ost "write" 1
8462
8463         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8464         check_stats ost "read" 1
8465
8466         > ${testdir}/${tfile} || error "truncate failed"
8467         check_stats ost "punch" 1
8468
8469         rm -f ${testdir}/${tfile} || error "file remove failed"
8470         wait_delete_completed
8471         check_stats ost "destroy" 1
8472
8473         rm -rf $DIR/${tdir}
8474 }
8475 run_test 133c "Verifying OST stats ========================================"
8476
8477 order_2() {
8478     local value=$1
8479     local orig=$value
8480     local order=1
8481
8482     while [ $value -ge 2 ]; do
8483         order=$((order*2))
8484         value=$((value/2))
8485     done
8486
8487     if [ $orig -gt $order ]; then
8488         order=$((order*2))
8489     fi
8490     echo $order
8491 }
8492
8493 size_in_KMGT() {
8494     local value=$1
8495     local size=('K' 'M' 'G' 'T');
8496     local i=0
8497     local size_string=$value
8498
8499     while [ $value -ge 1024 ]; do
8500         if [ $i -gt 3 ]; then
8501             #T is the biggest unit we get here, if that is bigger,
8502             #just return XXXT
8503             size_string=${value}T
8504             break
8505         fi
8506         value=$((value >> 10))
8507         if [ $value -lt 1024 ]; then
8508             size_string=${value}${size[$i]}
8509             break
8510         fi
8511         i=$((i + 1))
8512     done
8513
8514     echo $size_string
8515 }
8516
8517 get_rename_size() {
8518     local size=$1
8519     local context=${2:-.}
8520     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8521                 grep -A1 $context |
8522                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8523     echo $sample
8524 }
8525
8526 test_133d() {
8527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8528         remote_ost_nodsh && skip "remote OST with nodsh" && return
8529         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8530         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8531         { skip "MDS doesn't support rename stats"; return; }
8532
8533         local testdir1=$DIR/${tdir}/stats_testdir1
8534         local testdir2=$DIR/${tdir}/stats_testdir2
8535
8536         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8537
8538         mkdir -p ${testdir1} || error "mkdir failed"
8539         mkdir -p ${testdir2} || error "mkdir failed"
8540
8541         createmany -o $testdir1/test 512 || error "createmany failed"
8542
8543         # check samedir rename size
8544         mv ${testdir1}/test0 ${testdir1}/test_0
8545
8546         local testdir1_size=$(ls -l $DIR/${tdir} |
8547                 awk '/stats_testdir1/ {print $5}')
8548         local testdir2_size=$(ls -l $DIR/${tdir} |
8549                 awk '/stats_testdir2/ {print $5}')
8550
8551         testdir1_size=$(order_2 $testdir1_size)
8552         testdir2_size=$(order_2 $testdir2_size)
8553
8554         testdir1_size=$(size_in_KMGT $testdir1_size)
8555         testdir2_size=$(size_in_KMGT $testdir2_size)
8556
8557         echo "source rename dir size: ${testdir1_size}"
8558         echo "target rename dir size: ${testdir2_size}"
8559
8560         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8561         eval $cmd || error "$cmd failed"
8562         local samedir=$($cmd | grep 'same_dir')
8563         local same_sample=$(get_rename_size $testdir1_size)
8564         [ -z "$samedir" ] && error "samedir_rename_size count error"
8565         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8566         echo "Check same dir rename stats success"
8567
8568         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8569
8570         # check crossdir rename size
8571         mv ${testdir1}/test_0 ${testdir2}/test_0
8572
8573         testdir1_size=$(ls -l $DIR/${tdir} |
8574                 awk '/stats_testdir1/ {print $5}')
8575         testdir2_size=$(ls -l $DIR/${tdir} |
8576                 awk '/stats_testdir2/ {print $5}')
8577
8578         testdir1_size=$(order_2 $testdir1_size)
8579         testdir2_size=$(order_2 $testdir2_size)
8580
8581         testdir1_size=$(size_in_KMGT $testdir1_size)
8582         testdir2_size=$(size_in_KMGT $testdir2_size)
8583
8584         echo "source rename dir size: ${testdir1_size}"
8585         echo "target rename dir size: ${testdir2_size}"
8586
8587         eval $cmd || error "$cmd failed"
8588         local crossdir=$($cmd | grep 'crossdir')
8589         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8590         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8591         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8592         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8593         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8594         echo "Check cross dir rename stats success"
8595         rm -rf $DIR/${tdir}
8596 }
8597 run_test 133d "Verifying rename_stats ========================================"
8598
8599 test_133e() {
8600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8601         local testdir=$DIR/${tdir}/stats_testdir
8602         local ctr f0 f1 bs=32768 count=42 sum
8603
8604         remote_ost_nodsh && skip "remote OST with nodsh" && return
8605         mkdir -p ${testdir} || error "mkdir failed"
8606
8607         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8608
8609         for ctr in {write,read}_bytes; do
8610                 sync
8611                 cancel_lru_locks osc
8612
8613                 do_facet ost1 $LCTL set_param -n \
8614                         "obdfilter.*.exports.clear=clear"
8615
8616                 if [ $ctr = write_bytes ]; then
8617                         f0=/dev/zero
8618                         f1=${testdir}/${tfile}
8619                 else
8620                         f0=${testdir}/${tfile}
8621                         f1=/dev/null
8622                 fi
8623
8624                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8625                         error "dd failed"
8626                 sync
8627                 cancel_lru_locks osc
8628
8629                 sum=$(do_facet ost1 $LCTL get_param \
8630                                 "obdfilter.*.exports.*.stats" | \
8631                           awk -v ctr=$ctr '\
8632                                 BEGIN { sum = 0 }
8633                                 $1 == ctr { sum += $7 }
8634                                 END { print sum }')
8635
8636                 if ((sum != bs * count)); then
8637                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8638                 fi
8639         done
8640
8641         rm -rf $DIR/${tdir}
8642 }
8643 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8644
8645 test_133f() {
8646         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8647         local facet
8648
8649         # First without trusting modes.
8650         find $proc_dirs \
8651                 -exec cat '{}' \; &> /dev/null
8652
8653         # Second verifying readability.
8654         find $proc_dirs \
8655                 -type f \
8656                 -readable \
8657                 -exec cat '{}' \; > /dev/null ||
8658                         error "proc file read failed"
8659
8660         for facet in $SINGLEMDS ost1; do
8661                 do_facet $facet find $proc_dirs \
8662                         -not -name req_history \
8663                         -exec cat '{}' \\\; &> /dev/null
8664
8665             do_facet $facet     find $proc_dirs \
8666                         -not -name req_history \
8667                         -type f \
8668                         -readable \
8669                         -exec cat '{}' \\\; > /dev/null ||
8670                                 error "proc file read failed"
8671         done
8672 }
8673 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8674
8675 test_140() { #bug-17379
8676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8677         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8678         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8679         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8680
8681         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8682         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8683         local i=0
8684         while i=`expr $i + 1`; do
8685                 test_mkdir -p $i || error "Creating dir $i"
8686                 cd $i || error "Changing to $i"
8687                 ln -s ../stat stat || error "Creating stat symlink"
8688                 # Read the symlink until ELOOP present,
8689                 # not LBUGing the system is considered success,
8690                 # we didn't overrun the stack.
8691                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8692                 [ $ret -ne 0 ] && {
8693                         if [ $ret -eq 40 ]; then
8694                                 break  # -ELOOP
8695                         else
8696                                 error "Open stat symlink"
8697                                 return
8698                         fi
8699                 }
8700         done
8701         i=`expr $i - 1`
8702         echo "The symlink depth = $i"
8703         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8704                                         error "Invalid symlink depth"
8705
8706         # Test recursive symlink
8707         ln -s symlink_self symlink_self
8708         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8709         echo "open symlink_self returns $ret"
8710         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8711 }
8712 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8713
8714 test_150() {
8715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8716         local TF="$TMP/$tfile"
8717
8718         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8719         cp $TF $DIR/$tfile
8720         cancel_lru_locks osc
8721         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8722         remount_client $MOUNT
8723         df -P $MOUNT
8724         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8725
8726         $TRUNCATE $TF 6000
8727         $TRUNCATE $DIR/$tfile 6000
8728         cancel_lru_locks osc
8729         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8730
8731         echo "12345" >>$TF
8732         echo "12345" >>$DIR/$tfile
8733         cancel_lru_locks osc
8734         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8735
8736         echo "12345" >>$TF
8737         echo "12345" >>$DIR/$tfile
8738         cancel_lru_locks osc
8739         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8740
8741         rm -f $TF
8742         true
8743 }
8744 run_test 150 "truncate/append tests"
8745
8746 #LU-2902 roc_hit was not able to read all values from lproc
8747 function roc_hit_init() {
8748         local list=$(comma_list $(osts_nodes))
8749         local dir=$DIR/$tdir-check
8750         local file=$dir/file
8751         local BEFORE
8752         local AFTER
8753         local idx
8754
8755         test_mkdir -p $dir
8756         #use setstripe to do a write to every ost
8757         for i in $(seq 0 $((OSTCOUNT-1))); do
8758                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8759                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8760                 idx=$(printf %04x $i)
8761                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8762                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8763                 if [ -z "$BEFORE" ]; then
8764                         BEFORE=0
8765                 fi
8766
8767                 cancel_lru_locks osc
8768                 cat $file >/dev/null
8769
8770                 AFTER=$(get_osd_param $list *OST*$idx stats |
8771                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8772
8773                 echo BEFORE:$BEFORE AFTER:$AFTER
8774                 if ! let "AFTER - BEFORE == 4"; then
8775                         rm -rf $dir
8776                         error "roc_hit is not safe to use"
8777                 fi
8778                 rm $file
8779         done
8780
8781         rm -rf $dir
8782 }
8783
8784 function roc_hit() {
8785         local list=$(comma_list $(osts_nodes))
8786         echo $(get_osd_param $list '' stats |
8787                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8788 }
8789
8790 function set_cache() {
8791         local on=1
8792
8793         if [ "$2" == "off" ]; then
8794                 on=0;
8795         fi
8796         local list=$(comma_list $(osts_nodes))
8797         set_osd_param $list '' $1_cache_enable $on
8798
8799         cancel_lru_locks osc
8800 }
8801
8802 test_151() {
8803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8804         remote_ost_nodsh && skip "remote OST with nodsh" && return
8805
8806         local CPAGES=3
8807         local list=$(comma_list $(osts_nodes))
8808
8809         # check whether obdfilter is cache capable at all
8810         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8811                 echo "not cache-capable obdfilter"
8812                 return 0
8813         fi
8814
8815         # check cache is enabled on all obdfilters
8816         if get_osd_param $list '' read_cache_enable | grep 0; then
8817                 echo "oss cache is disabled"
8818                 return 0
8819         fi
8820
8821         set_osd_param $list '' writethrough_cache_enable 1
8822
8823         # check write cache is enabled on all obdfilters
8824         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8825                 echo "oss write cache is NOT enabled"
8826                 return 0
8827         fi
8828
8829         roc_hit_init
8830
8831         #define OBD_FAIL_OBD_NO_LRU  0x609
8832         do_nodes $list $LCTL set_param fail_loc=0x609
8833
8834         # pages should be in the case right after write
8835         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8836                 error "dd failed"
8837
8838         local BEFORE=$(roc_hit)
8839         cancel_lru_locks osc
8840         cat $DIR/$tfile >/dev/null
8841         local AFTER=$(roc_hit)
8842
8843         do_nodes $list $LCTL set_param fail_loc=0
8844
8845         if ! let "AFTER - BEFORE == CPAGES"; then
8846                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8847         fi
8848
8849         # the following read invalidates the cache
8850         cancel_lru_locks osc
8851         set_osd_param $list '' read_cache_enable 0
8852         cat $DIR/$tfile >/dev/null
8853
8854         # now data shouldn't be found in the cache
8855         BEFORE=$(roc_hit)
8856         cancel_lru_locks osc
8857         cat $DIR/$tfile >/dev/null
8858         AFTER=$(roc_hit)
8859         if let "AFTER - BEFORE != 0"; then
8860                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8861         fi
8862
8863         set_osd_param $list '' read_cache_enable 1
8864         rm -f $DIR/$tfile
8865 }
8866 run_test 151 "test cache on oss and controls ==============================="
8867
8868 test_152() {
8869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8870         local TF="$TMP/$tfile"
8871
8872         # simulate ENOMEM during write
8873 #define OBD_FAIL_OST_NOMEM      0x226
8874         lctl set_param fail_loc=0x80000226
8875         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8876         cp $TF $DIR/$tfile
8877         sync || error "sync failed"
8878         lctl set_param fail_loc=0
8879
8880         # discard client's cache
8881         cancel_lru_locks osc
8882
8883         # simulate ENOMEM during read
8884         lctl set_param fail_loc=0x80000226
8885         cmp $TF $DIR/$tfile || error "cmp failed"
8886         lctl set_param fail_loc=0
8887
8888         rm -f $TF
8889 }
8890 run_test 152 "test read/write with enomem ============================"
8891
8892 test_153() {
8893         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8894 }
8895 run_test 153 "test if fdatasync does not crash ======================="
8896
8897 dot_lustre_fid_permission_check() {
8898         local fid=$1
8899         local ffid=$MOUNT/.lustre/fid/$fid
8900         local test_dir=$2
8901
8902         echo "stat fid $fid"
8903         stat $ffid > /dev/null || error "stat $ffid failed."
8904         echo "touch fid $fid"
8905         touch $ffid || error "touch $ffid failed."
8906         echo "write to fid $fid"
8907         cat /etc/hosts > $ffid || error "write $ffid failed."
8908         echo "read fid $fid"
8909         diff /etc/hosts $ffid || error "read $ffid failed."
8910         echo "append write to fid $fid"
8911         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8912         echo "rename fid $fid"
8913         mv $ffid $test_dir/$tfile.1 &&
8914                 error "rename $ffid to $tfile.1 should fail."
8915         touch $test_dir/$tfile.1
8916         mv $test_dir/$tfile.1 $ffid &&
8917                 error "rename $tfile.1 to $ffid should fail."
8918         rm -f $test_dir/$tfile.1
8919         echo "truncate fid $fid"
8920         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8921         echo "link fid $fid"
8922         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8923         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8924                 echo "setfacl fid $fid"
8925                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8926                 echo "getfacl fid $fid"
8927                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8928         fi
8929         echo "unlink fid $fid"
8930         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8931         echo "mknod fid $fid"
8932         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8933
8934         fid=[0xf00000400:0x1:0x0]
8935         ffid=$MOUNT/.lustre/fid/$fid
8936
8937         echo "stat non-exist fid $fid"
8938         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8939         echo "write to non-exist fid $fid"
8940         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8941         echo "link new fid $fid"
8942         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8943
8944         mkdir -p $test_dir/$tdir
8945         touch $test_dir/$tdir/$tfile
8946         fid=$($LFS path2fid $test_dir/$tdir)
8947         rc=$?
8948         [ $rc -ne 0 ] &&
8949                 error "error: could not get fid for $test_dir/$dir/$tfile."
8950
8951         ffid=$MOUNT/.lustre/fid/$fid
8952
8953         echo "ls $fid"
8954         ls $ffid > /dev/null || error "ls $ffid failed."
8955         echo "touch $fid/$tfile.1"
8956         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8957
8958         echo "touch $MOUNT/.lustre/fid/$tfile"
8959         touch $MOUNT/.lustre/fid/$tfile && \
8960                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8961
8962         echo "setxattr to $MOUNT/.lustre/fid"
8963         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8964
8965         echo "listxattr for $MOUNT/.lustre/fid"
8966         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8967
8968         echo "delxattr from $MOUNT/.lustre/fid"
8969         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8970
8971         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8972         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8973                 error "touch invalid fid should fail."
8974
8975         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8976         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8977                 error "touch non-normal fid should fail."
8978
8979         echo "rename $tdir to $MOUNT/.lustre/fid"
8980         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8981                 error "rename to $MOUNT/.lustre/fid should fail."
8982
8983         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
8984         then            # LU-3547
8985                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8986                 local new_obf_mode=777
8987
8988                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8989                 chmod $new_obf_mode $DIR/.lustre/fid ||
8990                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8991
8992                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8993                 [ $obf_mode -eq $new_obf_mode ] ||
8994                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8995
8996                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8997                 chmod $old_obf_mode $DIR/.lustre/fid ||
8998                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8999         fi
9000
9001         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9002         fid=$($LFS path2fid $test_dir/$tfile-2)
9003         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9004         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
9005                 error "create lov data thru .lustre should fail."
9006         echo "cp /etc/passwd $test_dir/$tfile-2"
9007         cp /etc/passwd $test_dir/$tfile-2 ||
9008                 error "copy to $test_dir/$tfile-2 failed."
9009         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9010         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9011                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9012
9013         rm -rf $test_dir/tfile.lnk
9014         rm -rf $test_dir/$tfile-2
9015 }
9016
9017 test_154A() {
9018         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9019                 skip "Need MDS version at least 2.4.1" && return
9020
9021         touch $DIR/$tfile
9022         local FID=$($LFS path2fid $DIR/$tfile)
9023         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9024
9025         # check that we get the same pathname back
9026         local FOUND=$($LFS fid2path $MOUNT $FID)
9027         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9028         [ "$FOUND" != "$DIR/$tfile" ] &&
9029                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9030
9031         rm -rf $DIR/$tfile
9032 }
9033 run_test 154A "lfs path2fid and fid2path basic checks"
9034
9035 test_154a() {
9036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9037         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9038                 { skip "Need MDS version at least 2.2.51"; return 0; }
9039
9040         cp /etc/hosts $DIR/$tfile
9041
9042         fid=$($LFS path2fid $DIR/$tfile)
9043         rc=$?
9044         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9045
9046         dot_lustre_fid_permission_check "$fid" $DIR ||
9047                 error "dot lustre permission check $fid failed"
9048
9049         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9050
9051         touch $MOUNT/.lustre/file &&
9052                 error "creation is not allowed under .lustre"
9053
9054         mkdir $MOUNT/.lustre/dir &&
9055                 error "mkdir is not allowed under .lustre"
9056
9057         rm -rf $DIR/$tfile
9058 }
9059 run_test 154a "Open-by-FID"
9060
9061 test_154b() {
9062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9063         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9064                 { skip "Need MDS version at least 2.2.51"; return 0; }
9065
9066         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9067
9068         local remote_dir=$DIR/$tdir/remote_dir
9069         local MDTIDX=1
9070         local rc=0
9071
9072         mkdir -p $DIR/$tdir
9073         $LFS mkdir -i $MDTIDX $remote_dir ||
9074                 error "create remote directory failed"
9075
9076         cp /etc/hosts $remote_dir/$tfile
9077
9078         fid=$($LFS path2fid $remote_dir/$tfile)
9079         rc=$?
9080         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9081
9082         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9083                 error "dot lustre permission check $fid failed"
9084         rm -rf $DIR/$tdir
9085 }
9086 run_test 154b "Open-by-FID for remote directory"
9087
9088 test_154c() {
9089         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9090                 skip "Need MDS version at least 2.4.1" && return
9091
9092         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9093         local FID1=$($LFS path2fid $DIR/$tfile.1)
9094         local FID2=$($LFS path2fid $DIR/$tfile.2)
9095         local FID3=$($LFS path2fid $DIR/$tfile.3)
9096
9097         local N=1
9098         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9099                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9100                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9101                 local want=FID$N
9102                 [ "$FID" = "${!want}" ] ||
9103                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9104                 N=$((N + 1))
9105         done
9106
9107         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9108                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9109                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9110                 N=$((N + 1))
9111         done
9112 }
9113 run_test 154c "lfs path2fid and fid2path multiple arguments"
9114
9115 test_155_small_load() {
9116     local temp=$TMP/$tfile
9117     local file=$DIR/$tfile
9118
9119     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9120         error "dd of=$temp bs=6096 count=1 failed"
9121     cp $temp $file
9122     cancel_lru_locks osc
9123     cmp $temp $file || error "$temp $file differ"
9124
9125     $TRUNCATE $temp 6000
9126     $TRUNCATE $file 6000
9127     cmp $temp $file || error "$temp $file differ (truncate1)"
9128
9129     echo "12345" >>$temp
9130     echo "12345" >>$file
9131     cmp $temp $file || error "$temp $file differ (append1)"
9132
9133     echo "12345" >>$temp
9134     echo "12345" >>$file
9135     cmp $temp $file || error "$temp $file differ (append2)"
9136
9137     rm -f $temp $file
9138     true
9139 }
9140
9141 test_155_big_load() {
9142     remote_ost_nodsh && skip "remote OST with nodsh" && return
9143     local temp=$TMP/$tfile
9144     local file=$DIR/$tfile
9145
9146     free_min_max
9147     local cache_size=$(do_facet ost$((MAXI+1)) \
9148         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9149     local large_file_size=$((cache_size * 2))
9150
9151     echo "OSS cache size: $cache_size KB"
9152     echo "Large file size: $large_file_size KB"
9153
9154     [ $MAXV -le $large_file_size ] && \
9155         skip_env "max available OST size needs > $large_file_size KB" && \
9156         return 0
9157
9158     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9159
9160     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9161         error "dd of=$temp bs=$large_file_size count=1k failed"
9162     cp $temp $file
9163     ls -lh $temp $file
9164     cancel_lru_locks osc
9165     cmp $temp $file || error "$temp $file differ"
9166
9167     rm -f $temp $file
9168     true
9169 }
9170
9171 test_155a() {
9172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9173         set_cache read on
9174         set_cache writethrough on
9175         test_155_small_load
9176 }
9177 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9178
9179 test_155b() {
9180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9181         set_cache read on
9182         set_cache writethrough off
9183         test_155_small_load
9184 }
9185 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9186
9187 test_155c() {
9188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9189         set_cache read off
9190         set_cache writethrough on
9191         test_155_small_load
9192 }
9193 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9194
9195 test_155d() {
9196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9197         set_cache read off
9198         set_cache writethrough off
9199         test_155_small_load
9200 }
9201 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9202
9203 test_155e() {
9204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9205         set_cache read on
9206         set_cache writethrough on
9207         test_155_big_load
9208 }
9209 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9210
9211 test_155f() {
9212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9213         set_cache read on
9214         set_cache writethrough off
9215         test_155_big_load
9216 }
9217 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9218
9219 test_155g() {
9220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9221         set_cache read off
9222         set_cache writethrough on
9223         test_155_big_load
9224 }
9225 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9226
9227 test_155h() {
9228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9229         set_cache read off
9230         set_cache writethrough off
9231         test_155_big_load
9232 }
9233 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9234
9235 test_156() {
9236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9237         local CPAGES=3
9238         local BEFORE
9239         local AFTER
9240         local file="$DIR/$tfile"
9241
9242         [ "$(facet_fstype ost1)" = "zfs" ] &&
9243                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9244                 return
9245
9246         roc_hit_init
9247
9248     log "Turn on read and write cache"
9249     set_cache read on
9250     set_cache writethrough on
9251
9252     log "Write data and read it back."
9253     log "Read should be satisfied from the cache."
9254     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9255     BEFORE=`roc_hit`
9256     cancel_lru_locks osc
9257     cat $file >/dev/null
9258     AFTER=`roc_hit`
9259     if ! let "AFTER - BEFORE == CPAGES"; then
9260         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9261     else
9262         log "cache hits:: before: $BEFORE, after: $AFTER"
9263     fi
9264
9265     log "Read again; it should be satisfied from the cache."
9266     BEFORE=$AFTER
9267     cancel_lru_locks osc
9268     cat $file >/dev/null
9269     AFTER=`roc_hit`
9270     if ! let "AFTER - BEFORE == CPAGES"; then
9271         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9272     else
9273         log "cache hits:: before: $BEFORE, after: $AFTER"
9274     fi
9275
9276
9277     log "Turn off the read cache and turn on the write cache"
9278     set_cache read off
9279     set_cache writethrough on
9280
9281     log "Read again; it should be satisfied from the cache."
9282     BEFORE=`roc_hit`
9283     cancel_lru_locks osc
9284     cat $file >/dev/null
9285     AFTER=`roc_hit`
9286     if ! let "AFTER - BEFORE == CPAGES"; then
9287         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9288     else
9289         log "cache hits:: before: $BEFORE, after: $AFTER"
9290     fi
9291
9292     log "Read again; it should not be satisfied from the cache."
9293     BEFORE=$AFTER
9294     cancel_lru_locks osc
9295     cat $file >/dev/null
9296     AFTER=`roc_hit`
9297     if ! let "AFTER - BEFORE == 0"; then
9298         error "IN CACHE: before: $BEFORE, after: $AFTER"
9299     else
9300         log "cache hits:: before: $BEFORE, after: $AFTER"
9301     fi
9302
9303     log "Write data and read it back."
9304     log "Read should be satisfied from the cache."
9305     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9306     BEFORE=`roc_hit`
9307     cancel_lru_locks osc
9308     cat $file >/dev/null
9309     AFTER=`roc_hit`
9310     if ! let "AFTER - BEFORE == CPAGES"; then
9311         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9312     else
9313         log "cache hits:: before: $BEFORE, after: $AFTER"
9314     fi
9315
9316     log "Read again; it should not be satisfied from the cache."
9317     BEFORE=$AFTER
9318     cancel_lru_locks osc
9319     cat $file >/dev/null
9320     AFTER=`roc_hit`
9321     if ! let "AFTER - BEFORE == 0"; then
9322         error "IN CACHE: before: $BEFORE, after: $AFTER"
9323     else
9324         log "cache hits:: before: $BEFORE, after: $AFTER"
9325     fi
9326
9327
9328     log "Turn off read and write cache"
9329     set_cache read off
9330     set_cache writethrough off
9331
9332     log "Write data and read it back"
9333     log "It should not be satisfied from the cache."
9334     rm -f $file
9335     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9336     cancel_lru_locks osc
9337     BEFORE=`roc_hit`
9338     cat $file >/dev/null
9339     AFTER=`roc_hit`
9340         if ! let "AFTER - BEFORE == 0"; then
9341                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9342         else
9343                 log "cache hits:: before: $BEFORE, after: $AFTER"
9344         fi
9345
9346     log "Turn on the read cache and turn off the write cache"
9347     set_cache read on
9348     set_cache writethrough off
9349
9350     log "Write data and read it back"
9351     log "It should not be satisfied from the cache."
9352     rm -f $file
9353     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9354     BEFORE=`roc_hit`
9355     cancel_lru_locks osc
9356     cat $file >/dev/null
9357     AFTER=`roc_hit`
9358         if ! let "AFTER - BEFORE == 0"; then
9359                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9360         else
9361                 log "cache hits:: before: $BEFORE, after: $AFTER"
9362         fi
9363
9364     log "Read again; it should be satisfied from the cache."
9365     BEFORE=`roc_hit`
9366     cancel_lru_locks osc
9367     cat $file >/dev/null
9368     AFTER=`roc_hit`
9369     if ! let "AFTER - BEFORE == CPAGES"; then
9370         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9371     else
9372         log "cache hits:: before: $BEFORE, after: $AFTER"
9373     fi
9374
9375     rm -f $file
9376 }
9377 run_test 156 "Verification of tunables ============================"
9378
9379 #Changelogs
9380 err17935 () {
9381         if [ $MDSCOUNT -gt 1 ]; then
9382                 error_ignore bz17935 $*
9383         else
9384                 error $*
9385         fi
9386 }
9387
9388 changelog_chmask()
9389 {
9390         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9391
9392         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9393
9394         if [ $MASK -eq 1 ]; then
9395                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9396         else
9397                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9398         fi
9399 }
9400
9401 changelog_extract_field() {
9402         local mdt=$1
9403         local cltype=$2
9404         local file=$3
9405         local identifier=$4
9406
9407         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9408                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9409                 tail -1
9410 }
9411
9412 test_160a() {
9413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9415         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9416                 { skip "Need MDS version at least 2.2.0"; return; }
9417
9418         local CL_USERS="mdd.$MDT0.changelog_users"
9419         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9420         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9421         echo "Registered as changelog user $USER"
9422         $GET_CL_USERS | grep -q $USER ||
9423                 error "User $USER not found in changelog_users"
9424
9425         # change something
9426         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9427         touch $DIR/$tdir/pics/2008/zachy/timestamp
9428         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9429         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9430         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9431         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9432         rm $DIR/$tdir/pics/desktop.jpg
9433
9434         $LFS changelog $MDT0 | tail -5
9435
9436         echo "verifying changelog mask"
9437         changelog_chmask "MKDIR"
9438         changelog_chmask "CLOSE"
9439
9440         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9441         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9442
9443         changelog_chmask "MKDIR"
9444         changelog_chmask "CLOSE"
9445
9446         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9447         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9448
9449         $LFS changelog $MDT0
9450         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9451         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9452         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9453         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9454
9455         # verify contents
9456         echo "verifying target fid"
9457         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9458         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9459         [ "$fidc" == "$fidf" ] ||
9460                 err17935 "fid in changelog $fidc != file fid $fidf"
9461         echo "verifying parent fid"
9462         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9463         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9464         [ "$fidc" == "$fidf" ] ||
9465                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9466
9467         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9468         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9469         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9470         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9471         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9472                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9473
9474         MIN_REC=$($GET_CL_USERS |
9475                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9476         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9477         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9478         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9479                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9480
9481         # LU-3446 changelog index reset on MDT restart
9482         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9483         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9484         $LFS changelog_clear $MDT0 $USER 0
9485         stop $SINGLEMDS || error "Fail to stop MDT."
9486         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9487         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9488         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9489         [ $CUR_REC1 == $CUR_REC2 ] ||
9490                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9491
9492         echo "verifying user deregister"
9493         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9494         $GET_CL_USERS | grep -q $USER &&
9495                 error "User $USER still in changelog_users"
9496
9497         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9498         if [ $USERS -eq 0 ]; then
9499                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9500                 touch $DIR/$tdir/chloe
9501                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9502                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9503                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9504         else
9505                 echo "$USERS other changelog users; can't verify off"
9506         fi
9507 }
9508 run_test 160a "changelog sanity"
9509
9510 test_160b() { # LU-3587
9511         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9512         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9513         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9514                 { skip "Need MDS version at least 2.2.0"; return; }
9515
9516         local CL_USERS="mdd.$MDT0.changelog_users"
9517         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9518         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9519         echo "Registered as changelog user $USER"
9520         $GET_CL_USERS | grep -q $USER ||
9521                 error "User $USER not found in changelog_users"
9522
9523         local LONGNAME1=$(str_repeat a 255)
9524         local LONGNAME2=$(str_repeat b 255)
9525
9526         cd $DIR
9527         echo "creating very long named file"
9528         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9529         echo "moving very long named file"
9530         mv $LONGNAME1 $LONGNAME2
9531
9532         $LFS changelog $MDT0 | grep RENME
9533
9534         echo "deregistering $USER"
9535         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9536
9537         rm -f $LONGNAME2
9538 }
9539 run_test 160b "Verify that very long rename doesn't crash in changelog"
9540
9541 test_161a() {
9542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9543     test_mkdir -p $DIR/$tdir
9544     cp /etc/hosts $DIR/$tdir/$tfile
9545     test_mkdir $DIR/$tdir/foo1
9546     test_mkdir $DIR/$tdir/foo2
9547     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9548     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9549     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9550     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9551         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9552         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9553                 $LFS fid2path $DIR $FID
9554                 err17935 "bad link ea"
9555         fi
9556     # middle
9557     rm $DIR/$tdir/foo2/zachary
9558     # last
9559     rm $DIR/$tdir/foo2/thor
9560     # first
9561     rm $DIR/$tdir/$tfile
9562     # rename
9563     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9564     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9565         then
9566         $LFS fid2path $DIR $FID
9567         err17935 "bad link rename"
9568     fi
9569     rm $DIR/$tdir/foo2/maggie
9570
9571     # overflow the EA
9572     local longname=filename_avg_len_is_thirty_two_
9573     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9574         error "failed to hardlink many files"
9575     links=$($LFS fid2path $DIR $FID | wc -l)
9576     echo -n "${links}/1000 links in link EA"
9577     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9578     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9579         error "failed to unlink many hardlinks"
9580 }
9581 run_test 161a "link ea sanity"
9582
9583 test_161b() {
9584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9585         [ $MDSCOUNT -lt 2 ] &&
9586                 skip "skipping remote directory test" && return
9587         local MDTIDX=1
9588         local remote_dir=$DIR/$tdir/remote_dir
9589
9590         mkdir -p $DIR/$tdir
9591         $LFS mkdir -i $MDTIDX $remote_dir ||
9592                 error "create remote directory failed"
9593
9594         cp /etc/hosts $remote_dir/$tfile
9595         mkdir -p $remote_dir/foo1
9596         mkdir -p $remote_dir/foo2
9597         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9598         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9599         ln $remote_dir/$tfile $remote_dir/foo1/luna
9600         ln $remote_dir/$tfile $remote_dir/foo2/thor
9601
9602         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9603                      tr -d ']')
9604         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9605                 $LFS fid2path $DIR $FID
9606                 err17935 "bad link ea"
9607         fi
9608         # middle
9609         rm $remote_dir/foo2/zachary
9610         # last
9611         rm $remote_dir/foo2/thor
9612         # first
9613         rm $remote_dir/$tfile
9614         # rename
9615         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9616         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9617         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9618                 $LFS fid2path $DIR $FID
9619                 err17935 "bad link rename"
9620         fi
9621         rm $remote_dir/foo2/maggie
9622
9623         # overflow the EA
9624         local longname=filename_avg_len_is_thirty_two_
9625         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9626                 error "failed to hardlink many files"
9627         links=$($LFS fid2path $DIR $FID | wc -l)
9628         echo -n "${links}/1000 links in link EA"
9629         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9630         unlinkmany $remote_dir/foo2/$longname 1000 ||
9631         error "failed to unlink many hardlinks"
9632 }
9633 run_test 161b "link ea sanity under remote directory"
9634
9635 test_161c() {
9636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9637         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9638                 skip "Need MDS version at least 2.1.5" && return
9639
9640         # define CLF_RENAME_LAST 0x0001
9641         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9642         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9643                 changelog_register -n)
9644         rm -rf $DIR/$tdir
9645         mkdir -p $DIR/$tdir
9646         touch $DIR/$tdir/foo_161c
9647         touch $DIR/$tdir/bar_161c
9648         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9649         $LFS changelog $MDT0 | grep RENME
9650         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9651                 cut -f5 -d' ')
9652         $LFS changelog_clear $MDT0 $USER 0
9653         if [ x$flags != "x0x1" ]; then
9654                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9655                         $USER
9656                 error "flag $flags is not 0x1"
9657         fi
9658         echo "rename overwrite a target having nlink = 1," \
9659                 "changelog record has flags of $flags"
9660
9661         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9662         touch $DIR/$tdir/foo_161c
9663         touch $DIR/$tdir/bar_161c
9664         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9665         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9666         $LFS changelog $MDT0 | grep RENME
9667         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9668         $LFS changelog_clear $MDT0 $USER 0
9669         if [ x$flags != "x0x0" ]; then
9670                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9671                         $USER
9672                 error "flag $flags is not 0x0"
9673         fi
9674         echo "rename overwrite a target having nlink > 1," \
9675                 "changelog record has flags of $flags"
9676
9677         # rename doesn't overwrite a target (changelog flag 0x0)
9678         touch $DIR/$tdir/foo_161c
9679         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9680         $LFS changelog $MDT0 | grep RENME
9681         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9682         $LFS changelog_clear $MDT0 $USER 0
9683         if [ x$flags != "x0x0" ]; then
9684                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9685                         $USER
9686                 error "flag $flags is not 0x0"
9687         fi
9688         echo "rename doesn't overwrite a target," \
9689                 "changelog record has flags of $flags"
9690
9691         # define CLF_UNLINK_LAST 0x0001
9692         # unlink a file having nlink = 1 (changelog flag 0x1)
9693         rm -f $DIR/$tdir/foo2_161c
9694         $LFS changelog $MDT0 | grep UNLNK
9695         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9696         $LFS changelog_clear $MDT0 $USER 0
9697         if [ x$flags != "x0x1" ]; then
9698                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9699                         $USER
9700                 error "flag $flags is not 0x1"
9701         fi
9702         echo "unlink a file having nlink = 1," \
9703                 "changelog record has flags of $flags"
9704
9705         # unlink a file having nlink > 1 (changelog flag 0x0)
9706         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9707         rm -f $DIR/$tdir/foobar_161c
9708         $LFS changelog $MDT0 | grep UNLNK
9709         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9710         $LFS changelog_clear $MDT0 $USER 0
9711         if [ x$flags != "x0x0" ]; then
9712                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9713                         $USER
9714                 error "flag $flags is not 0x0"
9715         fi
9716         echo "unlink a file having nlink > 1," \
9717                 "changelog record has flags of $flags"
9718         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9719 }
9720 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9721
9722 check_path() {
9723     local expected=$1
9724     shift
9725     local fid=$2
9726
9727     local path=$(${LFS} fid2path $*)
9728     RC=$?
9729
9730     if [ $RC -ne 0 ]; then
9731         err17935 "path looked up of $expected failed. Error $RC"
9732         return $RC
9733     elif [ "${path}" != "${expected}" ]; then
9734         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9735         return 2
9736     fi
9737     echo "fid $fid resolves to path $path (expected $expected)"
9738 }
9739
9740 test_162() {
9741         # Make changes to filesystem
9742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9743         test_mkdir -p $DIR/$tdir/d2
9744         touch $DIR/$tdir/d2/$tfile
9745         touch $DIR/$tdir/d2/x1
9746         touch $DIR/$tdir/d2/x2
9747         test_mkdir -p $DIR/$tdir/d2/a/b/c
9748         test_mkdir -p $DIR/$tdir/d2/p/q/r
9749         # regular file
9750         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9751         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9752
9753         # softlink
9754         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9755         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9756         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9757
9758         # softlink to wrong file
9759         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9760         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9761         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9762
9763         # hardlink
9764         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9765         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9766         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9767         # fid2path dir/fsname should both work
9768         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9769         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9770
9771         # hardlink count: check that there are 2 links
9772         # Doesnt work with CMD yet: 17935
9773         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9774                 err17935 "expected 2 links"
9775
9776         # hardlink indexing: remove the first link
9777         rm $DIR/$tdir/d2/p/q/r/hlink
9778         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9779
9780         return 0
9781 }
9782 run_test 162 "path lookup sanity"
9783
9784 test_169() {
9785         # do directio so as not to populate the page cache
9786         log "creating a 10 Mb file"
9787         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9788         log "starting reads"
9789         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9790         log "truncating the file"
9791         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9792         log "killing dd"
9793         kill %+ || true # reads might have finished
9794         echo "wait until dd is finished"
9795         wait
9796         log "removing the temporary file"
9797         rm -rf $DIR/$tfile || error "tmp file removal failed"
9798 }
9799 run_test 169 "parallel read and truncate should not deadlock"
9800
9801 test_170() {
9802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9803         $LCTL clear     # bug 18514
9804         $LCTL debug_daemon start $TMP/${tfile}_log_good
9805         touch $DIR/$tfile
9806         $LCTL debug_daemon stop
9807         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9808                error "sed failed to read log_good"
9809
9810         $LCTL debug_daemon start $TMP/${tfile}_log_good
9811         rm -rf $DIR/$tfile
9812         $LCTL debug_daemon stop
9813
9814         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9815                error "lctl df log_bad failed"
9816
9817         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9818         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9819
9820         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9821         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9822
9823         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9824                 error "bad_line good_line1 good_line2 are empty"
9825
9826         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9827         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9828         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9829
9830         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9831         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9832         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9833
9834         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9835                 error "bad_line_new good_line_new are empty"
9836
9837         local expected_good=$((good_line1 + good_line2*2))
9838
9839         rm -f $TMP/${tfile}*
9840         # LU-231, short malformed line may not be counted into bad lines
9841         if [ $bad_line -ne $bad_line_new ] &&
9842                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9843                 error "expected $bad_line bad lines, but got $bad_line_new"
9844                 return 1
9845         fi
9846
9847         if [ $expected_good -ne $good_line_new ]; then
9848                 error "expected $expected_good good lines, but got $good_line_new"
9849                 return 2
9850         fi
9851         true
9852 }
9853 run_test 170 "test lctl df to handle corrupted log ====================="
9854
9855 test_171() { # bug20592
9856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9857 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9858         $LCTL set_param fail_loc=0x50e
9859         $LCTL set_param fail_val=3000
9860         multiop_bg_pause $DIR/$tfile O_s || true
9861         local MULTIPID=$!
9862         kill -USR1 $MULTIPID
9863         # cause log dump
9864         sleep 3
9865         wait $MULTIPID
9866         if dmesg | grep "recursive fault"; then
9867                 error "caught a recursive fault"
9868         fi
9869         $LCTL set_param fail_loc=0
9870         true
9871 }
9872 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9873
9874 # it would be good to share it with obdfilter-survey/libecho code
9875 setup_obdecho_osc () {
9876         local rc=0
9877         local ost_nid=$1
9878         local obdfilter_name=$2
9879         echo "Creating new osc for $obdfilter_name on $ost_nid"
9880         # make sure we can find loopback nid
9881         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9882
9883         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9884                            ${obdfilter_name}_osc_UUID || rc=2; }
9885         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9886                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9887         return $rc
9888 }
9889
9890 cleanup_obdecho_osc () {
9891         local obdfilter_name=$1
9892         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9893         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9894         return 0
9895 }
9896
9897 obdecho_test() {
9898         local OBD=$1
9899         local node=$2
9900         local pages=${3:-64}
9901         local rc=0
9902         local id
9903         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9904         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9905                            rc=2; }
9906         if [ $rc -eq 0 ]; then
9907             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9908             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9909         fi
9910         echo "New object id is $id"
9911         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9912                            rc=4; }
9913         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9914                            "test_brw 10 w v $pages $id" || rc=4; }
9915         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9916                            rc=4; }
9917         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9918                                         "cleanup" || rc=5; }
9919         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9920                                         "detach" || rc=6; }
9921         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9922         return $rc
9923 }
9924
9925 test_180a() {
9926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9927         remote_ost_nodsh && skip "remote OST with nodsh" && return
9928         local rc=0
9929         local rmmod_local=0
9930
9931         if ! module_loaded obdecho; then
9932             load_module obdecho/obdecho
9933             rmmod_local=1
9934         fi
9935
9936         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9937         local host=$(lctl get_param -n osc.$osc.import |
9938                              awk '/current_connection:/ {print $2}' )
9939         local target=$(lctl get_param -n osc.$osc.import |
9940                              awk '/target:/ {print $2}' )
9941         target=${target%_UUID}
9942
9943         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9944         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9945         [[ -n $target ]] && cleanup_obdecho_osc $target
9946         [ $rmmod_local -eq 1 ] && rmmod obdecho
9947         return $rc
9948 }
9949 run_test 180a "test obdecho on osc"
9950
9951 test_180b() {
9952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9953         remote_ost_nodsh && skip "remote OST with nodsh" && return
9954         local rc=0
9955         local rmmod_remote=0
9956
9957         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9958                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9959                       "modprobe obdecho; }" && rmmod_remote=1
9960         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9961         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9962         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9963         return $rc
9964 }
9965 run_test 180b "test obdecho directly on obdfilter"
9966
9967 test_180c() { # LU-2598
9968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9969         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9970                 skip "Need MDS version at least 2.4.0" && return
9971
9972         local rc=0
9973         local rmmod_remote=false
9974         local pages=16384 # 64MB bulk I/O RPC size
9975         local target
9976
9977         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9978                 rmmod_remote=true || error "failed to load module obdecho"
9979
9980         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9981         if [[ -n $target ]]; then
9982                 obdecho_test "$target" ost1 "$pages" ||
9983                         rc=${PIPESTATUS[0]}
9984         else
9985                 echo "there is no obdfilter target on ost1"
9986                 rc=2
9987         fi
9988         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9989         return $rc
9990 }
9991 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9992
9993 test_181() { # bug 22177
9994         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9995         # create enough files to index the directory
9996         createmany -o $DIR/$tdir/foobar 4000
9997         # print attributes for debug purpose
9998         lsattr -d .
9999         # open dir
10000         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10001         MULTIPID=$!
10002         # remove the files & current working dir
10003         unlinkmany $DIR/$tdir/foobar 4000
10004         rmdir $DIR/$tdir
10005         kill -USR1 $MULTIPID
10006         wait $MULTIPID
10007         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10008         return 0
10009 }
10010 run_test 181 "Test open-unlinked dir ========================"
10011
10012 test_182() {
10013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10014         # disable MDC RPC lock wouldn't crash client
10015         local fcount=1000
10016         local tcount=4
10017
10018         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10019 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10020         $LCTL set_param fail_loc=0x804
10021
10022         for (( i=0; i < $tcount; i++ )) ; do
10023                 mkdir $DIR/$tdir/$i
10024                 createmany -o $DIR/$tdir/$i/f- $fcount &
10025         done
10026         wait
10027
10028         for (( i=0; i < $tcount; i++ )) ; do
10029                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10030         done
10031         wait
10032
10033         rm -rf $DIR/$tdir
10034
10035         $LCTL set_param fail_loc=0
10036 }
10037 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10038
10039 test_183() { # LU-2275
10040         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10041                 skip "Need MDS version at least 2.3.56" && return
10042
10043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10044         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10045         echo aaa > $DIR/$tdir/$tfile
10046
10047 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10048         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10049
10050         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10051         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10052
10053         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10054
10055         # Flush negative dentry cache
10056         touch $DIR/$tdir/$tfile
10057
10058         # We are not checking for any leaked references here, they'll
10059         # become evident next time we do cleanup with module unload.
10060         rm -rf $DIR/$tdir
10061 }
10062 run_test 183 "No crash or request leak in case of strange dispositions ========"
10063
10064 # test suite 184 is for LU-2016, LU-2017
10065 test_184a() {
10066         check_swap_layouts_support && return 0
10067
10068         dir0=$DIR/$tdir/$testnum
10069         test_mkdir -p $dir0 || error "creating dir $dir0"
10070         ref1=/etc/passwd
10071         ref2=/etc/group
10072         file1=$dir0/f1
10073         file2=$dir0/f2
10074         $SETSTRIPE -c1 $file1
10075         cp $ref1 $file1
10076         $SETSTRIPE -c2 $file2
10077         cp $ref2 $file2
10078         gen1=$($GETSTRIPE -g $file1)
10079         gen2=$($GETSTRIPE -g $file2)
10080
10081         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10082         gen=$($GETSTRIPE -g $file1)
10083         [[ $gen1 != $gen ]] ||
10084                 "Layout generation on $file1 does not change"
10085         gen=$($GETSTRIPE -g $file2)
10086         [[ $gen2 != $gen ]] ||
10087                 "Layout generation on $file2 does not change"
10088
10089         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10090         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10091 }
10092 run_test 184a "Basic layout swap"
10093
10094 test_184b() {
10095         check_swap_layouts_support && return 0
10096
10097         dir0=$DIR/$tdir/$testnum
10098         mkdir -p $dir0 || error "creating dir $dir0"
10099         file1=$dir0/f1
10100         file2=$dir0/f2
10101         file3=$dir0/f3
10102         dir1=$dir0/d1
10103         dir2=$dir0/d2
10104         mkdir $dir1 $dir2
10105         $SETSTRIPE -c1 $file1
10106         $SETSTRIPE -c2 $file2
10107         $SETSTRIPE -c1 $file3
10108         chown $RUNAS_ID $file3
10109         gen1=$($GETSTRIPE -g $file1)
10110         gen2=$($GETSTRIPE -g $file2)
10111
10112         $LFS swap_layouts $dir1 $dir2 &&
10113                 error "swap of directories layouts should fail"
10114         $LFS swap_layouts $dir1 $file1 &&
10115                 error "swap of directory and file layouts should fail"
10116         $RUNAS $LFS swap_layouts $file1 $file2 &&
10117                 error "swap of file we cannot write should fail"
10118         $LFS swap_layouts $file1 $file3 &&
10119                 error "swap of file with different owner should fail"
10120         /bin/true # to clear error code
10121 }
10122 run_test 184b "Forbidden layout swap (will generate errors)"
10123
10124 test_184c() {
10125         check_swap_layouts_support && return 0
10126
10127         local dir0=$DIR/$tdir/$testnum
10128         mkdir -p $dir0 || error "creating dir $dir0"
10129
10130         local ref1=$dir0/ref1
10131         local ref2=$dir0/ref2
10132         local file1=$dir0/file1
10133         local file2=$dir0/file2
10134         # create a file large enough for the concurent test
10135         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10136         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10137         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10138
10139         cp $ref2 $file2
10140         dd if=$ref1 of=$file1 bs=16k &
10141         local DD_PID=$!
10142
10143         # Make sure dd starts to copy file
10144         while [ ! -f $file1 ]; do sleep 0.1; done
10145
10146         $LFS swap_layouts $file1 $file2
10147         local rc=$?
10148         wait $DD_PID
10149         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10150         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10151
10152         # how many bytes copied before swapping layout
10153         local copied=`stat -c %s $file2`
10154         local remaining=`stat -c %s $ref1`
10155         remaining=$((remaining - copied))
10156         echo "Copied $copied bytes before swapping layout..."
10157
10158         cmp -n $copied $file1 $ref2 | grep differ &&
10159                 error "Content mismatch [0, $copied) of ref2 and file1"
10160         cmp -n $copied $file2 $ref1 ||
10161                 error "Content mismatch [0, $copied) of ref1 and file2"
10162         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10163                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10164
10165         # clean up
10166         rm -f $ref1 $ref2 $file1 $file2
10167 }
10168 run_test 184c "Concurrent write and layout swap"
10169
10170 test_184d() {
10171         check_swap_layouts_support && return 0
10172
10173         local file1=$DIR/$tdir/$tfile-1
10174         local file2=$DIR/$tdir/$tfile-2
10175         local file3=$DIR/$tdir/$tfile-3
10176         local lovea1
10177         local lovea2
10178
10179         mkdir -p $DIR/$tdir
10180         touch $file1 || error "create $file1 failed"
10181         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10182                 error "create $file2 failed"
10183         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10184                 error "create $file3 failed"
10185         lovea1=$($LFS getstripe $file1 | sed 1d)
10186
10187         $LFS swap_layouts $file2 $file3 ||
10188                 error "swap $file2 $file3 layouts failed"
10189         $LFS swap_layouts $file1 $file2 ||
10190                 error "swap $file1 $file2 layouts failed"
10191
10192         lovea2=$($LFS getstripe $file2 | sed 1d)
10193         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10194
10195         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10196         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10197 }
10198 run_test 184d "allow stripeless layouts swap"
10199
10200
10201 test_185() { # LU-2441
10202         # LU-3553 - no volatile file support in old servers
10203         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10204                 { skip "Need MDS version at least 2.3.60"; return 0; }
10205
10206         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10207         touch $DIR/$tdir/spoo
10208         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10209         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10210                 error "cannot create/write a volatile file"
10211         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10212                 error "FID is still valid after close"
10213
10214         multiop_bg_pause $DIR/$tdir vVw4096_c
10215         local multi_pid=$!
10216
10217         local OLD_IFS=$IFS
10218         IFS=":"
10219         local fidv=($fid)
10220         IFS=$OLD_IFS
10221         # assume that the next FID for this client is sequential, since stdout
10222         # is unfortunately eaten by multiop_bg_pause
10223         local n=$((${fidv[1]} + 1))
10224         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10225         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10226                 error "FID is missing before close"
10227         kill -USR1 $multi_pid
10228         # 1 second delay, so if mtime change we will see it
10229         sleep 1
10230         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10231         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10232 }
10233 run_test 185 "Volatile file support"
10234
10235 test_187a() {
10236         local dir0=$DIR/$tdir/$testnum
10237         mkdir -p $dir0 || error "creating dir $dir0"
10238
10239         local file=$dir0/file1
10240         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10241         local dv1=$($LFS data_version $file)
10242         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10243         local dv2=$($LFS data_version $file)
10244         [[ $dv1 != $dv2 ]] ||
10245                 error "data version did not change on write $dv1 == $dv2"
10246
10247         # clean up
10248         rm -f $file1
10249 }
10250 run_test 187a "Test data version change"
10251
10252 test_187b() {
10253         local dir0=$DIR/$tdir/$testnum
10254         mkdir -p $dir0 || error "creating dir $dir0"
10255
10256         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10257         [[ ${DV[0]} != ${DV[1]} ]] ||
10258                 error "data version did not change on write"\
10259                       " ${DV[0]} == ${DV[1]}"
10260
10261         # clean up
10262         rm -f $file1
10263 }
10264 run_test 187b "Test data version change on volatile file"
10265
10266 # OST pools tests
10267 check_file_in_pool()
10268 {
10269         local file=$1
10270         local pool=$2
10271         local tlist="$3"
10272         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10273         for i in $res
10274         do
10275                 for t in $tlist ; do
10276                         [ "$i" -eq "$t" ] && continue 2
10277                 done
10278
10279                 echo "pool list: $tlist"
10280                 echo "striping: $res"
10281                 error_noexit "$file not allocated in $pool"
10282                 return 1
10283         done
10284         return 0
10285 }
10286
10287 pool_add() {
10288         echo "Creating new pool"
10289         local pool=$1
10290
10291         create_pool $FSNAME.$pool ||
10292                 { error_noexit "No pool created, result code $?"; return 1; }
10293         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10294                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10295 }
10296
10297 pool_add_targets() {
10298         echo "Adding targets to pool"
10299         local pool=$1
10300         local first=$2
10301         local last=$3
10302         local step=${4:-1}
10303
10304         local list=$(seq $first $step $last)
10305
10306         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10307         do_facet mgs $LCTL pool_add \
10308                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10309         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10310                         | sort -u | tr '\n' ' ' " "$t" || { 
10311                 error_noexit "Add to pool failed"
10312                 return 1
10313         }
10314         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10315         local addcount=$(((last - first) / step + 1))
10316         [ $lfscount -eq $addcount ] || {
10317                 error_noexit "lfs pool_list bad ost count" \
10318                                                 "$lfscount != $addcount"
10319                 return 2
10320         }
10321 }
10322
10323 pool_set_dir() {
10324         local pool=$1
10325         local tdir=$2
10326         echo "Setting pool on directory $tdir"
10327
10328         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10329
10330         error_noexit "Cannot set pool $pool to $tdir"
10331         return 1
10332 }
10333
10334 pool_check_dir() {
10335         local pool=$1
10336         local tdir=$2
10337         echo "Checking pool on directory $tdir"
10338
10339         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10340         [ "$res" = "$pool" ] && return 0
10341
10342         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10343         return 1
10344 }
10345
10346 pool_dir_rel_path() {
10347         echo "Testing relative path works well"
10348         local pool=$1
10349         local tdir=$2
10350         local root=$3
10351
10352         mkdir -p $root/$tdir/$tdir
10353         cd $root/$tdir
10354         pool_set_dir $pool $tdir          || return 1
10355         pool_set_dir $pool ./$tdir        || return 2
10356         pool_set_dir $pool ../$tdir       || return 3
10357         pool_set_dir $pool ../$tdir/$tdir || return 4
10358         rm -rf $tdir; cd - > /dev/null
10359 }
10360
10361 pool_alloc_files() {
10362         echo "Checking files allocation from directory pool"
10363         local pool=$1
10364         local tdir=$2
10365         local count=$3
10366         local tlist="$4"
10367
10368         local failed=0
10369         for i in $(seq -w 1 $count)
10370         do
10371                 local file=$tdir/file-$i
10372                 touch $file
10373                 check_file_in_pool $file $pool "$tlist" || \
10374                         failed=$((failed + 1))
10375         done
10376         [ "$failed" = 0 ] && return 0
10377
10378         error_noexit "$failed files not allocated in $pool"
10379         return 1
10380 }
10381
10382 pool_create_files() {
10383         echo "Creating files in pool"
10384         local pool=$1
10385         local tdir=$2
10386         local count=$3
10387         local tlist="$4"
10388
10389         mkdir -p $tdir
10390         local failed=0
10391         for i in $(seq -w 1 $count)
10392         do
10393                 local file=$tdir/spoo-$i
10394                 $SETSTRIPE -p $pool $file
10395                 check_file_in_pool $file $pool "$tlist" || \
10396                         failed=$((failed + 1))
10397         done
10398         [ "$failed" = 0 ] && return 0
10399
10400         error_noexit "$failed files not allocated in $pool"
10401         return 1
10402 }
10403
10404 pool_lfs_df() {
10405         echo "Checking 'lfs df' output"
10406         local pool=$1
10407
10408         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10409                         tr '\n' ' ')
10410         local res=$($LFS df --pool $FSNAME.$pool |
10411                         awk '{print $1}' |
10412                         grep "$FSNAME-OST" |
10413                         tr '\n' ' ')
10414         [ "$res" = "$t" ] && return 0
10415
10416         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10417         return 1
10418 }
10419
10420 pool_file_rel_path() {
10421         echo "Creating files in a pool with relative pathname"
10422         local pool=$1
10423         local tdir=$2
10424
10425         mkdir -p $tdir ||
10426                 { error_noexit "unable to create $tdir"; return 1 ; }
10427         local file="/..$tdir/$tfile-1"
10428         $SETSTRIPE -p $pool $file ||
10429                 { error_noexit "unable to create $file" ; return 2 ; }
10430
10431         cd $tdir
10432         $SETSTRIPE -p $pool $tfile-2 || {
10433                 error_noexit "unable to create $tfile-2 in $tdir"
10434                 return 3
10435         }
10436 }
10437
10438 pool_remove_first_target() {
10439         echo "Removing first target from a pool"
10440         local pool=$1
10441
10442         local pname="lov.$FSNAME-*.pools.$pool"
10443         local t=$($LCTL get_param -n $pname | head -1)
10444         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10445         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10446                 error_noexit "$t not removed from $FSNAME.$pool"
10447                 return 1
10448         }
10449 }
10450
10451 pool_remove_all_targets() {
10452         echo "Removing all targets from pool"
10453         local pool=$1
10454         local file=$2
10455         local pname="lov.$FSNAME-*.pools.$pool"
10456         for t in $($LCTL get_param -n $pname | sort -u)
10457         do
10458                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10459         done
10460         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10461                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10462                 return 1
10463         }
10464         # striping on an empty/nonexistant pool should fall back 
10465         # to "pool of everything"
10466         touch $file || {
10467                 error_noexit "failed to use fallback striping for empty pool"
10468                 return 2
10469         }
10470         # setstripe on an empty pool should fail
10471         $SETSTRIPE -p $pool $file 2>/dev/null && {
10472                 error_noexit "expected failure when creating file" \
10473                                                         "with empty pool"
10474                 return 3
10475         }
10476         return 0
10477 }
10478
10479 pool_remove() {
10480         echo "Destroying pool"
10481         local pool=$1
10482         local file=$2
10483
10484         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10485
10486         sleep 2
10487         # striping on an empty/nonexistant pool should fall back 
10488         # to "pool of everything"
10489         touch $file || {
10490                 error_noexit "failed to use fallback striping for missing pool"
10491                 return 1
10492         }
10493         # setstripe on an empty pool should fail
10494         $SETSTRIPE -p $pool $file 2>/dev/null && {
10495                 error_noexit "expected failure when creating file" \
10496                                                         "with missing pool"
10497                 return 2
10498         }
10499
10500         # get param should return err once pool is gone
10501         if wait_update $HOSTNAME "lctl get_param -n \
10502                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10503         then
10504                 remove_pool_from_list $FSNAME.$pool
10505                 return 0
10506         fi
10507         error_noexit "Pool $FSNAME.$pool is not destroyed"
10508         return 3
10509 }
10510
10511 test_200() {
10512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10513         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10514
10515         local POOL=${POOL:-cea1}
10516         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10517         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10518         # Pool OST targets
10519         local first_ost=0
10520         local last_ost=$(($OSTCOUNT - 1))
10521         local ost_step=2
10522         local ost_list=$(seq $first_ost $ost_step $last_ost)
10523         local ost_range="$first_ost $last_ost $ost_step"
10524         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10525         local file_dir=$POOL_ROOT/file_tst
10526
10527         local rc=0
10528         while : ; do
10529                 # former test_200a test_200b
10530                 pool_add $POOL                          || { rc=$? ; break; }
10531                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10532                 # former test_200c test_200d
10533                 mkdir -p $test_path
10534                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10535                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10536                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10537                                                         || { rc=$? ; break; }
10538                 # former test_200e test_200f
10539                 local files=$((OSTCOUNT*3))
10540                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10541                                                         || { rc=$? ; break; }
10542                 pool_create_files $POOL $file_dir $files "$ost_list" \
10543                                                         || { rc=$? ; break; }
10544                 # former test_200g test_200h
10545                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10546                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10547
10548                 # former test_201a test_201b test_201c
10549                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10550
10551                 local f=$test_path/$tfile
10552                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10553                 pool_remove $POOL $f                    || { rc=$? ; break; }
10554                 break
10555         done
10556
10557         cleanup_pools
10558         return $rc
10559 }
10560 run_test 200 "OST pools"
10561
10562 # usage: default_attr <count | size | offset>
10563 default_attr() {
10564         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10565 }
10566
10567 # usage: check_default_stripe_attr
10568 check_default_stripe_attr() {
10569         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10570         case $1 in
10571         --stripe-count|--count)
10572                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10573         --stripe-size|--size)
10574                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10575         --stripe-index|--index)
10576                 EXPECTED=-1;;
10577         *)
10578                 error "unknown getstripe attr '$1'"
10579         esac
10580
10581         [ $ACTUAL != $EXPECTED ] &&
10582                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10583 }
10584
10585 test_204a() {
10586         test_mkdir -p $DIR/$tdir
10587         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10588
10589         check_default_stripe_attr --stripe-count
10590         check_default_stripe_attr --stripe-size
10591         check_default_stripe_attr --stripe-index
10592
10593         return 0
10594 }
10595 run_test 204a "Print default stripe attributes ================="
10596
10597 test_204b() {
10598         test_mkdir -p $DIR/$tdir
10599         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10600
10601         check_default_stripe_attr --stripe-size
10602         check_default_stripe_attr --stripe-index
10603
10604         return 0
10605 }
10606 run_test 204b "Print default stripe size and offset  ==========="
10607
10608 test_204c() {
10609         test_mkdir -p $DIR/$tdir
10610         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10611
10612         check_default_stripe_attr --stripe-count
10613         check_default_stripe_attr --stripe-index
10614
10615         return 0
10616 }
10617 run_test 204c "Print default stripe count and offset ==========="
10618
10619 test_204d() {
10620         test_mkdir -p $DIR/$tdir
10621         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10622
10623         check_default_stripe_attr --stripe-count
10624         check_default_stripe_attr --stripe-size
10625
10626         return 0
10627 }
10628 run_test 204d "Print default stripe count and size ============="
10629
10630 test_204e() {
10631         test_mkdir -p $DIR/$tdir
10632         $SETSTRIPE -d $DIR/$tdir
10633
10634         check_default_stripe_attr --stripe-count --raw
10635         check_default_stripe_attr --stripe-size --raw
10636         check_default_stripe_attr --stripe-index --raw
10637
10638         return 0
10639 }
10640 run_test 204e "Print raw stripe attributes ================="
10641
10642 test_204f() {
10643         test_mkdir -p $DIR/$tdir
10644         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10645
10646         check_default_stripe_attr --stripe-size --raw
10647         check_default_stripe_attr --stripe-index --raw
10648
10649         return 0
10650 }
10651 run_test 204f "Print raw stripe size and offset  ==========="
10652
10653 test_204g() {
10654         test_mkdir -p $DIR/$tdir
10655         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10656
10657         check_default_stripe_attr --stripe-count --raw
10658         check_default_stripe_attr --stripe-index --raw
10659
10660         return 0
10661 }
10662 run_test 204g "Print raw stripe count and offset ==========="
10663
10664 test_204h() {
10665         test_mkdir -p $DIR/$tdir
10666         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10667
10668         check_default_stripe_attr --stripe-count --raw
10669         check_default_stripe_attr --stripe-size --raw
10670
10671         return 0
10672 }
10673 run_test 204h "Print raw stripe count and size ============="
10674
10675 # Figure out which job scheduler is being used, if any,
10676 # or use a fake one
10677 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10678         JOBENV=SLURM_JOB_ID
10679 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10680         JOBENV=LSB_JOBID
10681 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10682         JOBENV=PBS_JOBID
10683 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10684         JOBENV=LOADL_STEP_ID
10685 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10686         JOBENV=JOB_ID
10687 else
10688         JOBENV=FAKE_JOBID
10689 fi
10690
10691 verify_jobstats() {
10692         local cmd=$1
10693         local target=$2
10694
10695         # clear old jobstats
10696         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10697         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10698
10699         # use a new JobID for this test, or we might see an old one
10700         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10701
10702         JOBVAL=${!JOBENV}
10703         log "Test: $cmd"
10704         log "Using JobID environment variable $JOBENV=$JOBVAL"
10705
10706         if [ $JOBENV = "FAKE_JOBID" ]; then
10707                 FAKE_JOBID=$JOBVAL $cmd
10708         else
10709                 $cmd
10710         fi
10711
10712         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10713                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10714                 do_facet $FACET lctl get_param mdt.*.job_stats |
10715                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10716         fi
10717         if [ "$target" = "ost" -o "$target" = "both" ]; then
10718                 FACET=ost1
10719                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10720                         grep $JOBVAL || error "No job stats found on OST $FACET"
10721         fi
10722 }
10723
10724 jobstats_set() {
10725         trap 0
10726         NEW_JOBENV=${1:-$OLD_JOBENV}
10727         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10728         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10729 }
10730
10731 test_205() { # Job stats
10732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10733         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10734                 skip "Server doesn't support jobstats" && return 0
10735
10736         local cmd
10737         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10738         if [ $OLD_JOBENV != $JOBENV ]; then
10739                 jobstats_set $JOBENV
10740                 trap jobstats_set EXIT
10741         fi
10742
10743         # mkdir
10744         cmd="mkdir $DIR/$tfile"
10745         verify_jobstats "$cmd" "mdt"
10746         # rmdir
10747         cmd="rm -fr $DIR/$tfile"
10748         verify_jobstats "$cmd" "mdt"
10749         # mknod
10750         cmd="mknod $DIR/$tfile c 1 3"
10751         verify_jobstats "$cmd" "mdt"
10752         # unlink
10753         cmd="rm -f $DIR/$tfile"
10754         verify_jobstats "$cmd" "mdt"
10755         # open & close
10756         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10757         verify_jobstats "$cmd" "mdt"
10758         # setattr
10759         cmd="touch $DIR/$tfile"
10760         verify_jobstats "$cmd" "both"
10761         # write
10762         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10763         verify_jobstats "$cmd" "ost"
10764         # read
10765         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10766         verify_jobstats "$cmd" "ost"
10767         # truncate
10768         cmd="$TRUNCATE $DIR/$tfile 0"
10769         verify_jobstats "$cmd" "both"
10770         # rename
10771         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10772         verify_jobstats "$cmd" "mdt"
10773
10774         # cleanup
10775         rm -f $DIR/jobstats_test_rename
10776
10777         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10778 }
10779 run_test 205 "Verify job stats"
10780
10781 # LU-1480, LU-1773 and LU-1657
10782 test_206() {
10783         mkdir -p $DIR/$tdir
10784         lfs setstripe -c -1 $DIR/$tdir
10785 #define OBD_FAIL_LOV_INIT 0x1403
10786         $LCTL set_param fail_loc=0xa0001403
10787         $LCTL set_param fail_val=1
10788         touch $DIR/$tdir/$tfile || true
10789 }
10790 run_test 206 "fail lov_init_raid0() doesn't lbug"
10791
10792 test_207a() {
10793         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10794         local fsz=`stat -c %s $DIR/$tfile`
10795         cancel_lru_locks mdc
10796
10797         # do not return layout in getattr intent
10798 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10799         $LCTL set_param fail_loc=0x170
10800         local sz=`stat -c %s $DIR/$tfile`
10801
10802         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10803
10804         rm -rf $DIR/$tfile
10805 }
10806 run_test 207a "can refresh layout at glimpse"
10807
10808 test_207b() {
10809         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10810         local cksum=`md5sum $DIR/$tfile`
10811         local fsz=`stat -c %s $DIR/$tfile`
10812         cancel_lru_locks mdc
10813         cancel_lru_locks osc
10814
10815         # do not return layout in getattr intent
10816 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10817         $LCTL set_param fail_loc=0x171
10818
10819         # it will refresh layout after the file is opened but before read issues
10820         echo checksum is "$cksum"
10821         echo "$cksum" |md5sum -c --quiet || error "file differs"
10822
10823         rm -rf $DIR/$tfile
10824 }
10825 run_test 207b "can refresh layout at open"
10826
10827 test_208() {
10828         # FIXME: in this test suite, only RD lease is used. This is okay
10829         # for now as only exclusive open is supported. After generic lease
10830         # is done, this test suite should be revised. - Jinshan
10831
10832         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10833                 { skip "Need MDS version at least 2.4.52"; return 0; }
10834
10835         echo "==== test 1: verify get lease work"
10836         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10837
10838         echo "==== test 2: verify lease can be broken by upcoming open"
10839         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10840         local PID=$!
10841         sleep 1
10842
10843         $MULTIOP $DIR/$tfile oO_RDONLY:c
10844         kill -USR1 $PID && wait $PID || error "break lease error"
10845
10846         echo "==== test 3: verify lease can't be granted if an open already exists"
10847         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10848         local PID=$!
10849         sleep 1
10850
10851         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10852         kill -USR1 $PID && wait $PID || error "open file error"
10853
10854         echo "==== test 4: lease can sustain over recovery"
10855         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10856         PID=$!
10857         sleep 1
10858
10859         fail mds1
10860
10861         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10862
10863         echo "==== test 5: lease broken can't be regained by replay"
10864         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10865         PID=$!
10866         sleep 1
10867
10868         # open file to break lease and then recovery
10869         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10870         fail mds1
10871
10872         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10873
10874         rm -f $DIR/$tfile
10875 }
10876 run_test 208 "Exclusive open"
10877
10878 test_209() {
10879         [[ $($LCTL get_param -n mdc.*.connect_flags) == ~disp_stripe ]] &&
10880                 skip_env "must have disp_stripe" && return
10881
10882         touch $DIR/$tfile
10883         sync; sleep 5; sync;
10884
10885         echo 3 > /proc/sys/vm/drop_caches
10886         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10887
10888         # open/close 500 times
10889         for i in $(seq 500); do
10890                 cat $DIR/$tfile
10891         done
10892
10893         echo 3 > /proc/sys/vm/drop_caches
10894         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10895
10896         echo "before: $req_before, after: $req_after"
10897         [ $((req_after - req_before)) -ge 300 ] &&
10898                 error "open/close requests are not freed"
10899         return 0
10900 }
10901 run_test 209 "read-only open/close requests should be freed promptly"
10902
10903 test_212() {
10904         size=`date +%s`
10905         size=$((size % 8192 + 1))
10906         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10907         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10908         rm -f $DIR/f212 $DIR/f212.xyz
10909 }
10910 run_test 212 "Sendfile test ============================================"
10911
10912 test_213() {
10913         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10914         cancel_lru_locks osc
10915         lctl set_param fail_loc=0x8000040f
10916         # generate a read lock
10917         cat $DIR/$tfile > /dev/null
10918         # write to the file, it will try to cancel the above read lock.
10919         cat /etc/hosts >> $DIR/$tfile
10920 }
10921 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10922
10923 test_214() { # for bug 20133
10924         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
10925         for (( i=0; i < 340; i++ )) ; do
10926                 touch $DIR/$tdir/d214c/a$i
10927         done
10928
10929         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
10930         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10931         ls $DIR/d214c || error "ls $DIR/d214c failed"
10932         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
10933         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10934 }
10935 run_test 214 "hash-indexed directory test - bug 20133"
10936
10937 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10938 create_lnet_proc_files() {
10939         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10940         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10941
10942         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10943         rm -f "$TMP/lnet_$1.sys_tmp"
10944 }
10945
10946 # counterpart of create_lnet_proc_files
10947 remove_lnet_proc_files() {
10948         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10949 }
10950
10951 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10952 # 3rd arg as regexp for body
10953 check_lnet_proc_stats() {
10954         local l=$(cat "$TMP/lnet_$1" |wc -l)
10955         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10956
10957         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10958 }
10959
10960 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10961 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10962 # optional and can be regexp for 2nd line (lnet.routes case)
10963 check_lnet_proc_entry() {
10964         local blp=2            # blp stands for 'position of 1st line of body'
10965         [ "$5" = "" ] || blp=3 # lnet.routes case
10966
10967         local l=$(cat "$TMP/lnet_$1" |wc -l)
10968         # subtracting one from $blp because the body can be empty
10969         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10970
10971         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10972                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10973
10974         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10975                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10976
10977         # bail out if any unexpected line happened
10978         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10979         [ "$?" != 0 ] || error "$2 misformatted"
10980 }
10981
10982 test_215() { # for bugs 18102, 21079, 21517
10983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10984         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10985         local P='[1-9][0-9]*'           # positive numeric
10986         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10987         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10988         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10989         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10990
10991         local L1 # regexp for 1st line
10992         local L2 # regexp for 2nd line (optional)
10993         local BR # regexp for the rest (body)
10994
10995         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10996         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10997         create_lnet_proc_files "stats"
10998         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10999         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11000         remove_lnet_proc_files "stats"
11001
11002         # /proc/sys/lnet/routes should look like this:
11003         # Routing disabled/enabled
11004         # net hops priority state router
11005         # where net is a string like tcp0, hops > 0, priority >= 0,
11006         # state is up/down,
11007         # router is a string like 192.168.1.1@tcp2
11008         L1="^Routing (disabled|enabled)$"
11009         L2="^net +hops +priority +state +router$"
11010         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11011         create_lnet_proc_files "routes"
11012         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
11013         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11014         remove_lnet_proc_files "routes"
11015
11016         # /proc/sys/lnet/routers should look like this:
11017         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11018         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11019         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11020         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11021         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11022         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11023         create_lnet_proc_files "routers"
11024         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
11025         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11026         remove_lnet_proc_files "routers"
11027
11028         # /proc/sys/lnet/peers should look like this:
11029         # nid refs state last max rtr min tx min queue
11030         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11031         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11032         # numeric (0 or >0 or <0), queue >= 0.
11033         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11034         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11035         create_lnet_proc_files "peers"
11036         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11037         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11038         remove_lnet_proc_files "peers"
11039
11040         # /proc/sys/lnet/buffers  should look like this:
11041         # pages count credits min
11042         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11043         L1="^pages +count +credits +min$"
11044         BR="^ +$N +$N +$I +$I$"
11045         create_lnet_proc_files "buffers"
11046         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11047         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11048         remove_lnet_proc_files "buffers"
11049
11050         # /proc/sys/lnet/nis should look like this:
11051         # nid status alive refs peer rtr max tx min
11052         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11053         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11054         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11055         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11056         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11057         create_lnet_proc_files "nis"
11058         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11059         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11060         remove_lnet_proc_files "nis"
11061
11062         # can we successfully write to /proc/sys/lnet/stats?
11063         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11064         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11065 }
11066 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11067
11068 test_216() { # bug 20317
11069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11070         remote_ost_nodsh && skip "remote OST with nodsh" && return
11071
11072         local node
11073         local facets=$(get_facets OST)
11074         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11075
11076         save_lustre_params client "osc.*.contention_seconds" > $p
11077         save_lustre_params $facets \
11078                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11079         save_lustre_params $facets \
11080                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11081         save_lustre_params $facets \
11082                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11083         clear_osc_stats
11084
11085         # agressive lockless i/o settings
11086         for node in $(osts_nodes); do
11087                 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'
11088         done
11089         lctl set_param -n osc.*.contention_seconds 60
11090
11091         $DIRECTIO write $DIR/$tfile 0 10 4096
11092         $CHECKSTAT -s 40960 $DIR/$tfile
11093
11094         # disable lockless i/o
11095         for node in $(osts_nodes); do
11096                 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'
11097         done
11098         lctl set_param -n osc.*.contention_seconds 0
11099         clear_osc_stats
11100
11101         dd if=/dev/zero of=$DIR/$tfile count=0
11102         $CHECKSTAT -s 0 $DIR/$tfile
11103
11104         restore_lustre_params <$p
11105         rm -f $p
11106         rm $DIR/$tfile
11107 }
11108 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11109
11110 test_217() { # bug 22430
11111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11112         local node
11113         local nid
11114
11115         for node in $(nodes_list); do
11116                 nid=$(host_nids_address $node $NETTYPE)
11117                 if [[ $nid = *-* ]] ; then
11118                         echo "lctl ping $nid@$NETTYPE"
11119                         lctl ping $nid@$NETTYPE
11120                 else
11121                         echo "skipping $node (no hyphen detected)"
11122                 fi
11123         done
11124 }
11125 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11126
11127 test_218() {
11128        # do directio so as not to populate the page cache
11129        log "creating a 10 Mb file"
11130        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11131        log "starting reads"
11132        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11133        log "truncating the file"
11134        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11135        log "killing dd"
11136        kill %+ || true # reads might have finished
11137        echo "wait until dd is finished"
11138        wait
11139        log "removing the temporary file"
11140        rm -rf $DIR/$tfile || error "tmp file removal failed"
11141 }
11142 run_test 218 "parallel read and truncate should not deadlock ======================="
11143
11144 test_219() {
11145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11146         # write one partial page
11147         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11148         # set no grant so vvp_io_commit_write will do sync write
11149         $LCTL set_param fail_loc=0x411
11150         # write a full page at the end of file
11151         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11152
11153         $LCTL set_param fail_loc=0
11154         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11155         $LCTL set_param fail_loc=0x411
11156         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11157 }
11158 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11159
11160 test_220() { #LU-325
11161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11162         remote_ost_nodsh && skip "remote OST with nodsh" && return
11163         local OSTIDX=0
11164
11165         test_mkdir -p $DIR/$tdir
11166         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11167                 awk '{print $2}' | sed -e 's/_UUID$//')
11168
11169         # on the mdt's osc
11170         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11171         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11172                         osc.$mdtosc_proc1.prealloc_last_id)
11173         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11174                         osc.$mdtosc_proc1.prealloc_next_id)
11175
11176         $LFS df -i
11177
11178         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11179         #define OBD_FAIL_OST_ENOINO              0x229
11180         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11181         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11182         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11183
11184         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11185
11186         MDSOBJS=$((last_id - next_id))
11187         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11188
11189         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11190         echo "OST still has $count kbytes free"
11191
11192         echo "create $MDSOBJS files @next_id..."
11193         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11194
11195         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11196                         osc.$mdtosc_proc1.prealloc_last_id)
11197         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11198                         osc.$mdtosc_proc1.prealloc_next_id)
11199
11200         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11201         $LFS df -i
11202
11203         echo "cleanup..."
11204
11205         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11206         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11207
11208         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11209         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11210         echo "unlink $MDSOBJS files @$next_id..."
11211         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11212 }
11213 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11214
11215 test_221() {
11216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11217         dd if=`which date` of=$MOUNT/date oflag=sync
11218         chmod +x $MOUNT/date
11219
11220         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11221         $LCTL set_param fail_loc=0x80001401
11222
11223         $MOUNT/date > /dev/null
11224         rm -f $MOUNT/date
11225 }
11226 run_test 221 "make sure fault and truncate race to not cause OOM"
11227
11228 test_222a () {
11229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11230        rm -rf $DIR/$tdir
11231        test_mkdir -p $DIR/$tdir
11232        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11233        createmany -o $DIR/$tdir/$tfile 10
11234        cancel_lru_locks mdc
11235        cancel_lru_locks osc
11236        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11237        $LCTL set_param fail_loc=0x31a
11238        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11239        $LCTL set_param fail_loc=0
11240        rm -r $DIR/$tdir
11241 }
11242 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11243
11244 test_222b () {
11245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11246        rm -rf $DIR/$tdir
11247        test_mkdir -p $DIR/$tdir
11248        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11249        createmany -o $DIR/$tdir/$tfile 10
11250        cancel_lru_locks mdc
11251        cancel_lru_locks osc
11252        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11253        $LCTL set_param fail_loc=0x31a
11254        rm -r $DIR/$tdir || "AGL for rmdir failed"
11255        $LCTL set_param fail_loc=0
11256 }
11257 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11258
11259 test_223 () {
11260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11261        rm -rf $DIR/$tdir
11262        test_mkdir -p $DIR/$tdir
11263        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11264        createmany -o $DIR/$tdir/$tfile 10
11265        cancel_lru_locks mdc
11266        cancel_lru_locks osc
11267        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11268        $LCTL set_param fail_loc=0x31b
11269        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11270        $LCTL set_param fail_loc=0
11271        rm -r $DIR/$tdir
11272 }
11273 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11274
11275 test_224a() { # LU-1039, MRP-303
11276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11277         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11278         $LCTL set_param fail_loc=0x508
11279         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11280         $LCTL set_param fail_loc=0
11281         df $DIR
11282 }
11283 run_test 224a "Don't panic on bulk IO failure"
11284
11285 test_224b() { # LU-1039, MRP-303
11286         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11287         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11288         cancel_lru_locks osc
11289         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11290         $LCTL set_param fail_loc=0x515
11291         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11292         $LCTL set_param fail_loc=0
11293         df $DIR
11294 }
11295 run_test 224b "Don't panic on bulk IO failure"
11296
11297 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11298 test_225a () {
11299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11300         if [ -z ${MDSSURVEY} ]; then
11301               skip_env "mds-survey not found" && return
11302         fi
11303
11304         [ $MDSCOUNT -ge 2 ] &&
11305                 skip "skipping now for more than one MDT" && return
11306
11307        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11308             { skip "Need MDS version at least 2.2.51"; return; }
11309
11310        local mds=$(facet_host $SINGLEMDS)
11311        local target=$(do_nodes $mds 'lctl dl' | \
11312                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11313
11314        local cmd1="file_count=1000 thrhi=4"
11315        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11316        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11317        local cmd="$cmd1 $cmd2 $cmd3"
11318
11319        rm -f ${TMP}/mds_survey*
11320        echo + $cmd
11321        eval $cmd || error "mds-survey with zero-stripe failed"
11322        cat ${TMP}/mds_survey*
11323        rm -f ${TMP}/mds_survey*
11324 }
11325 run_test 225a "Metadata survey sanity with zero-stripe"
11326
11327 test_225b () {
11328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11329
11330         if [ -z ${MDSSURVEY} ]; then
11331               skip_env "mds-survey not found" && return
11332         fi
11333         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11334             { skip "Need MDS version at least 2.2.51"; return; }
11335
11336         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11337               skip_env "Need to mount OST to test" && return
11338         fi
11339
11340         [ $MDSCOUNT -ge 2 ] &&
11341                 skip "skipping now for more than one MDT" && return
11342        local mds=$(facet_host $SINGLEMDS)
11343        local target=$(do_nodes $mds 'lctl dl' | \
11344                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11345
11346        local cmd1="file_count=1000 thrhi=4"
11347        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11348        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11349        local cmd="$cmd1 $cmd2 $cmd3"
11350
11351        rm -f ${TMP}/mds_survey*
11352        echo + $cmd
11353        eval $cmd || error "mds-survey with stripe_count failed"
11354        cat ${TMP}/mds_survey*
11355        rm -f ${TMP}/mds_survey*
11356 }
11357 run_test 225b "Metadata survey sanity with stripe_count = 1"
11358
11359 mcreate_path2fid () {
11360         local mode=$1
11361         local major=$2
11362         local minor=$3
11363         local name=$4
11364         local desc=$5
11365         local path=$DIR/$tdir/$name
11366         local fid
11367         local rc
11368         local fid_path
11369
11370         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11371                 error "cannot create $desc"
11372
11373         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11374         rc=$?
11375         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11376
11377         fid_path=$($LFS fid2path $MOUNT $fid)
11378         rc=$?
11379         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11380
11381         [ "$path" == "$fid_path" ] ||
11382                 error "fid2path returned $fid_path, expected $path"
11383
11384         echo "pass with $path and $fid"
11385 }
11386
11387 test_226a () {
11388         rm -rf $DIR/$tdir
11389         mkdir -p $DIR/$tdir
11390
11391         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11392         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11393         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11394         mcreate_path2fid 0040666 0 0 dir "directory"
11395         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11396         mcreate_path2fid 0100666 0 0 file "regular file"
11397         mcreate_path2fid 0120666 0 0 link "symbolic link"
11398         mcreate_path2fid 0140666 0 0 sock "socket"
11399 }
11400 run_test 226a "call path2fid and fid2path on files of all type"
11401
11402 test_226b () {
11403         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11404         rm -rf $DIR/$tdir
11405         local MDTIDX=1
11406
11407         mkdir -p $DIR/$tdir
11408         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11409                 error "create remote directory failed"
11410         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11411         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11412                                 "character special file (null)"
11413         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11414                                 "character special file (no device)"
11415         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11416         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11417                                 "block special file (loop)"
11418         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11419         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11420         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11421 }
11422 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11423
11424 # LU-1299 Executing or running ldd on a truncated executable does not
11425 # cause an out-of-memory condition.
11426 test_227() {
11427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11428         dd if=`which date` of=$MOUNT/date bs=1k count=1
11429         chmod +x $MOUNT/date
11430
11431         $MOUNT/date > /dev/null
11432         ldd $MOUNT/date > /dev/null
11433         rm -f $MOUNT/date
11434 }
11435 run_test 227 "running truncated executable does not cause OOM"
11436
11437 # LU-1512 try to reuse idle OI blocks
11438 test_228a() {
11439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11440         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11441                 skip "non-ldiskfs backend" && return
11442
11443         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11444         local myDIR=$DIR/$tdir
11445
11446         mkdir -p $myDIR
11447         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11448         $LCTL set_param fail_loc=0x80001002
11449         createmany -o $myDIR/t- 10000
11450         $LCTL set_param fail_loc=0
11451         # The guard is current the largest FID holder
11452         touch $myDIR/guard
11453         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11454                     tr -d '[')
11455         local IDX=$(($SEQ % 64))
11456
11457         do_facet $SINGLEMDS sync
11458         # Make sure journal flushed.
11459         sleep 6
11460         local blk1=$(do_facet $SINGLEMDS \
11461                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11462                      grep Blockcount | awk '{print $4}')
11463
11464         # Remove old files, some OI blocks will become idle.
11465         unlinkmany $myDIR/t- 10000
11466         # Create new files, idle OI blocks should be reused.
11467         createmany -o $myDIR/t- 2000
11468         do_facet $SINGLEMDS sync
11469         # Make sure journal flushed.
11470         sleep 6
11471         local blk2=$(do_facet $SINGLEMDS \
11472                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11473                      grep Blockcount | awk '{print $4}')
11474
11475         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11476 }
11477 run_test 228a "try to reuse idle OI blocks"
11478
11479 test_228b() {
11480         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11481         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11482                 skip "non-ldiskfs backend" && return
11483
11484         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11485         local myDIR=$DIR/$tdir
11486
11487         mkdir -p $myDIR
11488         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11489         $LCTL set_param fail_loc=0x80001002
11490         createmany -o $myDIR/t- 10000
11491         $LCTL set_param fail_loc=0
11492         # The guard is current the largest FID holder
11493         touch $myDIR/guard
11494         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11495                     tr -d '[')
11496         local IDX=$(($SEQ % 64))
11497
11498         do_facet $SINGLEMDS sync
11499         # Make sure journal flushed.
11500         sleep 6
11501         local blk1=$(do_facet $SINGLEMDS \
11502                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11503                      grep Blockcount | awk '{print $4}')
11504
11505         # Remove old files, some OI blocks will become idle.
11506         unlinkmany $myDIR/t- 10000
11507
11508         # stop the MDT
11509         stop $SINGLEMDS || error "Fail to stop MDT."
11510         # remount the MDT
11511         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11512
11513         df $MOUNT || error "Fail to df."
11514         # Create new files, idle OI blocks should be reused.
11515         createmany -o $myDIR/t- 2000
11516         do_facet $SINGLEMDS sync
11517         # Make sure journal flushed.
11518         sleep 6
11519         local blk2=$(do_facet $SINGLEMDS \
11520                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11521                      grep Blockcount | awk '{print $4}')
11522
11523         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11524 }
11525 run_test 228b "idle OI blocks can be reused after MDT restart"
11526
11527 #LU-1881
11528 test_228c() {
11529         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11530         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11531                 skip "non-ldiskfs backend" && return
11532
11533         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11534         local myDIR=$DIR/$tdir
11535
11536         mkdir -p $myDIR
11537         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11538         $LCTL set_param fail_loc=0x80001002
11539         # 20000 files can guarantee there are index nodes in the OI file
11540         createmany -o $myDIR/t- 20000
11541         $LCTL set_param fail_loc=0
11542         # The guard is current the largest FID holder
11543         touch $myDIR/guard
11544         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11545                     tr -d '[')
11546         local IDX=$(($SEQ % 64))
11547
11548         do_facet $SINGLEMDS sync
11549         # Make sure journal flushed.
11550         sleep 6
11551         local blk1=$(do_facet $SINGLEMDS \
11552                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11553                      grep Blockcount | awk '{print $4}')
11554
11555         # Remove old files, some OI blocks will become idle.
11556         unlinkmany $myDIR/t- 20000
11557         rm -f $myDIR/guard
11558         # The OI file should become empty now
11559
11560         # Create new files, idle OI blocks should be reused.
11561         createmany -o $myDIR/t- 2000
11562         do_facet $SINGLEMDS sync
11563         # Make sure journal flushed.
11564         sleep 6
11565         local blk2=$(do_facet $SINGLEMDS \
11566                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11567                      grep Blockcount | awk '{print $4}')
11568
11569         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11570 }
11571 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11572
11573 test_229() { # LU-2482, LU-3448
11574         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
11575                 skip "No HSM support on MDS of $(get_lustre_version)," \
11576                          "need 2.4.53 at least" && return
11577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11578         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11579
11580         rm -f $DIR/$tfile
11581
11582         # Create a file with a released layout and stripe count 2.
11583         $MULTIOP $DIR/$tfile H2c ||
11584                 error "failed to create file with released layout"
11585
11586         $GETSTRIPE -v $DIR/$tfile
11587
11588         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11589         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11590
11591         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11592         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11593         stat $DIR/$tfile || error "failed to stat released file"
11594
11595         chown $RUNAS_ID $DIR/$tfile ||
11596                 error "chown $RUNAS_ID $DIR/$tfile failed"
11597
11598         chgrp $RUNAS_ID $DIR/$tfile ||
11599                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11600
11601         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11602         rm $DIR/$tfile || error "failed to remove released file"
11603 }
11604 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11605
11606 test_230a() {
11607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11608         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11609         local MDTIDX=1
11610
11611         mkdir -p $DIR/$tdir/test_230_local
11612         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11613         [ $mdt_idx -ne 0 ] &&
11614                 error "create local directory on wrong MDT $mdt_idx"
11615
11616         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11617                         error "create remote directory failed"
11618         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11619         [ $mdt_idx -ne $MDTIDX ] &&
11620                 error "create remote directory on wrong MDT $mdt_idx"
11621
11622         createmany -o $DIR/$tdir/test_230/t- 10 ||
11623                 error "create files on remote directory failed"
11624         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11625         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11626         rm -r $DIR/$tdir || error "unlink remote directory failed"
11627 }
11628 run_test 230a "Create remote directory and files under the remote directory"
11629
11630 test_230b() {
11631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11632         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11633         local MDTIDX=1
11634         local remote_dir=$DIR/$tdir/remote_dir
11635         local rc=0
11636
11637         mkdir -p $DIR/$tdir
11638         $LFS mkdir -i $MDTIDX $remote_dir ||
11639                 error "create remote directory failed"
11640
11641         $LFS mkdir -i 0 $remote_dir/new_dir &&
11642                 error "nested remote directory create succeed!"
11643
11644         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11645         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11646         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11647
11648         [ $rc -ne 0 ] &&
11649            error "create remote directory failed after set enable_remote_dir"
11650
11651         rm -rf $remote_dir || error "first unlink remote directory failed"
11652
11653         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11654                                                         error "chown worked"
11655
11656         do_facet mds$MDTIDX lctl set_param \
11657                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11658         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11659         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11660
11661         [ $rc -ne 0 ] &&
11662            error "create remote dir failed after set enable_remote_dir_gid"
11663
11664         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11665 }
11666 run_test 230b "nested remote directory should be failed"
11667
11668 test_231a()
11669 {
11670         # For simplicity this test assumes that max_pages_per_rpc
11671         # is the same across all OSCs
11672         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11673         local bulk_size=$((max_pages * 4096))
11674
11675         mkdir -p $DIR/$tdir
11676
11677         # clear the OSC stats
11678         $LCTL set_param osc.*.stats=0 &>/dev/null
11679
11680         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11681         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11682                 oflag=direct &>/dev/null || error "dd failed"
11683
11684         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11685         if [ x$nrpcs != "x1" ]; then
11686                 error "found $nrpc ost_write RPCs, not 1 as expected"
11687         fi
11688
11689         # Drop the OSC cache, otherwise we will read from it
11690         cancel_lru_locks osc
11691
11692         # clear the OSC stats
11693         $LCTL set_param osc.*.stats=0 &>/dev/null
11694
11695         # Client reads $bulk_size.
11696         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11697                 iflag=direct &>/dev/null || error "dd failed"
11698
11699         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11700         if [ x$nrpcs != "x1" ]; then
11701                 error "found $nrpc ost_read RPCs, not 1 as expected"
11702         fi
11703 }
11704 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11705
11706 test_231b() {
11707         mkdir -p $DIR/$tdir
11708         local i
11709         for i in {0..1023}; do
11710                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11711                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11712                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11713         done
11714         sync
11715 }
11716 run_test 231b "must not assert on fully utilized OST request buffer"
11717
11718 test_232() {
11719         mkdir -p $DIR/$tdir
11720         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11721         $LCTL set_param fail_loc=0x31c
11722
11723         # ignore dd failure
11724         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11725
11726         $LCTL set_param fail_loc=0
11727         umount_client $MOUNT || error "umount failed"
11728         mount_client $MOUNT || error "mount failed"
11729 }
11730 run_test 232 "failed lock should not block umount"
11731
11732 test_233() {
11733         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11734         { skip "Need MDS version at least 2.3.64"; return; }
11735
11736         local fid=$($LFS path2fid $MOUNT)
11737         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11738                 error "cannot access $MOUNT using its FID '$fid'"
11739 }
11740 run_test 233 "checking that OBF of the FS root succeeds"
11741
11742 test_234() {
11743         local p="$TMP/sanityN-$TESTNAME.parameters"
11744         save_lustre_params client "llite.*.xattr_cache" > $p
11745         lctl set_param llite.*.xattr_cache 1 ||
11746                 { skip "xattr cache is not supported"; return 0; }
11747
11748         mkdir -p $DIR/$tdir || error "mkdir failed"
11749         touch $DIR/$tdir/$tfile || error "touch failed"
11750         # OBD_FAIL_LLITE_XATTR_ENOMEM
11751         $LCTL set_param fail_loc=0x1405
11752         if [ ! -f /etc/SuSE-release ]; then
11753                 # attr pre-2.4.44-7 had a bug with rc
11754                 # LU-3703 - SLES clients have older attr
11755                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11756                         error "getfattr should have failed with ENOMEM"
11757         fi
11758         $LCTL set_param fail_loc=0x0
11759         rm -rf $DIR/$tdir
11760
11761         restore_lustre_params < $p
11762         rm -f $p
11763 }
11764 run_test 234 "xattr cache should not crash on ENOMEM"
11765
11766 test_235() {
11767          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11768                 skip "Need MDS version at least 2.4.52" && return
11769         flock_deadlock $DIR/$tfile
11770         local RC=$?
11771         case $RC in
11772                 0)
11773                 ;;
11774                 124) error "process hangs on a deadlock"
11775                 ;;
11776                 *) error "error executing flock_deadlock $DIR/$tfile"
11777                 ;;
11778         esac
11779 }
11780 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11781
11782 #LU-2935
11783 test_236() {
11784         check_swap_layouts_support && return 0
11785         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11786
11787         local ref1=/etc/passwd
11788         local ref2=/etc/group
11789         local file1=$DIR/$tdir/f1
11790         local file2=$DIR/$tdir/f2
11791
11792         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11793         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11794         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11795         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11796         local fd=$(free_fd)
11797         local cmd="exec $fd<>$file2"
11798         eval $cmd
11799         rm $file2
11800         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
11801                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
11802         cmd="exec $fd>&-"
11803         eval $cmd
11804         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11805
11806         #cleanup
11807         rm -rf $DIR/$tdir
11808 }
11809 run_test 236 "Layout swap on open unlinked file"
11810
11811 #
11812 # tests that do cleanup/setup should be run at the end
11813 #
11814
11815 test_900() {
11816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11817         local ls
11818         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11819         $LCTL set_param fail_loc=0x903
11820         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11821         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11822                 echo "clear" > $ls
11823         done
11824         FAIL_ON_ERROR=true cleanup
11825         FAIL_ON_ERROR=true setup
11826 }
11827 run_test 900 "umount should not race with any mgc requeue thread"
11828
11829 complete $SECONDS
11830 check_and_cleanup_lustre
11831 if [ "$I_MOUNTED" != "yes" ]; then
11832         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11833 fi
11834 exit_status