Whamcloud - gitweb
9e1deb627b8914bff9d9637369f3420546310ba8
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642                 skip "Need MDS version at least 2.3.64" && return
643
644         local WDIR=$DIR/${tdir}o
645         local mdt_index
646         local mdtdevname
647         local rc=0
648
649         mkdir -p $WDIR
650         mdt_index=$($LFS getstripe -M $WDIR)
651         mdt_index=$((mdt_index+1))
652         mdtdevname=$(mdsdevname $mdt_index)
653
654         touch $WDIR/$tfile
655         stop mds${mdt_index}
656         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
657
658         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660         ls -l $WDIR/$tfile && rc=1
661         do_facet mds${mdt_index} lctl set_param fail_loc=0
662         [[ $rc -ne 0 ]] && error "stat file should fail"
663         true
664 }
665 run_test 17o "stat file with incompat LMA feature"
666
667 test_18() {
668         touch $DIR/f || error "Failed to touch $DIR/f: $?"
669         ls $DIR || error "Failed to ls $DIR: $?"
670 }
671 run_test 18 "touch .../f ; ls ... =============================="
672
673 test_19a() {
674         touch $DIR/$tfile
675         ls -l $DIR
676         rm $DIR/$tfile
677         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
678 }
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
680
681 test_19b() {
682         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
683 }
684 run_test 19b "ls -l .../f19 (should return error) =============="
685
686 test_19c() {
687         [ $RUNAS_ID -eq $UID ] &&
688                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
690 }
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
692
693 test_19d() {
694         cat $DIR/f19 && error || true
695 }
696 run_test 19d "cat .../f19 (should return error) =============="
697
698 test_20() {
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "1 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "2 done"
705         touch $DIR/$tfile
706         rm $DIR/$tfile
707         log "3 done"
708         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
709 }
710 run_test 20 "touch .../f ; ls -l ... ==========================="
711
712 test_21() {
713         test_mkdir -p $DIR/$tdir
714         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715         ln -s dangle $DIR/$tdir/link
716         echo foo >> $DIR/$tdir/link
717         cat $DIR/$tdir/dangle
718         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719         $CHECKSTAT -f -t file $DIR/$tdir/link ||
720                 error "$tdir/link not linked to a file"
721 }
722 run_test 21 "write to dangling link ============================"
723
724 test_22() {
725         WDIR=$DIR/$tdir
726         test_mkdir -p $DIR/$tdir
727         chown $RUNAS_ID:$RUNAS_GID $WDIR
728         (cd $WDIR || error "cd $WDIR failed";
729         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
730         $RUNAS tar xf -)
731         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
734 }
735 run_test 22 "unpack tar archive as non-root user ==============="
736
737 # was test_23
738 test_23a() {
739         test_mkdir -p $DIR/$tdir
740         local file=$DIR/$tdir/$tfile
741
742         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743         openfile -f O_CREAT:O_EXCL $file &&
744                 error "$file recreate succeeded" || true
745 }
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
747
748 test_23b() { # bug 18988
749         test_mkdir -p $DIR/$tdir
750         local file=$DIR/$tdir/$tfile
751
752         rm -f $file
753         echo foo > $file || error "write filed"
754         echo bar >> $file || error "append filed"
755         $CHECKSTAT -s 8 $file || error "wrong size"
756         rm $file
757 }
758 run_test 23b "O_APPEND check =========================="
759
760 # rename sanity
761 test_24a() {
762         echo '-- same directory rename'
763         test_mkdir $DIR/$tdir
764         touch $DIR/$tdir/$tfile.1
765         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
767 }
768 run_test 24a "rename file to non-existent target"
769
770 test_24b() {
771         test_mkdir $DIR/$tdir
772         touch $DIR/$tdir/$tfile.{1,2}
773         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
776 }
777 run_test 24b "rename file to existing target"
778
779 test_24c() {
780         test_mkdir $DIR/$tdir
781         test_mkdir $DIR/$tdir/d$testnum.1
782         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
785 }
786 run_test 24c "rename directory to non-existent target"
787
788 test_24d() {
789         test_mkdir $DIR/$tdir
790         test_mkdir $DIR/$tdir/d$testnum.1
791         test_mkdir $DIR/$tdir/d$ttestnum.2
792         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
795 }
796 run_test 24d "rename directory to existing target"
797
798 test_24e() {
799         echo '-- cross directory renames --'
800         test_mkdir $DIR/R5a
801         test_mkdir $DIR/R5b
802         touch $DIR/R5a/f
803         mv $DIR/R5a/f $DIR/R5b/g
804         $CHECKSTAT -a $DIR/R5a/f || error
805         $CHECKSTAT -t file $DIR/R5b/g || error
806 }
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
808
809 test_24f() {
810         test_mkdir $DIR/R6a
811         test_mkdir $DIR/R6b
812         touch $DIR/R6a/f $DIR/R6b/g
813         mv $DIR/R6a/f $DIR/R6b/g
814         $CHECKSTAT -a $DIR/R6a/f || error
815         $CHECKSTAT -t file $DIR/R6b/g || error
816 }
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
818
819 test_24g() {
820         test_mkdir $DIR/R7a
821         test_mkdir $DIR/R7b
822         test_mkdir $DIR/R7a/d
823         mv $DIR/R7a/d $DIR/R7b/e
824         $CHECKSTAT -a $DIR/R7a/d || error
825         $CHECKSTAT -t dir $DIR/R7b/e || error
826 }
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
828
829 test_24h() {
830         test_mkdir $DIR/R8a
831         test_mkdir $DIR/R8b
832         test_mkdir $DIR/R8a/d
833         test_mkdir $DIR/R8b/e
834         mrename $DIR/R8a/d $DIR/R8b/e
835         $CHECKSTAT -a $DIR/R8a/d || error
836         $CHECKSTAT -t dir $DIR/R8b/e || error
837 }
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
839
840 test_24i() {
841         echo "-- rename error cases"
842         test_mkdir $DIR/R9
843         test_mkdir $DIR/R9/a
844         touch $DIR/R9/f
845         mrename $DIR/R9/f $DIR/R9/a
846         $CHECKSTAT -t file $DIR/R9/f || error
847         $CHECKSTAT -t dir  $DIR/R9/a || error
848         $CHECKSTAT -a $DIR/R9/a/f || error
849 }
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
851
852 test_24j() {
853         test_mkdir $DIR/R10
854         mrename $DIR/R10/f $DIR/R10/g
855         $CHECKSTAT -t dir $DIR/R10 || error
856         $CHECKSTAT -a $DIR/R10/f || error
857         $CHECKSTAT -a $DIR/R10/g || error
858 }
859 run_test 24j "source does not exist ============================"
860
861 test_24k() {
862         test_mkdir $DIR/R11a
863         test_mkdir $DIR/R11a/d
864         touch $DIR/R11a/f
865         mv $DIR/R11a/f $DIR/R11a/d
866         $CHECKSTAT -a $DIR/R11a/f || error
867         $CHECKSTAT -t file $DIR/R11a/d/f || error
868 }
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
870
871 # bug 2429 - rename foo foo foo creates invalid file
872 test_24l() {
873         f="$DIR/f24l"
874         $MULTIOP $f OcNs || error
875 }
876 run_test 24l "Renaming a file to itself ========================"
877
878 test_24m() {
879         f="$DIR/f24m"
880         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881         # on ext3 this does not remove either the source or target files
882         # though the "expected" operation would be to remove the source
883         $CHECKSTAT -t file ${f} || error "${f} missing"
884         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
885 }
886 run_test 24m "Renaming a file to a hard link to itself ========="
887
888 test_24n() {
889     f="$DIR/f24n"
890     # this stats the old file after it was renamed, so it should fail
891     touch ${f}
892     $CHECKSTAT ${f}
893     mv ${f} ${f}.rename
894     $CHECKSTAT ${f}.rename
895     $CHECKSTAT -a ${f}
896 }
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
898
899 test_24o() {
900         check_kernel_version 37 || return 0
901         test_mkdir -p $DIR/d24o
902         rename_many -s random -v -n 10 $DIR/d24o
903 }
904 run_test 24o "rename of files during htree split ==============="
905
906 test_24p() {
907         test_mkdir $DIR/R12a
908         test_mkdir $DIR/R12b
909         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910         mrename $DIR/R12a $DIR/R12b
911         $CHECKSTAT -a $DIR/R12a || error
912         $CHECKSTAT -t dir $DIR/R12b || error
913         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
915 }
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
917
918 cleanup_multiop_pause() {
919         trap 0
920         kill -USR1 $MULTIPID
921 }
922
923 test_24q() {
924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
925         test_mkdir $DIR/R13a
926         test_mkdir $DIR/R13b
927         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
929         MULTIPID=$!
930
931         trap cleanup_multiop_pause EXIT
932         mrename $DIR/R13a $DIR/R13b
933         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937         cleanup_multiop_pause
938         wait $MULTIPID || error "multiop close failed"
939 }
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
941
942 test_24r() { #bug 3789
943         test_mkdir $DIR/R14a
944         test_mkdir $DIR/R14a/b
945         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
948 }
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
950
951 test_24s() {
952         test_mkdir $DIR/R15a
953         test_mkdir $DIR/R15a/b
954         test_mkdir $DIR/R15a/b/c
955         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
958 }
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
960 test_24t() {
961         test_mkdir $DIR/R16a
962         test_mkdir $DIR/R16a/b
963         test_mkdir $DIR/R16a/b/c
964         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
967 }
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
969
970 test_24u() { # bug12192
971         rm -rf $DIR/$tfile
972         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
974 }
975 run_test 24u "create stripe file"
976
977 page_size() {
978         getconf PAGE_SIZE
979 }
980
981 simple_cleanup_common() {
982         trap 0
983         rm -rf $DIR/$tdir
984         wait_delete_completed
985 }
986
987 max_pages_per_rpc() {
988         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
989 }
990
991 test_24v() {
992         local NRFILES=100000
993         local FREE_INODES=$(mdt_free_inodes 0)
994         [ $FREE_INODES -lt $NRFILES ] && \
995                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
996                 return
997
998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999         trap simple_cleanup_common EXIT
1000
1001         # 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         mkdir -p $DIR/$tdir
1130         createmany -m $DIR/$tdir/$tfile $NFILES
1131         local t=`ls $DIR/$tdir | wc -l`
1132         local u=`ls $DIR/$tdir | sort -u | wc -l`
1133         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1134                 error "Expected $NFILES files, got $t ($u unique)"
1135         fi
1136
1137         rm -rf $DIR/$tdir || error "Can not delete directories"
1138 }
1139 run_test 24A "readdir() returns correct number of entries."
1140
1141 test_25a() {
1142         echo '== symlink sanity ============================================='
1143
1144         test_mkdir $DIR/d25
1145         ln -s d25 $DIR/s25
1146         touch $DIR/s25/foo || error
1147 }
1148 run_test 25a "create file in symlinked directory ==============="
1149
1150 test_25b() {
1151         [ ! -d $DIR/d25 ] && test_25a
1152         $CHECKSTAT -t file $DIR/s25/foo || error
1153 }
1154 run_test 25b "lookup file in symlinked directory ==============="
1155
1156 test_26a() {
1157         test_mkdir $DIR/d26
1158         test_mkdir $DIR/d26/d26-2
1159         ln -s d26/d26-2 $DIR/s26
1160         touch $DIR/s26/foo || error
1161 }
1162 run_test 26a "multiple component symlink ======================="
1163
1164 test_26b() {
1165         test_mkdir -p $DIR/d26b/d26-2
1166         ln -s d26b/d26-2/foo $DIR/s26-2
1167         touch $DIR/s26-2 || error
1168 }
1169 run_test 26b "multiple component symlink at end of lookup ======"
1170
1171 test_26c() {
1172         test_mkdir $DIR/d26.2
1173         touch $DIR/d26.2/foo
1174         ln -s d26.2 $DIR/s26.2-1
1175         ln -s s26.2-1 $DIR/s26.2-2
1176         ln -s s26.2-2 $DIR/s26.2-3
1177         chmod 0666 $DIR/s26.2-3/foo
1178 }
1179 run_test 26c "chain of symlinks ================================"
1180
1181 # recursive symlinks (bug 439)
1182 test_26d() {
1183         ln -s d26-3/foo $DIR/d26-3
1184 }
1185 run_test 26d "create multiple component recursive symlink ======"
1186
1187 test_26e() {
1188         [ ! -h $DIR/d26-3 ] && test_26d
1189         rm $DIR/d26-3
1190 }
1191 run_test 26e "unlink multiple component recursive symlink ======"
1192
1193 # recursive symlinks (bug 7022)
1194 test_26f() {
1195         test_mkdir -p $DIR/$tdir
1196         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1197         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1198         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1199         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1200         cd $tfile                || error "cd $tfile failed"
1201         ln -s .. dotdot          || error "ln dotdot failed"
1202         ln -s dotdot/lndir lndir || error "ln lndir failed"
1203         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1204         output=`ls $tfile/$tfile/lndir/bar1`
1205         [ "$output" = bar1 ] && error "unexpected output"
1206         rm -r $tfile             || error "rm $tfile failed"
1207         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1208 }
1209 run_test 26f "rm -r of a directory which has recursive symlink ="
1210
1211 test_27a() {
1212         echo '== stripe sanity =============================================='
1213         test_mkdir -p $DIR/d27 || error "mkdir failed"
1214         $GETSTRIPE $DIR/d27
1215         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1216         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1217         pass
1218         log "== test_27a: write to one stripe file ========================="
1219         cp /etc/hosts $DIR/d27/f0 || error
1220 }
1221 run_test 27a "one stripe file =================================="
1222
1223 test_27b() {
1224         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1225         test_mkdir -p $DIR/d27
1226         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1227         $GETSTRIPE -c $DIR/d27/f01
1228         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1229                 error "two-stripe file doesn't have two stripes"
1230
1231         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1232 }
1233 run_test 27b "create and write to two stripe file"
1234
1235 test_27d() {
1236         test_mkdir -p $DIR/d27
1237         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1238         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1239         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1240 }
1241 run_test 27d "create file with default settings ================"
1242
1243 test_27e() {
1244         test_mkdir -p $DIR/d27
1245         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1246         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1247         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1248 }
1249 run_test 27e "setstripe existing file (should return error) ======"
1250
1251 test_27f() {
1252         test_mkdir -p $DIR/d27
1253         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1254         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1255         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1256 }
1257 run_test 27f "setstripe with bad stripe size (should return error)"
1258
1259 test_27g() {
1260         test_mkdir -p $DIR/d27
1261         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1262         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1263                 error "$DIR/d27/fnone has object"
1264 }
1265 run_test 27g "$GETSTRIPE with no objects"
1266
1267 test_27i() {
1268         touch $DIR/d27/fsome || error "touch failed"
1269         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1270 }
1271 run_test 27i "$GETSTRIPE with some objects"
1272
1273 test_27j() {
1274         test_mkdir -p $DIR/d27
1275         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1276 }
1277 run_test 27j "setstripe with bad stripe offset (should return error)"
1278
1279 test_27k() { # bug 2844
1280         test_mkdir -p $DIR/d27
1281         FILE=$DIR/d27/f27k
1282         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1283         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1284         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1285         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1286         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1287         dd if=/dev/zero of=$FILE bs=4k count=1
1288         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1289         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1290 }
1291 run_test 27k "limit i_blksize for broken user apps ============="
1292
1293 test_27l() {
1294         test_mkdir -p $DIR/d27
1295         mcreate $DIR/f27l || error "creating file"
1296         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1297                 error "setstripe should have failed" || true
1298 }
1299 run_test 27l "check setstripe permissions (should return error)"
1300
1301 test_27m() {
1302         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1303                 return
1304         if [ $ORIGFREE -gt $MAXFREE ]; then
1305                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1306                 return
1307         fi
1308         trap simple_cleanup_common EXIT
1309         test_mkdir -p $DIR/$tdir
1310         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1311         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1312                 error "dd should fill OST0"
1313         i=2
1314         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1315                 i=`expr $i + 1`
1316                 [ $i -gt 256 ] && break
1317         done
1318         i=`expr $i + 1`
1319         touch $DIR/$tdir/f27m_$i
1320         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1321                 error "OST0 was full but new created file still use it"
1322         i=`expr $i + 1`
1323         touch $DIR/$tdir/f27m_$i
1324         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1325                 error "OST0 was full but new created file still use it"
1326         simple_cleanup_common
1327 }
1328 run_test 27m "create file while OST0 was full =================="
1329
1330 sleep_maxage() {
1331         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1332         sleep $DELAY
1333 }
1334
1335 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1336 # if the OST isn't full anymore.
1337 reset_enospc() {
1338         local OSTIDX=${1:-""}
1339
1340         local list=$(comma_list $(osts_nodes))
1341         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1342
1343         do_nodes $list lctl set_param fail_loc=0
1344         sync    # initiate all OST_DESTROYs from MDS to OST
1345         sleep_maxage
1346 }
1347
1348 exhaust_precreations() {
1349         local OSTIDX=$1
1350         local FAILLOC=$2
1351         local FAILIDX=${3:-$OSTIDX}
1352
1353         test_mkdir -p $DIR/$tdir
1354         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1355         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1356
1357         local OST=$(ostname_from_index $OSTIDX)
1358         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1359                           sed -e 's/_UUID$//;s/^.*-//')
1360
1361         # on the mdt's osc
1362         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1363         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1364                         osc.$mdtosc_proc1.prealloc_last_id)
1365         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1366                         osc.$mdtosc_proc1.prealloc_next_id)
1367
1368         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1369         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1370
1371         test_mkdir -p $DIR/$tdir/${OST}
1372         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1373 #define OBD_FAIL_OST_ENOSPC              0x215
1374         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1375         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1376         echo "Creating to objid $last_id on ost $OST..."
1377         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1378         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1379         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1380         sleep_maxage
1381 }
1382
1383 exhaust_all_precreations() {
1384         local i
1385         for (( i=0; i < OSTCOUNT; i++ )) ; do
1386                 exhaust_precreations $i $1 -1
1387         done
1388 }
1389
1390 test_27n() {
1391         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1392         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1393         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1394         remote_ost_nodsh && skip "remote OST with nodsh" && return
1395
1396         reset_enospc
1397         rm -f $DIR/$tdir/$tfile
1398         exhaust_precreations 0 0x80000215
1399         $SETSTRIPE -c -1 $DIR/$tdir
1400         touch $DIR/$tdir/$tfile || error
1401         $GETSTRIPE $DIR/$tdir/$tfile
1402         reset_enospc
1403 }
1404 run_test 27n "create file with some full OSTs =================="
1405
1406 test_27o() {
1407         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1409         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1410         remote_ost_nodsh && skip "remote OST with nodsh" && return
1411
1412         reset_enospc
1413         rm -f $DIR/$tdir/$tfile
1414         exhaust_all_precreations 0x215
1415
1416         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1417
1418         reset_enospc
1419         rm -rf $DIR/$tdir/*
1420 }
1421 run_test 27o "create file with all full OSTs (should error) ===="
1422
1423 test_27p() {
1424         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1426         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1427         remote_ost_nodsh && skip "remote OST with nodsh" && return
1428
1429         reset_enospc
1430         rm -f $DIR/$tdir/$tfile
1431         test_mkdir -p $DIR/$tdir
1432
1433         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1434         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1435         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1436
1437         exhaust_precreations 0 0x80000215
1438         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1439         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1440         $GETSTRIPE $DIR/$tdir/$tfile
1441
1442         reset_enospc
1443 }
1444 run_test 27p "append to a truncated file with some full OSTs ==="
1445
1446 test_27q() {
1447         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1449         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1450         remote_ost_nodsh && skip "remote OST with nodsh" && return
1451
1452         reset_enospc
1453         rm -f $DIR/$tdir/$tfile
1454
1455         test_mkdir -p $DIR/$tdir
1456         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1457         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1458         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1459
1460         exhaust_all_precreations 0x215
1461
1462         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1463         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1464
1465         reset_enospc
1466 }
1467 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1468
1469 test_27r() {
1470         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1472         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1473         remote_ost_nodsh && skip "remote OST with nodsh" && return
1474
1475         reset_enospc
1476         rm -f $DIR/$tdir/$tfile
1477         exhaust_precreations 0 0x80000215
1478
1479         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1480
1481         reset_enospc
1482 }
1483 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1484
1485 test_27s() { # bug 10725
1486         test_mkdir -p $DIR/$tdir
1487         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1488         local stripe_count=0
1489         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1490         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1491                 error "stripe width >= 2^32 succeeded" || true
1492
1493 }
1494 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1495
1496 test_27t() { # bug 10864
1497         WDIR=`pwd`
1498         WLFS=`which lfs`
1499         cd $DIR
1500         touch $tfile
1501         $WLFS getstripe $tfile
1502         cd $WDIR
1503 }
1504 run_test 27t "check that utils parse path correctly"
1505
1506 test_27u() { # bug 4900
1507         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1508         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1509         local index
1510         local list=$(comma_list $(mdts_nodes))
1511
1512 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1513         do_nodes $list $LCTL set_param fail_loc=0x139
1514         test_mkdir -p $DIR/$tdir
1515         rm -rf $DIR/$tdir/*
1516         createmany -o $DIR/$tdir/t- 1000
1517         do_nodes $list $LCTL set_param fail_loc=0
1518
1519         TLOG=$DIR/$tfile.getstripe
1520         $GETSTRIPE $DIR/$tdir > $TLOG
1521         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1522         unlinkmany $DIR/$tdir/t- 1000
1523         [ $OBJS -gt 0 ] && \
1524                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1525 }
1526 run_test 27u "skip object creation on OSC w/o objects =========="
1527
1528 test_27v() { # bug 4900
1529         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1531         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1532         remote_ost_nodsh && skip "remote OST with nodsh" && return
1533
1534         exhaust_all_precreations 0x215
1535         reset_enospc
1536
1537         test_mkdir -p $DIR/$tdir
1538         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1539
1540         touch $DIR/$tdir/$tfile
1541         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1542         # all except ost1
1543         for (( i=1; i < OSTCOUNT; i++ )); do
1544                 do_facet ost$i lctl set_param fail_loc=0x705
1545         done
1546         local START=`date +%s`
1547         createmany -o $DIR/$tdir/$tfile 32
1548
1549         local FINISH=`date +%s`
1550         local TIMEOUT=`lctl get_param -n timeout`
1551         local PROCESS=$((FINISH - START))
1552         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1553                error "$FINISH - $START >= $TIMEOUT / 2"
1554         sleep $((TIMEOUT / 2 - PROCESS))
1555         reset_enospc
1556 }
1557 run_test 27v "skip object creation on slow OST ================="
1558
1559 test_27w() { # bug 10997
1560         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1561         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1562         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1563                 error "stripe size $size != 65536" || true
1564         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1565                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1566 }
1567 run_test 27w "check $SETSTRIPE -S option"
1568
1569 test_27wa() {
1570         [ "$OSTCOUNT" -lt "2" ] &&
1571                 skip_env "skipping multiple stripe count/offset test" && return
1572
1573         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1574         for i in $(seq 1 $OSTCOUNT); do
1575                 offset=$((i - 1))
1576                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1577                         error "setstripe -c $i -i $offset failed"
1578                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1579                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1580                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1581                 [ $index -ne $offset ] &&
1582                         error "stripe offset $index != $offset" || true
1583         done
1584 }
1585 run_test 27wa "check $SETSTRIPE -c -i options"
1586
1587 test_27x() {
1588         remote_ost_nodsh && skip "remote OST with nodsh" && return
1589         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1591         OFFSET=$(($OSTCOUNT - 1))
1592         OSTIDX=0
1593         local OST=$(ostname_from_index $OSTIDX)
1594
1595         test_mkdir -p $DIR/$tdir
1596         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1597         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1598         sleep_maxage
1599         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1600         for i in `seq 0 $OFFSET`; do
1601                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1602                 error "OST0 was degraded but new created file still use it"
1603         done
1604         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1605 }
1606 run_test 27x "create files while OST0 is degraded"
1607
1608 test_27y() {
1609         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1610         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1611         remote_ost_nodsh && skip "remote OST with nodsh" && return
1612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1613
1614         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1615         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1616             osc.$mdtosc.prealloc_last_id)
1617         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1618             osc.$mdtosc.prealloc_next_id)
1619         local fcount=$((last_id - next_id))
1620         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1621         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1622
1623         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1624                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1625         local OST_DEACTIVE_IDX=-1
1626         local OSC
1627         local OSTIDX
1628         local OST
1629
1630         for OSC in $MDS_OSCS; do
1631                 OST=$(osc_to_ost $OSC)
1632                 OSTIDX=$(index_from_ostuuid $OST)
1633                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1634                         OST_DEACTIVE_IDX=$OSTIDX
1635                 fi
1636                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1637                         echo $OSC "is Deactivated:"
1638                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1639                 fi
1640         done
1641
1642         OSTIDX=$(index_from_ostuuid $OST)
1643         mkdir -p $DIR/$tdir
1644         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1645
1646         for OSC in $MDS_OSCS; do
1647                 OST=$(osc_to_ost $OSC)
1648                 OSTIDX=$(index_from_ostuuid $OST)
1649                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1650                         echo $OST "is degraded:"
1651                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1652                                                 obdfilter.$OST.degraded=1
1653                 fi
1654         done
1655
1656         sleep_maxage
1657         createmany -o $DIR/$tdir/$tfile $fcount
1658
1659         for OSC in $MDS_OSCS; do
1660                 OST=$(osc_to_ost $OSC)
1661                 OSTIDX=$(index_from_ostuuid $OST)
1662                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1663                         echo $OST "is recovered from degraded:"
1664                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1665                                                 obdfilter.$OST.degraded=0
1666                 else
1667                         do_facet $SINGLEMDS lctl --device %$OSC activate
1668                 fi
1669         done
1670
1671         # all osp devices get activated, hence -1 stripe count restored
1672         local stripecnt=0
1673
1674         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1675         # devices get activated.
1676         sleep_maxage
1677         $SETSTRIPE -c -1 $DIR/$tfile
1678         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1679         rm -f $DIR/$tfile
1680         [ $stripecnt -ne $OSTCOUNT ] &&
1681                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1682         return 0
1683 }
1684 run_test 27y "create files while OST0 is degraded and the rest inactive"
1685
1686 check_seq_oid()
1687 {
1688         log "check file $1"
1689
1690         lmm_count=$($GETSTRIPE -c $1)
1691         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1692         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1693
1694         local old_ifs="$IFS"
1695         IFS=$'[:]'
1696         fid=($($LFS path2fid $1))
1697         IFS="$old_ifs"
1698
1699         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1700         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1701
1702         # compare lmm_seq and lu_fid->f_seq
1703         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1704         # compare lmm_object_id and lu_fid->oid
1705         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1706
1707         # check the trusted.fid attribute of the OST objects of the file
1708         local have_obdidx=false
1709         local stripe_nr=0
1710         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1711                 # skip lines up to and including "obdidx"
1712                 [ -z "$obdidx" ] && break
1713                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1714                 $have_obdidx || continue
1715
1716                 local ost=$((obdidx + 1))
1717                 local dev=$(ostdevname $ost)
1718                 local oid_hex
1719
1720                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1721                         echo "Currently only works with ldiskfs-based OSTs"
1722                         continue
1723                 fi
1724
1725                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1726
1727                 #don't unmount/remount the OSTs if we don't need to do that
1728                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1729                 # update too, until that use mount/ll_decode_filter_fid/mount
1730                 local dir=$(facet_mntpt ost$ost)
1731                 local opts=${OST_MOUNT_OPTS}
1732
1733                 if !  do_facet ost$ost test -b ${dev}; then
1734                         opts=$(csa_add "$opts" -o loop)
1735                 fi
1736
1737                 stop ost$ost
1738                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1739                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1740
1741                 seq=$(echo $seq | sed -e "s/^0x//g")
1742                 if [ $seq == 0 ]; then
1743                         oid_hex=$(echo $oid)
1744                 else
1745                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1746                 fi
1747                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1748                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1749                 do_facet ost$ost umount -d $dir
1750                 start ost$ost $dev $OST_MOUNT_OPTS
1751
1752                 # re-enable when debugfs will understand new filter_fid
1753                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1754                 #           $dev 2>/dev/null" | grep "parent=")
1755
1756                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1757
1758                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1759
1760                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1761                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1762                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1763                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1764                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1765                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1766
1767                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1768                 [ $ff_pseq = $lmm_seq ] ||
1769                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1770                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1771                 [ $ff_poid = $lmm_oid ] ||
1772                         error "FF parent OID $ff_poid != $lmm_oid"
1773                 [ $ff_pstripe = $stripe_nr ] ||
1774                         error "FF stripe $ff_pstripe != $stripe_nr"
1775
1776                 stripe_nr=$((stripe_nr + 1))
1777         done
1778 }
1779
1780 test_27z() {
1781         remote_ost_nodsh && skip "remote OST with nodsh" && return
1782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1783         test_mkdir -p $DIR/$tdir
1784
1785         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1786                 { error "setstripe -c -1 failed"; return 1; }
1787         # We need to send a write to every object to get parent FID info set.
1788         # This _should_ also work for setattr, but does not currently.
1789         # touch $DIR/$tdir/$tfile-1 ||
1790         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1791                 { error "dd $tfile-1 failed"; return 2; }
1792         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1793                 { error "setstripe -c -1 failed"; return 3; }
1794         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1795                 { error "dd $tfile-2 failed"; return 4; }
1796
1797         # make sure write RPCs have been sent to OSTs
1798         sync; sleep 5; sync
1799
1800         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1801         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1802 }
1803 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1804
1805 test_27A() { # b=19102
1806         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1807         local restore_size=$($GETSTRIPE -S $MOUNT)
1808         local restore_count=$($GETSTRIPE -c $MOUNT)
1809         local restore_offset=$($GETSTRIPE -i $MOUNT)
1810         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1811         local default_size=$($GETSTRIPE -S $MOUNT)
1812         local default_count=$($GETSTRIPE -c $MOUNT)
1813         local default_offset=$($GETSTRIPE -i $MOUNT)
1814         local dsize=$((1024 * 1024))
1815         [ $default_size -eq $dsize ] ||
1816                 error "stripe size $default_size != $dsize"
1817         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1818         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1819         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1820 }
1821 run_test 27A "check filesystem-wide default LOV EA values"
1822
1823 test_27B() { # LU-2523
1824         test_mkdir -p $DIR/$tdir
1825         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1826         touch $DIR/$tdir/f0
1827         # open f1 with O_LOV_DELAY_CREATE
1828         # rename f0 onto f1
1829         # call setstripe ioctl on open file descriptor for f1
1830         # close
1831         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1832                 $DIR/$tdir/f0
1833
1834         rm -f $DIR/$tdir/f1
1835         # open f1 with O_LOV_DELAY_CREATE
1836         # unlink f1
1837         # call setstripe ioctl on open file descriptor for f1
1838         # close
1839         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1840
1841         # Allow multiop to fail in imitation of NFS's busted semantics.
1842         true
1843 }
1844 run_test 27B "call setstripe on open unlinked file/rename victim"
1845
1846 test_27C() { #LU-2871
1847         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1848
1849         declare -a ost_idx
1850         local index
1851         local found
1852         local i
1853         local j
1854
1855         test_mkdir -p $DIR/$tdir
1856         cd $DIR/$tdir
1857         for i in $(seq 0 $((OSTCOUNT - 1))); do
1858                 # set stripe across all OSTs starting from OST$i
1859                 $SETSTRIPE -i $i -c -1 $tfile$i
1860                 # get striping information
1861                 ost_idx=($($GETSTRIPE $tfile$i |
1862                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1863                 echo ${ost_idx[@]}
1864
1865                 # check the layout
1866                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1867                         error "${#ost_idx[@]} != $OSTCOUNT"
1868
1869                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1870                         found=0
1871                         for j in $(echo ${ost_idx[@]}); do
1872                                 if [ $index -eq $j ]; then
1873                                         found=1
1874                                         break
1875                                 fi
1876                         done
1877                         [ $found = 1 ] ||
1878                                 error "Can not find $index in ${ost_idx[@]}"
1879                 done
1880         done
1881 }
1882 run_test 27C "check full striping across all OSTs"
1883
1884 # createtest also checks that device nodes are created and
1885 # then visible correctly (#2091)
1886 test_28() { # bug 2091
1887         test_mkdir $DIR/d28
1888         $CREATETEST $DIR/d28/ct || error
1889 }
1890 run_test 28 "create/mknod/mkdir with bad file types ============"
1891
1892 test_29() {
1893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1894         cancel_lru_locks mdc
1895         test_mkdir $DIR/d29
1896         touch $DIR/d29/foo
1897         log 'first d29'
1898         ls -l $DIR/d29
1899
1900         declare -i LOCKCOUNTORIG=0
1901         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1902                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1903         done
1904         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1905
1906         declare -i LOCKUNUSEDCOUNTORIG=0
1907         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1908                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1909         done
1910
1911         log 'second d29'
1912         ls -l $DIR/d29
1913         log 'done'
1914
1915         declare -i LOCKCOUNTCURRENT=0
1916         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1917                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1918         done
1919
1920         declare -i LOCKUNUSEDCOUNTCURRENT=0
1921         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1922                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1923         done
1924
1925         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1926                 lctl set_param -n ldlm.dump_namespaces ""
1927                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1928                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1929                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1930                 return 2
1931         fi
1932         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1933                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1934                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1935                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1936                 return 3
1937         fi
1938 }
1939 run_test 29 "IT_GETATTR regression  ============================"
1940
1941 test_30a() { # was test_30
1942         cp `which ls` $DIR || cp /bin/ls $DIR
1943         $DIR/ls / || error
1944         rm $DIR/ls
1945 }
1946 run_test 30a "execute binary from Lustre (execve) =============="
1947
1948 test_30b() {
1949         cp `which ls` $DIR || cp /bin/ls $DIR
1950         chmod go+rx $DIR/ls
1951         $RUNAS $DIR/ls / || error
1952         rm $DIR/ls
1953 }
1954 run_test 30b "execute binary from Lustre as non-root ==========="
1955
1956 test_30c() { # b=22376
1957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1958         cp `which ls` $DIR || cp /bin/ls $DIR
1959         chmod a-rw $DIR/ls
1960         cancel_lru_locks mdc
1961         cancel_lru_locks osc
1962         $RUNAS $DIR/ls / || error
1963         rm -f $DIR/ls
1964 }
1965 run_test 30c "execute binary from Lustre without read perms ===="
1966
1967 test_31a() {
1968         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1969         $CHECKSTAT -a $DIR/f31 || error
1970 }
1971 run_test 31a "open-unlink file =================================="
1972
1973 test_31b() {
1974         touch $DIR/f31 || error
1975         ln $DIR/f31 $DIR/f31b || error
1976         $MULTIOP $DIR/f31b Ouc || error
1977         $CHECKSTAT -t file $DIR/f31 || error
1978 }
1979 run_test 31b "unlink file with multiple links while open ======="
1980
1981 test_31c() {
1982         touch $DIR/f31 || error
1983         ln $DIR/f31 $DIR/f31c || error
1984         multiop_bg_pause $DIR/f31 O_uc || return 1
1985         MULTIPID=$!
1986         $MULTIOP $DIR/f31c Ouc
1987         kill -USR1 $MULTIPID
1988         wait $MULTIPID
1989 }
1990 run_test 31c "open-unlink file with multiple links ============="
1991
1992 test_31d() {
1993         opendirunlink $DIR/d31d $DIR/d31d || error
1994         $CHECKSTAT -a $DIR/d31d || error
1995 }
1996 run_test 31d "remove of open directory ========================="
1997
1998 test_31e() { # bug 2904
1999         check_kernel_version 34 || return 0
2000         openfilleddirunlink $DIR/d31e || error
2001 }
2002 run_test 31e "remove of open non-empty directory ==============="
2003
2004 test_31f() { # bug 4554
2005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2006         set -vx
2007         test_mkdir $DIR/d31f
2008         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2009         cp /etc/hosts $DIR/d31f
2010         ls -l $DIR/d31f
2011         $GETSTRIPE $DIR/d31f/hosts
2012         multiop_bg_pause $DIR/d31f D_c || return 1
2013         MULTIPID=$!
2014
2015         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2016         test_mkdir $DIR/d31f
2017         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2018         cp /etc/hosts $DIR/d31f
2019         ls -l $DIR/d31f
2020         $GETSTRIPE $DIR/d31f/hosts
2021         multiop_bg_pause $DIR/d31f D_c || return 1
2022         MULTIPID2=$!
2023
2024         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2025         wait $MULTIPID || error "first opendir $MULTIPID failed"
2026
2027         sleep 6
2028
2029         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2030         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2031         set +vx
2032 }
2033 run_test 31f "remove of open directory with open-unlink file ==="
2034
2035 test_31g() {
2036         echo "-- cross directory link --"
2037         test_mkdir $DIR/d31ga
2038         test_mkdir $DIR/d31gb
2039         touch $DIR/d31ga/f
2040         ln $DIR/d31ga/f $DIR/d31gb/g
2041         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2042         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2043         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2044         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2045 }
2046 run_test 31g "cross directory link==============="
2047
2048 test_31h() {
2049         echo "-- cross directory link --"
2050         test_mkdir $DIR/d31h
2051         test_mkdir $DIR/d31h/dir
2052         touch $DIR/d31h/f
2053         ln $DIR/d31h/f $DIR/d31h/dir/g
2054         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2055         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2056         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2057         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2058 }
2059 run_test 31h "cross directory link under child==============="
2060
2061 test_31i() {
2062         echo "-- cross directory link --"
2063         test_mkdir $DIR/d31i
2064         test_mkdir $DIR/d31i/dir
2065         touch $DIR/d31i/dir/f
2066         ln $DIR/d31i/dir/f $DIR/d31i/g
2067         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2068         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2069         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2070         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2071 }
2072 run_test 31i "cross directory link under parent==============="
2073
2074
2075 test_31j() {
2076         test_mkdir $DIR/d31j
2077         test_mkdir $DIR/d31j/dir1
2078         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2079         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2080         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2081         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2082         return 0
2083 }
2084 run_test 31j "link for directory==============="
2085
2086
2087 test_31k() {
2088         test_mkdir $DIR/d31k
2089         touch $DIR/d31k/s
2090         touch $DIR/d31k/exist
2091         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2092         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2093         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2094         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2095         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2096         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2097         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2098         return 0
2099 }
2100 run_test 31k "link to file: the same, non-existing, dir==============="
2101
2102 test_31m() {
2103         test_mkdir $DIR/d31m
2104         touch $DIR/d31m/s
2105         test_mkdir $DIR/d31m2
2106         touch $DIR/d31m2/exist
2107         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2108         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2109         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2110         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2111         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2112         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2113         return 0
2114 }
2115 run_test 31m "link to file: the same, non-existing, dir==============="
2116
2117 test_31n() {
2118         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2119         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2120         nlink=$(stat --format=%h $DIR/$tfile)
2121         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2122         exec 173<$DIR/$tfile
2123         trap "exec 173<&-" EXIT
2124         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2125         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2126         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2127         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2128         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2129         exec 173<&-
2130 }
2131 run_test 31n "check link count of unlinked file"
2132
2133 link_one() {
2134         local TEMPNAME=$(mktemp $1_XXXXXX)
2135         mlink $TEMPNAME $1 2> /dev/null &&
2136                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2137         munlink $TEMPNAME
2138 }
2139
2140 test_31o() { # LU-2901
2141         mkdir -p $DIR/$tdir
2142         for LOOP in $(seq 100); do
2143                 rm -f $DIR/$tdir/$tfile*
2144                 for THREAD in $(seq 8); do
2145                         link_one $DIR/$tdir/$tfile.$LOOP &
2146                 done
2147                 wait
2148                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2149                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2150                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2151                         break || true
2152         done
2153 }
2154 run_test 31o "duplicate hard links with same filename"
2155
2156 cleanup_test32_mount() {
2157         trap 0
2158         $UMOUNT $DIR/$tdir/ext2-mountpoint
2159 }
2160
2161 test_32a() {
2162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2163         echo "== more mountpoints and symlinks ================="
2164         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2165         trap cleanup_test32_mount EXIT
2166         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2167         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2168         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2169         cleanup_test32_mount
2170 }
2171 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2172
2173 test_32b() {
2174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2175         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2176         trap cleanup_test32_mount EXIT
2177         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2178         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2179         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2180         cleanup_test32_mount
2181 }
2182 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2183
2184 test_32c() {
2185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2186         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2187         trap cleanup_test32_mount EXIT
2188         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2189         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2190         test_mkdir -p $DIR/$tdir/d2/test_dir
2191         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2192         cleanup_test32_mount
2193 }
2194 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2195
2196 test_32d() {
2197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2198         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2199         trap cleanup_test32_mount EXIT
2200         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2201         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2202         test_mkdir -p $DIR/$tdir/d2/test_dir
2203         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2204         cleanup_test32_mount
2205 }
2206 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2207
2208 test_32e() {
2209         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2210         test_mkdir -p $DIR/d32e/tmp
2211         TMP_DIR=$DIR/d32e/tmp
2212         ln -s $DIR/d32e $TMP_DIR/symlink11
2213         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2214         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2215         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2216 }
2217 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2218
2219 test_32f() {
2220         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2221         test_mkdir -p $DIR/d32f/tmp
2222         TMP_DIR=$DIR/d32f/tmp
2223         ln -s $DIR/d32f $TMP_DIR/symlink11
2224         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2225         ls $DIR/d32f/tmp/symlink11  || error
2226         ls $DIR/d32f/symlink01 || error
2227 }
2228 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2229
2230 test_32g() {
2231         TMP_DIR=$DIR/$tdir/tmp
2232         test_mkdir -p $DIR/$tdir/tmp
2233         test_mkdir $DIR/${tdir}2
2234         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2235         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2236         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2237         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2238         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2239         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2240 }
2241 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2242
2243 test_32h() {
2244         rm -fr $DIR/$tdir $DIR/${tdir}2
2245         TMP_DIR=$DIR/$tdir/tmp
2246         test_mkdir -p $DIR/$tdir/tmp
2247         test_mkdir $DIR/${tdir}2
2248         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2249         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2250         ls $TMP_DIR/symlink12 || error
2251         ls $DIR/$tdir/symlink02  || error
2252 }
2253 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2254
2255 test_32i() {
2256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2257         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2258         trap cleanup_test32_mount EXIT
2259         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2260         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2261         touch $DIR/$tdir/test_file
2262         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2263         cleanup_test32_mount
2264 }
2265 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2266
2267 test_32j() {
2268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2269         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2270         trap cleanup_test32_mount EXIT
2271         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2272         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2273         touch $DIR/$tdir/test_file
2274         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2275         cleanup_test32_mount
2276 }
2277 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2278
2279 test_32k() {
2280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2281         rm -fr $DIR/$tdir
2282         trap cleanup_test32_mount EXIT
2283         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2284         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2285         test_mkdir -p $DIR/$tdir/d2
2286         touch $DIR/$tdir/d2/test_file || error
2287         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2288         cleanup_test32_mount
2289 }
2290 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2291
2292 test_32l() {
2293         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2294         rm -fr $DIR/$tdir
2295         trap cleanup_test32_mount EXIT
2296         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2297         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2298         test_mkdir -p $DIR/$tdir/d2
2299         touch $DIR/$tdir/d2/test_file
2300         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2301         cleanup_test32_mount
2302 }
2303 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2304
2305 test_32m() {
2306         rm -fr $DIR/d32m
2307         test_mkdir -p $DIR/d32m/tmp
2308         TMP_DIR=$DIR/d32m/tmp
2309         ln -s $DIR $TMP_DIR/symlink11
2310         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2311         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2312         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2313 }
2314 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2315
2316 test_32n() {
2317         rm -fr $DIR/d32n
2318         test_mkdir -p $DIR/d32n/tmp
2319         TMP_DIR=$DIR/d32n/tmp
2320         ln -s $DIR $TMP_DIR/symlink11
2321         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2322         ls -l $DIR/d32n/tmp/symlink11  || error
2323         ls -l $DIR/d32n/symlink01 || error
2324 }
2325 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2326
2327 test_32o() {
2328         rm -fr $DIR/d32o $DIR/$tfile
2329         touch $DIR/$tfile
2330         test_mkdir -p $DIR/d32o/tmp
2331         TMP_DIR=$DIR/d32o/tmp
2332         ln -s $DIR/$tfile $TMP_DIR/symlink12
2333         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2334         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2335         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2336         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2337         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2338 }
2339 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2340
2341 test_32p() {
2342     log 32p_1
2343         rm -fr $DIR/d32p
2344     log 32p_2
2345         rm -f $DIR/$tfile
2346     log 32p_3
2347         touch $DIR/$tfile
2348     log 32p_4
2349         test_mkdir -p $DIR/d32p/tmp
2350     log 32p_5
2351         TMP_DIR=$DIR/d32p/tmp
2352     log 32p_6
2353         ln -s $DIR/$tfile $TMP_DIR/symlink12
2354     log 32p_7
2355         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2356     log 32p_8
2357         cat $DIR/d32p/tmp/symlink12 || error
2358     log 32p_9
2359         cat $DIR/d32p/symlink02 || error
2360     log 32p_10
2361 }
2362 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2363
2364 cleanup_testdir_mount() {
2365         trap 0
2366         $UMOUNT $DIR/$tdir
2367 }
2368
2369 test_32q() {
2370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2371         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2372         trap cleanup_testdir_mount EXIT
2373         test_mkdir -p $DIR/$tdir
2374         touch $DIR/$tdir/under_the_mount
2375         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2376         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2377         cleanup_testdir_mount
2378 }
2379 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2380
2381 test_32r() {
2382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2383         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2384         trap cleanup_testdir_mount EXIT
2385         test_mkdir -p $DIR/$tdir
2386         touch $DIR/$tdir/under_the_mount
2387         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2388         ls $DIR/$tdir | grep -q under_the_mount && error || true
2389         cleanup_testdir_mount
2390 }
2391 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2392
2393 test_33aa() {
2394         rm -f $DIR/$tfile
2395         touch $DIR/$tfile
2396         chmod 444 $DIR/$tfile
2397         chown $RUNAS_ID $DIR/$tfile
2398         log 33_1
2399         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2400         log 33_2
2401 }
2402 run_test 33aa "write file with mode 444 (should return error) ===="
2403
2404 test_33a() {
2405         rm -fr $DIR/d33
2406         test_mkdir -p $DIR/d33
2407         chown $RUNAS_ID $DIR/d33
2408         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2409         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2410                 error "open RDWR" || true
2411 }
2412 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2413
2414 test_33b() {
2415         rm -fr $DIR/d33
2416         test_mkdir -p $DIR/d33
2417         chown $RUNAS_ID $DIR/d33
2418         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2419 }
2420 run_test 33b "test open file with malformed flags (No panic and return error)"
2421
2422 test_33c() {
2423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2424         local ostnum
2425         local ostname
2426         local write_bytes
2427         local all_zeros
2428
2429         remote_ost_nodsh && skip "remote OST with nodsh" && return
2430         all_zeros=:
2431         rm -fr $DIR/d33
2432         test_mkdir -p $DIR/d33
2433         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2434
2435         sync
2436         for ostnum in $(seq $OSTCOUNT); do
2437                 # test-framework's OST numbering is one-based, while Lustre's
2438                 # is zero-based
2439                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2440                 # Parsing llobdstat's output sucks; we could grep the /proc
2441                 # path, but that's likely to not be as portable as using the
2442                 # llobdstat utility.  So we parse lctl output instead.
2443                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2444                         obdfilter/$ostname/stats |
2445                         awk '/^write_bytes/ {print $7}' )
2446                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2447                 if (( ${write_bytes:-0} > 0 ))
2448                 then
2449                         all_zeros=false
2450                         break;
2451                 fi
2452         done
2453
2454         $all_zeros || return 0
2455
2456         # Write four bytes
2457         echo foo > $DIR/d33/bar
2458         # Really write them
2459         sync
2460
2461         # Total up write_bytes after writing.  We'd better find non-zeros.
2462         for ostnum in $(seq $OSTCOUNT); do
2463                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2464                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2465                         obdfilter/$ostname/stats |
2466                         awk '/^write_bytes/ {print $7}' )
2467                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2468                 if (( ${write_bytes:-0} > 0 ))
2469                 then
2470                         all_zeros=false
2471                         break;
2472                 fi
2473         done
2474
2475         if $all_zeros
2476         then
2477                 for ostnum in $(seq $OSTCOUNT); do
2478                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2479                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2480                         do_facet ost$ostnum lctl get_param -n \
2481                                 obdfilter/$ostname/stats
2482                 done
2483                 error "OST not keeping write_bytes stats (b22312)"
2484         fi
2485 }
2486 run_test 33c "test llobdstat and write_bytes"
2487
2488 test_33d() {
2489         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2491         local MDTIDX=1
2492         local remote_dir=$DIR/$tdir/remote_dir
2493
2494         mkdir -p $DIR/$tdir
2495         $LFS mkdir -i $MDTIDX $remote_dir ||
2496                 error "create remote directory failed"
2497
2498         touch $remote_dir/$tfile
2499         chmod 444 $remote_dir/$tfile
2500         chown $RUNAS_ID $remote_dir/$tfile
2501
2502         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2503
2504         chown $RUNAS_ID $remote_dir
2505         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2506                                         error "create" || true
2507         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2508                                     error "open RDWR" || true
2509         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2510                                     error "create" || true
2511 }
2512 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2513
2514 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2515 test_34a() {
2516         rm -f $DIR/f34
2517         $MCREATE $DIR/f34 || error
2518         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2519         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2520         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2521         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2522 }
2523 run_test 34a "truncate file that has not been opened ==========="
2524
2525 test_34b() {
2526         [ ! -f $DIR/f34 ] && test_34a
2527         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2528         $OPENFILE -f O_RDONLY $DIR/f34
2529         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2530         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2531 }
2532 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2533
2534 test_34c() {
2535         [ ! -f $DIR/f34 ] && test_34a
2536         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2537         $OPENFILE -f O_RDWR $DIR/f34
2538         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2539         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2540 }
2541 run_test 34c "O_RDWR opening file-with-size works =============="
2542
2543 test_34d() {
2544         [ ! -f $DIR/f34 ] && test_34a
2545         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2546         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2547         rm $DIR/f34
2548 }
2549 run_test 34d "write to sparse file ============================="
2550
2551 test_34e() {
2552         rm -f $DIR/f34e
2553         $MCREATE $DIR/f34e || error
2554         $TRUNCATE $DIR/f34e 1000 || error
2555         $CHECKSTAT -s 1000 $DIR/f34e || error
2556         $OPENFILE -f O_RDWR $DIR/f34e
2557         $CHECKSTAT -s 1000 $DIR/f34e || error
2558 }
2559 run_test 34e "create objects, some with size and some without =="
2560
2561 test_34f() { # bug 6242, 6243
2562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2563         SIZE34F=48000
2564         rm -f $DIR/f34f
2565         $MCREATE $DIR/f34f || error
2566         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2567         dd if=$DIR/f34f of=$TMP/f34f
2568         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2569         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2570         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2571         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2572         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2573 }
2574 run_test 34f "read from a file with no objects until EOF ======="
2575
2576 test_34g() {
2577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2578         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2579         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2580         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2581         cancel_lru_locks osc
2582         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2583                 error "wrong size after lock cancel"
2584
2585         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2586         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2587                 error "expanding truncate failed"
2588         cancel_lru_locks osc
2589         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2590                 error "wrong expanded size after lock cancel"
2591 }
2592 run_test 34g "truncate long file ==============================="
2593
2594 test_34h() {
2595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2596         local gid=10
2597         local sz=1000
2598
2599         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2600         sync # Flush the cache so that multiop below does not block on cache
2601              # flush when getting the group lock
2602         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2603         MULTIPID=$!
2604
2605         # Since just timed wait is not good enough, let's do a sync write
2606         # that way we are sure enough time for a roundtrip + processing
2607         # passed + 2 seconds of extra margin.
2608         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2609         rm $DIR/${tfile}-1
2610         sleep 2
2611
2612         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2613                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2614                 kill -9 $MULTIPID
2615         fi
2616         wait $MULTIPID
2617         local nsz=`stat -c %s $DIR/$tfile`
2618         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2619 }
2620 run_test 34h "ftruncate file under grouplock should not block"
2621
2622 test_35a() {
2623         cp /bin/sh $DIR/f35a
2624         chmod 444 $DIR/f35a
2625         chown $RUNAS_ID $DIR/f35a
2626         $RUNAS $DIR/f35a && error || true
2627         rm $DIR/f35a
2628 }
2629 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2630
2631 test_36a() {
2632         rm -f $DIR/f36
2633         utime $DIR/f36 || error
2634 }
2635 run_test 36a "MDS utime check (mknod, utime) ==================="
2636
2637 test_36b() {
2638         echo "" > $DIR/f36
2639         utime $DIR/f36 || error
2640 }
2641 run_test 36b "OST utime check (open, utime) ===================="
2642
2643 test_36c() {
2644         rm -f $DIR/d36/f36
2645         test_mkdir $DIR/d36
2646         chown $RUNAS_ID $DIR/d36
2647         $RUNAS utime $DIR/d36/f36 || error
2648 }
2649 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2650
2651 test_36d() {
2652         [ ! -d $DIR/d36 ] && test_36c
2653         echo "" > $DIR/d36/f36
2654         $RUNAS utime $DIR/d36/f36 || error
2655 }
2656 run_test 36d "non-root OST utime check (open, utime) ==========="
2657
2658 test_36e() {
2659         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2660         test_mkdir -p $DIR/$tdir
2661         touch $DIR/$tdir/$tfile
2662         $RUNAS utime $DIR/$tdir/$tfile && \
2663                 error "utime worked, expected failure" || true
2664 }
2665 run_test 36e "utime on non-owned file (should return error) ===="
2666
2667 subr_36fh() {
2668         local fl="$1"
2669         local LANG_SAVE=$LANG
2670         local LC_LANG_SAVE=$LC_LANG
2671         export LANG=C LC_LANG=C # for date language
2672
2673         DATESTR="Dec 20  2000"
2674         test_mkdir -p $DIR/$tdir
2675         lctl set_param fail_loc=$fl
2676         date; date +%s
2677         cp /etc/hosts $DIR/$tdir/$tfile
2678         sync & # write RPC generated with "current" inode timestamp, but delayed
2679         sleep 1
2680         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2681         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2682         cancel_lru_locks osc
2683         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2684         date; date +%s
2685         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2686                 echo "BEFORE: $LS_BEFORE" && \
2687                 echo "AFTER : $LS_AFTER" && \
2688                 echo "WANT  : $DATESTR" && \
2689                 error "$DIR/$tdir/$tfile timestamps changed" || true
2690
2691         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2692 }
2693
2694 test_36f() {
2695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2696         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2697         subr_36fh "0x80000214"
2698 }
2699 run_test 36f "utime on file racing with OST BRW write =========="
2700
2701 test_36g() {
2702         remote_ost_nodsh && skip "remote OST with nodsh" && return
2703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2704         local fmd_max_age
2705         local fmd_before
2706         local fmd_after
2707
2708         test_mkdir -p $DIR/$tdir
2709         fmd_max_age=$(do_facet ost1 \
2710                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2711                 head -n 1")
2712
2713         fmd_before=$(do_facet ost1 \
2714                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2715         touch $DIR/$tdir/$tfile
2716         sleep $((fmd_max_age + 12))
2717         fmd_after=$(do_facet ost1 \
2718                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2719
2720         echo "fmd_before: $fmd_before"
2721         echo "fmd_after: $fmd_after"
2722         [ "$fmd_after" -gt "$fmd_before" ] && \
2723                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2724                 error "fmd didn't expire after ping" || true
2725 }
2726 run_test 36g "filter mod data cache expiry ====================="
2727
2728 test_36h() {
2729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2730         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2731         subr_36fh "0x80000227"
2732 }
2733 run_test 36h "utime on file racing with OST BRW write =========="
2734
2735 # test_37 - duplicate with tests 32q 32r
2736
2737 test_38() {
2738         local file=$DIR/$tfile
2739         touch $file
2740         openfile -f O_DIRECTORY $file
2741         local RC=$?
2742         local ENOTDIR=20
2743         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2744         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2745 }
2746 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2747
2748 test_39() {
2749         touch $DIR/$tfile
2750         touch $DIR/${tfile}2
2751 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2752 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2753 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2754         sleep 2
2755         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2756         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2757                 echo "mtime"
2758                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2759                 echo "atime"
2760                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2761                 echo "ctime"
2762                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2763                 error "O_TRUNC didn't change timestamps"
2764         fi
2765 }
2766 run_test 39 "mtime changed on create ==========================="
2767
2768 test_39b() {
2769         test_mkdir -p $DIR/$tdir
2770         cp -p /etc/passwd $DIR/$tdir/fopen
2771         cp -p /etc/passwd $DIR/$tdir/flink
2772         cp -p /etc/passwd $DIR/$tdir/funlink
2773         cp -p /etc/passwd $DIR/$tdir/frename
2774         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2775
2776         sleep 1
2777         echo "aaaaaa" >> $DIR/$tdir/fopen
2778         echo "aaaaaa" >> $DIR/$tdir/flink
2779         echo "aaaaaa" >> $DIR/$tdir/funlink
2780         echo "aaaaaa" >> $DIR/$tdir/frename
2781
2782         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2783         local link_new=`stat -c %Y $DIR/$tdir/flink`
2784         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2785         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2786
2787         cat $DIR/$tdir/fopen > /dev/null
2788         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2789         rm -f $DIR/$tdir/funlink2
2790         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2791
2792         for (( i=0; i < 2; i++ )) ; do
2793                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2794                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2795                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2796                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2797
2798                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2799                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2800                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2801                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2802
2803                 cancel_lru_locks osc
2804                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2805         done
2806 }
2807 run_test 39b "mtime change on open, link, unlink, rename  ======"
2808
2809 # this should be set to past
2810 TEST_39_MTIME=`date -d "1 year ago" +%s`
2811
2812 # bug 11063
2813 test_39c() {
2814         touch $DIR1/$tfile
2815         sleep 2
2816         local mtime0=`stat -c %Y $DIR1/$tfile`
2817
2818         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2819         local mtime1=`stat -c %Y $DIR1/$tfile`
2820         [ "$mtime1" = $TEST_39_MTIME ] || \
2821                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2822
2823         local d1=`date +%s`
2824         echo hello >> $DIR1/$tfile
2825         local d2=`date +%s`
2826         local mtime2=`stat -c %Y $DIR1/$tfile`
2827         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2828                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2829
2830         mv $DIR1/$tfile $DIR1/$tfile-1
2831
2832         for (( i=0; i < 2; i++ )) ; do
2833                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2834                 [ "$mtime2" = "$mtime3" ] || \
2835                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2836
2837                 cancel_lru_locks osc
2838                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2839         done
2840 }
2841 run_test 39c "mtime change on rename ==========================="
2842
2843 # bug 21114
2844 test_39d() {
2845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2846         touch $DIR1/$tfile
2847
2848         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2849
2850         for (( i=0; i < 2; i++ )) ; do
2851                 local mtime=`stat -c %Y $DIR1/$tfile`
2852                 [ $mtime = $TEST_39_MTIME ] || \
2853                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2854
2855                 cancel_lru_locks osc
2856                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2857         done
2858 }
2859 run_test 39d "create, utime, stat =============================="
2860
2861 # bug 21114
2862 test_39e() {
2863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2864         touch $DIR1/$tfile
2865         local mtime1=`stat -c %Y $DIR1/$tfile`
2866
2867         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2868
2869         for (( i=0; i < 2; i++ )) ; do
2870                 local mtime2=`stat -c %Y $DIR1/$tfile`
2871                 [ $mtime2 = $TEST_39_MTIME ] || \
2872                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2873
2874                 cancel_lru_locks osc
2875                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2876         done
2877 }
2878 run_test 39e "create, stat, utime, stat ========================"
2879
2880 # bug 21114
2881 test_39f() {
2882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2883         touch $DIR1/$tfile
2884         mtime1=`stat -c %Y $DIR1/$tfile`
2885
2886         sleep 2
2887         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2888
2889         for (( i=0; i < 2; i++ )) ; do
2890                 local mtime2=`stat -c %Y $DIR1/$tfile`
2891                 [ $mtime2 = $TEST_39_MTIME ] || \
2892                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2893
2894                 cancel_lru_locks osc
2895                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2896         done
2897 }
2898 run_test 39f "create, stat, sleep, utime, stat ================="
2899
2900 # bug 11063
2901 test_39g() {
2902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2903         echo hello >> $DIR1/$tfile
2904         local mtime1=`stat -c %Y $DIR1/$tfile`
2905
2906         sleep 2
2907         chmod o+r $DIR1/$tfile
2908
2909         for (( i=0; i < 2; i++ )) ; do
2910                 local mtime2=`stat -c %Y $DIR1/$tfile`
2911                 [ "$mtime1" = "$mtime2" ] || \
2912                         error "lost mtime: $mtime2, should be $mtime1"
2913
2914                 cancel_lru_locks osc
2915                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2916         done
2917 }
2918 run_test 39g "write, chmod, stat ==============================="
2919
2920 # bug 11063
2921 test_39h() {
2922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2923         touch $DIR1/$tfile
2924         sleep 1
2925
2926         local d1=`date`
2927         echo hello >> $DIR1/$tfile
2928         local mtime1=`stat -c %Y $DIR1/$tfile`
2929
2930         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2931         local d2=`date`
2932         if [ "$d1" != "$d2" ]; then
2933                 echo "write and touch not within one second"
2934         else
2935                 for (( i=0; i < 2; i++ )) ; do
2936                         local mtime2=`stat -c %Y $DIR1/$tfile`
2937                         [ "$mtime2" = $TEST_39_MTIME ] || \
2938                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2939
2940                         cancel_lru_locks osc
2941                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2942                 done
2943         fi
2944 }
2945 run_test 39h "write, utime within one second, stat ============="
2946
2947 test_39i() {
2948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2949         touch $DIR1/$tfile
2950         sleep 1
2951
2952         echo hello >> $DIR1/$tfile
2953         local mtime1=`stat -c %Y $DIR1/$tfile`
2954
2955         mv $DIR1/$tfile $DIR1/$tfile-1
2956
2957         for (( i=0; i < 2; i++ )) ; do
2958                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2959
2960                 [ "$mtime1" = "$mtime2" ] || \
2961                         error "lost mtime: $mtime2, should be $mtime1"
2962
2963                 cancel_lru_locks osc
2964                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2965         done
2966 }
2967 run_test 39i "write, rename, stat =============================="
2968
2969 test_39j() {
2970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2971         start_full_debug_logging
2972         touch $DIR1/$tfile
2973         sleep 1
2974
2975         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2976         lctl set_param fail_loc=0x80000412
2977         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2978                 error "multiop failed"
2979         local multipid=$!
2980         local mtime1=`stat -c %Y $DIR1/$tfile`
2981
2982         mv $DIR1/$tfile $DIR1/$tfile-1
2983
2984         kill -USR1 $multipid
2985         wait $multipid || error "multiop close failed"
2986
2987         for (( i=0; i < 2; i++ )) ; do
2988                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2989                 [ "$mtime1" = "$mtime2" ] ||
2990                         error "mtime is lost on close: $mtime2, " \
2991                               "should be $mtime1"
2992
2993                 cancel_lru_locks osc
2994                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2995         done
2996         lctl set_param fail_loc=0
2997         stop_full_debug_logging
2998 }
2999 run_test 39j "write, rename, close, stat ======================="
3000
3001 test_39k() {
3002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3003         touch $DIR1/$tfile
3004         sleep 1
3005
3006         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3007         local multipid=$!
3008         local mtime1=`stat -c %Y $DIR1/$tfile`
3009
3010         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3011
3012         kill -USR1 $multipid
3013         wait $multipid || error "multiop close failed"
3014
3015         for (( i=0; i < 2; i++ )) ; do
3016                 local mtime2=`stat -c %Y $DIR1/$tfile`
3017
3018                 [ "$mtime2" = $TEST_39_MTIME ] || \
3019                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3020
3021                 cancel_lru_locks osc
3022                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3023         done
3024 }
3025 run_test 39k "write, utime, close, stat ========================"
3026
3027 # this should be set to future
3028 TEST_39_ATIME=`date -d "1 year" +%s`
3029
3030 test_39l() {
3031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3032         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3033         local atime_diff=$(do_facet $SINGLEMDS \
3034                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3035         rm -rf $DIR/$tdir
3036         mkdir -p $DIR/$tdir
3037
3038         # test setting directory atime to future
3039         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3040         local atime=$(stat -c %X $DIR/$tdir)
3041         [ "$atime" = $TEST_39_ATIME ] || \
3042                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3043
3044         # test setting directory atime from future to now
3045         local d1=$(date +%s)
3046         ls $DIR/$tdir
3047         local d2=$(date +%s)
3048
3049         cancel_lru_locks mdc
3050         atime=$(stat -c %X $DIR/$tdir)
3051         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3052                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3053
3054         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3055         sleep 3
3056
3057         # test setting directory atime when now > dir atime + atime_diff
3058         d1=$(date +%s)
3059         ls $DIR/$tdir
3060         d2=$(date +%s)
3061         cancel_lru_locks mdc
3062         atime=$(stat -c %X $DIR/$tdir)
3063         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3064                 error "atime is not updated  : $atime, should be $d2"
3065
3066         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3067         sleep 3
3068
3069         # test not setting directory atime when now < dir atime + atime_diff
3070         ls $DIR/$tdir
3071         cancel_lru_locks mdc
3072         atime=$(stat -c %X $DIR/$tdir)
3073         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3074                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3075
3076         do_facet $SINGLEMDS \
3077                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3078 }
3079 run_test 39l "directory atime update ==========================="
3080
3081 test_39m() {
3082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3083         touch $DIR1/$tfile
3084         sleep 2
3085         local far_past_mtime=$(date -d "May 29 1953" +%s)
3086         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3087
3088         touch -m -d @$far_past_mtime $DIR1/$tfile
3089         touch -a -d @$far_past_atime $DIR1/$tfile
3090
3091         for (( i=0; i < 2; i++ )) ; do
3092                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3093                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3094                         error "atime or mtime set incorrectly"
3095
3096                 cancel_lru_locks osc
3097                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3098         done
3099 }
3100 run_test 39m "test atime and mtime before 1970"
3101
3102 test_39n() { # LU-3832
3103         local atime_diff=$(do_facet $SINGLEMDS \
3104                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3105         local atime0
3106         local atime1
3107         local atime2
3108
3109         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3110
3111         rm -rf $DIR/$tfile
3112         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3113         atime0=$(stat -c %X $DIR/$tfile)
3114
3115         sleep 5
3116         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3117         atime1=$(stat -c %X $DIR/$tfile)
3118
3119         sleep 5
3120         cancel_lru_locks mdc
3121         cancel_lru_locks osc
3122         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3123         atime2=$(stat -c %X $DIR/$tfile)
3124
3125         do_facet $SINGLEMDS \
3126                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3127
3128         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3129         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3130 }
3131 run_test 39n "check that O_NOATIME is honored"
3132
3133 test_39o() {
3134         TESTDIR=$DIR/$tdir/$tfile
3135         [ -e $TESTDIR ] && rm -rf $TESTDIR
3136         mkdir -p $TESTDIR
3137         cd $TESTDIR
3138         links1=2
3139         ls
3140         mkdir a b
3141         ls
3142         links2=$(stat -c %h .)
3143         [ $(($links1 + 2)) != $links2 ] &&
3144                 error "wrong links count $(($links1 + 2)) != $links2"
3145         rmdir b
3146         links3=$(stat -c %h .)
3147         [ $(($links1 + 1)) != $links3 ] &&
3148                 error "wrong links count $links1 != $links3"
3149         return 0
3150 }
3151 run_test 39o "directory cached attributes updated after create ========"
3152
3153 test_40() {
3154         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3155         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3156                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3157         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3158                 error "$tfile is not 4096 bytes in size"
3159 }
3160 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3161
3162 test_41() {
3163         # bug 1553
3164         small_write $DIR/f41 18
3165 }
3166 run_test 41 "test small file write + fstat ====================="
3167
3168 count_ost_writes() {
3169         lctl get_param -n osc.*.stats |
3170             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3171 }
3172
3173 # decent default
3174 WRITEBACK_SAVE=500
3175 DIRTY_RATIO_SAVE=40
3176 MAX_DIRTY_RATIO=50
3177 BG_DIRTY_RATIO_SAVE=10
3178 MAX_BG_DIRTY_RATIO=25
3179
3180 start_writeback() {
3181         trap 0
3182         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3183         # dirty_ratio, dirty_background_ratio
3184         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3185                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3186                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3187                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3188         else
3189                 # if file not here, we are a 2.4 kernel
3190                 kill -CONT `pidof kupdated`
3191         fi
3192 }
3193
3194 stop_writeback() {
3195         # setup the trap first, so someone cannot exit the test at the
3196         # exact wrong time and mess up a machine
3197         trap start_writeback EXIT
3198         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3199         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3200                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3201                 sysctl -w vm.dirty_writeback_centisecs=0
3202                 sysctl -w vm.dirty_writeback_centisecs=0
3203                 # save and increase /proc/sys/vm/dirty_ratio
3204                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3205                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3206                 # save and increase /proc/sys/vm/dirty_background_ratio
3207                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3208                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3209         else
3210                 # if file not here, we are a 2.4 kernel
3211                 kill -STOP `pidof kupdated`
3212         fi
3213 }
3214
3215 # ensure that all stripes have some grant before we test client-side cache
3216 setup_test42() {
3217         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3218                 dd if=/dev/zero of=$i bs=4k count=1
3219                 rm $i
3220         done
3221 }
3222
3223 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3224 # file truncation, and file removal.
3225 test_42a() {
3226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3227         setup_test42
3228         cancel_lru_locks osc
3229         stop_writeback
3230         sync; sleep 1; sync # just to be safe
3231         BEFOREWRITES=`count_ost_writes`
3232         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3233         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3234         AFTERWRITES=`count_ost_writes`
3235         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3236                 error "$BEFOREWRITES < $AFTERWRITES"
3237         start_writeback
3238 }
3239 run_test 42a "ensure that we don't flush on close =============="
3240
3241 test_42b() {
3242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3243         setup_test42
3244         cancel_lru_locks osc
3245         stop_writeback
3246         sync
3247         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3248         BEFOREWRITES=`count_ost_writes`
3249         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3250         AFTERWRITES=`count_ost_writes`
3251         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3252                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3253         fi
3254         BEFOREWRITES=`count_ost_writes`
3255         sync || error "sync: $?"
3256         AFTERWRITES=`count_ost_writes`
3257         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3258                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3259         fi
3260         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3261         start_writeback
3262         return 0
3263 }
3264 run_test 42b "test destroy of file with cached dirty data ======"
3265
3266 # if these tests just want to test the effect of truncation,
3267 # they have to be very careful.  consider:
3268 # - the first open gets a {0,EOF}PR lock
3269 # - the first write conflicts and gets a {0, count-1}PW
3270 # - the rest of the writes are under {count,EOF}PW
3271 # - the open for truncate tries to match a {0,EOF}PR
3272 #   for the filesize and cancels the PWs.
3273 # any number of fixes (don't get {0,EOF} on open, match
3274 # composite locks, do smarter file size management) fix
3275 # this, but for now we want these tests to verify that
3276 # the cancellation with truncate intent works, so we
3277 # start the file with a full-file pw lock to match against
3278 # until the truncate.
3279 trunc_test() {
3280         test=$1
3281         file=$DIR/$test
3282         offset=$2
3283         cancel_lru_locks osc
3284         stop_writeback
3285         # prime the file with 0,EOF PW to match
3286         touch $file
3287         $TRUNCATE $file 0
3288         sync; sync
3289         # now the real test..
3290         dd if=/dev/zero of=$file bs=1024 count=100
3291         BEFOREWRITES=`count_ost_writes`
3292         $TRUNCATE $file $offset
3293         cancel_lru_locks osc
3294         AFTERWRITES=`count_ost_writes`
3295         start_writeback
3296 }
3297
3298 test_42c() {
3299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3300         trunc_test 42c 1024
3301         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3302             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3303         rm $file
3304 }
3305 run_test 42c "test partial truncate of file with cached dirty data"
3306
3307 test_42d() {
3308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3309         trunc_test 42d 0
3310         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3311             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3312         rm $file
3313 }
3314 run_test 42d "test complete truncate of file with cached dirty data"
3315
3316 test_42e() { # bug22074
3317         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3318         local TDIR=$DIR/${tdir}e
3319         local pagesz=$(page_size)
3320         local pages=16 # hardcoded 16 pages, don't change it.
3321         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3322         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3323         local max_dirty_mb
3324         local warmup_files
3325
3326         test_mkdir -p $DIR/${tdir}e
3327         $SETSTRIPE -c 1 $TDIR
3328         createmany -o $TDIR/f $files
3329
3330         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3331
3332         # we assume that with $OSTCOUNT files, at least one of them will
3333         # be allocated on OST0.
3334         warmup_files=$((OSTCOUNT * max_dirty_mb))
3335         createmany -o $TDIR/w $warmup_files
3336
3337         # write a large amount of data into one file and sync, to get good
3338         # avail_grant number from OST.
3339         for ((i=0; i<$warmup_files; i++)); do
3340                 idx=$($GETSTRIPE -i $TDIR/w$i)
3341                 [ $idx -ne 0 ] && continue
3342                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3343                 break
3344         done
3345         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3346         sync
3347         $LCTL get_param $proc_osc0/cur_dirty_bytes
3348         $LCTL get_param $proc_osc0/cur_grant_bytes
3349
3350         # create as much dirty pages as we can while not to trigger the actual
3351         # RPCs directly. but depends on the env, VFS may trigger flush during this
3352         # period, hopefully we are good.
3353         for ((i=0; i<$warmup_files; i++)); do
3354                 idx=$($GETSTRIPE -i $TDIR/w$i)
3355                 [ $idx -ne 0 ] && continue
3356                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3357         done
3358         $LCTL get_param $proc_osc0/cur_dirty_bytes
3359         $LCTL get_param $proc_osc0/cur_grant_bytes
3360
3361         # perform the real test
3362         $LCTL set_param $proc_osc0/rpc_stats 0
3363         for ((;i<$files; i++)); do
3364                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3365                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3366         done
3367         sync
3368         $LCTL get_param $proc_osc0/rpc_stats
3369
3370         local percent=0
3371         local have_ppr=false
3372         $LCTL get_param $proc_osc0/rpc_stats |
3373                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3374                         # skip lines until we are at the RPC histogram data
3375                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3376                         $have_ppr || continue
3377
3378                         # we only want the percent stat for < 16 pages
3379                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3380
3381                         percent=$((percent + WPCT))
3382                         if [ $percent -gt 15 ]; then
3383                                 error "less than 16-pages write RPCs" \
3384                                       "$percent% > 15%"
3385                                 break
3386                         fi
3387                 done
3388         rm -rf $TDIR
3389 }
3390 run_test 42e "verify sub-RPC writes are not done synchronously"
3391
3392 test_43() {
3393         test_mkdir -p $DIR/$tdir
3394         cp -p /bin/ls $DIR/$tdir/$tfile
3395         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3396         pid=$!
3397         # give multiop a chance to open
3398         sleep 1
3399
3400         $DIR/$tdir/$tfile && error || true
3401         kill -USR1 $pid
3402 }
3403 run_test 43 "execution of file opened for write should return -ETXTBSY"
3404
3405 test_43a() {
3406         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3407         test_mkdir -p $DIR/$tdir
3408         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3409                         cp -p multiop $DIR/$tdir/multiop
3410         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3411                         return 1
3412         MULTIOP_PID=$!
3413         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3414         kill -USR1 $MULTIOP_PID || return 2
3415         wait $MULTIOP_PID || return 3
3416         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3417 }
3418 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3419
3420 test_43b() {
3421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3422         test_mkdir -p $DIR/$tdir
3423         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3424                         cp -p multiop $DIR/$tdir/multiop
3425         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3426                         return 1
3427         MULTIOP_PID=$!
3428         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3429         kill -USR1 $MULTIOP_PID || return 2
3430         wait $MULTIOP_PID || return 3
3431         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3432 }
3433 run_test 43b "truncate of file being executed should return -ETXTBSY"
3434
3435 test_43c() {
3436         local testdir="$DIR/$tdir"
3437         test_mkdir -p $DIR/$tdir
3438         cp $SHELL $testdir/
3439         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3440                 ( cd $testdir && md5sum -c)
3441 }
3442 run_test 43c "md5sum of copy into lustre========================"
3443
3444 test_44() {
3445         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3446         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3447         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3448 }
3449 run_test 44 "zero length read from a sparse stripe ============="
3450
3451 test_44a() {
3452     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3453                          awk '{print $2}'`
3454     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3455     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3456     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3457                       awk '{print $2}'`
3458     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3459         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3460     fi
3461
3462     OFFSETS="0 $((stride/2)) $((stride-1))"
3463     for offset in $OFFSETS ; do
3464       for i in `seq 0 $((nstripe-1))`; do
3465         local GLOBALOFFSETS=""
3466         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3467         local myfn=$DIR/d44a-$size
3468         echo "--------writing $myfn at $size"
3469         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3470         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3471         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3472                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3473
3474         for j in `seq 0 $((nstripe-1))`; do
3475             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3476             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3477             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3478         done
3479         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3480                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3481         rm -f $myfn
3482       done
3483     done
3484 }
3485 run_test 44a "test sparse pwrite ==============================="
3486
3487 dirty_osc_total() {
3488         tot=0
3489         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3490                 tot=$(($tot + $d))
3491         done
3492         echo $tot
3493 }
3494 do_dirty_record() {
3495         before=`dirty_osc_total`
3496         echo executing "\"$*\""
3497         eval $*
3498         after=`dirty_osc_total`
3499         echo before $before, after $after
3500 }
3501 test_45() {
3502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3503         f="$DIR/f45"
3504         # Obtain grants from OST if it supports it
3505         echo blah > ${f}_grant
3506         stop_writeback
3507         sync
3508         do_dirty_record "echo blah > $f"
3509         [ $before -eq $after ] && error "write wasn't cached"
3510         do_dirty_record "> $f"
3511         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3512         do_dirty_record "echo blah > $f"
3513         [ $before -eq $after ] && error "write wasn't cached"
3514         do_dirty_record "sync"
3515         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3516         do_dirty_record "echo blah > $f"
3517         [ $before -eq $after ] && error "write wasn't cached"
3518         do_dirty_record "cancel_lru_locks osc"
3519         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3520         start_writeback
3521 }
3522 run_test 45 "osc io page accounting ============================"
3523
3524 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3525 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3526 # objects offset and an assert hit when an rpc was built with 1023's mapped
3527 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3528 test_46() {
3529         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3530         f="$DIR/f46"
3531         stop_writeback
3532         sync
3533         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3534         sync
3535         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3536         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3537         sync
3538         start_writeback
3539 }
3540 run_test 46 "dirtying a previously written page ================"
3541
3542 # test_47 is removed "Device nodes check" is moved to test_28
3543
3544 test_48a() { # bug 2399
3545         check_kernel_version 34 || return 0
3546         test_mkdir -p $DIR/$tdir
3547         cd $DIR/$tdir
3548         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3549         test_mkdir $DIR/$tdir || error "recreate directory failed"
3550         touch foo || error "'touch foo' failed after recreating cwd"
3551         test_mkdir $DIR/$tdir/bar ||
3552                      error "'mkdir foo' failed after recreating cwd"
3553         if check_kernel_version 44; then
3554                 touch .foo || error "'touch .foo' failed after recreating cwd"
3555                 test_mkdir $DIR/$tdir/.bar ||
3556                               error "'mkdir .foo' failed after recreating cwd"
3557         fi
3558         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3559         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3560         cd . || error "'cd .' failed after recreating cwd"
3561         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3562         rmdir . && error "'rmdir .' worked after recreating cwd"
3563         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3564         cd .. || error "'cd ..' failed after recreating cwd"
3565 }
3566 run_test 48a "Access renamed working dir (should return errors)="
3567
3568 test_48b() { # bug 2399
3569         check_kernel_version 34 || return 0
3570         rm -rf $DIR/$tdir
3571         test_mkdir -p $DIR/$tdir
3572         cd $DIR/$tdir
3573         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3574         touch foo && error "'touch foo' worked after removing cwd"
3575         test_mkdir $DIR/$tdir/foo &&
3576                      error "'mkdir foo' worked after removing cwd"
3577         if check_kernel_version 44; then
3578                 touch .foo && error "'touch .foo' worked after removing cwd"
3579                 test_mkdir $DIR/$tdir/.foo &&
3580                               error "'mkdir .foo' worked after removing cwd"
3581         fi
3582         ls . > /dev/null && error "'ls .' worked after removing cwd"
3583         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3584         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3585         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3586         rmdir . && error "'rmdir .' worked after removing cwd"
3587         ln -s . foo && error "'ln -s .' worked after removing cwd"
3588         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3589 }
3590 run_test 48b "Access removed working dir (should return errors)="
3591
3592 test_48c() { # bug 2350
3593         check_kernel_version 36 || return 0
3594         #lctl set_param debug=-1
3595         #set -vx
3596         rm -rf $DIR/$tdir
3597         test_mkdir -p $DIR/$tdir/dir
3598         cd $DIR/$tdir/dir
3599         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3600         $TRACE touch foo && error "touch foo worked after removing cwd"
3601         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3602         if check_kernel_version 44; then
3603                 touch .foo && error "touch .foo worked after removing cwd"
3604                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3605         fi
3606         $TRACE ls . && error "'ls .' worked after removing cwd"
3607         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3608         is_patchless || ( $TRACE cd . &&
3609                         error "'cd .' worked after removing cwd" )
3610         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3611         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3612         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3613         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3614 }
3615 run_test 48c "Access removed working subdir (should return errors)"
3616
3617 test_48d() { # bug 2350
3618         check_kernel_version 36 || return 0
3619         #lctl set_param debug=-1
3620         #set -vx
3621         rm -rf $DIR/$tdir
3622         test_mkdir -p $DIR/$tdir/dir
3623         cd $DIR/$tdir/dir
3624         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3625         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3626         $TRACE touch foo && error "'touch foo' worked after removing parent"
3627         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3628         if check_kernel_version 44; then
3629                 touch .foo && error "'touch .foo' worked after removing parent"
3630                 test_mkdir .foo &&
3631                               error "mkdir .foo worked after removing parent"
3632         fi
3633         $TRACE ls . && error "'ls .' worked after removing parent"
3634         $TRACE ls .. && error "'ls ..' worked after removing parent"
3635         is_patchless || ( $TRACE cd . &&
3636                         error "'cd .' worked after recreate parent" )
3637         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3638         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3639         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3640         is_patchless || ( $TRACE cd .. &&
3641                         error "'cd ..' worked after removing parent" || true )
3642 }
3643 run_test 48d "Access removed parent subdir (should return errors)"
3644
3645 test_48e() { # bug 4134
3646         check_kernel_version 41 || return 0
3647         #lctl set_param debug=-1
3648         #set -vx
3649         rm -rf $DIR/$tdir
3650         test_mkdir -p $DIR/$tdir/dir
3651         cd $DIR/$tdir/dir
3652         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3653         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3654         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3655         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3656         # On a buggy kernel addition of "touch foo" after cd .. will
3657         # produce kernel oops in lookup_hash_it
3658         touch ../foo && error "'cd ..' worked after recreate parent"
3659         cd $DIR
3660         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3661 }
3662 run_test 48e "Access to recreated parent subdir (should return errors)"
3663
3664 test_49() { # LU-1030
3665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3666         # get ost1 size - lustre-OST0000
3667         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3668         # write 800M at maximum
3669         [ $ost1_size -gt 819200 ] && ost1_size=819200
3670
3671         lfs setstripe -c 1 -i 0 $DIR/$tfile
3672         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3673         local dd_pid=$!
3674
3675         # change max_pages_per_rpc while writing the file
3676         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3677         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3678         # loop until dd process exits
3679         while ps ax -opid | grep -wq $dd_pid; do
3680                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3681                 sleep $((RANDOM % 5 + 1))
3682         done
3683         # restore original max_pages_per_rpc
3684         $LCTL set_param $osc1_mppc=$orig_mppc
3685         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3686 }
3687 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3688
3689 test_50() {
3690         # bug 1485
3691         test_mkdir $DIR/$tdir
3692         cd $DIR/$tdir
3693         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3694 }
3695 run_test 50 "special situations: /proc symlinks  ==============="
3696
3697 test_51a() {    # was test_51
3698         # bug 1516 - create an empty entry right after ".." then split dir
3699         test_mkdir -p $DIR/$tdir
3700         touch $DIR/$tdir/foo
3701         $MCREATE $DIR/$tdir/bar
3702         rm $DIR/$tdir/foo
3703         createmany -m $DIR/$tdir/longfile 201
3704         FNUM=202
3705         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3706                 $MCREATE $DIR/$tdir/longfile$FNUM
3707                 FNUM=$(($FNUM + 1))
3708                 echo -n "+"
3709         done
3710         echo
3711         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3712 }
3713 run_test 51a "special situations: split htree with empty entry =="
3714
3715 export NUMTEST=70000
3716 test_51b() {
3717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3718         local BASE=$DIR/$tdir
3719
3720         # cleanup the directory
3721         rm -fr $BASE
3722
3723         test_mkdir -p $BASE
3724
3725         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3726         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3727         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3728                 return
3729
3730         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3731                 echo "reduced count to $NUMTEST due to inodes"
3732
3733         # need to check free space for the directories as well
3734         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3735         numfree=$((blkfree / 4))
3736         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3737                 echo "reduced count to $NUMTEST due to blocks"
3738
3739         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3740                 echo "failed" > $BASE/fnum
3741 }
3742 run_test 51b "exceed 64k subdirectory nlink limit"
3743
3744 test_51ba() { # LU-993
3745         local BASE=$DIR/$tdir
3746         # unlink all but 100 subdirectories, then check it still works
3747         local LEFT=100
3748         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3749
3750         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3751         local DELETE=$((NUMTEST - LEFT))
3752
3753         # continue on to run this test even if 51b didn't finish,
3754         # just to delete the many subdirectories created.
3755         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3756
3757         # for ldiskfs the nlink count should be 1, but this is OSD specific
3758         # and so this is listed for informational purposes only
3759         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3760         unlinkmany -d $BASE/d $DELETE
3761         RC=$?
3762
3763         if [ $RC -ne 0 ]; then
3764                 if [ "$NUMPREV" == "failed" ]; then
3765                         skip "previous setup failed"
3766                         return 0
3767                 else
3768                         error "unlink of first $DELETE subdirs failed"
3769                         return $RC
3770                 fi
3771         fi
3772
3773         echo "nlink between: $(stat -c %h $BASE)"
3774         # trim the first line of ls output
3775         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3776         [ $FOUND -ne $LEFT ] &&
3777                 error "can't find subdirs: found only $FOUND/$LEFT"
3778
3779         unlinkmany -d $BASE/d $DELETE $LEFT ||
3780                 error "unlink of second $LEFT subdirs failed"
3781         # regardless of whether the backing filesystem tracks nlink accurately
3782         # or not, the nlink count shouldn't be more than "." and ".." here
3783         local AFTER=$(stat -c %h $BASE)
3784         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3785                 echo "nlink after: $AFTER"
3786 }
3787 run_test 51ba "verify nlink for many subdirectory cleanup"
3788
3789 test_51d() {
3790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3791         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3792         test_mkdir -p $DIR/$tdir
3793         createmany -o $DIR/$tdir/t- 1000
3794         $GETSTRIPE $DIR/$tdir > $TMP/files
3795         for N in `seq 0 $((OSTCOUNT - 1))`; do
3796             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3797             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3798             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3799         done
3800         unlinkmany $DIR/$tdir/t- 1000
3801
3802         NLAST=0
3803         for N in `seq 1 $((OSTCOUNT - 1))`; do
3804             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3805                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3806             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3807                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3808
3809             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3810                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3811             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3812                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3813             NLAST=$N
3814         done
3815 }
3816 run_test 51d "check object distribution ===================="
3817
3818 test_52a() {
3819         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3820         test_mkdir -p $DIR/$tdir
3821         touch $DIR/$tdir/foo
3822         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3823         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3824         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3825         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3826         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3827                                         error "link worked"
3828         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3829         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3830         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3831                                                      error "lsattr"
3832         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3833         cp -r $DIR/$tdir /tmp/
3834         rm -fr $DIR/$tdir || error "cleanup rm failed"
3835 }
3836 run_test 52a "append-only flag test (should return errors) ====="
3837
3838 test_52b() {
3839         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3840         test_mkdir -p $DIR/$tdir
3841         touch $DIR/$tdir/foo
3842         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3843         cat test > $DIR/$tdir/foo && error "cat test worked"
3844         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3845         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3846         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3847                                         error "link worked"
3848         echo foo >> $DIR/$tdir/foo && error "echo worked"
3849         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3850         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3851         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3852         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3853                                                         error "lsattr"
3854         chattr -i $DIR/$tdir/foo || error "chattr failed"
3855
3856         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3857 }
3858 run_test 52b "immutable flag test (should return errors) ======="
3859
3860 test_53() {
3861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3862         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3863         remote_ost_nodsh && skip "remote OST with nodsh" && return
3864
3865         local param
3866         local param_seq
3867         local ostname
3868         local mds_last
3869         local mds_last_seq
3870         local ost_last
3871         local ost_last_seq
3872         local ost_last_id
3873         local ostnum
3874         local node
3875         local found=0
3876
3877         # only test MDT0000
3878         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3879         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3880                 param=$(echo ${value[0]} | cut -d "=" -f1)
3881                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3882                 param_seq=$(echo ${param} |
3883                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3884                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3885                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3886
3887                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3888                 node=$(facet_active_host ost$((ostnum+1)))
3889                 param="obdfilter.$ostname.last_id"
3890                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3891                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3892                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3893                                       sed -e "s/^0x//g")
3894                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3895                         if [ $ost_last_seq = $mds_last_seq ]; then
3896                                 if [ $ost_last_id != $mds_last ]; then
3897                                         error "$ost_last != $mds_last_id"
3898                                 else
3899                                         found=1
3900                                         break
3901                                 fi
3902                         fi
3903                 done
3904         done
3905         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3906         return 0
3907 }
3908 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3909
3910 test_54a() {
3911         $SOCKETSERVER $DIR/socket ||
3912                 error "$SOCKETSERVER $DIR/socket failed: $?"
3913         $SOCKETCLIENT $DIR/socket ||
3914                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3915         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3916 }
3917 run_test 54a "unix domain socket test =========================="
3918
3919 test_54b() {
3920         f="$DIR/f54b"
3921         mknod $f c 1 3
3922         chmod 0666 $f
3923         dd if=/dev/zero of=$f bs=$(page_size) count=1
3924 }
3925 run_test 54b "char device works in lustre ======================"
3926
3927 find_loop_dev() {
3928         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3929         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3930         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3931
3932         for i in $(seq 3 7); do
3933                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3934                 LOOPDEV=$LOOPBASE$i
3935                 LOOPNUM=$i
3936                 break
3937         done
3938 }
3939
3940 test_54c() {
3941         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3942         tfile="$DIR/f54c"
3943         tdir="$DIR/d54c"
3944         loopdev="$DIR/loop54c"
3945
3946         find_loop_dev
3947         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3948         mknod $loopdev b 7 $LOOPNUM
3949         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3950         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3951         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3952         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3953         test_mkdir -p $tdir
3954         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3955         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3956         df $tdir
3957         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3958         $UMOUNT $tdir
3959         losetup -d $loopdev
3960         rm $loopdev
3961 }
3962 run_test 54c "block device works in lustre ====================="
3963
3964 test_54d() {
3965         f="$DIR/f54d"
3966         string="aaaaaa"
3967         mknod $f p
3968         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3969 }
3970 run_test 54d "fifo device works in lustre ======================"
3971
3972 test_54e() {
3973         check_kernel_version 46 || return 0
3974         f="$DIR/f54e"
3975         string="aaaaaa"
3976         cp -aL /dev/console $f
3977         echo $string > $f || error "echo $string to $f failed"
3978 }
3979 run_test 54e "console/tty device works in lustre ======================"
3980
3981 #The test_55 used to be iopen test and it was removed by bz#24037.
3982 #run_test 55 "check iopen_connect_dentry() ======================"
3983
3984 test_56a() {    # was test_56
3985         rm -rf $DIR/$tdir
3986         $SETSTRIPE -d $DIR
3987         test_mkdir -p $DIR/$tdir/dir
3988         NUMFILES=3
3989         NUMFILESx2=$(($NUMFILES * 2))
3990         for i in `seq 1 $NUMFILES` ; do
3991                 touch $DIR/$tdir/file$i
3992                 touch $DIR/$tdir/dir/file$i
3993         done
3994
3995         # test lfs getstripe with --recursive
3996         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3997         [ $FILENUM -eq $NUMFILESx2 ] ||
3998                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3999         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
4000         [ $FILENUM -eq $NUMFILES ] ||
4001                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4002         echo "$GETSTRIPE --recursive passed."
4003
4004         # test lfs getstripe with file instead of dir
4005         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
4006         [ $FILENUM  -eq 1 ] || error \
4007                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4008         echo "$GETSTRIPE file1 passed."
4009
4010         #test lfs getstripe with --verbose
4011         [ `$GETSTRIPE --verbose $DIR/$tdir |
4012                         grep -c lmm_magic` -eq $NUMFILES ] ||
4013                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4014         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
4015             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4016         echo "$GETSTRIPE --verbose passed."
4017
4018         #test lfs getstripe with --obd
4019         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4020                                         grep -q "unknown obduuid" ||
4021                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4022
4023         [  "$OSTCOUNT" -lt 2 ] &&
4024                 skip_env "skipping other $GETSTRIPE --obd test" && return
4025
4026         OSTIDX=1
4027         OBDUUID=$(ostuuid_from_index $OSTIDX)
4028         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4029         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4030         [ $FOUND -eq $FILENUM ] ||
4031                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4032         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4033                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4034                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4035                 error "$GETSTRIPE --obd: should not show file on other obd"
4036         echo "$GETSTRIPE --obd passed"
4037 }
4038 run_test 56a "check $GETSTRIPE"
4039
4040 NUMFILES=3
4041 NUMDIRS=3
4042 setup_56() {
4043         local LOCAL_NUMFILES="$1"
4044         local LOCAL_NUMDIRS="$2"
4045         local MKDIR_PARAMS="$3"
4046
4047         if [ ! -d "$TDIR" ] ; then
4048                 test_mkdir -p $TDIR
4049                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4050                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4051                         touch $TDIR/file$i
4052                 done
4053                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4054                         test_mkdir $TDIR/dir$i
4055                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4056                                 touch $TDIR/dir$i/file$j
4057                         done
4058                 done
4059         fi
4060 }
4061
4062 setup_56_special() {
4063         LOCAL_NUMFILES=$1
4064         LOCAL_NUMDIRS=$2
4065         setup_56 $1 $2
4066         if [ ! -e "$TDIR/loop1b" ] ; then
4067                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4068                         mknod $TDIR/loop${i}b b 7 $i
4069                         mknod $TDIR/null${i}c c 1 3
4070                         ln -s $TDIR/file1 $TDIR/link${i}l
4071                 done
4072                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4073                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4074                         mknod $TDIR/dir$i/null${i}c c 1 3
4075                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4076                 done
4077         fi
4078 }
4079
4080 test_56g() {
4081         $SETSTRIPE -d $DIR
4082
4083         TDIR=$DIR/${tdir}g
4084         setup_56 $NUMFILES $NUMDIRS
4085
4086         EXPECTED=$(($NUMDIRS + 2))
4087         # test lfs find with -name
4088         for i in $(seq 1 $NUMFILES) ; do
4089                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4090                 [ $NUMS -eq $EXPECTED ] ||
4091                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4092                               "found $NUMS, expected $EXPECTED"
4093         done
4094 }
4095 run_test 56g "check lfs find -name ============================="
4096
4097 test_56h() {
4098         $SETSTRIPE -d $DIR
4099
4100         TDIR=$DIR/${tdir}g
4101         setup_56 $NUMFILES $NUMDIRS
4102
4103         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4104         # test lfs find with ! -name
4105         for i in $(seq 1 $NUMFILES) ; do
4106                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4107                 [ $NUMS -eq $EXPECTED ] ||
4108                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4109                               "found $NUMS, expected $EXPECTED"
4110         done
4111 }
4112 run_test 56h "check lfs find ! -name ============================="
4113
4114 test_56i() {
4115        tdir=${tdir}i
4116        test_mkdir -p $DIR/$tdir
4117        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4118        CMD="$LFIND -ost $UUID $DIR/$tdir"
4119        OUT=$($CMD)
4120        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4121 }
4122 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4123
4124 test_56j() {
4125         TDIR=$DIR/${tdir}g
4126         setup_56_special $NUMFILES $NUMDIRS
4127
4128         EXPECTED=$((NUMDIRS + 1))
4129         CMD="$LFIND -type d $TDIR"
4130         NUMS=$($CMD | wc -l)
4131         [ $NUMS -eq $EXPECTED ] ||
4132                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4133 }
4134 run_test 56j "check lfs find -type d ============================="
4135
4136 test_56k() {
4137         TDIR=$DIR/${tdir}g
4138         setup_56_special $NUMFILES $NUMDIRS
4139
4140         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4141         CMD="$LFIND -type f $TDIR"
4142         NUMS=$($CMD | wc -l)
4143         [ $NUMS -eq $EXPECTED ] ||
4144                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4145 }
4146 run_test 56k "check lfs find -type f ============================="
4147
4148 test_56l() {
4149         TDIR=$DIR/${tdir}g
4150         setup_56_special $NUMFILES $NUMDIRS
4151
4152         EXPECTED=$((NUMDIRS + NUMFILES))
4153         CMD="$LFIND -type b $TDIR"
4154         NUMS=$($CMD | wc -l)
4155         [ $NUMS -eq $EXPECTED ] ||
4156                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4157 }
4158 run_test 56l "check lfs find -type b ============================="
4159
4160 test_56m() {
4161         TDIR=$DIR/${tdir}g
4162         setup_56_special $NUMFILES $NUMDIRS
4163
4164         EXPECTED=$((NUMDIRS + NUMFILES))
4165         CMD="$LFIND -type c $TDIR"
4166         NUMS=$($CMD | wc -l)
4167         [ $NUMS -eq $EXPECTED ] ||
4168                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4169 }
4170 run_test 56m "check lfs find -type c ============================="
4171
4172 test_56n() {
4173         TDIR=$DIR/${tdir}g
4174         setup_56_special $NUMFILES $NUMDIRS
4175
4176         EXPECTED=$((NUMDIRS + NUMFILES))
4177         CMD="$LFIND -type l $TDIR"
4178         NUMS=$($CMD | wc -l)
4179         [ $NUMS -eq $EXPECTED ] ||
4180                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4181 }
4182 run_test 56n "check lfs find -type l ============================="
4183
4184 test_56o() {
4185         TDIR=$DIR/${tdir}o
4186         setup_56 $NUMFILES $NUMDIRS
4187
4188         utime $TDIR/file1 > /dev/null || error "utime (1)"
4189         utime $TDIR/file2 > /dev/null || error "utime (2)"
4190         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4191         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4192         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4193         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4194
4195         EXPECTED=4
4196         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4197         [ $NUMS -eq $EXPECTED ] || \
4198                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4199
4200         EXPECTED=12
4201         CMD="$LFIND -mtime 0 $TDIR"
4202         NUMS=$($CMD | wc -l)
4203         [ $NUMS -eq $EXPECTED ] ||
4204                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4205 }
4206 run_test 56o "check lfs find -mtime for old files =========================="
4207
4208 test_56p() {
4209         [ $RUNAS_ID -eq $UID ] &&
4210                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4211
4212         TDIR=$DIR/${tdir}p
4213         setup_56 $NUMFILES $NUMDIRS
4214
4215         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4216         EXPECTED=$NUMFILES
4217         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4218         NUMS=$($CMD | wc -l)
4219         [ $NUMS -eq $EXPECTED ] || \
4220                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4221
4222         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4223         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4224         NUMS=$($CMD | wc -l)
4225         [ $NUMS -eq $EXPECTED ] || \
4226                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4227 }
4228 run_test 56p "check lfs find -uid and ! -uid ==============================="
4229
4230 test_56q() {
4231         [ $RUNAS_ID -eq $UID ] &&
4232                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4233
4234         TDIR=$DIR/${tdir}q
4235         setup_56 $NUMFILES $NUMDIRS
4236
4237         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4238
4239         EXPECTED=$NUMFILES
4240         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4241         NUMS=$($CMD | wc -l)
4242         [ $NUMS -eq $EXPECTED ] ||
4243                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4244
4245         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4246         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4247         NUMS=$($CMD | wc -l)
4248         [ $NUMS -eq $EXPECTED ] ||
4249                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4250 }
4251 run_test 56q "check lfs find -gid and ! -gid ==============================="
4252
4253 test_56r() {
4254         TDIR=$DIR/${tdir}r
4255         setup_56 $NUMFILES $NUMDIRS
4256
4257         EXPECTED=12
4258         CMD="$LFIND -size 0 -type f $TDIR"
4259         NUMS=$($CMD | wc -l)
4260         [ $NUMS -eq $EXPECTED ] ||
4261                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4262         EXPECTED=0
4263         CMD="$LFIND ! -size 0 -type f $TDIR"
4264         NUMS=$($CMD | wc -l)
4265         [ $NUMS -eq $EXPECTED ] ||
4266                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4267         echo "test" > $TDIR/$tfile
4268         echo "test2" > $TDIR/$tfile.2 && sync
4269         EXPECTED=1
4270         CMD="$LFIND -size 5 -type f $TDIR"
4271         NUMS=$($CMD | wc -l)
4272         [ $NUMS -eq $EXPECTED ] ||
4273                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4274         EXPECTED=1
4275         CMD="$LFIND -size +5 -type f $TDIR"
4276         NUMS=$($CMD | wc -l)
4277         [ $NUMS -eq $EXPECTED ] ||
4278                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4279         EXPECTED=2
4280         CMD="$LFIND -size +0 -type f $TDIR"
4281         NUMS=$($CMD | wc -l)
4282         [ $NUMS -eq $EXPECTED ] ||
4283                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4284         EXPECTED=2
4285         CMD="$LFIND ! -size -5 -type f $TDIR"
4286         NUMS=$($CMD | wc -l)
4287         [ $NUMS -eq $EXPECTED ] ||
4288                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4289         EXPECTED=12
4290         CMD="$LFIND -size -5 -type f $TDIR"
4291         NUMS=$($CMD | wc -l)
4292         [ $NUMS -eq $EXPECTED ] ||
4293                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4294 }
4295 run_test 56r "check lfs find -size works =========================="
4296
4297 test_56s() { # LU-611
4298         TDIR=$DIR/${tdir}s
4299         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4300
4301         if [ $OSTCOUNT -gt 1 ]; then
4302                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4303                 ONESTRIPE=4
4304                 EXTRA=4
4305         else
4306                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4307                 EXTRA=0
4308         fi
4309
4310         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4311         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4312         NUMS=$($CMD | wc -l)
4313         [ $NUMS -eq $EXPECTED ] ||
4314                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4315
4316         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4317         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4318         NUMS=$($CMD | wc -l)
4319         [ $NUMS -eq $EXPECTED ] ||
4320                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4321
4322         EXPECTED=$ONESTRIPE
4323         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4324         NUMS=$($CMD | wc -l)
4325         [ $NUMS -eq $EXPECTED ] ||
4326                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4327
4328         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4329         NUMS=$($CMD | wc -l)
4330         [ $NUMS -eq $EXPECTED ] ||
4331                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4332
4333         EXPECTED=0
4334         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4335         NUMS=$($CMD | wc -l)
4336         [ $NUMS -eq $EXPECTED ] ||
4337                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4338 }
4339 run_test 56s "check lfs find -stripe-count works"
4340
4341 test_56t() { # LU-611
4342         TDIR=$DIR/${tdir}t
4343         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4344
4345         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4346
4347         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4348         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4349         NUMS=$($CMD | wc -l)
4350         [ $NUMS -eq $EXPECTED ] ||
4351                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4352
4353         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4354         NUMS=$($CMD | wc -l)
4355         [ $NUMS -eq $EXPECTED ] ||
4356                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4357
4358         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4359         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4360         NUMS=$($CMD | wc -l)
4361         [ $NUMS -eq $EXPECTED ] ||
4362                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4363
4364         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4365         NUMS=$($CMD | wc -l)
4366         [ $NUMS -eq $EXPECTED ] ||
4367                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4368
4369         EXPECTED=4
4370         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4371         NUMS=$($CMD | wc -l)
4372         [ $NUMS -eq $EXPECTED ] ||
4373                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4374
4375         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4376         NUMS=$($CMD | wc -l)
4377         [ $NUMS -eq $EXPECTED ] ||
4378                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4379
4380         EXPECTED=0
4381         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4382         NUMS=$($CMD | wc -l)
4383         [ $NUMS -eq $EXPECTED ] ||
4384                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4385 }
4386 run_test 56t "check lfs find -stripe-size works"
4387
4388 test_56u() { # LU-611
4389         TDIR=$DIR/${tdir}u
4390         setup_56 $NUMFILES $NUMDIRS "-i 0"
4391
4392         if [ $OSTCOUNT -gt 1 ]; then
4393                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4394                 ONESTRIPE=4
4395         else
4396                 ONESTRIPE=0
4397         fi
4398
4399         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4400         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4401         NUMS=$($CMD | wc -l)
4402         [ $NUMS -eq $EXPECTED ] ||
4403                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4404
4405         EXPECTED=$ONESTRIPE
4406         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4407         NUMS=$($CMD | wc -l)
4408         [ $NUMS -eq $EXPECTED ] ||
4409                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4410
4411         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4412         NUMS=$($CMD | wc -l)
4413         [ $NUMS -eq $EXPECTED ] ||
4414                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4415
4416         EXPECTED=0
4417         # This should produce an error and not return any files
4418         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4419         NUMS=$($CMD 2>/dev/null | wc -l)
4420         [ $NUMS -eq $EXPECTED ] ||
4421                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4422
4423         if [ $OSTCOUNT -gt 1 ]; then
4424                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4425                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4426                 NUMS=$($CMD | wc -l)
4427                 [ $NUMS -eq $EXPECTED ] ||
4428                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4429         fi
4430 }
4431 run_test 56u "check lfs find -stripe-index works"
4432
4433 test_56v() {
4434     local MDT_IDX=0
4435
4436     TDIR=$DIR/${tdir}v
4437     rm -rf $TDIR
4438     setup_56 $NUMFILES $NUMDIRS
4439
4440     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4441     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4442
4443     for file in $($LFIND -mdt $UUID $TDIR); do
4444         file_mdt_idx=$($GETSTRIPE -M $file)
4445         [ $file_mdt_idx -eq $MDT_IDX ] ||
4446             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4447     done
4448 }
4449 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4450
4451 # Get and check the actual stripe count of one file.
4452 # Usage: check_stripe_count <file> <expected_stripe_count>
4453 check_stripe_count() {
4454     local file=$1
4455     local expected=$2
4456     local actual
4457
4458     [[ -z "$file" || -z "$expected" ]] &&
4459         error "check_stripe_count: invalid argument!"
4460
4461     local cmd="$GETSTRIPE -c $file"
4462     actual=$($cmd) || error "$cmd failed"
4463     actual=${actual%% *}
4464
4465     if [[ $actual -ne $expected ]]; then
4466         [[ $expected -eq -1 ]] ||
4467             error "$cmd wrong: found $actual, expected $expected"
4468         [[ $actual -eq $OSTCOUNT ]] ||
4469             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4470     fi
4471 }
4472
4473 test_56w() {
4474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4475         TDIR=$DIR/${tdir}w
4476
4477     rm -rf $TDIR || error "remove $TDIR failed"
4478     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4479
4480     local stripe_size
4481     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4482         error "$GETSTRIPE -S -d $TDIR failed"
4483     stripe_size=${stripe_size%% *}
4484
4485     local file_size=$((stripe_size * OSTCOUNT))
4486     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4487     local required_space=$((file_num * file_size))
4488     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4489     [[ $free_space -le $((required_space / 1024)) ]] &&
4490         skip_env "need at least $required_space bytes free space," \
4491                  "have $free_space kbytes" && return
4492
4493     local dd_bs=65536
4494     local dd_count=$((file_size / dd_bs))
4495
4496     # write data into the files
4497     local i
4498     local j
4499     local file
4500     for i in $(seq 1 $NUMFILES); do
4501         file=$TDIR/file$i
4502         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4503             error "write data into $file failed"
4504     done
4505     for i in $(seq 1 $NUMDIRS); do
4506         for j in $(seq 1 $NUMFILES); do
4507             file=$TDIR/dir$i/file$j
4508             yes | dd bs=$dd_bs count=$dd_count of=$file \
4509                 >/dev/null 2>&1 ||
4510                 error "write data into $file failed"
4511         done
4512     done
4513
4514     local expected=-1
4515     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4516
4517     # lfs_migrate file
4518     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4519     echo "$cmd"
4520     eval $cmd || error "$cmd failed"
4521
4522     check_stripe_count $TDIR/file1 $expected
4523
4524     # lfs_migrate dir
4525     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4526     echo "$cmd"
4527     eval $cmd || error "$cmd failed"
4528
4529     for j in $(seq 1 $NUMFILES); do
4530         check_stripe_count $TDIR/dir1/file$j $expected
4531     done
4532
4533     # lfs_migrate works with lfs find
4534     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4535          $LFS_MIGRATE -y -c $expected"
4536     echo "$cmd"
4537     eval $cmd || error "$cmd failed"
4538
4539     for i in $(seq 2 $NUMFILES); do
4540         check_stripe_count $TDIR/file$i $expected
4541     done
4542     for i in $(seq 2 $NUMDIRS); do
4543         for j in $(seq 1 $NUMFILES); do
4544             check_stripe_count $TDIR/dir$i/file$j $expected
4545         done
4546     done
4547 }
4548 run_test 56w "check lfs_migrate -c stripe_count works"
4549
4550 test_56x() {
4551         check_swap_layouts_support && return 0
4552         [ "$OSTCOUNT" -lt "2" ] &&
4553                 skip_env "need 2 OST, skipping test" && return
4554
4555         local dir0=$DIR/$tdir/$testnum
4556         mkdir -p $dir0 || error "creating dir $dir0"
4557
4558         local ref1=/etc/passwd
4559         local file1=$dir0/file1
4560
4561         $SETSTRIPE -c 2 $file1
4562         cp $ref1 $file1
4563         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4564         stripe=$($GETSTRIPE -c $file1)
4565         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4566         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4567
4568         # clean up
4569         rm -f $file1
4570 }
4571 run_test 56x "lfs migration support"
4572
4573 test_56y() {
4574         local res=""
4575
4576         local dir0=$DIR/$tdir/$testnum
4577         mkdir -p $dir0 || error "creating dir $dir0"
4578         local f1=$dir0/file1
4579         local f2=$dir0/file2
4580
4581         touch $f1 || error "creating std file $f1"
4582         $MULTIOP $f2 H2c || error "creating released file $f2"
4583
4584         # a directory can be raid0, so ask only for files
4585         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4586         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4587
4588         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4589         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4590
4591         # only files can be released, so no need to force file search
4592         res=$($LFIND $dir0 -L released)
4593         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4594
4595         res=$($LFIND $dir0 \! -L released)
4596         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4597
4598 }
4599 run_test 56y "lfs find -L raid0|released"
4600
4601 test_57a() {
4602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4603         # note test will not do anything if MDS is not local
4604         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4605                 skip "Only applicable to ldiskfs-based MDTs"
4606                 return
4607         fi
4608
4609         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4610         local MNTDEV="osd*.*MDT*.mntdev"
4611         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4612         [ -z "$DEV" ] && error "can't access $MNTDEV"
4613         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4614                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4615                         error "can't access $DEV"
4616                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4617                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4618                 rm $TMP/t57a.dump
4619         done
4620 }
4621 run_test 57a "verify MDS filesystem created with large inodes =="
4622
4623 test_57b() {
4624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4625         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4626                 skip "Only applicable to ldiskfs-based MDTs"
4627                 return
4628         fi
4629
4630         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4631         local dir=$DIR/d57b
4632
4633         local FILECOUNT=100
4634         local FILE1=$dir/f1
4635         local FILEN=$dir/f$FILECOUNT
4636
4637         rm -rf $dir || error "removing $dir"
4638         test_mkdir -p $dir || error "creating $dir"
4639         local num=$(get_mds_dir $dir)
4640         local mymds=mds$num
4641
4642         echo "mcreating $FILECOUNT files"
4643         createmany -m $dir/f 1 $FILECOUNT || \
4644                 error "creating files in $dir"
4645
4646         # verify that files do not have EAs yet
4647         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4648         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4649
4650         sync
4651         sleep 1
4652         df $dir  #make sure we get new statfs data
4653         local MDSFREE=$(do_facet $mymds \
4654                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4655         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4656         echo "opening files to create objects/EAs"
4657         local FILE
4658         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4659                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4660         done
4661
4662         # verify that files have EAs now
4663         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4664         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4665
4666         sleep 1  #make sure we get new statfs data
4667         df $dir
4668         local MDSFREE2=$(do_facet $mymds \
4669                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4670         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4671         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4672                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4673                         error "MDC before $MDCFREE != after $MDCFREE2"
4674                 else
4675                         echo "MDC before $MDCFREE != after $MDCFREE2"
4676                         echo "unable to confirm if MDS has large inodes"
4677                 fi
4678         fi
4679         rm -rf $dir
4680 }
4681 run_test 57b "default LOV EAs are stored inside large inodes ==="
4682
4683 test_58() {
4684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4685         [ -z "$(which wiretest 2>/dev/null)" ] &&
4686                         skip_env "could not find wiretest" && return
4687         wiretest
4688 }
4689 run_test 58 "verify cross-platform wire constants =============="
4690
4691 test_59() {
4692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4693         echo "touch 130 files"
4694         createmany -o $DIR/f59- 130
4695         echo "rm 130 files"
4696         unlinkmany $DIR/f59- 130
4697         sync
4698         # wait for commitment of removal
4699         wait_delete_completed
4700 }
4701 run_test 59 "verify cancellation of llog records async ========="
4702
4703 TEST60_HEAD="test_60 run $RANDOM"
4704 test_60a() {
4705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4706         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4707         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4708                 skip_env "missing subtest run-llog.sh" && return
4709         log "$TEST60_HEAD - from kernel mode"
4710         do_facet mgs sh run-llog.sh
4711 }
4712 run_test 60a "llog sanity tests run from kernel module =========="
4713
4714 test_60b() { # bug 6411
4715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4716         dmesg > $DIR/$tfile
4717         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4718                                  /llog.test/ {
4719                                          if (marker)
4720                                                  from_marker++
4721                                          from_begin++
4722                                  }
4723                                  END {
4724                                          if (marker)
4725                                                  print from_marker
4726                                          else
4727                                                  print from_begin
4728                                  }"`
4729         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4730 }
4731 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4732
4733 test_60c() {
4734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4735         echo "create 5000 files"
4736         createmany -o $DIR/f60c- 5000
4737 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4738         lctl set_param fail_loc=0x80000137
4739         unlinkmany $DIR/f60c- 5000
4740         lctl set_param fail_loc=0
4741 }
4742 run_test 60c "unlink file when mds full"
4743
4744 test_60d() {
4745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4746         SAVEPRINTK=$(lctl get_param -n printk)
4747
4748         # verify "lctl mark" is even working"
4749         MESSAGE="test message ID $RANDOM $$"
4750         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4751         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4752
4753         lctl set_param printk=0 || error "set lnet.printk failed"
4754         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4755         MESSAGE="new test message ID $RANDOM $$"
4756         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4757         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4758         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4759
4760         lctl set_param -n printk="$SAVEPRINTK"
4761 }
4762 run_test 60d "test printk console message masking"
4763
4764 test_61() {
4765         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4766         f="$DIR/f61"
4767         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4768         cancel_lru_locks osc
4769         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4770         sync
4771 }
4772 run_test 61 "mmap() writes don't make sync hang ================"
4773
4774 # bug 2330 - insufficient obd_match error checking causes LBUG
4775 test_62() {
4776         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4777         f="$DIR/f62"
4778         echo foo > $f
4779         cancel_lru_locks osc
4780         lctl set_param fail_loc=0x405
4781         cat $f && error "cat succeeded, expect -EIO"
4782         lctl set_param fail_loc=0
4783 }
4784 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4785 # match every page all of the time.
4786 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4787
4788 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4789 test_63a() {    # was test_63
4790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4791         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4792         lctl set_param -n osc.*.max_dirty_mb 0
4793         for i in `seq 10` ; do
4794                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4795                 sleep 5
4796                 kill $!
4797                 sleep 1
4798         done
4799
4800         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4801         rm -f $DIR/f63 || true
4802 }
4803 run_test 63a "Verify oig_wait interruption does not crash ======="
4804
4805 # bug 2248 - async write errors didn't return to application on sync
4806 # bug 3677 - async write errors left page locked
4807 test_63b() {
4808         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4809         debugsave
4810         lctl set_param debug=-1
4811
4812         # ensure we have a grant to do async writes
4813         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4814         rm $DIR/$tfile
4815
4816         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4817         lctl set_param fail_loc=0x80000406
4818         $MULTIOP $DIR/$tfile Owy && \
4819                 error "sync didn't return ENOMEM"
4820         sync; sleep 2; sync     # do a real sync this time to flush page
4821         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4822                 error "locked page left in cache after async error" || true
4823         debugrestore
4824 }
4825 run_test 63b "async write errors should be returned to fsync ==="
4826
4827 test_64a () {
4828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4829         df $DIR
4830         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4831 }
4832 run_test 64a "verify filter grant calculations (in kernel) ====="
4833
4834 test_64b () {
4835         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4836         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4837 }
4838 run_test 64b "check out-of-space detection on client ==========="
4839
4840 test_64c() {
4841         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4842 }
4843 run_test 64c "verify grant shrink ========================------"
4844
4845 # bug 1414 - set/get directories' stripe info
4846 test_65a() {
4847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4848         test_mkdir -p $DIR/$tdir
4849         touch $DIR/$tdir/f1
4850         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4851 }
4852 run_test 65a "directory with no stripe info ===================="
4853
4854 test_65b() {
4855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4856         test_mkdir -p $DIR/$tdir
4857         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4858                                                 error "setstripe"
4859         touch $DIR/$tdir/f2
4860         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4861 }
4862 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4863
4864 test_65c() {
4865         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4866         if [ $OSTCOUNT -gt 1 ]; then
4867                 test_mkdir -p $DIR/$tdir
4868                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4869                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4870                 touch $DIR/$tdir/f3
4871                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4872         fi
4873 }
4874 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4875
4876 test_65d() {
4877         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4878         test_mkdir -p $DIR/$tdir
4879         if [ $STRIPECOUNT -le 0 ]; then
4880                 sc=1
4881         elif [ $STRIPECOUNT -gt 2000 ]; then
4882 #LOV_MAX_STRIPE_COUNT is 2000
4883                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4884         else
4885                 sc=$(($STRIPECOUNT - 1))
4886         fi
4887         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4888         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4889         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4890                                                 error "lverify failed"
4891 }
4892 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4893
4894 test_65e() {
4895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4896         test_mkdir -p $DIR/$tdir
4897
4898         $SETSTRIPE $DIR/$tdir || error "setstripe"
4899         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4900                                         error "no stripe info failed"
4901         touch $DIR/$tdir/f6
4902         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4903 }
4904 run_test 65e "directory setstripe defaults ======================="
4905
4906 test_65f() {
4907         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4908         test_mkdir -p $DIR/${tdir}f
4909         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4910 }
4911 run_test 65f "dir setstripe permission (should return error) ==="
4912
4913 test_65g() {
4914         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4915         test_mkdir -p $DIR/$tdir
4916         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4917                                                         error "setstripe"
4918         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4919         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4920                 error "delete default stripe failed"
4921 }
4922 run_test 65g "directory setstripe -d ==========================="
4923
4924 test_65h() {
4925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4926         test_mkdir -p $DIR/$tdir
4927         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4928                                                         error "setstripe"
4929         test_mkdir -p $DIR/$tdir/dd1
4930         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4931                 error "stripe info inherit failed"
4932 }
4933 run_test 65h "directory stripe info inherit ===================="
4934
4935 test_65i() { # bug6367
4936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4937         $SETSTRIPE -S 65536 -c -1 $MOUNT
4938 }
4939 run_test 65i "set non-default striping on root directory (bug 6367)="
4940
4941 test_65ia() { # bug12836
4942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4943         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4944 }
4945 run_test 65ia "getstripe on -1 default directory striping"
4946
4947 test_65ib() { # bug12836
4948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4949         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4950 }
4951 run_test 65ib "getstripe -v on -1 default directory striping"
4952
4953 test_65ic() { # bug12836
4954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4955         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4956 }
4957 run_test 65ic "new find on -1 default directory striping"
4958
4959 test_65j() { # bug6367
4960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4961         sync; sleep 1
4962         # if we aren't already remounting for each test, do so for this test
4963         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4964                 cleanup || error "failed to unmount"
4965                 setup
4966         fi
4967         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4968 }
4969 run_test 65j "set default striping on root directory (bug 6367)="
4970
4971 test_65k() { # bug11679
4972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4973         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4974         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4975
4976     echo "Check OST status: "
4977     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4978               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4979
4980     for OSC in $MDS_OSCS; do
4981         echo $OSC "is activate"
4982         do_facet $SINGLEMDS lctl --device %$OSC activate
4983     done
4984
4985     mkdir -p $DIR/$tdir
4986     for INACTIVE_OSC in $MDS_OSCS; do
4987         echo "Deactivate: " $INACTIVE_OSC
4988         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4989         for STRIPE_OSC in $MDS_OSCS; do
4990             OST=`osc_to_ost $STRIPE_OSC`
4991             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4992                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4993
4994             [ -f $DIR/$tdir/$IDX ] && continue
4995             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4996             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4997             RC=$?
4998             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4999         done
5000         rm -f $DIR/$tdir/*
5001         echo $INACTIVE_OSC "is Activate."
5002         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5003     done
5004 }
5005 run_test 65k "validate manual striping works properly with deactivated OSCs"
5006
5007 test_65l() { # bug 12836
5008         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5009         test_mkdir -p $DIR/$tdir/test_dir
5010         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5011         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5012 }
5013 run_test 65l "lfs find on -1 stripe dir ========================"
5014
5015 # bug 2543 - update blocks count on client
5016 test_66() {
5017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5018         COUNT=${COUNT:-8}
5019         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5020         sync; sync_all_data; sync; sync_all_data
5021         cancel_lru_locks osc
5022         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5023         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5024 }
5025 run_test 66 "update inode blocks count on client ==============="
5026
5027 LLOOP=
5028 LLITELOOPLOAD=
5029 cleanup_68() {
5030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5031         trap 0
5032         if [ ! -z "$LLOOP" ]; then
5033                 if swapon -s | grep -q $LLOOP; then
5034                         swapoff $LLOOP || error "swapoff failed"
5035                 fi
5036
5037                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5038                 rm -f $LLOOP
5039                 unset LLOOP
5040         fi
5041         if [ ! -z "$LLITELOOPLOAD" ]; then
5042                 rmmod llite_lloop
5043                 unset LLITELOOPLOAD
5044         fi
5045         rm -f $DIR/f68*
5046 }
5047
5048 meminfo() {
5049         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5050 }
5051
5052 swap_used() {
5053         swapon -s | awk '($1 == "'$1'") { print $4 }'
5054 }
5055
5056 # test case for lloop driver, basic function
5057 test_68a() {
5058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5059         [ "$UID" != 0 ] && skip_env "must run as root" && return
5060         llite_lloop_enabled || \
5061                 { skip_env "llite_lloop module disabled" && return; }
5062
5063         trap cleanup_68 EXIT
5064
5065         if ! module_loaded llite_lloop; then
5066                 if load_module llite/llite_lloop; then
5067                         LLITELOOPLOAD=yes
5068                 else
5069                         skip_env "can't find module llite_lloop"
5070                         return
5071                 fi
5072         fi
5073
5074         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5075         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5076         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5077
5078         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5079         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5080
5081         cleanup_68
5082 }
5083 run_test 68a "lloop driver - basic test ========================"
5084
5085 # excercise swapping to lustre by adding a high priority swapfile entry
5086 # and then consuming memory until it is used.
5087 test_68b() {  # was test_68
5088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5089         [ "$UID" != 0 ] && skip_env "must run as root" && return
5090         lctl get_param -n devices | grep -q obdfilter && \
5091                 skip "local OST" && return
5092
5093         grep -q llite_lloop /proc/modules
5094         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5095
5096         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5097                 skip "can't reliably test swap with TCP" && return
5098
5099         MEMTOTAL=`meminfo MemTotal`
5100         NR_BLOCKS=$((MEMTOTAL>>8))
5101         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5102
5103         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5104         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5105         mkswap $DIR/f68b
5106
5107         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5108
5109         trap cleanup_68 EXIT
5110
5111         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5112
5113         echo "before: `swapon -s | grep $LLOOP`"
5114         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5115         echo "after: `swapon -s | grep $LLOOP`"
5116         SWAPUSED=`swap_used $LLOOP`
5117
5118         cleanup_68
5119
5120         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5121 }
5122 run_test 68b "support swapping to Lustre ========================"
5123
5124 # bug5265, obdfilter oa2dentry return -ENOENT
5125 # #define OBD_FAIL_OST_ENOENT 0x217
5126 test_69() {
5127         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5128         remote_ost_nodsh && skip "remote OST with nodsh" && return
5129
5130         f="$DIR/$tfile"
5131         $SETSTRIPE -c 1 -i 0 $f
5132
5133         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5134
5135         do_facet ost1 lctl set_param fail_loc=0x217
5136         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5137         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5138
5139         do_facet ost1 lctl set_param fail_loc=0
5140         $DIRECTIO write $f 0 2 || error "write error"
5141
5142         cancel_lru_locks osc
5143         $DIRECTIO read $f 0 1 || error "read error"
5144
5145         do_facet ost1 lctl set_param fail_loc=0x217
5146         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5147
5148         do_facet ost1 lctl set_param fail_loc=0
5149         rm -f $f
5150 }
5151 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5152
5153 test_71() {
5154     test_mkdir -p $DIR/$tdir
5155     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5156 }
5157 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5158
5159 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5161         [ "$RUNAS_ID" = "$UID" ] &&
5162                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5163
5164         # Check that testing environment is properly set up. Skip if not
5165         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5166                 skip_env "User $RUNAS_ID does not exist - skipping"
5167                 return 0
5168         }
5169         # We had better clear the $DIR to get enough space for dd
5170         rm -rf $DIR/*
5171         touch $DIR/$tfile
5172         chmod 777 $DIR/$tfile
5173         chmod ug+s $DIR/$tfile
5174         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5175                 error "$RUNAS dd $DIR/$tfile failed"
5176         # See if we are still setuid/sgid
5177         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5178                 error "S/gid is not dropped on write"
5179         # Now test that MDS is updated too
5180         cancel_lru_locks mdc
5181         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5182                 error "S/gid is not dropped on MDS"
5183         rm -f $DIR/$tfile
5184 }
5185 run_test 72a "Test that remove suid works properly (bug5695) ===="
5186
5187 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5188         local perm
5189
5190         [ "$RUNAS_ID" = "$UID" ] && \
5191                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5192         [ "$RUNAS_ID" -eq 0 ] && \
5193                 skip_env "RUNAS_ID = 0 -- skipping" && return
5194
5195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5196         # Check that testing environment is properly set up. Skip if not
5197         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5198                 skip_env "User $RUNAS_ID does not exist - skipping"
5199                 return 0
5200         }
5201         touch $DIR/${tfile}-f{g,u}
5202         test_mkdir $DIR/${tfile}-dg
5203         test_mkdir $DIR/${tfile}-du
5204         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5205         chmod g+s $DIR/${tfile}-{f,d}g
5206         chmod u+s $DIR/${tfile}-{f,d}u
5207         for perm in 777 2777 4777; do
5208                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5209                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5210                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5211                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5212         done
5213         true
5214 }
5215 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5216
5217 # bug 3462 - multiple simultaneous MDC requests
5218 test_73() {
5219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5220         test_mkdir $DIR/d73-1
5221         test_mkdir $DIR/d73-2
5222         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5223         pid1=$!
5224
5225         lctl set_param fail_loc=0x80000129
5226         $MULTIOP $DIR/d73-1/f73-2 Oc &
5227         sleep 1
5228         lctl set_param fail_loc=0
5229
5230         $MULTIOP $DIR/d73-2/f73-3 Oc &
5231         pid3=$!
5232
5233         kill -USR1 $pid1
5234         wait $pid1 || return 1
5235
5236         sleep 25
5237
5238         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5239         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5240         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5241
5242         rm -rf $DIR/d73-*
5243 }
5244 run_test 73 "multiple MDC requests (should not deadlock)"
5245
5246 test_74a() { # bug 6149, 6184
5247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5248         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5249         #
5250         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5251         # will spin in a tight reconnection loop
5252         touch $DIR/f74a
5253         lctl set_param fail_loc=0x8000030e
5254         # get any lock that won't be difficult - lookup works.
5255         ls $DIR/f74a
5256         lctl set_param fail_loc=0
5257         true
5258         rm -f $DIR/f74a
5259 }
5260 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5261
5262 test_74b() { # bug 13310
5263         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5264         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5265         #
5266         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5267         # will spin in a tight reconnection loop
5268         lctl set_param fail_loc=0x8000030e
5269         # get a "difficult" lock
5270         touch $DIR/f74b
5271         lctl set_param fail_loc=0
5272         true
5273         rm -f $DIR/f74b
5274 }
5275 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5276
5277 test_74c() {
5278         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5279 #define OBD_FAIL_LDLM_NEW_LOCK
5280         lctl set_param fail_loc=0x80000319
5281         touch $DIR/$tfile && error "Touch successful"
5282         true
5283 }
5284 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5285
5286 num_inodes() {
5287         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5288 }
5289
5290 get_inode_slab_tunables() {
5291         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5292 }
5293
5294 set_inode_slab_tunables() {
5295         echo "lustre_inode_cache $1" > /proc/slabinfo
5296 }
5297
5298 test_76() { # Now for bug 20433, added originally in bug 1443
5299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5300         local SLAB_SETTINGS=`get_inode_slab_tunables`
5301         local CPUS=`getconf _NPROCESSORS_ONLN`
5302         # we cannot set limit below 1 which means 1 inode in each
5303         # per-cpu cache is still allowed
5304         set_inode_slab_tunables "1 1 0"
5305         cancel_lru_locks osc
5306         BEFORE_INODES=`num_inodes`
5307         echo "before inodes: $BEFORE_INODES"
5308         local COUNT=1000
5309         [ "$SLOW" = "no" ] && COUNT=100
5310         for i in `seq $COUNT`; do
5311                 touch $DIR/$tfile
5312                 rm -f $DIR/$tfile
5313         done
5314         cancel_lru_locks osc
5315         AFTER_INODES=`num_inodes`
5316         echo "after inodes: $AFTER_INODES"
5317         local wait=0
5318         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5319                 sleep 2
5320                 AFTER_INODES=`num_inodes`
5321                 wait=$((wait+2))
5322                 echo "wait $wait seconds inodes: $AFTER_INODES"
5323                 if [ $wait -gt 30 ]; then
5324                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5325                 fi
5326         done
5327         set_inode_slab_tunables "$SLAB_SETTINGS"
5328 }
5329 run_test 76 "confirm clients recycle inodes properly ===="
5330
5331
5332 export ORIG_CSUM=""
5333 set_checksums()
5334 {
5335         # Note: in sptlrpc modes which enable its own bulk checksum, the
5336         # original crc32_le bulk checksum will be automatically disabled,
5337         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5338         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5339         # In this case set_checksums() will not be no-op, because sptlrpc
5340         # bulk checksum will be enabled all through the test.
5341
5342         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5343         lctl set_param -n osc.*.checksums $1
5344         return 0
5345 }
5346
5347 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5348                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5349 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5350 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5351 set_checksum_type()
5352 {
5353         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5354         log "set checksum type to $1"
5355         return 0
5356 }
5357 F77_TMP=$TMP/f77-temp
5358 F77SZ=8
5359 setup_f77() {
5360         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5361                 error "error writing to $F77_TMP"
5362 }
5363
5364 test_77a() { # bug 10889
5365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5366         $GSS && skip "could not run with gss" && return
5367         [ ! -f $F77_TMP ] && setup_f77
5368         set_checksums 1
5369         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5370         set_checksums 0
5371         rm -f $DIR/$tfile
5372 }
5373 run_test 77a "normal checksum read/write operation"
5374
5375 test_77b() { # bug 10889
5376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5377         $GSS && skip "could not run with gss" && return
5378         [ ! -f $F77_TMP ] && setup_f77
5379         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5380         $LCTL set_param fail_loc=0x80000409
5381         set_checksums 1
5382
5383         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5384                 error "dd error: $?"
5385         $LCTL set_param fail_loc=0
5386
5387         for algo in $CKSUM_TYPES; do
5388                 cancel_lru_locks osc
5389                 set_checksum_type $algo
5390                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5391                 $LCTL set_param fail_loc=0x80000408
5392                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5393                 $LCTL set_param fail_loc=0
5394         done
5395         set_checksums 0
5396         set_checksum_type $ORIG_CSUM_TYPE
5397         rm -f $DIR/$tfile
5398 }
5399 run_test 77b "checksum error on client write, read"
5400
5401 test_77d() { # bug 10889
5402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5403         $GSS && skip "could not run with gss" && return
5404         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5405         $LCTL set_param fail_loc=0x80000409
5406         set_checksums 1
5407         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5408                 error "direct write: rc=$?"
5409         $LCTL set_param fail_loc=0
5410         set_checksums 0
5411
5412         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5413         $LCTL set_param fail_loc=0x80000408
5414         set_checksums 1
5415         cancel_lru_locks osc
5416         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5417                 error "direct read: rc=$?"
5418         $LCTL set_param fail_loc=0
5419         set_checksums 0
5420 }
5421 run_test 77d "checksum error on OST direct write, read"
5422
5423 test_77f() { # bug 10889
5424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5425         $GSS && skip "could not run with gss" && return
5426         set_checksums 1
5427         for algo in $CKSUM_TYPES; do
5428                 cancel_lru_locks osc
5429                 set_checksum_type $algo
5430                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5431                 $LCTL set_param fail_loc=0x409
5432                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5433                         error "direct write succeeded"
5434                 $LCTL set_param fail_loc=0
5435         done
5436         set_checksum_type $ORIG_CSUM_TYPE
5437         set_checksums 0
5438 }
5439 run_test 77f "repeat checksum error on write (expect error)"
5440
5441 test_77g() { # bug 10889
5442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5443         $GSS && skip "could not run with gss" && return
5444         remote_ost_nodsh && skip "remote OST with nodsh" && return
5445
5446         [ ! -f $F77_TMP ] && setup_f77
5447
5448         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5449         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5450         do_facet ost1 lctl set_param fail_loc=0x8000021a
5451         set_checksums 1
5452         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5453                 error "write error: rc=$?"
5454         do_facet ost1 lctl set_param fail_loc=0
5455         set_checksums 0
5456
5457         cancel_lru_locks osc
5458         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5459         do_facet ost1 lctl set_param fail_loc=0x8000021b
5460         set_checksums 1
5461         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5462         do_facet ost1 lctl set_param fail_loc=0
5463         set_checksums 0
5464 }
5465 run_test 77g "checksum error on OST write, read"
5466
5467 test_77i() { # bug 13805
5468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5469         $GSS && skip "could not run with gss" && return
5470         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5471         lctl set_param fail_loc=0x40b
5472         remount_client $MOUNT
5473         lctl set_param fail_loc=0
5474         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5475                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5476                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5477                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5478         done
5479         remount_client $MOUNT
5480 }
5481 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5482
5483 test_77j() { # bug 13805
5484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5485         $GSS && skip "could not run with gss" && return
5486         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5487         lctl set_param fail_loc=0x40c
5488         remount_client $MOUNT
5489         lctl set_param fail_loc=0
5490         sleep 2 # wait async osc connect to finish
5491         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5492                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5493                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5494                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5495         done
5496         remount_client $MOUNT
5497 }
5498 run_test 77j "client only supporting ADLER32"
5499
5500 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5501 rm -f $F77_TMP
5502 unset F77_TMP
5503
5504 test_78() { # bug 10901
5505         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5506         remote_ost || { skip_env "local OST" && return; }
5507
5508         NSEQ=5
5509         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5510         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5511         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5512         echo "MemTotal: $MEMTOTAL"
5513 # reserve 256MB of memory for the kernel and other running processes,
5514 # and then take 1/2 of the remaining memory for the read/write buffers.
5515     if [ $MEMTOTAL -gt 512 ] ;then
5516         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5517     else
5518         # for those poor memory-starved high-end clusters...
5519         MEMTOTAL=$((MEMTOTAL / 2))
5520     fi
5521         echo "Mem to use for directio: $MEMTOTAL"
5522         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5523         [ $F78SIZE -gt 512 ] && F78SIZE=512
5524         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5525         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5526         echo "Smallest OST: $SMALLESTOST"
5527         [ $SMALLESTOST -lt 10240 ] && \
5528                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5529
5530         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5531                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5532
5533         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5534         echo "File size: $F78SIZE"
5535         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5536         for i in `seq 1 $NSEQ`
5537         do
5538                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5539                 echo directIO rdwr round $i of $NSEQ
5540                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5541         done
5542
5543         rm -f $DIR/$tfile
5544 }
5545 run_test 78 "handle large O_DIRECT writes correctly ============"
5546
5547 test_79() { # bug 12743
5548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5549         wait_delete_completed
5550
5551         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5552         BKFREE=$(calc_osc_kbytes kbytesfree)
5553         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5554
5555         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5556         DFTOTAL=`echo $STRING | cut -d, -f1`
5557         DFUSED=`echo $STRING  | cut -d, -f2`
5558         DFAVAIL=`echo $STRING | cut -d, -f3`
5559         DFFREE=$(($DFTOTAL - $DFUSED))
5560
5561         ALLOWANCE=$((64 * $OSTCOUNT))
5562
5563         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5564            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5565                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5566         fi
5567         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5568            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5569                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5570         fi
5571         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5572            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5573                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5574         fi
5575 }
5576 run_test 79 "df report consistency check ======================="
5577
5578 test_80() { # bug 10718
5579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5580         # relax strong synchronous semantics for slow backends like ZFS
5581         local soc="obdfilter.*.sync_on_lock_cancel"
5582         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5583         local hosts=
5584         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5585                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5586                           facet_active_host $host; done | sort -u)
5587                 do_nodes $hosts lctl set_param $soc=never
5588         fi
5589
5590         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5591         sync; sleep 1; sync
5592         local BEFORE=`date +%s`
5593         cancel_lru_locks osc
5594         local AFTER=`date +%s`
5595         local DIFF=$((AFTER-BEFORE))
5596         if [ $DIFF -gt 1 ] ; then
5597                 error "elapsed for 1M@1T = $DIFF"
5598         fi
5599
5600         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5601
5602         rm -f $DIR/$tfile
5603 }
5604 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5605
5606 test_81a() { # LU-456
5607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5608         remote_ost_nodsh && skip "remote OST with nodsh" && return
5609         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5610         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5611         do_facet ost1 lctl set_param fail_loc=0x80000228
5612
5613         # write should trigger a retry and success
5614         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5615         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5616         RC=$?
5617         if [ $RC -ne 0 ] ; then
5618                 error "write should success, but failed for $RC"
5619         fi
5620 }
5621 run_test 81a "OST should retry write when get -ENOSPC ==============="
5622
5623 test_81b() { # LU-456
5624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5625         remote_ost_nodsh && skip "remote OST with nodsh" && return
5626         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5627         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5628         do_facet ost1 lctl set_param fail_loc=0x228
5629
5630         # write should retry several times and return -ENOSPC finally
5631         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5632         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5633         RC=$?
5634         ENOSPC=28
5635         if [ $RC -ne $ENOSPC ] ; then
5636                 error "dd should fail for -ENOSPC, but succeed."
5637         fi
5638 }
5639 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5640
5641 test_82() { # LU-1031
5642         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5643         local gid1=14091995
5644         local gid2=16022000
5645
5646         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5647         local MULTIPID1=$!
5648         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5649         local MULTIPID2=$!
5650         kill -USR1 $MULTIPID2
5651         sleep 2
5652         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5653                 error "First grouplock does not block second one"
5654         else
5655                 echo "Second grouplock blocks first one"
5656         fi
5657         kill -USR1 $MULTIPID1
5658         wait $MULTIPID1
5659         wait $MULTIPID2
5660 }
5661 run_test 82 "Basic grouplock test ==============================="
5662
5663 test_99a() {
5664         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5665                 return
5666         test_mkdir -p $DIR/d99cvsroot
5667         chown $RUNAS_ID $DIR/d99cvsroot
5668         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5669         cd $TMP
5670
5671         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5672         cd $oldPWD
5673 }
5674 run_test 99a "cvs init ========================================="
5675
5676 test_99b() {
5677         [ -z "$(which cvs 2>/dev/null)" ] &&
5678                 skip_env "could not find cvs" && return
5679         [ ! -d $DIR/d99cvsroot ] && test_99a
5680         cd /etc/init.d
5681         # some versions of cvs import exit(1) when asked to import links or
5682         # files they can't read.  ignore those files.
5683         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5684                         ! -perm +4 -printf '-I %f\n')
5685         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5686                 d99reposname vtag rtag
5687 }
5688 run_test 99b "cvs import ======================================="
5689
5690 test_99c() {
5691         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5692         [ ! -d $DIR/d99cvsroot ] && test_99b
5693         cd $DIR
5694         test_mkdir -p $DIR/d99reposname
5695         chown $RUNAS_ID $DIR/d99reposname
5696         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5697 }
5698 run_test 99c "cvs checkout ====================================="
5699
5700 test_99d() {
5701         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5702         [ ! -d $DIR/d99cvsroot ] && test_99c
5703         cd $DIR/d99reposname
5704         $RUNAS touch foo99
5705         $RUNAS cvs add -m 'addmsg' foo99
5706 }
5707 run_test 99d "cvs add =========================================="
5708
5709 test_99e() {
5710         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5711         [ ! -d $DIR/d99cvsroot ] && test_99c
5712         cd $DIR/d99reposname
5713         $RUNAS cvs update
5714 }
5715 run_test 99e "cvs update ======================================="
5716
5717 test_99f() {
5718         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5719         [ ! -d $DIR/d99cvsroot ] && test_99d
5720         cd $DIR/d99reposname
5721         $RUNAS cvs commit -m 'nomsg' foo99
5722     rm -fr $DIR/d99cvsroot
5723 }
5724 run_test 99f "cvs commit ======================================="
5725
5726 test_100() {
5727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5728         [ "$NETTYPE" = tcp ] || \
5729                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5730                         return ; }
5731
5732         remote_ost_nodsh && skip "remote OST with nodsh" && return
5733         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5734         remote_servers || \
5735                 { skip "useless for local single node setup" && return; }
5736
5737         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5738                 [ "$PROT" != "tcp" ] && continue
5739                 RPORT=$(echo $REMOTE | cut -d: -f2)
5740                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5741
5742                 rc=0
5743                 LPORT=`echo $LOCAL | cut -d: -f2`
5744                 if [ $LPORT -ge 1024 ]; then
5745                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5746                         netstat -tna
5747                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5748                 fi
5749         done
5750         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5751 }
5752 run_test 100 "check local port using privileged port ==========="
5753
5754 function get_named_value()
5755 {
5756     local tag
5757
5758     tag=$1
5759     while read ;do
5760         line=$REPLY
5761         case $line in
5762         $tag*)
5763             echo $line | sed "s/^$tag[ ]*//"
5764             break
5765             ;;
5766         esac
5767     done
5768 }
5769
5770 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5771                    awk '/^max_cached_mb/ { print $2 }')
5772
5773 cleanup_101a() {
5774         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5775         trap 0
5776 }
5777
5778 test_101a() {
5779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5780         local s
5781         local discard
5782         local nreads=10000
5783         local cache_limit=32
5784
5785         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5786         trap cleanup_101a EXIT
5787         $LCTL set_param -n llite.*.read_ahead_stats 0
5788         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5789
5790         #
5791         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5792         #
5793         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5794         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5795
5796         discard=0
5797         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5798                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5799                         discard=$(($discard + $s))
5800         done
5801         cleanup_101a
5802
5803         if [ $(($discard * 10)) -gt $nreads ] ;then
5804                 $LCTL get_param osc.*-osc*.rpc_stats
5805                 $LCTL get_param llite.*.read_ahead_stats
5806                 error "too many ($discard) discarded pages"
5807         fi
5808         rm -f $DIR/$tfile || true
5809 }
5810 run_test 101a "check read-ahead for random reads ================"
5811
5812 setup_test101bc() {
5813         test_mkdir -p $DIR/$tdir
5814         STRIPE_SIZE=1048576
5815         STRIPE_COUNT=$OSTCOUNT
5816         STRIPE_OFFSET=0
5817
5818         local list=$(comma_list $(osts_nodes))
5819         set_osd_param $list '' read_cache_enable 0
5820         set_osd_param $list '' writethrough_cache_enable 0
5821
5822         trap cleanup_test101bc EXIT
5823         # prepare the read-ahead file
5824         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5825
5826         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5827 }
5828
5829 cleanup_test101bc() {
5830         trap 0
5831         rm -rf $DIR/$tdir
5832         rm -f $DIR/$tfile
5833
5834         local list=$(comma_list $(osts_nodes))
5835         set_osd_param $list '' read_cache_enable 1
5836         set_osd_param $list '' writethrough_cache_enable 1
5837 }
5838
5839 calc_total() {
5840         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5841 }
5842
5843 ra_check_101() {
5844         local READ_SIZE=$1
5845         local STRIPE_SIZE=1048576
5846         local RA_INC=1048576
5847         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5848         local FILE_LENGTH=$((64*100))
5849         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5850                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5851         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5852                         get_named_value 'read but discarded' | \
5853                         cut -d" " -f1 | calc_total`
5854         if [ $DISCARD -gt $discard_limit ]; then
5855                 $LCTL get_param llite.*.read_ahead_stats
5856                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5857         else
5858                 echo "Read-ahead success for size ${READ_SIZE}"
5859         fi
5860 }
5861
5862 test_101b() {
5863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5864         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5865         local STRIPE_SIZE=1048576
5866         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5867         local FILE_LENGTH=$((STRIPE_SIZE*100))
5868         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5869         # prepare the read-ahead file
5870         setup_test101bc
5871         cancel_lru_locks osc
5872         for BIDX in 2 4 8 16 32 64 128 256
5873         do
5874                 local BSIZE=$((BIDX*4096))
5875                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5876                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5877                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5878                 $LCTL set_param -n llite.*.read_ahead_stats 0
5879                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5880                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5881                 cancel_lru_locks osc
5882                 ra_check_101 $BSIZE
5883         done
5884         cleanup_test101bc
5885         true
5886 }
5887 run_test 101b "check stride-io mode read-ahead ================="
5888
5889 test_101c() {
5890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5891         local STRIPE_SIZE=1048576
5892         local FILE_LENGTH=$((STRIPE_SIZE*100))
5893         local nreads=10000
5894         local osc_rpc_stats
5895
5896         setup_test101bc
5897
5898         cancel_lru_locks osc
5899         $LCTL set_param osc.*.rpc_stats 0
5900         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5901         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5902                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5903                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5904                 local size
5905
5906                 if [ $lines -le 20 ]; then
5907                         continue
5908                 fi
5909                 for size in 1 2 4 8; do
5910                         local rpc=$(echo "$stats" |
5911                                     awk '($1 == "'$size':") {print $2; exit; }')
5912                         [ $rpc != 0 ] &&
5913                                 error "Small $((size*4))k read IO $rpc !"
5914                 done
5915                 echo "$osc_rpc_stats check passed!"
5916         done
5917         cleanup_test101bc
5918         true
5919 }
5920 run_test 101c "check stripe_size aligned read-ahead ================="
5921
5922 set_read_ahead() {
5923    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5924    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5925 }
5926
5927 test_101d() {
5928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5929         local file=$DIR/$tfile
5930         local size=${FILESIZE_101c:-500}
5931         local ra_MB=${READAHEAD_MB:-40}
5932
5933         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5934         [ $space -gt $((size * 1024)) ] ||
5935                 { skip "Need free space ${size}M, have ${space}K" && return; }
5936
5937         echo "Creating test file $file of size ${size}M with ${space}K free space"
5938         $SETSTRIPE -c -1 $file || error "setstripe failed"
5939         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5940         echo Cancel LRU locks on lustre client to flush the client cache
5941         cancel_lru_locks osc
5942
5943     echo Disable read-ahead
5944     local old_READAHEAD=$(set_read_ahead 0)
5945
5946     echo Reading the test file $file with read-ahead disabled
5947     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5948
5949     echo Cancel LRU locks on lustre client to flush the client cache
5950     cancel_lru_locks osc
5951     echo Enable read-ahead with ${ra_MB}MB
5952     set_read_ahead $ra_MB
5953
5954     echo Reading the test file $file with read-ahead enabled
5955     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5956
5957     echo read-ahead disabled time read $time_ra_OFF
5958     echo read-ahead enabled  time read $time_ra_ON
5959
5960         set_read_ahead $old_READAHEAD
5961         rm -f $file
5962         wait_delete_completed
5963
5964     [ $time_ra_ON -lt $time_ra_OFF ] ||
5965         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5966                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5967 }
5968 run_test 101d "file read with and without read-ahead enabled  ================="
5969
5970 test_101e() {
5971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5972     local file=$DIR/$tfile
5973     local size=500  #KB
5974     local count=100
5975     local blksize=1024
5976
5977     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5978     local need_space=$((count * size))
5979     [ $space -gt $need_space ] ||
5980         { skip_env "Need free space $need_space, have $space" && return; }
5981
5982     echo Creating $count ${size}K test files
5983     for ((i = 0; i < $count; i++)); do
5984         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5985     done
5986
5987     echo Cancel LRU locks on lustre client to flush the client cache
5988     cancel_lru_locks osc
5989
5990     echo Reset readahead stats
5991     $LCTL set_param -n llite.*.read_ahead_stats 0
5992
5993     for ((i = 0; i < $count; i++)); do
5994         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5995     done
5996
5997     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5998           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5999
6000     for ((i = 0; i < $count; i++)); do
6001         rm -rf ${file}_${i} 2>/dev/null
6002     done
6003
6004     #10000 means 20% reads are missing in readahead
6005     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
6006 }
6007 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6008
6009 cleanup_test101f() {
6010     trap 0
6011     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6012     rm -rf $DIR/$tfile 2>/dev/null
6013 }
6014
6015 test_101f() {
6016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6017     local file=$DIR/$tfile
6018     local nreads=1000
6019
6020     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6021     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6022     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6023     trap cleanup_test101f EXIT
6024
6025     echo Cancel LRU locks on lustre client to flush the client cache
6026     cancel_lru_locks osc
6027
6028     echo Reset readahead stats
6029     $LCTL set_param -n llite.*.read_ahead_stats 0
6030     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6031     # readahead should read in 2M file on second read, so only miss
6032     # 2 pages.
6033     echo Random 4K reads on 2M file for 1000 times
6034     $READS -f $file -s 2097152 -b 4096 -n $nreads
6035
6036     echo checking missing pages
6037     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6038           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6039
6040     [ $miss -lt 3 ] || error "misses too much pages!"
6041     cleanup_test101f
6042 }
6043 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6044
6045 setup_test102() {
6046         test_mkdir -p $DIR/$tdir
6047         chown $RUNAS_ID $DIR/$tdir
6048         STRIPE_SIZE=65536
6049         STRIPE_OFFSET=1
6050         STRIPE_COUNT=$OSTCOUNT
6051         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6052
6053         trap cleanup_test102 EXIT
6054         cd $DIR
6055         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6056         cd $DIR/$tdir
6057         for num in 1 2 3 4; do
6058                 for count in $(seq 1 $STRIPE_COUNT); do
6059                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6060                                 local size=`expr $STRIPE_SIZE \* $num`
6061                                 local file=file"$num-$idx-$count"
6062                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6063                         done
6064                 done
6065         done
6066
6067         cd $DIR
6068         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6069 }
6070
6071 cleanup_test102() {
6072         trap 0
6073         rm -f $TMP/f102.tar
6074         rm -rf $DIR/d0.sanity/d102
6075 }
6076
6077 test_102a() {
6078         local testfile=$DIR/xattr_testfile
6079
6080         touch $testfile
6081
6082         [ "$UID" != 0 ] && skip_env "must run as root" && return
6083         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6084                 skip_env "must have user_xattr" && return
6085
6086         [ -z "$(which setfattr 2>/dev/null)" ] &&
6087                 skip_env "could not find setfattr" && return
6088
6089         echo "set/get xattr..."
6090         setfattr -n trusted.name1 -v value1 $testfile ||
6091                 error "setfattr -n trusted.name1=value1 $testfile failed"
6092         getfattr -n trusted.name1 $testfile 2> /dev/null |
6093           grep "trusted.name1=.value1" ||
6094                 error "$testfile missing trusted.name1=value1"
6095
6096         setfattr -n user.author1 -v author1 $testfile ||
6097                 error "setfattr -n user.author1=author1 $testfile failed"
6098         getfattr -n user.author1 $testfile 2> /dev/null |
6099           grep "user.author1=.author1" ||
6100                 error "$testfile missing trusted.author1=author1"
6101
6102         echo "listxattr..."
6103         setfattr -n trusted.name2 -v value2 $testfile ||
6104                 error "$testfile unable to set trusted.name2"
6105         setfattr -n trusted.name3 -v value3 $testfile ||
6106                 error "$testfile unable to set trusted.name3"
6107         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6108             grep "trusted.name" | wc -l) -eq 3 ] ||
6109                 error "$testfile missing 3 trusted.name xattrs"
6110
6111         setfattr -n user.author2 -v author2 $testfile ||
6112                 error "$testfile unable to set user.author2"
6113         setfattr -n user.author3 -v author3 $testfile ||
6114                 error "$testfile unable to set user.author3"
6115         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6116             grep "user.author" | wc -l) -eq 3 ] ||
6117                 error "$testfile missing 3 user.author xattrs"
6118
6119         echo "remove xattr..."
6120         setfattr -x trusted.name1 $testfile ||
6121                 error "$testfile error deleting trusted.name1"
6122         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6123                 error "$testfile did not delete trusted.name1 xattr"
6124
6125         setfattr -x user.author1 $testfile ||
6126                 error "$testfile error deleting user.author1"
6127         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6128                 error "$testfile did not delete trusted.name1 xattr"
6129
6130         # b10667: setting lustre special xattr be silently discarded
6131         echo "set lustre special xattr ..."
6132         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6133                 error "$testfile allowed setting trusted.lov"
6134 }
6135 run_test 102a "user xattr test =================================="
6136
6137 test_102b() {
6138         # b10930: get/set/list trusted.lov xattr
6139         echo "get/set/list trusted.lov xattr ..."
6140         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6141         local testfile=$DIR/$tfile
6142         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6143                 error "setstripe failed"
6144         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6145                 error "getstripe failed"
6146         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6147         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6148
6149         local testfile2=${testfile}2
6150         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6151                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6152
6153         $MCREATE $testfile2
6154         setfattr -n trusted.lov -v $value $testfile2
6155         local stripe_size=$($GETSTRIPE -S $testfile2)
6156         local stripe_count=$($GETSTRIPE -c $testfile2)
6157         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6158         [ $stripe_count -eq $STRIPECOUNT ] ||
6159                 error "stripe count $stripe_count != $STRIPECOUNT"
6160         rm -f $DIR/$tfile
6161 }
6162 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6163
6164 test_102c() {
6165         # b10930: get/set/list lustre.lov xattr
6166         echo "get/set/list lustre.lov xattr ..."
6167         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6168         test_mkdir -p $DIR/$tdir
6169         chown $RUNAS_ID $DIR/$tdir
6170         local testfile=$DIR/$tdir/$tfile
6171         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6172                 error "setstripe failed"
6173         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6174                 error "getstripe failed"
6175         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6176         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6177
6178         local testfile2=${testfile}2
6179         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6180                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6181
6182         $RUNAS $MCREATE $testfile2
6183         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6184         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6185         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6186         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6187         [ $stripe_count -eq $STRIPECOUNT ] ||
6188                 error "stripe count $stripe_count != $STRIPECOUNT"
6189 }
6190 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6191
6192 compare_stripe_info1() {
6193         local stripe_index_all_zero=true
6194
6195         for num in 1 2 3 4; do
6196                 for count in $(seq 1 $STRIPE_COUNT); do
6197                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6198                                 local size=$((STRIPE_SIZE * num))
6199                                 local file=file"$num-$offset-$count"
6200                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6201                                 [ $stripe_size -ne $size ] &&
6202                                     error "$file: size $stripe_size != $size"
6203                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6204                                 # allow fewer stripes to be created, ORI-601
6205                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6206                                     error "$file: count $stripe_count != $count"
6207                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6208                                 [ $stripe_index -ne 0 ] &&
6209                                         stripe_index_all_zero=false
6210                         done
6211                 done
6212         done
6213         $stripe_index_all_zero &&
6214                 error "all files are being extracted starting from OST index 0"
6215         return 0
6216 }
6217
6218 find_lustre_tar() {
6219         [ -n "$(which tar 2>/dev/null)" ] &&
6220                 strings $(which tar) | grep -q "lustre" && echo tar
6221 }
6222
6223 test_102d() {
6224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6225         # b10930: tar test for trusted.lov xattr
6226         TAR=$(find_lustre_tar)
6227         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6228         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6229         setup_test102
6230         test_mkdir -p $DIR/d102d
6231         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6232         cd $DIR/d102d/$tdir
6233         compare_stripe_info1
6234 }
6235 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6236
6237 test_102f() {
6238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6239         # b10930: tar test for trusted.lov xattr
6240         TAR=$(find_lustre_tar)
6241         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6242         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6243         setup_test102
6244         test_mkdir -p $DIR/d102f
6245         cd $DIR
6246         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6247         cd $DIR/d102f/$tdir
6248         compare_stripe_info1
6249 }
6250 run_test 102f "tar copy files, not keep osts ==========="
6251
6252 grow_xattr() {
6253         local xsize=${1:-1024}  # in bytes
6254         local file=$DIR/$tfile
6255
6256         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6257                 skip "must have user_xattr" && return 0
6258         [ -z "$(which setfattr 2>/dev/null)" ] &&
6259                 skip_env "could not find setfattr" && return 0
6260         [ -z "$(which getfattr 2>/dev/null)" ] &&
6261                 skip_env "could not find getfattr" && return 0
6262
6263         touch $file
6264
6265         local value="$(generate_string $xsize)"
6266
6267         local xbig=trusted.big
6268         log "save $xbig on $file"
6269         setfattr -n $xbig -v $value $file ||
6270                 error "saving $xbig on $file failed"
6271
6272         local orig=$(get_xattr_value $xbig $file)
6273         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6274
6275         local xsml=trusted.sml
6276         log "save $xsml on $file"
6277         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6278
6279         local new=$(get_xattr_value $xbig $file)
6280         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6281
6282         log "grow $xsml on $file"
6283         setfattr -n $xsml -v "$value" $file ||
6284                 error "growing $xsml on $file failed"
6285
6286         new=$(get_xattr_value $xbig $file)
6287         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6288         log "$xbig still valid after growing $xsml"
6289
6290         rm -f $file
6291 }
6292
6293 test_102h() { # bug 15777
6294         grow_xattr 1024
6295 }
6296 run_test 102h "grow xattr from inside inode to external block"
6297
6298 test_102ha() {
6299         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6300         grow_xattr $(max_xattr_size)
6301 }
6302 run_test 102ha "grow xattr from inside inode to external inode"
6303
6304 test_102i() { # bug 17038
6305         touch $DIR/$tfile
6306         ln -s $DIR/$tfile $DIR/${tfile}link
6307         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6308         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"
6309         rm -f $DIR/$tfile $DIR/${tfile}link
6310 }
6311 run_test 102i "lgetxattr test on symbolic link ============"
6312
6313 test_102j() {
6314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6315         TAR=$(find_lustre_tar)
6316         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6317         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6318         setup_test102 "$RUNAS"
6319         test_mkdir -p $DIR/d102j
6320         chown $RUNAS_ID $DIR/d102j
6321         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6322         cd $DIR/d102j/$tdir
6323         compare_stripe_info1 "$RUNAS"
6324 }
6325 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6326
6327 test_102k() {
6328         touch $DIR/$tfile
6329         # b22187 just check that does not crash for regular file.
6330         setfattr -n trusted.lov $DIR/$tfile
6331         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6332         local test_kdir=$DIR/d102k
6333         test_mkdir $test_kdir
6334         local default_size=`$GETSTRIPE -S $test_kdir`
6335         local default_count=`$GETSTRIPE -c $test_kdir`
6336         local default_offset=`$GETSTRIPE -i $test_kdir`
6337         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6338                 error 'dir setstripe failed'
6339         setfattr -n trusted.lov $test_kdir
6340         local stripe_size=`$GETSTRIPE -S $test_kdir`
6341         local stripe_count=`$GETSTRIPE -c $test_kdir`
6342         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6343         [ $stripe_size -eq $default_size ] ||
6344                 error "stripe size $stripe_size != $default_size"
6345         [ $stripe_count -eq $default_count ] ||
6346                 error "stripe count $stripe_count != $default_count"
6347         [ $stripe_offset -eq $default_offset ] ||
6348                 error "stripe offset $stripe_offset != $default_offset"
6349         rm -rf $DIR/$tfile $test_kdir
6350 }
6351 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6352
6353 test_102l() {
6354         # LU-532 trusted. xattr is invisible to non-root
6355         local testfile=$DIR/$tfile
6356
6357         touch $testfile
6358
6359         echo "listxattr as user..."
6360         chown $RUNAS_ID $testfile
6361         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6362             grep -q "trusted" &&
6363                 error "$testfile trusted xattrs are user visible"
6364
6365         return 0;
6366 }
6367 run_test 102l "listxattr size test =================================="
6368
6369 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6370         local path=$DIR/$tfile
6371         touch $path
6372
6373         listxattr_size_check $path || error "listattr_size_check $path failed"
6374 }
6375 run_test 102m "Ensure listxattr fails on small bufffer ========"
6376
6377 cleanup_test102
6378
6379 run_acl_subtest()
6380 {
6381     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6382     return $?
6383 }
6384
6385 test_103 () {
6386         [ "$UID" != 0 ] && skip_env "must run as root" && return
6387         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6388                 skip "must have acl enabled" && return
6389         [ -z "$(which setfacl 2>/dev/null)" ] &&
6390                 skip_env "could not find setfacl" && return
6391         $GSS && skip "could not run under gss" && return
6392
6393         declare -a identity_old
6394
6395         for num in $(seq $MDSCOUNT); do
6396                 switch_identity $num true || identity_old[$num]=$?
6397         done
6398
6399         SAVE_UMASK=$(umask)
6400         umask 0022
6401         cd $DIR
6402
6403         echo "performing cp ..."
6404         run_acl_subtest cp || error "run_acl_subtest cp failed"
6405         echo "performing getfacl-noacl..."
6406         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6407         echo "performing misc..."
6408         run_acl_subtest misc || error  "misc test failed"
6409         echo "performing permissions..."
6410         run_acl_subtest permissions || error "permissions failed"
6411         echo "performing setfacl..."
6412         run_acl_subtest setfacl || error  "setfacl test failed"
6413
6414         # inheritance test got from HP
6415         echo "performing inheritance..."
6416         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6417         chmod +x make-tree || error "chmod +x failed"
6418         run_acl_subtest inheritance || error "inheritance test failed"
6419         rm -f make-tree
6420
6421         echo "LU-974 ignore umask when acl is enabled..."
6422         run_acl_subtest 974 || error "LU-974 umask test failed"
6423         if [ $MDSCOUNT -ge 2 ]; then
6424                 run_acl_subtest 974_remote ||
6425                         error "LU-974 umask test failed under remote dir"
6426         fi
6427
6428         echo "LU-2561 newly created file is same size as directory..."
6429         run_acl_subtest 2561 || error "LU-2561 test failed"
6430
6431         cd $SAVE_PWD
6432         umask $SAVE_UMASK
6433
6434         for num in $(seq $MDSCOUNT); do
6435                 if [ "${identity_old[$num]}" = 1 ]; then
6436                         switch_identity $num false || identity_old[$num]=$?
6437                 fi
6438         done
6439 }
6440 run_test 103 "acl test ========================================="
6441
6442 test_104a() {
6443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6444         touch $DIR/$tfile
6445         lfs df || error "lfs df failed"
6446         lfs df -ih || error "lfs df -ih failed"
6447         lfs df -h $DIR || error "lfs df -h $DIR failed"
6448         lfs df -i $DIR || error "lfs df -i $DIR failed"
6449         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6450         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6451
6452         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6453         lctl --device %$OSC deactivate
6454         lfs df || error "lfs df with deactivated OSC failed"
6455         lctl --device %$OSC activate
6456         # wait the osc back to normal
6457         wait_osc_import_state client ost FULL
6458
6459         lfs df || error "lfs df with reactivated OSC failed"
6460         rm -f $DIR/$tfile
6461 }
6462 run_test 104a "lfs df [-ih] [path] test ========================="
6463
6464 test_104b() {
6465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6466         [ $RUNAS_ID -eq $UID ] &&
6467                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6468         chmod 666 /dev/obd
6469         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6470                         grep "Permission denied" | wc -l)))
6471         if [ $denied_cnt -ne 0 ]; then
6472                 error "lfs check servers test failed"
6473         fi
6474 }
6475 run_test 104b "$RUNAS lfs check servers test ===================="
6476
6477 test_105a() {
6478         # doesn't work on 2.4 kernels
6479         touch $DIR/$tfile
6480         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6481                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6482         else
6483                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6484         fi
6485         rm -f $DIR/$tfile
6486 }
6487 run_test 105a "flock when mounted without -o flock test ========"
6488
6489 test_105b() {
6490         touch $DIR/$tfile
6491         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6492                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6493         else
6494                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6495         fi
6496         rm -f $DIR/$tfile
6497 }
6498 run_test 105b "fcntl when mounted without -o flock test ========"
6499
6500 test_105c() {
6501         touch $DIR/$tfile
6502         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6503                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6504         else
6505                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6506         fi
6507         rm -f $DIR/$tfile
6508 }
6509 run_test 105c "lockf when mounted without -o flock test ========"
6510
6511 test_105d() { # bug 15924
6512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6513         test_mkdir -p $DIR/$tdir
6514         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6515                 skip "mount w/o flock enabled" && return
6516         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6517         $LCTL set_param fail_loc=0x80000315
6518         flocks_test 2 $DIR/$tdir
6519 }
6520 run_test 105d "flock race (should not freeze) ========"
6521
6522 test_105e() { # bug 22660 && 22040
6523         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6524                 skip "mount w/o flock enabled" && return
6525         touch $DIR/$tfile
6526         flocks_test 3 $DIR/$tfile
6527 }
6528 run_test 105e "Two conflicting flocks from same process ======="
6529
6530 test_106() { #bug 10921
6531         test_mkdir -p $DIR/$tdir
6532         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6533         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6534 }
6535 run_test 106 "attempt exec of dir followed by chown of that dir"
6536
6537 test_107() {
6538         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6539         CDIR=`pwd`
6540         cd $DIR
6541
6542         local file=core
6543         rm -f $file
6544
6545         local save_pattern=$(sysctl -n kernel.core_pattern)
6546         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6547         sysctl -w kernel.core_pattern=$file
6548         sysctl -w kernel.core_uses_pid=0
6549
6550         ulimit -c unlimited
6551         sleep 60 &
6552         SLEEPPID=$!
6553
6554         sleep 1
6555
6556         kill -s 11 $SLEEPPID
6557         wait $SLEEPPID
6558         if [ -e $file ]; then
6559                 size=`stat -c%s $file`
6560                 [ $size -eq 0 ] && error "Fail to create core file $file"
6561         else
6562                 error "Fail to create core file $file"
6563         fi
6564         rm -f $file
6565         sysctl -w kernel.core_pattern=$save_pattern
6566         sysctl -w kernel.core_uses_pid=$save_uses_pid
6567         cd $CDIR
6568 }
6569 run_test 107 "Coredump on SIG"
6570
6571 test_110() {
6572         test_mkdir -p $DIR/$tdir
6573         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6574                 error "mkdir with 255 char failed"
6575         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6576                 error "mkdir with 256 char should fail, but did not"
6577         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6578                 error "create with 255 char failed"
6579         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6580                 error "create with 256 char should fail, but did not"
6581
6582         ls -l $DIR/$tdir
6583         rm -rf $DIR/$tdir
6584 }
6585 run_test 110 "filename length checking"
6586
6587 test_115() {
6588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6589         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6590             cut -c11-20)
6591         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6592             return
6593         echo "Starting with $OSTIO_pre threads"
6594
6595         NUMTEST=20000
6596         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6597         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6598         echo "$NUMTEST creates/unlinks"
6599         test_mkdir -p $DIR/$tdir
6600         createmany -o $DIR/$tdir/$tfile $NUMTEST
6601         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6602
6603         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6604             cut -c11-20)
6605
6606         # don't return an error
6607         [ $OSTIO_post == $OSTIO_pre ] && echo \
6608             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6609             echo "This may be fine, depending on what ran before this test" &&
6610             echo "and how fast this system is." && return
6611
6612         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6613 }
6614 run_test 115 "verify dynamic thread creation===================="
6615
6616 free_min_max () {
6617         wait_delete_completed
6618         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6619         echo OST kbytes available: ${AVAIL[@]}
6620         MAXI=0; MAXV=${AVAIL[0]}
6621         MINI=0; MINV=${AVAIL[0]}
6622         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6623             #echo OST $i: ${AVAIL[i]}kb
6624             if [ ${AVAIL[i]} -gt $MAXV ]; then
6625                 MAXV=${AVAIL[i]}; MAXI=$i
6626             fi
6627             if [ ${AVAIL[i]} -lt $MINV ]; then
6628                 MINV=${AVAIL[i]}; MINI=$i
6629             fi
6630         done
6631         echo Min free space: OST $MINI: $MINV
6632         echo Max free space: OST $MAXI: $MAXV
6633 }
6634
6635 test_116a() { # was previously test_116()
6636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6637         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6638
6639         echo -n "Free space priority "
6640         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6641                 head -1
6642         declare -a AVAIL
6643         free_min_max
6644
6645         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6646         trap simple_cleanup_common EXIT
6647
6648         # Check if we need to generate uneven OSTs
6649         test_mkdir -p $DIR/$tdir/OST${MINI}
6650         local FILL=$(($MINV / 4))
6651         local DIFF=$(($MAXV - $MINV))
6652         local DIFF2=$(($DIFF * 100 / $MINV))
6653
6654         local threshold=$(do_facet $SINGLEMDS \
6655                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6656         threshold=${threshold%%%}
6657         echo -n "Check for uneven OSTs: "
6658         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6659
6660         if [ $DIFF2 -gt $threshold ]; then
6661                 echo "ok"
6662                 echo "Don't need to fill OST$MINI"
6663         else
6664                 # generate uneven OSTs. Write 2% over the QOS threshold value
6665                 echo "no"
6666                 DIFF=$(($threshold - $DIFF2 + 2))
6667                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6668                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6669                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6670                         error "setstripe failed"
6671                 DIFF=$(($DIFF2 / 2048))
6672                 i=0
6673                 while [ $i -lt $DIFF ]; do
6674                         i=$(($i + 1))
6675                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6676                                 bs=2M count=1 2>/dev/null
6677                         echo -n .
6678                 done
6679                 echo .
6680                 sync
6681                 sleep_maxage
6682                 free_min_max
6683         fi
6684
6685         DIFF=$(($MAXV - $MINV))
6686         DIFF2=$(($DIFF * 100 / $MINV))
6687         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6688         if [ $DIFF2 -gt $threshold ]; then
6689                 echo "ok"
6690         else
6691                 echo "failed - QOS mode won't be used"
6692                 error_ignore 0000 "QOS imbalance criteria not met"
6693                 simple_cleanup_common
6694                 return
6695         fi
6696
6697         MINI1=$MINI; MINV1=$MINV
6698         MAXI1=$MAXI; MAXV1=$MAXV
6699
6700         # now fill using QOS
6701         $SETSTRIPE -c 1 $DIR/$tdir
6702         FILL=$(($FILL / 200))
6703         if [ $FILL -gt 600 ]; then
6704                 FILL=600
6705         fi
6706         echo "writing $FILL files to QOS-assigned OSTs"
6707         i=0
6708         while [ $i -lt $FILL ]; do
6709                 i=$(($i + 1))
6710                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6711                         count=1 2>/dev/null
6712                 echo -n .
6713         done
6714         echo "wrote $i 200k files"
6715         sync
6716         sleep_maxage
6717
6718         echo "Note: free space may not be updated, so measurements might be off"
6719         free_min_max
6720         DIFF2=$(($MAXV - $MINV))
6721         echo "free space delta: orig $DIFF final $DIFF2"
6722         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6723         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6724         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6725         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6726         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6727         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6728         [ $DIFF -gt 0 ] &&
6729                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6730
6731         # Figure out which files were written where
6732         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6733                   awk '/'$MINI1': / {print $2; exit}')
6734         echo $UUID
6735         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6736         echo "$MINC files created on smaller OST $MINI1"
6737         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6738                   awk '/'$MAXI1': / {print $2; exit}')
6739         echo $UUID
6740         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6741         echo "$MAXC files created on larger OST $MAXI1"
6742         FILL=$(($MAXC * 100 / $MINC - 100))
6743         [ $MINC -gt 0 ] &&
6744                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6745         [ $MAXC -gt $MINC ] ||
6746                 error_ignore 0000 "stripe QOS didn't balance free space"
6747
6748         simple_cleanup_common
6749 }
6750 run_test 116a "stripe QOS: free space balance ==================="
6751
6752 test_116b() { # LU-2093
6753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6754 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6755         local old_rr
6756         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6757         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6758         mkdir -p $DIR/$tdir
6759         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6760         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6761         do_facet $SINGLEMDS lctl set_param fail_loc=0
6762         rm -rf $DIR/$tdir
6763         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6764 }
6765 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6766
6767 test_117() # bug 10891
6768 {
6769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6770         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6771         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6772         lctl set_param fail_loc=0x21e
6773         > $DIR/$tfile || error "truncate failed"
6774         lctl set_param fail_loc=0
6775         echo "Truncate succeeded."
6776         rm -f $DIR/$tfile
6777 }
6778 run_test 117 "verify osd extend =========="
6779
6780 NO_SLOW_RESENDCOUNT=4
6781 export OLD_RESENDCOUNT=""
6782 set_resend_count () {
6783         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6784         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6785         lctl set_param -n $PROC_RESENDCOUNT $1
6786         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6787 }
6788
6789 # for reduce test_118* time (b=14842)
6790 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6791
6792 # Reset async IO behavior after error case
6793 reset_async() {
6794         FILE=$DIR/reset_async
6795
6796         # Ensure all OSCs are cleared
6797         $SETSTRIPE -c -1 $FILE
6798         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6799         sync
6800         rm $FILE
6801 }
6802
6803 test_118a() #bug 11710
6804 {
6805         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6806         reset_async
6807
6808         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6809         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6810         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6811
6812         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6813                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6814                 return 1;
6815         fi
6816         rm -f $DIR/$tfile
6817 }
6818 run_test 118a "verify O_SYNC works =========="
6819
6820 test_118b()
6821 {
6822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6823         remote_ost_nodsh && skip "remote OST with nodsh" && return
6824
6825         reset_async
6826
6827         #define OBD_FAIL_OST_ENOENT 0x217
6828         set_nodes_failloc "$(osts_nodes)" 0x217
6829         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6830         RC=$?
6831         set_nodes_failloc "$(osts_nodes)" 0
6832         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6833         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6834                     grep -c writeback)
6835
6836         if [[ $RC -eq 0 ]]; then
6837                 error "Must return error due to dropped pages, rc=$RC"
6838                 return 1;
6839         fi
6840
6841         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6842                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6843                 return 1;
6844         fi
6845
6846         echo "Dirty pages not leaked on ENOENT"
6847
6848         # Due to the above error the OSC will issue all RPCs syncronously
6849         # until a subsequent RPC completes successfully without error.
6850         $MULTIOP $DIR/$tfile Ow4096yc
6851         rm -f $DIR/$tfile
6852
6853         return 0
6854 }
6855 run_test 118b "Reclaim dirty pages on fatal error =========="
6856
6857 test_118c()
6858 {
6859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6860
6861         # for 118c, restore the original resend count, LU-1940
6862         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6863                                 set_resend_count $OLD_RESENDCOUNT
6864         remote_ost_nodsh && skip "remote OST with nodsh" && return
6865
6866         reset_async
6867
6868         #define OBD_FAIL_OST_EROFS               0x216
6869         set_nodes_failloc "$(osts_nodes)" 0x216
6870
6871         # multiop should block due to fsync until pages are written
6872         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6873         MULTIPID=$!
6874         sleep 1
6875
6876         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6877                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6878         fi
6879
6880         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6881                     grep -c writeback)
6882         if [[ $WRITEBACK -eq 0 ]]; then
6883                 error "No page in writeback, writeback=$WRITEBACK"
6884         fi
6885
6886         set_nodes_failloc "$(osts_nodes)" 0
6887         wait $MULTIPID
6888         RC=$?
6889         if [[ $RC -ne 0 ]]; then
6890                 error "Multiop fsync failed, rc=$RC"
6891         fi
6892
6893         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6894         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6895                     grep -c writeback)
6896         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6897                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6898         fi
6899
6900         rm -f $DIR/$tfile
6901         echo "Dirty pages flushed via fsync on EROFS"
6902         return 0
6903 }
6904 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6905
6906 # continue to use small resend count to reduce test_118* time (b=14842)
6907 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6908
6909 test_118d()
6910 {
6911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6912         remote_ost_nodsh && skip "remote OST with nodsh" && return
6913
6914         reset_async
6915
6916         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6917         set_nodes_failloc "$(osts_nodes)" 0x214
6918         # multiop should block due to fsync until pages are written
6919         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6920         MULTIPID=$!
6921         sleep 1
6922
6923         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6924                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6925         fi
6926
6927         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6928                     grep -c writeback)
6929         if [[ $WRITEBACK -eq 0 ]]; then
6930                 error "No page in writeback, writeback=$WRITEBACK"
6931         fi
6932
6933         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6934         set_nodes_failloc "$(osts_nodes)" 0
6935
6936         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6937         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6938                     grep -c writeback)
6939         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6940                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6941         fi
6942
6943         rm -f $DIR/$tfile
6944         echo "Dirty pages gaurenteed flushed via fsync"
6945         return 0
6946 }
6947 run_test 118d "Fsync validation inject a delay of the bulk =========="
6948
6949 test_118f() {
6950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6951         reset_async
6952
6953         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6954         lctl set_param fail_loc=0x8000040a
6955
6956         # Should simulate EINVAL error which is fatal
6957         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6958         RC=$?
6959         if [[ $RC -eq 0 ]]; then
6960                 error "Must return error due to dropped pages, rc=$RC"
6961         fi
6962
6963         lctl set_param fail_loc=0x0
6964
6965         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6966         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6967         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6968                     grep -c writeback)
6969         if [[ $LOCKED -ne 0 ]]; then
6970                 error "Locked pages remain in cache, locked=$LOCKED"
6971         fi
6972
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 "No pages locked after fsync"
6979
6980         reset_async
6981         return 0
6982 }
6983 run_test 118f "Simulate unrecoverable OSC side error =========="
6984
6985 test_118g() {
6986         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6987         reset_async
6988
6989         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6990         lctl set_param fail_loc=0x406
6991
6992         # simulate local -ENOMEM
6993         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6994         RC=$?
6995
6996         lctl set_param fail_loc=0
6997         if [[ $RC -eq 0 ]]; then
6998                 error "Must return error due to dropped pages, rc=$RC"
6999         fi
7000
7001         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7002         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7003         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7004                         grep -c writeback)
7005         if [[ $LOCKED -ne 0 ]]; then
7006                 error "Locked pages remain in cache, locked=$LOCKED"
7007         fi
7008
7009         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7010                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7011         fi
7012
7013         rm -f $DIR/$tfile
7014         echo "No pages locked after fsync"
7015
7016         reset_async
7017         return 0
7018 }
7019 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7020
7021 test_118h() {
7022         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7023         remote_ost_nodsh && skip "remote OST with nodsh" && return
7024
7025         reset_async
7026
7027         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7028         set_nodes_failloc "$(osts_nodes)" 0x20e
7029         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7030         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7031         RC=$?
7032
7033         set_nodes_failloc "$(osts_nodes)" 0
7034         if [[ $RC -eq 0 ]]; then
7035                 error "Must return error due to dropped pages, rc=$RC"
7036         fi
7037
7038         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7039         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7040         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7041                     grep -c writeback)
7042         if [[ $LOCKED -ne 0 ]]; then
7043                 error "Locked pages remain in cache, locked=$LOCKED"
7044         fi
7045
7046         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7047                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7048         fi
7049
7050         rm -f $DIR/$tfile
7051         echo "No pages locked after fsync"
7052
7053         return 0
7054 }
7055 run_test 118h "Verify timeout in handling recoverables errors  =========="
7056
7057 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7058
7059 test_118i() {
7060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7061         remote_ost_nodsh && skip "remote OST with nodsh" && return
7062
7063         reset_async
7064
7065         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7066         set_nodes_failloc "$(osts_nodes)" 0x20e
7067
7068         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7069         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7070         PID=$!
7071         sleep 5
7072         set_nodes_failloc "$(osts_nodes)" 0
7073
7074         wait $PID
7075         RC=$?
7076         if [[ $RC -ne 0 ]]; then
7077                 error "got error, but should be not, rc=$RC"
7078         fi
7079
7080         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7081         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7082         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7083         if [[ $LOCKED -ne 0 ]]; then
7084                 error "Locked pages remain in cache, locked=$LOCKED"
7085         fi
7086
7087         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7088                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7089         fi
7090
7091         rm -f $DIR/$tfile
7092         echo "No pages locked after fsync"
7093
7094         return 0
7095 }
7096 run_test 118i "Fix error before timeout in recoverable error  =========="
7097
7098 [ "$SLOW" = "no" ] && set_resend_count 4
7099
7100 test_118j() {
7101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7102         remote_ost_nodsh && skip "remote OST with nodsh" && return
7103
7104         reset_async
7105
7106         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7107         set_nodes_failloc "$(osts_nodes)" 0x220
7108
7109         # return -EIO from OST
7110         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7111         RC=$?
7112         set_nodes_failloc "$(osts_nodes)" 0x0
7113         if [[ $RC -eq 0 ]]; then
7114                 error "Must return error due to dropped pages, rc=$RC"
7115         fi
7116
7117         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7118         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7119         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7120         if [[ $LOCKED -ne 0 ]]; then
7121                 error "Locked pages remain in cache, locked=$LOCKED"
7122         fi
7123
7124         # in recoverable error on OST we want resend and stay until it finished
7125         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7126                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7127         fi
7128
7129         rm -f $DIR/$tfile
7130         echo "No pages locked after fsync"
7131
7132         return 0
7133 }
7134 run_test 118j "Simulate unrecoverable OST side error =========="
7135
7136 test_118k()
7137 {
7138         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7139         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7140
7141         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7142         set_nodes_failloc "$(osts_nodes)" 0x20e
7143         test_mkdir -p $DIR/$tdir
7144
7145         for ((i=0;i<10;i++)); do
7146                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7147                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7148                 SLEEPPID=$!
7149                 sleep 0.500s
7150                 kill $SLEEPPID
7151                 wait $SLEEPPID
7152         done
7153
7154         set_nodes_failloc "$(osts_nodes)" 0
7155         rm -rf $DIR/$tdir
7156 }
7157 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7158
7159 test_118l()
7160 {
7161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7162         # LU-646
7163         test_mkdir -p $DIR/$tdir
7164         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7165         rm -rf $DIR/$tdir
7166 }
7167 run_test 118l "fsync dir ========="
7168
7169 test_118m() # LU-3066
7170 {
7171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7172         test_mkdir -p $DIR/$tdir
7173         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7174         rm -rf $DIR/$tdir
7175 }
7176 run_test 118m "fdatasync dir ========="
7177
7178 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7179
7180 test_119a() # bug 11737
7181 {
7182         BSIZE=$((512 * 1024))
7183         directio write $DIR/$tfile 0 1 $BSIZE
7184         # We ask to read two blocks, which is more than a file size.
7185         # directio will indicate an error when requested and actual
7186         # sizes aren't equeal (a normal situation in this case) and
7187         # print actual read amount.
7188         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7189         if [ "$NOB" != "$BSIZE" ]; then
7190                 error "read $NOB bytes instead of $BSIZE"
7191         fi
7192         rm -f $DIR/$tfile
7193 }
7194 run_test 119a "Short directIO read must return actual read amount"
7195
7196 test_119b() # bug 11737
7197 {
7198         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7199
7200         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7201         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7202         sync
7203         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7204                 error "direct read failed"
7205         rm -f $DIR/$tfile
7206 }
7207 run_test 119b "Sparse directIO read must return actual read amount"
7208
7209 test_119c() # bug 13099
7210 {
7211         BSIZE=1048576
7212         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7213         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7214         rm -f $DIR/$tfile
7215 }
7216 run_test 119c "Testing for direct read hitting hole"
7217
7218 test_119d() # bug 15950
7219 {
7220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7221         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7222         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7223         BSIZE=1048576
7224         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7225         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7226         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7227         lctl set_param fail_loc=0x40d
7228         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7229         pid_dio=$!
7230         sleep 1
7231         cat $DIR/$tfile > /dev/null &
7232         lctl set_param fail_loc=0
7233         pid_reads=$!
7234         wait $pid_dio
7235         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7236         sleep 2
7237         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7238         error "the read rpcs have not completed in 2s"
7239         rm -f $DIR/$tfile
7240         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7241 }
7242 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7243
7244 test_120a() {
7245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7246         test_mkdir -p $DIR/$tdir
7247         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7248                skip "no early lock cancel on server" && return 0
7249
7250         lru_resize_disable mdc
7251         lru_resize_disable osc
7252         cancel_lru_locks mdc
7253         # asynchronous object destroy at MDT could cause bl ast to client
7254         cancel_lru_locks osc
7255
7256         stat $DIR/$tdir > /dev/null
7257         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7258         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7259         test_mkdir $DIR/$tdir/d1
7260         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7261         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7262         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7263         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7264         lru_resize_enable mdc
7265         lru_resize_enable osc
7266 }
7267 run_test 120a "Early Lock Cancel: mkdir test"
7268
7269 test_120b() {
7270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7271         test_mkdir -p $DIR/$tdir
7272         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7273                skip "no early lock cancel on server" && return 0
7274         lru_resize_disable mdc
7275         lru_resize_disable osc
7276         cancel_lru_locks mdc
7277         stat $DIR/$tdir > /dev/null
7278         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7279         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7280         touch $DIR/$tdir/f1
7281         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7282         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7283         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7284         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7285         lru_resize_enable mdc
7286         lru_resize_enable osc
7287 }
7288 run_test 120b "Early Lock Cancel: create test"
7289
7290 test_120c() {
7291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7292         test_mkdir -p $DIR/$tdir
7293         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7294                skip "no early lock cancel on server" && return 0
7295         lru_resize_disable mdc
7296         lru_resize_disable osc
7297         test_mkdir -p $DIR/$tdir/d1
7298         test_mkdir -p $DIR/$tdir/d2
7299         touch $DIR/$tdir/d1/f1
7300         cancel_lru_locks mdc
7301         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7302         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7303         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7304         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7305         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7306         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7307         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7308         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7309         lru_resize_enable mdc
7310         lru_resize_enable osc
7311 }
7312 run_test 120c "Early Lock Cancel: link test"
7313
7314 test_120d() {
7315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7316         test_mkdir -p $DIR/$tdir
7317         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7318                skip "no early lock cancel on server" && return 0
7319         lru_resize_disable mdc
7320         lru_resize_disable osc
7321         touch $DIR/$tdir
7322         cancel_lru_locks mdc
7323         stat $DIR/$tdir > /dev/null
7324         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7325         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7326         chmod a+x $DIR/$tdir
7327         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7328         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7329         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7330         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7331         lru_resize_enable mdc
7332         lru_resize_enable osc
7333 }
7334 run_test 120d "Early Lock Cancel: setattr test"
7335
7336 test_120e() {
7337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7338         test_mkdir -p $DIR/$tdir
7339         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7340                skip "no early lock cancel on server" && return 0
7341         lru_resize_disable mdc
7342         lru_resize_disable osc
7343         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7344         cancel_lru_locks mdc
7345         cancel_lru_locks osc
7346         dd if=$DIR/$tdir/f1 of=/dev/null
7347         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7348         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7349               awk '/ldlm_cancel/ {print $2}'`
7350         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7351               awk '/ldlm_bl_callback/ {print $2}'`
7352         unlink $DIR/$tdir/f1
7353         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7354               awk '/ldlm_cancel/ {print $2}'`
7355         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7356               awk '/ldlm_bl_callback/ {print $2}'`
7357         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7358         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7359         lru_resize_enable mdc
7360         lru_resize_enable osc
7361 }
7362 run_test 120e "Early Lock Cancel: unlink test"
7363
7364 test_120f() {
7365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7366         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7367                skip "no early lock cancel on server" && return 0
7368         test_mkdir -p $DIR/$tdir
7369         lru_resize_disable mdc
7370         lru_resize_disable osc
7371         test_mkdir -p $DIR/$tdir/d1
7372         test_mkdir -p $DIR/$tdir/d2
7373         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7374         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7375         cancel_lru_locks mdc
7376         cancel_lru_locks osc
7377         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7378         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7379         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7380         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7381               awk '/ldlm_cancel/ {print $2}'`
7382         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7383               awk '/ldlm_bl_callback/ {print $2}'`
7384         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7385         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7386               awk '/ldlm_cancel/ {print $2}'`
7387         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7388               awk '/ldlm_bl_callback/ {print $2}'`
7389         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7390         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7391         lru_resize_enable mdc
7392         lru_resize_enable osc
7393 }
7394 run_test 120f "Early Lock Cancel: rename test"
7395
7396 test_120g() {
7397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7398         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7399                skip "no early lock cancel on server" && return 0
7400         lru_resize_disable mdc
7401         lru_resize_disable osc
7402         count=10000
7403         echo create $count files
7404         test_mkdir -p $DIR/$tdir
7405         cancel_lru_locks mdc
7406         cancel_lru_locks osc
7407         t0=`date +%s`
7408
7409         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7410               awk '/ldlm_cancel/ {print $2}'`
7411         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7412               awk '/ldlm_bl_callback/ {print $2}'`
7413         createmany -o $DIR/$tdir/f $count
7414         sync
7415         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7416               awk '/ldlm_cancel/ {print $2}'`
7417         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7418               awk '/ldlm_bl_callback/ {print $2}'`
7419         t1=`date +%s`
7420         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7421         echo rm $count files
7422         rm -r $DIR/$tdir
7423         sync
7424         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7425               awk '/ldlm_cancel/ {print $2}'`
7426         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7427               awk '/ldlm_bl_callback/ {print $2}'`
7428         t2=`date +%s`
7429         echo total: $count removes in $((t2-t1))
7430         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7431         sleep 2
7432         # wait for commitment of removal
7433         lru_resize_enable mdc
7434         lru_resize_enable osc
7435 }
7436 run_test 120g "Early Lock Cancel: performance test"
7437
7438 test_121() { #bug #10589
7439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7440         rm -rf $DIR/$tfile
7441         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7442 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7443         lctl set_param fail_loc=0x310
7444         cancel_lru_locks osc > /dev/null
7445         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7446         lctl set_param fail_loc=0
7447         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7448 }
7449 run_test 121 "read cancel race ========="
7450
7451 test_123a() { # was test 123, statahead(bug 11401)
7452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7453         SLOWOK=0
7454         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7455             log "testing on UP system. Performance may be not as good as expected."
7456                         SLOWOK=1
7457         fi
7458
7459         rm -rf $DIR/$tdir
7460         test_mkdir -p $DIR/$tdir
7461         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7462         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7463         MULT=10
7464         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7465                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7466
7467                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7468                 lctl set_param -n llite.*.statahead_max 0
7469                 lctl get_param llite.*.statahead_max
7470                 cancel_lru_locks mdc
7471                 cancel_lru_locks osc
7472                 stime=`date +%s`
7473                 time ls -l $DIR/$tdir | wc -l
7474                 etime=`date +%s`
7475                 delta=$((etime - stime))
7476                 log "ls $i files without statahead: $delta sec"
7477                 lctl set_param llite.*.statahead_max=$max
7478
7479                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7480                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7481                 cancel_lru_locks mdc
7482                 cancel_lru_locks osc
7483                 stime=`date +%s`
7484                 time ls -l $DIR/$tdir | wc -l
7485                 etime=`date +%s`
7486                 delta_sa=$((etime - stime))
7487                 log "ls $i files with statahead: $delta_sa sec"
7488                 lctl get_param -n llite.*.statahead_stats
7489                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7490
7491                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7492                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7493
7494                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7495                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7496                     lctl set_param -n llite.*.statahead_max 0
7497                     lctl get_param llite.*.statahead_max
7498                     cancel_lru_locks mdc
7499                     cancel_lru_locks osc
7500                     stime=`date +%s`
7501                     time ls -l $DIR/$tdir | wc -l
7502                     etime=`date +%s`
7503                     delta=$((etime - stime))
7504                     log "ls $i files again without statahead: $delta sec"
7505                     lctl set_param llite.*.statahead_max=$max
7506                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7507                         if [  $SLOWOK -eq 0 ]; then
7508                                 error "ls $i files is slower with statahead!"
7509                         else
7510                                 log "ls $i files is slower with statahead!"
7511                         fi
7512                         break
7513                     fi
7514                 fi
7515
7516                 [ $delta -gt 20 ] && break
7517                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7518                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7519         done
7520         log "ls done"
7521
7522         stime=`date +%s`
7523         rm -r $DIR/$tdir
7524         sync
7525         etime=`date +%s`
7526         delta=$((etime - stime))
7527         log "rm -r $DIR/$tdir/: $delta seconds"
7528         log "rm done"
7529         lctl get_param -n llite.*.statahead_stats
7530 }
7531 run_test 123a "verify statahead work"
7532
7533 test_123b () { # statahead(bug 15027)
7534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7535         test_mkdir -p $DIR/$tdir
7536         createmany -o $DIR/$tdir/$tfile-%d 1000
7537
7538         cancel_lru_locks mdc
7539         cancel_lru_locks osc
7540
7541 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7542         lctl set_param fail_loc=0x80000803
7543         ls -lR $DIR/$tdir > /dev/null
7544         log "ls done"
7545         lctl set_param fail_loc=0x0
7546         lctl get_param -n llite.*.statahead_stats
7547         rm -r $DIR/$tdir
7548         sync
7549
7550 }
7551 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7552
7553 test_124a() {
7554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7555         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7556                skip "no lru resize on server" && return 0
7557         local NR=2000
7558         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7559
7560         log "create $NR files at $DIR/$tdir"
7561         createmany -o $DIR/$tdir/f $NR ||
7562                 error "failed to create $NR files in $DIR/$tdir"
7563
7564         cancel_lru_locks mdc
7565         ls -l $DIR/$tdir > /dev/null
7566
7567         local NSDIR=""
7568         local LRU_SIZE=0
7569         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7570                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7571                 LRU_SIZE=$(lctl get_param -n $PARAM)
7572                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7573                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7574                                                 log "NSDIR=$NSDIR"
7575                         log "NS=$(basename $NSDIR)"
7576                         break
7577                 fi
7578         done
7579
7580         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7581                 skip "Not enough cached locks created!"
7582                 return 0
7583         fi
7584         log "LRU=$LRU_SIZE"
7585
7586         local SLEEP=30
7587
7588         # We know that lru resize allows one client to hold $LIMIT locks
7589         # for 10h. After that locks begin to be killed by client.
7590         local MAX_HRS=10
7591         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7592                 log "LIMIT=$LIMIT"
7593
7594         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7595         # killing locks. Some time was spent for creating locks. This means
7596         # that up to the moment of sleep finish we must have killed some of
7597         # them (10-100 locks). This depends on how fast ther were created.
7598         # Many of them were touched in almost the same moment and thus will
7599         # be killed in groups.
7600         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7601
7602         # Use $LRU_SIZE_B here to take into account real number of locks
7603         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7604         local LRU_SIZE_B=$LRU_SIZE
7605         log "LVF=$LVF"
7606         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7607                 log "OLD_LVF=$OLD_LVF"
7608         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7609
7610         # Let's make sure that we really have some margin. Client checks
7611         # cached locks every 10 sec.
7612         SLEEP=$((SLEEP+20))
7613         log "Sleep ${SLEEP} sec"
7614         local SEC=0
7615         while ((SEC<$SLEEP)); do
7616                 echo -n "..."
7617                 sleep 5
7618                 SEC=$((SEC+5))
7619                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7620                 echo -n "$LRU_SIZE"
7621         done
7622         echo ""
7623         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7624         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7625
7626         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7627                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7628                 unlinkmany $DIR/$tdir/f $NR
7629                 return
7630         }
7631
7632         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7633         log "unlink $NR files at $DIR/$tdir"
7634         unlinkmany $DIR/$tdir/f $NR
7635 }
7636 run_test 124a "lru resize ======================================="
7637
7638 get_max_pool_limit()
7639 {
7640         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7641         local max=0
7642         for l in $limit; do
7643                 if test $l -gt $max; then
7644                         max=$l
7645                 fi
7646         done
7647         echo $max
7648 }
7649
7650 test_124b() {
7651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7652         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7653                skip "no lru resize on server" && return 0
7654
7655         LIMIT=`get_max_pool_limit`
7656
7657         NR=$(($(default_lru_size)*20))
7658         if [ $NR -gt $LIMIT ]; then
7659                 log "Limit lock number by $LIMIT locks"
7660                 NR=$LIMIT
7661         fi
7662         lru_resize_disable mdc
7663         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7664                 error "failed to create $DIR/$tdir/disable_lru_resize"
7665
7666         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7667         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7668         cancel_lru_locks mdc
7669         stime=`date +%s`
7670         PID=""
7671         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7672         PID="$PID $!"
7673         sleep 2
7674         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7675         PID="$PID $!"
7676         sleep 2
7677         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7678         PID="$PID $!"
7679         wait $PID
7680         etime=`date +%s`
7681         nolruresize_delta=$((etime-stime))
7682         log "ls -la time: $nolruresize_delta seconds"
7683         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7684         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7685
7686         lru_resize_enable mdc
7687         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7688                 error "failed to create $DIR/$tdir/enable_lru_resize"
7689
7690         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7691         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7692         cancel_lru_locks mdc
7693         stime=`date +%s`
7694         PID=""
7695         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7696         PID="$PID $!"
7697         sleep 2
7698         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7699         PID="$PID $!"
7700         sleep 2
7701         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7702         PID="$PID $!"
7703         wait $PID
7704         etime=`date +%s`
7705         lruresize_delta=$((etime-stime))
7706         log "ls -la time: $lruresize_delta seconds"
7707         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7708
7709         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7710                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7711         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7712                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7713         else
7714                 log "lru resize performs the same with no lru resize"
7715         fi
7716         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7717 }
7718 run_test 124b "lru resize (performance test) ======================="
7719
7720 test_125() { # 13358
7721         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7722         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7723         test_mkdir -p $DIR/d125 || error "mkdir failed"
7724         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7725         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7726         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7727 }
7728 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7729
7730 test_126() { # bug 12829/13455
7731         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7732         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7733         $GSS && skip "must run as gss disabled" && return
7734
7735         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7736         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7737         rm -f $DIR/$tfile
7738         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7739 }
7740 run_test 126 "check that the fsgid provided by the client is taken into account"
7741
7742 test_127a() { # bug 15521
7743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7744         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7745         $LCTL set_param osc.*.stats=0
7746         FSIZE=$((2048 * 1024))
7747         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7748         cancel_lru_locks osc
7749         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7750
7751         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7752         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7753                 echo "got $COUNT $NAME"
7754                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7755                 eval $NAME=$COUNT || error "Wrong proc format"
7756
7757                 case $NAME in
7758                         read_bytes|write_bytes)
7759                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7760                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7761                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7762                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7763                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7764                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7765                                 error "sumsquare is too small: $SUMSQ"
7766                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7767                                 error "sumsquare is too big: $SUMSQ"
7768                         ;;
7769                         *) ;;
7770                 esac
7771         done < $DIR/${tfile}.tmp
7772
7773         #check that we actually got some stats
7774         [ "$read_bytes" ] || error "Missing read_bytes stats"
7775         [ "$write_bytes" ] || error "Missing write_bytes stats"
7776         [ "$read_bytes" != 0 ] || error "no read done"
7777         [ "$write_bytes" != 0 ] || error "no write done"
7778 }
7779 run_test 127a "verify the client stats are sane"
7780
7781 test_127b() { # bug LU-333
7782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7783         $LCTL set_param llite.*.stats=0
7784         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7785         # perform 2 reads and writes so MAX is different from SUM.
7786         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7787         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7788         cancel_lru_locks osc
7789         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7790         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7791
7792         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7793         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7794                 echo "got $COUNT $NAME"
7795                 eval $NAME=$COUNT || error "Wrong proc format"
7796
7797         case $NAME in
7798                 read_bytes)
7799                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7800                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7801                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7802                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7803                         ;;
7804                 write_bytes)
7805                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7806                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7807                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7808                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7809                         ;;
7810                         *) ;;
7811                 esac
7812         done < $TMP/${tfile}.tmp
7813
7814         #check that we actually got some stats
7815         [ "$read_bytes" ] || error "Missing read_bytes stats"
7816         [ "$write_bytes" ] || error "Missing write_bytes stats"
7817         [ "$read_bytes" != 0 ] || error "no read done"
7818         [ "$write_bytes" != 0 ] || error "no write done"
7819 }
7820 run_test 127b "verify the llite client stats are sane"
7821
7822 test_128() { # bug 15212
7823         touch $DIR/$tfile
7824         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7825                 find $DIR/$tfile
7826                 find $DIR/$tfile
7827         EOF
7828
7829         result=$(grep error $TMP/$tfile.log)
7830         rm -f $DIR/$tfile
7831         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7832 }
7833 run_test 128 "interactive lfs for 2 consecutive find's"
7834
7835 set_dir_limits () {
7836         local mntdev
7837         local canondev
7838         local node
7839
7840         local LDPROC=/proc/fs/ldiskfs
7841         local facets=$(get_facets MDS)
7842
7843         for facet in ${facets//,/ }; do
7844                 canondev=$(ldiskfs_canon \
7845                            *.$(convert_facet2label $facet).mntdev $facet)
7846                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7847                                                 LDPROC=/sys/fs/ldiskfs
7848                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7849         done
7850 }
7851
7852 test_129() {
7853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7854         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7855                 skip "Only applicable to ldiskfs-based MDTs"
7856                 return
7857         fi
7858         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7859
7860         ENOSPC=28
7861         EFBIG=27
7862
7863         test_mkdir -p $DIR/$tdir
7864
7865         MAX=$(stat -c%s "$DIR/$tdir")
7866         set_dir_limits $MAX
7867         local I=0
7868         local J=0
7869         while [ ! $I -gt $MAX ]; do
7870                 $MULTIOP $DIR/$tdir/$J Oc
7871                 rc=$?
7872                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7873                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7874                 #and EFBIG for previous versions
7875                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7876                         set_dir_limits 0
7877                         echo "return code $rc received as expected"
7878                         multiop $DIR/$tdir/$J Oc
7879                         rc=$?
7880                         I=$(stat -c%s "$DIR/$tdir")
7881                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7882                                 return 0
7883                         else
7884                                 error_exit "return code $rc current dir size $I " \
7885                                            "previous limit $MAX"
7886                         fi
7887                 elif [ $rc -ne 0 ]; then
7888                         set_dir_limits 0
7889                         error_exit "return code $rc received instead of expected " \
7890                                    "$EFBIG or $ENOSPC, files in dir $I"
7891                 fi
7892                 J=$((J+1))
7893                 I=$(stat -c%s "$DIR/$tdir")
7894         done
7895
7896         set_dir_limits 0
7897         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7898 }
7899 run_test 129 "test directory size limit ========================"
7900
7901 OLDIFS="$IFS"
7902 cleanup_130() {
7903         trap 0
7904         IFS="$OLDIFS"
7905 }
7906
7907 test_130a() {
7908         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7909         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7910                 return
7911
7912         trap cleanup_130 EXIT RETURN
7913
7914         local fm_file=$DIR/$tfile
7915         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7916         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7917                 error "dd failed for $fm_file"
7918
7919         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7920         filefrag -ves $fm_file
7921         RC=$?
7922         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7923                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7924         [ $RC != 0 ] && error "filefrag $fm_file failed"
7925
7926         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7927                       grep -v "ext:" | grep -v "found")
7928         lun=$($GETSTRIPE -i $fm_file)
7929
7930         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7931         IFS=$'\n'
7932         tot_len=0
7933         for line in $filefrag_op
7934         do
7935                 frag_lun=`echo $line | cut -d: -f5`
7936                 ext_len=`echo $line | cut -d: -f4`
7937                 if (( $frag_lun != $lun )); then
7938                         cleanup_130
7939                         error "FIEMAP on 1-stripe file($fm_file) failed"
7940                         return
7941                 fi
7942                 (( tot_len += ext_len ))
7943         done
7944
7945         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7946                 cleanup_130
7947                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7948                 return
7949         fi
7950
7951         cleanup_130
7952
7953         echo "FIEMAP on single striped file succeeded"
7954 }
7955 run_test 130a "FIEMAP (1-stripe file)"
7956
7957 test_130b() {
7958         [ "$OSTCOUNT" -lt "2" ] &&
7959                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7960
7961         [ "$OSTCOUNT" -ge "10" ] &&
7962                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7963
7964         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7965         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7966                 return
7967
7968         trap cleanup_130 EXIT RETURN
7969
7970         local fm_file=$DIR/$tfile
7971         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7972         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7973                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7974
7975         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7976                 error "dd failed on $fm_file"
7977
7978         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7979         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7980                       grep -v "ext:" | grep -v "found")
7981
7982         last_lun=$(echo $filefrag_op | cut -d: -f5)
7983
7984         IFS=$'\n'
7985         tot_len=0
7986         num_luns=1
7987         for line in $filefrag_op
7988         do
7989                 frag_lun=`echo $line | cut -d: -f5`
7990                 ext_len=`echo $line | cut -d: -f4`
7991                 if (( $frag_lun != $last_lun )); then
7992                         if (( tot_len != 1024 )); then
7993                                 cleanup_130
7994                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7995                                 return
7996                         else
7997                                 (( num_luns += 1 ))
7998                                 tot_len=0
7999                         fi
8000                 fi
8001                 (( tot_len += ext_len ))
8002                 last_lun=$frag_lun
8003         done
8004         if (( num_luns != 2 || tot_len != 1024 )); then
8005                 cleanup_130
8006                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8007                 return
8008         fi
8009
8010         cleanup_130
8011
8012         echo "FIEMAP on 2-stripe file succeeded"
8013 }
8014 run_test 130b "FIEMAP (2-stripe file)"
8015
8016 test_130c() {
8017         [ "$OSTCOUNT" -lt "2" ] &&
8018                 skip_env "skipping FIEMAP on 2-stripe file" && return
8019
8020         [ "$OSTCOUNT" -ge "10" ] &&
8021                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8022
8023         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8024         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8025                 return
8026
8027         trap cleanup_130 EXIT RETURN
8028
8029         local fm_file=$DIR/$tfile
8030         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8031         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8032                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8033
8034         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8035
8036         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8037         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8038
8039         last_lun=`echo $filefrag_op | cut -d: -f5`
8040
8041         IFS=$'\n'
8042         tot_len=0
8043         num_luns=1
8044         for line in $filefrag_op
8045         do
8046                 frag_lun=`echo $line | cut -d: -f5`
8047                 ext_len=`echo $line | cut -d: -f4`
8048                 if (( $frag_lun != $last_lun )); then
8049                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8050                         if (( logical != 512 )); then
8051                                 cleanup_130
8052                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8053                                 return
8054                         fi
8055                         if (( tot_len != 512 )); then
8056                                 cleanup_130
8057                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8058                                 return
8059                         else
8060                                 (( num_luns += 1 ))
8061                                 tot_len=0
8062                         fi
8063                 fi
8064                 (( tot_len += ext_len ))
8065                 last_lun=$frag_lun
8066         done
8067         if (( num_luns != 2 || tot_len != 512 )); then
8068                 cleanup_130
8069                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8070                 return
8071         fi
8072
8073         cleanup_130
8074
8075         echo "FIEMAP on 2-stripe file with hole succeeded"
8076 }
8077 run_test 130c "FIEMAP (2-stripe file with hole)"
8078
8079 test_130d() {
8080         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8081
8082         [ "$OSTCOUNT" -ge "10" ] &&
8083                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8084
8085         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8086         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8087
8088         trap cleanup_130 EXIT RETURN
8089
8090         local fm_file=$DIR/$tfile
8091         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8092         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8093                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8094
8095         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8096         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8097                 error "dd failed on $fm_file"
8098
8099         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8100         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8101                 grep -v "ext:" | grep -v "found"`
8102
8103         last_lun=`echo $filefrag_op | cut -d: -f5`
8104
8105         IFS=$'\n'
8106         tot_len=0
8107         num_luns=1
8108         for line in $filefrag_op
8109         do
8110                 frag_lun=`echo $line | cut -d: -f5`
8111                 ext_len=`echo $line | cut -d: -f4`
8112                 if (( $frag_lun != $last_lun )); then
8113                         if (( tot_len != 1024 )); then
8114                                 cleanup_130
8115                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8116                                 return
8117                         else
8118                                 (( num_luns += 1 ))
8119                                 tot_len=0
8120                         fi
8121                 fi
8122                 (( tot_len += ext_len ))
8123                 last_lun=$frag_lun
8124         done
8125         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8126                 cleanup_130
8127                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8128                 return
8129         fi
8130
8131         cleanup_130
8132
8133         echo "FIEMAP on N-stripe file succeeded"
8134 }
8135 run_test 130d "FIEMAP (N-stripe file)"
8136
8137 test_130e() {
8138         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8139
8140         [ "$OSTCOUNT" -ge "10" ] &&
8141                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8142
8143         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8144         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8145
8146         trap cleanup_130 EXIT RETURN
8147
8148         local fm_file=$DIR/$tfile
8149         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8150         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8151                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8152
8153         NUM_BLKS=512
8154         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8155         for ((i = 0; i < $NUM_BLKS; i++))
8156         do
8157                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8158         done
8159
8160         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8161         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8162
8163         last_lun=`echo $filefrag_op | cut -d: -f5`
8164
8165         IFS=$'\n'
8166         tot_len=0
8167         num_luns=1
8168         for line in $filefrag_op
8169         do
8170                 frag_lun=`echo $line | cut -d: -f5`
8171                 ext_len=`echo $line | cut -d: -f4`
8172                 if (( $frag_lun != $last_lun )); then
8173                         if (( tot_len != $EXPECTED_LEN )); then
8174                                 cleanup_130
8175                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8176                                 return
8177                         else
8178                                 (( num_luns += 1 ))
8179                                 tot_len=0
8180                         fi
8181                 fi
8182                 (( tot_len += ext_len ))
8183                 last_lun=$frag_lun
8184         done
8185         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8186                 cleanup_130
8187                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8188                 return
8189         fi
8190
8191         cleanup_130
8192
8193         echo "FIEMAP with continuation calls succeeded"
8194 }
8195 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8196
8197 # Test for writev/readv
8198 test_131a() {
8199         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8200         error "writev test failed"
8201         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8202         error "readv failed"
8203         rm -f $DIR/$tfile
8204 }
8205 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8206
8207 test_131b() {
8208         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8209         error "append writev test failed"
8210         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8211         error "append writev test failed"
8212         rm -f $DIR/$tfile
8213 }
8214 run_test 131b "test append writev"
8215
8216 test_131c() {
8217         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8218         error "NOT PASS"
8219 }
8220 run_test 131c "test read/write on file w/o objects"
8221
8222 test_131d() {
8223         rwv -f $DIR/$tfile -w -n 1 1572864
8224         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8225         if [ "$NOB" != 1572864 ]; then
8226                 error "Short read filed: read $NOB bytes instead of 1572864"
8227         fi
8228         rm -f $DIR/$tfile
8229 }
8230 run_test 131d "test short read"
8231
8232 test_131e() {
8233         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8234         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8235         error "read hitting hole failed"
8236         rm -f $DIR/$tfile
8237 }
8238 run_test 131e "test read hitting hole"
8239
8240 get_ost_param() {
8241         local token=$1
8242         local gl_sum=0
8243         for node in $(osts_nodes); do
8244                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8245                 [ x$gl = x"" ] && gl=0
8246                 gl_sum=$((gl_sum + gl))
8247         done
8248         echo $gl_sum
8249 }
8250
8251 som_mode_switch() {
8252         local som=$1
8253         local gl1=$2
8254         local gl2=$3
8255
8256         if [ x$som = x"enabled" ]; then
8257                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8258                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8259                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8260         else
8261                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8262                 MOUNTOPT="$MOUNTOPT,som_preview"
8263                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8264         fi
8265
8266         # do remount to make new mount-conf parameters actual
8267         echo remounting...
8268         sync
8269         stopall
8270         setupall
8271 }
8272
8273 test_132() { #1028, SOM
8274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8275         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8276         local num=$(get_mds_dir $DIR)
8277         local mymds=mds${num}
8278         local MOUNTOPT_SAVE=$MOUNTOPT
8279
8280         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8281         cancel_lru_locks osc
8282
8283         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8284
8285         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8286         stat $DIR/$tfile >/dev/null
8287         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8288         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8289         rm $DIR/$tfile
8290         som_mode_switch $som1 $gl1 $gl2
8291
8292         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8293         cancel_lru_locks osc
8294
8295         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8296         if [ $som1 == $som2 ]; then
8297             error "som is still "$som2
8298             if [ x$som2 = x"enabled" ]; then
8299                 som2="disabled"
8300             else
8301                 som2="enabled"
8302             fi
8303         fi
8304
8305         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8306         stat $DIR/$tfile >/dev/null
8307         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8308         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8309         som_mode_switch $som2 $gl1 $gl2
8310         MOUNTOPT=$MOUNTOPT_SAVE
8311 }
8312 run_test 132 "som avoids glimpse rpc"
8313
8314 check_stats() {
8315         local res
8316         local count
8317         case $1 in
8318         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8319                  ;;
8320         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8321                  ;;
8322         *) error "Wrong argument $1" ;;
8323         esac
8324         echo $res
8325         count=`echo $res | awk '{print $2}'`
8326         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8327         # if the argument $3 is zero, it means any stat increment is ok.
8328         if [ $3 -gt 0 ] ; then
8329                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8330         fi
8331 }
8332
8333 test_133a() {
8334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8335         remote_ost_nodsh && skip "remote OST with nodsh" && return
8336         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8337
8338         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8339                 { skip "MDS doesn't support rename stats"; return; }
8340         local testdir=$DIR/${tdir}/stats_testdir
8341         mkdir -p $DIR/${tdir}
8342
8343         # clear stats.
8344         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8345         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8346
8347         # verify mdt stats first.
8348         mkdir ${testdir} || error "mkdir failed"
8349         check_stats $SINGLEMDS "mkdir" 1
8350         touch ${testdir}/${tfile} || "touch failed"
8351         check_stats $SINGLEMDS "open" 1
8352         check_stats $SINGLEMDS "close" 1
8353         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8354         check_stats $SINGLEMDS "mknod" 1
8355         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8356         check_stats $SINGLEMDS "unlink" 1
8357         rm -f ${testdir}/${tfile} || error "file remove failed"
8358         check_stats $SINGLEMDS "unlink" 2
8359
8360         # remove working dir and check mdt stats again.
8361         rmdir ${testdir} || error "rmdir failed"
8362         check_stats $SINGLEMDS "rmdir" 1
8363
8364         local testdir1=$DIR/${tdir}/stats_testdir1
8365         mkdir -p ${testdir}
8366         mkdir -p ${testdir1}
8367         touch ${testdir1}/test1
8368         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8369         check_stats $SINGLEMDS "crossdir_rename" 1
8370
8371         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8372         check_stats $SINGLEMDS "samedir_rename" 1
8373
8374         rm -rf $DIR/${tdir}
8375 }
8376 run_test 133a "Verifying MDT stats ========================================"
8377
8378 test_133b() {
8379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8380         remote_ost_nodsh && skip "remote OST with nodsh" && return
8381         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8382         local testdir=$DIR/${tdir}/stats_testdir
8383         mkdir -p ${testdir} || error "mkdir failed"
8384         touch ${testdir}/${tfile} || "touch failed"
8385         cancel_lru_locks mdc
8386
8387         # clear stats.
8388         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8389         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8390
8391         # extra mdt stats verification.
8392         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8393         check_stats $SINGLEMDS "setattr" 1
8394         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8395         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8396         then            # LU-1740
8397                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8398                 check_stats $SINGLEMDS "getattr" 1
8399         fi
8400         $LFS df || error "lfs failed"
8401         check_stats $SINGLEMDS "statfs" 1
8402
8403         rm -rf $DIR/${tdir}
8404 }
8405 run_test 133b "Verifying extra MDT stats =================================="
8406
8407 test_133c() {
8408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8409         remote_ost_nodsh && skip "remote OST with nodsh" && return
8410         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8411         local testdir=$DIR/${tdir}/stats_testdir
8412         test_mkdir -p ${testdir} || error "mkdir failed"
8413
8414         # verify obdfilter stats.
8415         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8416         sync
8417         cancel_lru_locks osc
8418         wait_delete_completed
8419
8420         # clear stats.
8421         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8422         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8423
8424         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8425         sync
8426         cancel_lru_locks osc
8427         check_stats ost "write" 1
8428
8429         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8430         check_stats ost "read" 1
8431
8432         > ${testdir}/${tfile} || error "truncate failed"
8433         check_stats ost "punch" 1
8434
8435         rm -f ${testdir}/${tfile} || error "file remove failed"
8436         wait_delete_completed
8437         check_stats ost "destroy" 1
8438
8439         rm -rf $DIR/${tdir}
8440 }
8441 run_test 133c "Verifying OST stats ========================================"
8442
8443 order_2() {
8444     local value=$1
8445     local orig=$value
8446     local order=1
8447
8448     while [ $value -ge 2 ]; do
8449         order=$((order*2))
8450         value=$((value/2))
8451     done
8452
8453     if [ $orig -gt $order ]; then
8454         order=$((order*2))
8455     fi
8456     echo $order
8457 }
8458
8459 size_in_KMGT() {
8460     local value=$1
8461     local size=('K' 'M' 'G' 'T');
8462     local i=0
8463     local size_string=$value
8464
8465     while [ $value -ge 1024 ]; do
8466         if [ $i -gt 3 ]; then
8467             #T is the biggest unit we get here, if that is bigger,
8468             #just return XXXT
8469             size_string=${value}T
8470             break
8471         fi
8472         value=$((value >> 10))
8473         if [ $value -lt 1024 ]; then
8474             size_string=${value}${size[$i]}
8475             break
8476         fi
8477         i=$((i + 1))
8478     done
8479
8480     echo $size_string
8481 }
8482
8483 get_rename_size() {
8484     local size=$1
8485     local context=${2:-.}
8486     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8487                 grep -A1 $context |
8488                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8489     echo $sample
8490 }
8491
8492 test_133d() {
8493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8494         remote_ost_nodsh && skip "remote OST with nodsh" && return
8495         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8496         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8497         { skip "MDS doesn't support rename stats"; return; }
8498
8499         local testdir1=$DIR/${tdir}/stats_testdir1
8500         local testdir2=$DIR/${tdir}/stats_testdir2
8501
8502         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8503
8504         mkdir -p ${testdir1} || error "mkdir failed"
8505         mkdir -p ${testdir2} || error "mkdir failed"
8506
8507         createmany -o $testdir1/test 512 || error "createmany failed"
8508
8509         # check samedir rename size
8510         mv ${testdir1}/test0 ${testdir1}/test_0
8511
8512         local testdir1_size=$(ls -l $DIR/${tdir} |
8513                 awk '/stats_testdir1/ {print $5}')
8514         local testdir2_size=$(ls -l $DIR/${tdir} |
8515                 awk '/stats_testdir2/ {print $5}')
8516
8517         testdir1_size=$(order_2 $testdir1_size)
8518         testdir2_size=$(order_2 $testdir2_size)
8519
8520         testdir1_size=$(size_in_KMGT $testdir1_size)
8521         testdir2_size=$(size_in_KMGT $testdir2_size)
8522
8523         echo "source rename dir size: ${testdir1_size}"
8524         echo "target rename dir size: ${testdir2_size}"
8525
8526         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8527         eval $cmd || error "$cmd failed"
8528         local samedir=$($cmd | grep 'same_dir')
8529         local same_sample=$(get_rename_size $testdir1_size)
8530         [ -z "$samedir" ] && error "samedir_rename_size count error"
8531         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8532         echo "Check same dir rename stats success"
8533
8534         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8535
8536         # check crossdir rename size
8537         mv ${testdir1}/test_0 ${testdir2}/test_0
8538
8539         testdir1_size=$(ls -l $DIR/${tdir} |
8540                 awk '/stats_testdir1/ {print $5}')
8541         testdir2_size=$(ls -l $DIR/${tdir} |
8542                 awk '/stats_testdir2/ {print $5}')
8543
8544         testdir1_size=$(order_2 $testdir1_size)
8545         testdir2_size=$(order_2 $testdir2_size)
8546
8547         testdir1_size=$(size_in_KMGT $testdir1_size)
8548         testdir2_size=$(size_in_KMGT $testdir2_size)
8549
8550         echo "source rename dir size: ${testdir1_size}"
8551         echo "target rename dir size: ${testdir2_size}"
8552
8553         eval $cmd || error "$cmd failed"
8554         local crossdir=$($cmd | grep 'crossdir')
8555         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8556         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8557         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8558         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8559         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8560         echo "Check cross dir rename stats success"
8561         rm -rf $DIR/${tdir}
8562 }
8563 run_test 133d "Verifying rename_stats ========================================"
8564
8565 test_133e() {
8566         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8567         local testdir=$DIR/${tdir}/stats_testdir
8568         local ctr f0 f1 bs=32768 count=42 sum
8569
8570         remote_ost_nodsh && skip "remote OST with nodsh" && return
8571         mkdir -p ${testdir} || error "mkdir failed"
8572
8573         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8574
8575         for ctr in {write,read}_bytes; do
8576                 sync
8577                 cancel_lru_locks osc
8578
8579                 do_facet ost1 $LCTL set_param -n \
8580                         "obdfilter.*.exports.clear=clear"
8581
8582                 if [ $ctr = write_bytes ]; then
8583                         f0=/dev/zero
8584                         f1=${testdir}/${tfile}
8585                 else
8586                         f0=${testdir}/${tfile}
8587                         f1=/dev/null
8588                 fi
8589
8590                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8591                         error "dd failed"
8592                 sync
8593                 cancel_lru_locks osc
8594
8595                 sum=$(do_facet ost1 $LCTL get_param \
8596                                 "obdfilter.*.exports.*.stats" | \
8597                           awk -v ctr=$ctr '\
8598                                 BEGIN { sum = 0 }
8599                                 $1 == ctr { sum += $7 }
8600                                 END { print sum }')
8601
8602                 if ((sum != bs * count)); then
8603                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8604                 fi
8605         done
8606
8607         rm -rf $DIR/${tdir}
8608 }
8609 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8610
8611 test_133f() {
8612         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8613         local facet
8614
8615         # First without trusting modes.
8616         find $proc_dirs \
8617                 -exec cat '{}' \; &> /dev/null
8618
8619         # Second verifying readability.
8620         find $proc_dirs \
8621                 -type f \
8622                 -readable \
8623                 -exec cat '{}' \; > /dev/null ||
8624                         error "proc file read failed"
8625
8626         for facet in $SINGLEMDS ost1; do
8627                 do_facet $facet find $proc_dirs \
8628                         -not -name req_history \
8629                         -exec cat '{}' \\\; &> /dev/null
8630
8631             do_facet $facet     find $proc_dirs \
8632                         -not -name req_history \
8633                         -type f \
8634                         -readable \
8635                         -exec cat '{}' \\\; > /dev/null ||
8636                                 error "proc file read failed"
8637         done
8638 }
8639 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8640
8641 test_140() { #bug-17379
8642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8643         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8644         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8645         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8646
8647         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8648         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8649         local i=0
8650         while i=`expr $i + 1`; do
8651                 test_mkdir -p $i || error "Creating dir $i"
8652                 cd $i || error "Changing to $i"
8653                 ln -s ../stat stat || error "Creating stat symlink"
8654                 # Read the symlink until ELOOP present,
8655                 # not LBUGing the system is considered success,
8656                 # we didn't overrun the stack.
8657                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8658                 [ $ret -ne 0 ] && {
8659                         if [ $ret -eq 40 ]; then
8660                                 break  # -ELOOP
8661                         else
8662                                 error "Open stat symlink"
8663                                 return
8664                         fi
8665                 }
8666         done
8667         i=`expr $i - 1`
8668         echo "The symlink depth = $i"
8669         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8670                                         error "Invalid symlink depth"
8671
8672         # Test recursive symlink
8673         ln -s symlink_self symlink_self
8674         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8675         echo "open symlink_self returns $ret"
8676         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8677 }
8678 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8679
8680 test_150() {
8681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8682         local TF="$TMP/$tfile"
8683
8684         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8685         cp $TF $DIR/$tfile
8686         cancel_lru_locks osc
8687         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8688         remount_client $MOUNT
8689         df -P $MOUNT
8690         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8691
8692         $TRUNCATE $TF 6000
8693         $TRUNCATE $DIR/$tfile 6000
8694         cancel_lru_locks osc
8695         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8696
8697         echo "12345" >>$TF
8698         echo "12345" >>$DIR/$tfile
8699         cancel_lru_locks osc
8700         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8701
8702         echo "12345" >>$TF
8703         echo "12345" >>$DIR/$tfile
8704         cancel_lru_locks osc
8705         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8706
8707         rm -f $TF
8708         true
8709 }
8710 run_test 150 "truncate/append tests"
8711
8712 #LU-2902 roc_hit was not able to read all values from lproc
8713 function roc_hit_init() {
8714         local list=$(comma_list $(osts_nodes))
8715         local dir=$DIR/$tdir-check
8716         local file=$dir/file
8717         local BEFORE
8718         local AFTER
8719         local idx
8720
8721         test_mkdir -p $dir
8722         #use setstripe to do a write to every ost
8723         for i in $(seq 0 $((OSTCOUNT-1))); do
8724                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8725                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8726                 idx=$(printf %04x $i)
8727                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8728                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8729                 if [ -z "$BEFORE" ]; then
8730                         BEFORE=0
8731                 fi
8732
8733                 cancel_lru_locks osc
8734                 cat $file >/dev/null
8735
8736                 AFTER=$(get_osd_param $list *OST*$idx stats |
8737                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8738
8739                 echo BEFORE:$BEFORE AFTER:$AFTER
8740                 if ! let "AFTER - BEFORE == 4"; then
8741                         rm -rf $dir
8742                         error "roc_hit is not safe to use"
8743                 fi
8744                 rm $file
8745         done
8746
8747         rm -rf $dir
8748 }
8749
8750 function roc_hit() {
8751         local list=$(comma_list $(osts_nodes))
8752         echo $(get_osd_param $list '' stats |
8753                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8754 }
8755
8756 function set_cache() {
8757         local on=1
8758
8759         if [ "$2" == "off" ]; then
8760                 on=0;
8761         fi
8762         local list=$(comma_list $(osts_nodes))
8763         set_osd_param $list '' $1_cache_enable $on
8764
8765         cancel_lru_locks osc
8766 }
8767
8768 test_151() {
8769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8770         remote_ost_nodsh && skip "remote OST with nodsh" && return
8771
8772         local CPAGES=3
8773         local list=$(comma_list $(osts_nodes))
8774
8775         # check whether obdfilter is cache capable at all
8776         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8777                 echo "not cache-capable obdfilter"
8778                 return 0
8779         fi
8780
8781         # check cache is enabled on all obdfilters
8782         if get_osd_param $list '' read_cache_enable | grep 0; then
8783                 echo "oss cache is disabled"
8784                 return 0
8785         fi
8786
8787         set_osd_param $list '' writethrough_cache_enable 1
8788
8789         # check write cache is enabled on all obdfilters
8790         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8791                 echo "oss write cache is NOT enabled"
8792                 return 0
8793         fi
8794
8795         roc_hit_init
8796
8797         #define OBD_FAIL_OBD_NO_LRU  0x609
8798         do_nodes $list $LCTL set_param fail_loc=0x609
8799
8800         # pages should be in the case right after write
8801         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8802                 error "dd failed"
8803
8804         local BEFORE=$(roc_hit)
8805         cancel_lru_locks osc
8806         cat $DIR/$tfile >/dev/null
8807         local AFTER=$(roc_hit)
8808
8809         do_nodes $list $LCTL set_param fail_loc=0
8810
8811         if ! let "AFTER - BEFORE == CPAGES"; then
8812                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8813         fi
8814
8815         # the following read invalidates the cache
8816         cancel_lru_locks osc
8817         set_osd_param $list '' read_cache_enable 0
8818         cat $DIR/$tfile >/dev/null
8819
8820         # now data shouldn't be found in the cache
8821         BEFORE=$(roc_hit)
8822         cancel_lru_locks osc
8823         cat $DIR/$tfile >/dev/null
8824         AFTER=$(roc_hit)
8825         if let "AFTER - BEFORE != 0"; then
8826                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8827         fi
8828
8829         set_osd_param $list '' read_cache_enable 1
8830         rm -f $DIR/$tfile
8831 }
8832 run_test 151 "test cache on oss and controls ==============================="
8833
8834 test_152() {
8835         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8836         local TF="$TMP/$tfile"
8837
8838         # simulate ENOMEM during write
8839 #define OBD_FAIL_OST_NOMEM      0x226
8840         lctl set_param fail_loc=0x80000226
8841         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8842         cp $TF $DIR/$tfile
8843         sync || error "sync failed"
8844         lctl set_param fail_loc=0
8845
8846         # discard client's cache
8847         cancel_lru_locks osc
8848
8849         # simulate ENOMEM during read
8850         lctl set_param fail_loc=0x80000226
8851         cmp $TF $DIR/$tfile || error "cmp failed"
8852         lctl set_param fail_loc=0
8853
8854         rm -f $TF
8855 }
8856 run_test 152 "test read/write with enomem ============================"
8857
8858 test_153() {
8859         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8860 }
8861 run_test 153 "test if fdatasync does not crash ======================="
8862
8863 dot_lustre_fid_permission_check() {
8864         local fid=$1
8865         local ffid=$MOUNT/.lustre/fid/$fid
8866         local test_dir=$2
8867
8868         echo "stat fid $fid"
8869         stat $ffid > /dev/null || error "stat $ffid failed."
8870         echo "touch fid $fid"
8871         touch $ffid || error "touch $ffid failed."
8872         echo "write to fid $fid"
8873         cat /etc/hosts > $ffid || error "write $ffid failed."
8874         echo "read fid $fid"
8875         diff /etc/hosts $ffid || error "read $ffid failed."
8876         echo "append write to fid $fid"
8877         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8878         echo "rename fid $fid"
8879         mv $ffid $test_dir/$tfile.1 &&
8880                 error "rename $ffid to $tfile.1 should fail."
8881         touch $test_dir/$tfile.1
8882         mv $test_dir/$tfile.1 $ffid &&
8883                 error "rename $tfile.1 to $ffid should fail."
8884         rm -f $test_dir/$tfile.1
8885         echo "truncate fid $fid"
8886         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8887         echo "link fid $fid"
8888         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8889         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8890                 echo "setfacl fid $fid"
8891                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8892                 echo "getfacl fid $fid"
8893                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8894         fi
8895         echo "unlink fid $fid"
8896         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8897         echo "mknod fid $fid"
8898         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8899
8900         fid=[0xf00000400:0x1:0x0]
8901         ffid=$MOUNT/.lustre/fid/$fid
8902
8903         echo "stat non-exist fid $fid"
8904         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8905         echo "write to non-exist fid $fid"
8906         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8907         echo "link new fid $fid"
8908         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8909
8910         mkdir -p $test_dir/$tdir
8911         touch $test_dir/$tdir/$tfile
8912         fid=$($LFS path2fid $test_dir/$tdir)
8913         rc=$?
8914         [ $rc -ne 0 ] &&
8915                 error "error: could not get fid for $test_dir/$dir/$tfile."
8916
8917         ffid=$MOUNT/.lustre/fid/$fid
8918
8919         echo "ls $fid"
8920         ls $ffid > /dev/null || error "ls $ffid failed."
8921         echo "touch $fid/$tfile.1"
8922         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8923
8924         echo "touch $MOUNT/.lustre/fid/$tfile"
8925         touch $MOUNT/.lustre/fid/$tfile && \
8926                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8927
8928         echo "setxattr to $MOUNT/.lustre/fid"
8929         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8930
8931         echo "listxattr for $MOUNT/.lustre/fid"
8932         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8933
8934         echo "delxattr from $MOUNT/.lustre/fid"
8935         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8936
8937         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8938         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8939                 error "touch invalid fid should fail."
8940
8941         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8942         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8943                 error "touch non-normal fid should fail."
8944
8945         echo "rename $tdir to $MOUNT/.lustre/fid"
8946         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8947                 error "rename to $MOUNT/.lustre/fid should fail."
8948
8949         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
8950         then            # LU-3547
8951                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8952                 local new_obf_mode=777
8953
8954                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8955                 chmod $new_obf_mode $DIR/.lustre/fid ||
8956                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8957
8958                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8959                 [ $obf_mode -eq $new_obf_mode ] ||
8960                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8961
8962                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8963                 chmod $old_obf_mode $DIR/.lustre/fid ||
8964                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8965         fi
8966
8967         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8968         fid=$($LFS path2fid $test_dir/$tfile-2)
8969         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8970         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8971                 error "create lov data thru .lustre should fail."
8972         echo "cp /etc/passwd $test_dir/$tfile-2"
8973         cp /etc/passwd $test_dir/$tfile-2 ||
8974                 error "copy to $test_dir/$tfile-2 failed."
8975         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8976         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8977                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8978
8979         rm -rf $test_dir/tfile.lnk
8980         rm -rf $test_dir/$tfile-2
8981 }
8982
8983 test_154A() {
8984         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
8985                 skip "Need MDS version at least 2.4.1" && return
8986
8987         touch $DIR/$tfile
8988         local FID=$($LFS path2fid $DIR/$tfile)
8989         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
8990
8991         # check that we get the same pathname back
8992         local FOUND=$($LFS fid2path $MOUNT $FID)
8993         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
8994         [ "$FOUND" != "$DIR/$tfile" ] &&
8995                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
8996
8997         rm -rf $DIR/$tfile
8998 }
8999 run_test 154A "lfs path2fid and fid2path basic checks"
9000
9001 test_154a() {
9002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9003         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9004                 { skip "Need MDS version at least 2.2.51"; return 0; }
9005
9006         cp /etc/hosts $DIR/$tfile
9007
9008         fid=$($LFS path2fid $DIR/$tfile)
9009         rc=$?
9010         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9011
9012         dot_lustre_fid_permission_check "$fid" $DIR ||
9013                 error "dot lustre permission check $fid failed"
9014
9015         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9016
9017         touch $MOUNT/.lustre/file &&
9018                 error "creation is not allowed under .lustre"
9019
9020         mkdir $MOUNT/.lustre/dir &&
9021                 error "mkdir is not allowed under .lustre"
9022
9023         rm -rf $DIR/$tfile
9024 }
9025 run_test 154a "Open-by-FID"
9026
9027 test_154b() {
9028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9029         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9030                 { skip "Need MDS version at least 2.2.51"; return 0; }
9031
9032         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9033
9034         local remote_dir=$DIR/$tdir/remote_dir
9035         local MDTIDX=1
9036         local rc=0
9037
9038         mkdir -p $DIR/$tdir
9039         $LFS mkdir -i $MDTIDX $remote_dir ||
9040                 error "create remote directory failed"
9041
9042         cp /etc/hosts $remote_dir/$tfile
9043
9044         fid=$($LFS path2fid $remote_dir/$tfile)
9045         rc=$?
9046         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9047
9048         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9049                 error "dot lustre permission check $fid failed"
9050         rm -rf $DIR/$tdir
9051 }
9052 run_test 154b "Open-by-FID for remote directory"
9053
9054 test_154c() {
9055         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9056                 skip "Need MDS version at least 2.4.1" && return
9057
9058         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9059         local FID1=$($LFS path2fid $DIR/$tfile.1)
9060         local FID2=$($LFS path2fid $DIR/$tfile.2)
9061         local FID3=$($LFS path2fid $DIR/$tfile.3)
9062
9063         local N=1
9064         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9065                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9066                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9067                 local want=FID$N
9068                 [ "$FID" = "${!want}" ] ||
9069                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9070                 N=$((N + 1))
9071         done
9072
9073         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9074                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9075                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9076                 N=$((N + 1))
9077         done
9078 }
9079 run_test 154c "lfs path2fid and fid2path multiple arguments"
9080
9081 test_155_small_load() {
9082     local temp=$TMP/$tfile
9083     local file=$DIR/$tfile
9084
9085     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9086         error "dd of=$temp bs=6096 count=1 failed"
9087     cp $temp $file
9088     cancel_lru_locks osc
9089     cmp $temp $file || error "$temp $file differ"
9090
9091     $TRUNCATE $temp 6000
9092     $TRUNCATE $file 6000
9093     cmp $temp $file || error "$temp $file differ (truncate1)"
9094
9095     echo "12345" >>$temp
9096     echo "12345" >>$file
9097     cmp $temp $file || error "$temp $file differ (append1)"
9098
9099     echo "12345" >>$temp
9100     echo "12345" >>$file
9101     cmp $temp $file || error "$temp $file differ (append2)"
9102
9103     rm -f $temp $file
9104     true
9105 }
9106
9107 test_155_big_load() {
9108     remote_ost_nodsh && skip "remote OST with nodsh" && return
9109     local temp=$TMP/$tfile
9110     local file=$DIR/$tfile
9111
9112     free_min_max
9113     local cache_size=$(do_facet ost$((MAXI+1)) \
9114         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9115     local large_file_size=$((cache_size * 2))
9116
9117     echo "OSS cache size: $cache_size KB"
9118     echo "Large file size: $large_file_size KB"
9119
9120     [ $MAXV -le $large_file_size ] && \
9121         skip_env "max available OST size needs > $large_file_size KB" && \
9122         return 0
9123
9124     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9125
9126     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9127         error "dd of=$temp bs=$large_file_size count=1k failed"
9128     cp $temp $file
9129     ls -lh $temp $file
9130     cancel_lru_locks osc
9131     cmp $temp $file || error "$temp $file differ"
9132
9133     rm -f $temp $file
9134     true
9135 }
9136
9137 test_155a() {
9138         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9139         set_cache read on
9140         set_cache writethrough on
9141         test_155_small_load
9142 }
9143 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9144
9145 test_155b() {
9146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9147         set_cache read on
9148         set_cache writethrough off
9149         test_155_small_load
9150 }
9151 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9152
9153 test_155c() {
9154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9155         set_cache read off
9156         set_cache writethrough on
9157         test_155_small_load
9158 }
9159 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9160
9161 test_155d() {
9162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9163         set_cache read off
9164         set_cache writethrough off
9165         test_155_small_load
9166 }
9167 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9168
9169 test_155e() {
9170         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9171         set_cache read on
9172         set_cache writethrough on
9173         test_155_big_load
9174 }
9175 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9176
9177 test_155f() {
9178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9179         set_cache read on
9180         set_cache writethrough off
9181         test_155_big_load
9182 }
9183 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9184
9185 test_155g() {
9186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9187         set_cache read off
9188         set_cache writethrough on
9189         test_155_big_load
9190 }
9191 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9192
9193 test_155h() {
9194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9195         set_cache read off
9196         set_cache writethrough off
9197         test_155_big_load
9198 }
9199 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9200
9201 test_156() {
9202         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9203         local CPAGES=3
9204         local BEFORE
9205         local AFTER
9206         local file="$DIR/$tfile"
9207
9208         [ "$(facet_fstype ost1)" = "zfs" ] &&
9209                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9210                 return
9211
9212         roc_hit_init
9213
9214     log "Turn on read and write cache"
9215     set_cache read on
9216     set_cache writethrough on
9217
9218     log "Write data and read it back."
9219     log "Read should be satisfied from the cache."
9220     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9221     BEFORE=`roc_hit`
9222     cancel_lru_locks osc
9223     cat $file >/dev/null
9224     AFTER=`roc_hit`
9225     if ! let "AFTER - BEFORE == CPAGES"; then
9226         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9227     else
9228         log "cache hits:: before: $BEFORE, after: $AFTER"
9229     fi
9230
9231     log "Read again; it should be satisfied from the cache."
9232     BEFORE=$AFTER
9233     cancel_lru_locks osc
9234     cat $file >/dev/null
9235     AFTER=`roc_hit`
9236     if ! let "AFTER - BEFORE == CPAGES"; then
9237         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9238     else
9239         log "cache hits:: before: $BEFORE, after: $AFTER"
9240     fi
9241
9242
9243     log "Turn off the read cache and turn on the write cache"
9244     set_cache read off
9245     set_cache writethrough on
9246
9247     log "Read again; it should be satisfied from the cache."
9248     BEFORE=`roc_hit`
9249     cancel_lru_locks osc
9250     cat $file >/dev/null
9251     AFTER=`roc_hit`
9252     if ! let "AFTER - BEFORE == CPAGES"; then
9253         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9254     else
9255         log "cache hits:: before: $BEFORE, after: $AFTER"
9256     fi
9257
9258     log "Read again; it should not be satisfied from the cache."
9259     BEFORE=$AFTER
9260     cancel_lru_locks osc
9261     cat $file >/dev/null
9262     AFTER=`roc_hit`
9263     if ! let "AFTER - BEFORE == 0"; then
9264         error "IN CACHE: before: $BEFORE, after: $AFTER"
9265     else
9266         log "cache hits:: before: $BEFORE, after: $AFTER"
9267     fi
9268
9269     log "Write data and read it back."
9270     log "Read should be satisfied from the cache."
9271     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9272     BEFORE=`roc_hit`
9273     cancel_lru_locks osc
9274     cat $file >/dev/null
9275     AFTER=`roc_hit`
9276     if ! let "AFTER - BEFORE == CPAGES"; then
9277         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9278     else
9279         log "cache hits:: before: $BEFORE, after: $AFTER"
9280     fi
9281
9282     log "Read again; it should not be satisfied from the cache."
9283     BEFORE=$AFTER
9284     cancel_lru_locks osc
9285     cat $file >/dev/null
9286     AFTER=`roc_hit`
9287     if ! let "AFTER - BEFORE == 0"; then
9288         error "IN CACHE: before: $BEFORE, after: $AFTER"
9289     else
9290         log "cache hits:: before: $BEFORE, after: $AFTER"
9291     fi
9292
9293
9294     log "Turn off read and write cache"
9295     set_cache read off
9296     set_cache writethrough off
9297
9298     log "Write data and read it back"
9299     log "It should not be satisfied from the cache."
9300     rm -f $file
9301     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9302     cancel_lru_locks osc
9303     BEFORE=`roc_hit`
9304     cat $file >/dev/null
9305     AFTER=`roc_hit`
9306     if ! let "AFTER - BEFORE == 0"; then
9307         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9308     else
9309         log "cache hits:: before: $BEFORE, after: $AFTER"
9310     fi
9311
9312
9313     log "Turn on the read cache and turn off the write cache"
9314     set_cache read on
9315     set_cache writethrough off
9316
9317     log "Write data and read it back"
9318     log "It should not be satisfied from the cache."
9319     rm -f $file
9320     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9321     BEFORE=`roc_hit`
9322     cancel_lru_locks osc
9323     cat $file >/dev/null
9324     AFTER=`roc_hit`
9325     if ! let "AFTER - BEFORE == 0"; then
9326         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9327     else
9328         log "cache hits:: before: $BEFORE, after: $AFTER"
9329     fi
9330
9331     log "Read again; it should be satisfied from the cache."
9332     BEFORE=`roc_hit`
9333     cancel_lru_locks osc
9334     cat $file >/dev/null
9335     AFTER=`roc_hit`
9336     if ! let "AFTER - BEFORE == CPAGES"; then
9337         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9338     else
9339         log "cache hits:: before: $BEFORE, after: $AFTER"
9340     fi
9341
9342     rm -f $file
9343 }
9344 run_test 156 "Verification of tunables ============================"
9345
9346 #Changelogs
9347 err17935 () {
9348         if [ $MDSCOUNT -gt 1 ]; then
9349                 error_ignore 17935 $*
9350         else
9351                 error $*
9352         fi
9353 }
9354
9355 changelog_chmask()
9356 {
9357         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9358
9359         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9360
9361         if [ $MASK -eq 1 ]; then
9362                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9363         else
9364                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9365         fi
9366 }
9367
9368 changelog_extract_field() {
9369         local mdt=$1
9370         local cltype=$2
9371         local file=$3
9372         local identifier=$4
9373
9374         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9375                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9376                 tail -1
9377 }
9378
9379 test_160a() {
9380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9381         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9382         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9383                 { skip "Need MDS version at least 2.2.0"; return; }
9384
9385         local CL_USERS="mdd.$MDT0.changelog_users"
9386         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9387         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9388         echo "Registered as changelog user $USER"
9389         $GET_CL_USERS | grep -q $USER ||
9390                 error "User $USER not found in changelog_users"
9391
9392         # change something
9393         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9394         touch $DIR/$tdir/pics/2008/zachy/timestamp
9395         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9396         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9397         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9398         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9399         rm $DIR/$tdir/pics/desktop.jpg
9400
9401         $LFS changelog $MDT0 | tail -5
9402
9403         echo "verifying changelog mask"
9404         changelog_chmask "MKDIR"
9405         changelog_chmask "CLOSE"
9406
9407         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9408         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9409
9410         changelog_chmask "MKDIR"
9411         changelog_chmask "CLOSE"
9412
9413         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9414         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9415
9416         $LFS changelog $MDT0
9417         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9418         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9419         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9420         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9421
9422         # verify contents
9423         echo "verifying target fid"
9424         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9425         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9426         [ "$fidc" == "$fidf" ] ||
9427                 err17935 "fid in changelog $fidc != file fid $fidf"
9428         echo "verifying parent fid"
9429         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9430         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9431         [ "$fidc" == "$fidf" ] ||
9432                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9433
9434         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9435         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9436         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9437         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9438         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9439                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9440
9441         MIN_REC=$($GET_CL_USERS |
9442                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9443         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9444         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9445         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9446                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9447
9448         # LU-3446 changelog index reset on MDT restart
9449         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9450         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9451         $LFS changelog_clear $MDT0 $USER 0
9452         stop $SINGLEMDS || error "Fail to stop MDT."
9453         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9454         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9455         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9456         [ $CUR_REC1 == $CUR_REC2 ] ||
9457                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9458
9459         echo "verifying user deregister"
9460         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9461         $GET_CL_USERS | grep -q $USER &&
9462                 error "User $USER still in changelog_users"
9463
9464         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9465         if [ $USERS -eq 0 ]; then
9466                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9467                 touch $DIR/$tdir/chloe
9468                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9469                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9470                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9471         else
9472                 echo "$USERS other changelog users; can't verify off"
9473         fi
9474 }
9475 run_test 160a "changelog sanity"
9476
9477 test_160b() { # LU-3587
9478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9479         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9480         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9481                 { skip "Need MDS version at least 2.2.0"; return; }
9482
9483         local CL_USERS="mdd.$MDT0.changelog_users"
9484         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9485         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9486         echo "Registered as changelog user $USER"
9487         $GET_CL_USERS | grep -q $USER ||
9488                 error "User $USER not found in changelog_users"
9489
9490         local LONGNAME1=$(str_repeat a 255)
9491         local LONGNAME2=$(str_repeat b 255)
9492
9493         cd $DIR
9494         echo "creating very long named file"
9495         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9496         echo "moving very long named file"
9497         mv $LONGNAME1 $LONGNAME2
9498
9499         $LFS changelog $MDT0 | grep RENME
9500
9501         echo "deregistering $USER"
9502         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9503
9504         rm -f $LONGNAME2
9505 }
9506 run_test 160b "Verify that very long rename doesn't crash in changelog"
9507
9508 test_161a() {
9509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9510     test_mkdir -p $DIR/$tdir
9511     cp /etc/hosts $DIR/$tdir/$tfile
9512     test_mkdir $DIR/$tdir/foo1
9513     test_mkdir $DIR/$tdir/foo2
9514     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9515     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9516     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9517     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9518         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9519         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9520                 $LFS fid2path $DIR $FID
9521                 err17935 "bad link ea"
9522         fi
9523     # middle
9524     rm $DIR/$tdir/foo2/zachary
9525     # last
9526     rm $DIR/$tdir/foo2/thor
9527     # first
9528     rm $DIR/$tdir/$tfile
9529     # rename
9530     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9531     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9532         then
9533         $LFS fid2path $DIR $FID
9534         err17935 "bad link rename"
9535     fi
9536     rm $DIR/$tdir/foo2/maggie
9537
9538     # overflow the EA
9539     local longname=filename_avg_len_is_thirty_two_
9540     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9541         error "failed to hardlink many files"
9542     links=$($LFS fid2path $DIR $FID | wc -l)
9543     echo -n "${links}/1000 links in link EA"
9544     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9545     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9546         error "failed to unlink many hardlinks"
9547 }
9548 run_test 161a "link ea sanity"
9549
9550 test_161b() {
9551         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9552         [ $MDSCOUNT -lt 2 ] &&
9553                 skip "skipping remote directory test" && return
9554         local MDTIDX=1
9555         local remote_dir=$DIR/$tdir/remote_dir
9556
9557         mkdir -p $DIR/$tdir
9558         $LFS mkdir -i $MDTIDX $remote_dir ||
9559                 error "create remote directory failed"
9560
9561         cp /etc/hosts $remote_dir/$tfile
9562         mkdir -p $remote_dir/foo1
9563         mkdir -p $remote_dir/foo2
9564         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9565         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9566         ln $remote_dir/$tfile $remote_dir/foo1/luna
9567         ln $remote_dir/$tfile $remote_dir/foo2/thor
9568
9569         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9570                      tr -d ']')
9571         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9572                 $LFS fid2path $DIR $FID
9573                 err17935 "bad link ea"
9574         fi
9575         # middle
9576         rm $remote_dir/foo2/zachary
9577         # last
9578         rm $remote_dir/foo2/thor
9579         # first
9580         rm $remote_dir/$tfile
9581         # rename
9582         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9583         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9584         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9585                 $LFS fid2path $DIR $FID
9586                 err17935 "bad link rename"
9587         fi
9588         rm $remote_dir/foo2/maggie
9589
9590         # overflow the EA
9591         local longname=filename_avg_len_is_thirty_two_
9592         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9593                 error "failed to hardlink many files"
9594         links=$($LFS fid2path $DIR $FID | wc -l)
9595         echo -n "${links}/1000 links in link EA"
9596         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9597         unlinkmany $remote_dir/foo2/$longname 1000 ||
9598         error "failed to unlink many hardlinks"
9599 }
9600 run_test 161b "link ea sanity under remote directory"
9601
9602 test_161c() {
9603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9604         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9605                 skip "Need MDS version at least 2.1.5" && return
9606
9607         # define CLF_RENAME_LAST 0x0001
9608         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9609         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9610                 changelog_register -n)
9611         rm -rf $DIR/$tdir
9612         mkdir -p $DIR/$tdir
9613         touch $DIR/$tdir/foo_161c
9614         touch $DIR/$tdir/bar_161c
9615         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9616         $LFS changelog $MDT0 | grep RENME
9617         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9618                 cut -f5 -d' ')
9619         $LFS changelog_clear $MDT0 $USER 0
9620         if [ x$flags != "x0x1" ]; then
9621                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9622                         $USER
9623                 error "flag $flags is not 0x1"
9624         fi
9625         echo "rename overwrite a target having nlink = 1," \
9626                 "changelog record has flags of $flags"
9627
9628         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9629         touch $DIR/$tdir/foo_161c
9630         touch $DIR/$tdir/bar_161c
9631         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9632         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9633         $LFS changelog $MDT0 | grep RENME
9634         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9635         $LFS changelog_clear $MDT0 $USER 0
9636         if [ x$flags != "x0x0" ]; then
9637                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9638                         $USER
9639                 error "flag $flags is not 0x0"
9640         fi
9641         echo "rename overwrite a target having nlink > 1," \
9642                 "changelog record has flags of $flags"
9643
9644         # rename doesn't overwrite a target (changelog flag 0x0)
9645         touch $DIR/$tdir/foo_161c
9646         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9647         $LFS changelog $MDT0 | grep RENME
9648         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9649         $LFS changelog_clear $MDT0 $USER 0
9650         if [ x$flags != "x0x0" ]; then
9651                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9652                         $USER
9653                 error "flag $flags is not 0x0"
9654         fi
9655         echo "rename doesn't overwrite a target," \
9656                 "changelog record has flags of $flags"
9657
9658         # define CLF_UNLINK_LAST 0x0001
9659         # unlink a file having nlink = 1 (changelog flag 0x1)
9660         rm -f $DIR/$tdir/foo2_161c
9661         $LFS changelog $MDT0 | grep UNLNK
9662         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9663         $LFS changelog_clear $MDT0 $USER 0
9664         if [ x$flags != "x0x1" ]; then
9665                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9666                         $USER
9667                 error "flag $flags is not 0x1"
9668         fi
9669         echo "unlink a file having nlink = 1," \
9670                 "changelog record has flags of $flags"
9671
9672         # unlink a file having nlink > 1 (changelog flag 0x0)
9673         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9674         rm -f $DIR/$tdir/foobar_161c
9675         $LFS changelog $MDT0 | grep UNLNK
9676         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9677         $LFS changelog_clear $MDT0 $USER 0
9678         if [ x$flags != "x0x0" ]; then
9679                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9680                         $USER
9681                 error "flag $flags is not 0x0"
9682         fi
9683         echo "unlink a file having nlink > 1," \
9684                 "changelog record has flags of $flags"
9685         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9686 }
9687 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9688
9689 check_path() {
9690     local expected=$1
9691     shift
9692     local fid=$2
9693
9694     local path=$(${LFS} fid2path $*)
9695     RC=$?
9696
9697     if [ $RC -ne 0 ]; then
9698         err17935 "path looked up of $expected failed. Error $RC"
9699         return $RC
9700     elif [ "${path}" != "${expected}" ]; then
9701         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9702         return 2
9703     fi
9704     echo "fid $fid resolves to path $path (expected $expected)"
9705 }
9706
9707 test_162() {
9708         # Make changes to filesystem
9709         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9710         test_mkdir -p $DIR/$tdir/d2
9711         touch $DIR/$tdir/d2/$tfile
9712         touch $DIR/$tdir/d2/x1
9713         touch $DIR/$tdir/d2/x2
9714         test_mkdir -p $DIR/$tdir/d2/a/b/c
9715         test_mkdir -p $DIR/$tdir/d2/p/q/r
9716         # regular file
9717         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9718         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9719
9720         # softlink
9721         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9722         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9723         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9724
9725         # softlink to wrong file
9726         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9727         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9728         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9729
9730         # hardlink
9731         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9732         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9733         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9734         # fid2path dir/fsname should both work
9735         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9736         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9737
9738         # hardlink count: check that there are 2 links
9739         # Doesnt work with CMD yet: 17935
9740         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9741                 err17935 "expected 2 links"
9742
9743         # hardlink indexing: remove the first link
9744         rm $DIR/$tdir/d2/p/q/r/hlink
9745         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9746
9747         return 0
9748 }
9749 run_test 162 "path lookup sanity"
9750
9751 test_169() {
9752         # do directio so as not to populate the page cache
9753         log "creating a 10 Mb file"
9754         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9755         log "starting reads"
9756         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9757         log "truncating the file"
9758         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9759         log "killing dd"
9760         kill %+ || true # reads might have finished
9761         echo "wait until dd is finished"
9762         wait
9763         log "removing the temporary file"
9764         rm -rf $DIR/$tfile || error "tmp file removal failed"
9765 }
9766 run_test 169 "parallel read and truncate should not deadlock"
9767
9768 test_170() {
9769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9770         $LCTL clear     # bug 18514
9771         $LCTL debug_daemon start $TMP/${tfile}_log_good
9772         touch $DIR/$tfile
9773         $LCTL debug_daemon stop
9774         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9775                error "sed failed to read log_good"
9776
9777         $LCTL debug_daemon start $TMP/${tfile}_log_good
9778         rm -rf $DIR/$tfile
9779         $LCTL debug_daemon stop
9780
9781         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9782                error "lctl df log_bad failed"
9783
9784         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9785         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9786
9787         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9788         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9789
9790         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9791                 error "bad_line good_line1 good_line2 are empty"
9792
9793         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9794         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9795         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9796
9797         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9798         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9799         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9800
9801         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9802                 error "bad_line_new good_line_new are empty"
9803
9804         local expected_good=$((good_line1 + good_line2*2))
9805
9806         rm -f $TMP/${tfile}*
9807         # LU-231, short malformed line may not be counted into bad lines
9808         if [ $bad_line -ne $bad_line_new ] &&
9809                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9810                 error "expected $bad_line bad lines, but got $bad_line_new"
9811                 return 1
9812         fi
9813
9814         if [ $expected_good -ne $good_line_new ]; then
9815                 error "expected $expected_good good lines, but got $good_line_new"
9816                 return 2
9817         fi
9818         true
9819 }
9820 run_test 170 "test lctl df to handle corrupted log ====================="
9821
9822 test_171() { # bug20592
9823         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9824 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9825         $LCTL set_param fail_loc=0x50e
9826         $LCTL set_param fail_val=3000
9827         multiop_bg_pause $DIR/$tfile O_s || true
9828         local MULTIPID=$!
9829         kill -USR1 $MULTIPID
9830         # cause log dump
9831         sleep 3
9832         wait $MULTIPID
9833         if dmesg | grep "recursive fault"; then
9834                 error "caught a recursive fault"
9835         fi
9836         $LCTL set_param fail_loc=0
9837         true
9838 }
9839 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9840
9841 # it would be good to share it with obdfilter-survey/libecho code
9842 setup_obdecho_osc () {
9843         local rc=0
9844         local ost_nid=$1
9845         local obdfilter_name=$2
9846         echo "Creating new osc for $obdfilter_name on $ost_nid"
9847         # make sure we can find loopback nid
9848         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9849
9850         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9851                            ${obdfilter_name}_osc_UUID || rc=2; }
9852         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9853                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9854         return $rc
9855 }
9856
9857 cleanup_obdecho_osc () {
9858         local obdfilter_name=$1
9859         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9860         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9861         return 0
9862 }
9863
9864 obdecho_test() {
9865         local OBD=$1
9866         local node=$2
9867         local pages=${3:-64}
9868         local rc=0
9869         local id
9870         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9871         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9872                            rc=2; }
9873         if [ $rc -eq 0 ]; then
9874             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9875             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9876         fi
9877         echo "New object id is $id"
9878         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9879                            rc=4; }
9880         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9881                            "test_brw 10 w v $pages $id" || rc=4; }
9882         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9883                            rc=4; }
9884         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9885                                         "cleanup" || rc=5; }
9886         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9887                                         "detach" || rc=6; }
9888         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9889         return $rc
9890 }
9891
9892 test_180a() {
9893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9894         remote_ost_nodsh && skip "remote OST with nodsh" && return
9895         local rc=0
9896         local rmmod_local=0
9897
9898         if ! module_loaded obdecho; then
9899             load_module obdecho/obdecho
9900             rmmod_local=1
9901         fi
9902
9903         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9904         local host=$(lctl get_param -n osc.$osc.import |
9905                              awk '/current_connection:/ {print $2}' )
9906         local target=$(lctl get_param -n osc.$osc.import |
9907                              awk '/target:/ {print $2}' )
9908         target=${target%_UUID}
9909
9910         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9911         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9912         [[ -n $target ]] && cleanup_obdecho_osc $target
9913         [ $rmmod_local -eq 1 ] && rmmod obdecho
9914         return $rc
9915 }
9916 run_test 180a "test obdecho on osc"
9917
9918 test_180b() {
9919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9920         remote_ost_nodsh && skip "remote OST with nodsh" && return
9921         local rc=0
9922         local rmmod_remote=0
9923
9924         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9925                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9926                       "modprobe obdecho; }" && rmmod_remote=1
9927         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9928         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9929         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9930         return $rc
9931 }
9932 run_test 180b "test obdecho directly on obdfilter"
9933
9934 test_180c() { # LU-2598
9935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9936         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9937                 skip "Need MDS version at least 2.4.0" && return
9938
9939         local rc=0
9940         local rmmod_remote=false
9941         local pages=16384 # 64MB bulk I/O RPC size
9942         local target
9943
9944         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9945                 rmmod_remote=true || error "failed to load module obdecho"
9946
9947         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9948         if [[ -n $target ]]; then
9949                 obdecho_test "$target" ost1 "$pages" ||
9950                         rc=${PIPESTATUS[0]}
9951         else
9952                 echo "there is no obdfilter target on ost1"
9953                 rc=2
9954         fi
9955         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9956         return $rc
9957 }
9958 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9959
9960 test_181() { # bug 22177
9961         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9962         # create enough files to index the directory
9963         createmany -o $DIR/$tdir/foobar 4000
9964         # print attributes for debug purpose
9965         lsattr -d .
9966         # open dir
9967         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9968         MULTIPID=$!
9969         # remove the files & current working dir
9970         unlinkmany $DIR/$tdir/foobar 4000
9971         rmdir $DIR/$tdir
9972         kill -USR1 $MULTIPID
9973         wait $MULTIPID
9974         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9975         return 0
9976 }
9977 run_test 181 "Test open-unlinked dir ========================"
9978
9979 test_182() {
9980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9981         # disable MDC RPC lock wouldn't crash client
9982         local fcount=1000
9983         local tcount=4
9984
9985         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9986 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9987         $LCTL set_param fail_loc=0x804
9988
9989         for (( i=0; i < $tcount; i++ )) ; do
9990                 mkdir $DIR/$tdir/$i
9991                 createmany -o $DIR/$tdir/$i/f- $fcount &
9992         done
9993         wait
9994
9995         for (( i=0; i < $tcount; i++ )) ; do
9996                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9997         done
9998         wait
9999
10000         rm -rf $DIR/$tdir
10001
10002         $LCTL set_param fail_loc=0
10003 }
10004 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10005
10006 test_183() { # LU-2275
10007         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10008                 skip "Need MDS version at least 2.3.56" && return
10009
10010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10011         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10012         echo aaa > $DIR/$tdir/$tfile
10013
10014 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10015         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10016
10017         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10018         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10019
10020         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10021
10022         # Flush negative dentry cache
10023         touch $DIR/$tdir/$tfile
10024
10025         # We are not checking for any leaked references here, they'll
10026         # become evident next time we do cleanup with module unload.
10027         rm -rf $DIR/$tdir
10028 }
10029 run_test 183 "No crash or request leak in case of strange dispositions ========"
10030
10031 # test suite 184 is for LU-2016, LU-2017
10032 test_184a() {
10033         check_swap_layouts_support && return 0
10034
10035         dir0=$DIR/$tdir/$testnum
10036         test_mkdir -p $dir0 || error "creating dir $dir0"
10037         ref1=/etc/passwd
10038         ref2=/etc/group
10039         file1=$dir0/f1
10040         file2=$dir0/f2
10041         $SETSTRIPE -c1 $file1
10042         cp $ref1 $file1
10043         $SETSTRIPE -c2 $file2
10044         cp $ref2 $file2
10045         gen1=$($GETSTRIPE -g $file1)
10046         gen2=$($GETSTRIPE -g $file2)
10047
10048         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10049         gen=$($GETSTRIPE -g $file1)
10050         [[ $gen1 != $gen ]] ||
10051                 "Layout generation on $file1 does not change"
10052         gen=$($GETSTRIPE -g $file2)
10053         [[ $gen2 != $gen ]] ||
10054                 "Layout generation on $file2 does not change"
10055
10056         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10057         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10058 }
10059 run_test 184a "Basic layout swap"
10060
10061 test_184b() {
10062         check_swap_layouts_support && return 0
10063
10064         dir0=$DIR/$tdir/$testnum
10065         mkdir -p $dir0 || error "creating dir $dir0"
10066         file1=$dir0/f1
10067         file2=$dir0/f2
10068         file3=$dir0/f3
10069         dir1=$dir0/d1
10070         dir2=$dir0/d2
10071         mkdir $dir1 $dir2
10072         $SETSTRIPE -c1 $file1
10073         $SETSTRIPE -c2 $file2
10074         $SETSTRIPE -c1 $file3
10075         chown $RUNAS_ID $file3
10076         gen1=$($GETSTRIPE -g $file1)
10077         gen2=$($GETSTRIPE -g $file2)
10078
10079         $LFS swap_layouts $dir1 $dir2 &&
10080                 error "swap of directories layouts should fail"
10081         $LFS swap_layouts $dir1 $file1 &&
10082                 error "swap of directory and file layouts should fail"
10083         $RUNAS $LFS swap_layouts $file1 $file2 &&
10084                 error "swap of file we cannot write should fail"
10085         $LFS swap_layouts $file1 $file3 &&
10086                 error "swap of file with different owner should fail"
10087         /bin/true # to clear error code
10088 }
10089 run_test 184b "Forbidden layout swap (will generate errors)"
10090
10091 test_184c() {
10092         check_swap_layouts_support && return 0
10093
10094         local dir0=$DIR/$tdir/$testnum
10095         mkdir -p $dir0 || error "creating dir $dir0"
10096
10097         local ref1=$dir0/ref1
10098         local ref2=$dir0/ref2
10099         local file1=$dir0/file1
10100         local file2=$dir0/file2
10101         # create a file large enough for the concurent test
10102         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10103         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10104         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10105
10106         cp $ref2 $file2
10107         dd if=$ref1 of=$file1 bs=16k &
10108         local DD_PID=$!
10109
10110         # Make sure dd starts to copy file
10111         while [ ! -f $file1 ]; do sleep 0.1; done
10112
10113         $LFS swap_layouts $file1 $file2
10114         local rc=$?
10115         wait $DD_PID
10116         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10117         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10118
10119         # how many bytes copied before swapping layout
10120         local copied=`stat -c %s $file2`
10121         local remaining=`stat -c %s $ref1`
10122         remaining=$((remaining - copied))
10123         echo "Copied $copied bytes before swapping layout..."
10124
10125         cmp -n $copied $file1 $ref2 | grep differ &&
10126                 error "Content mismatch [0, $copied) of ref2 and file1"
10127         cmp -n $copied $file2 $ref1 ||
10128                 error "Content mismatch [0, $copied) of ref1 and file2"
10129         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10130                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10131
10132         # clean up
10133         rm -f $ref1 $ref2 $file1 $file2
10134 }
10135 run_test 184c "Concurrent write and layout swap"
10136
10137 test_184d() {
10138         check_swap_layouts_support && return 0
10139
10140         local file1=$DIR/$tdir/$tfile-1
10141         local file2=$DIR/$tdir/$tfile-2
10142         local file3=$DIR/$tdir/$tfile-3
10143         local lovea1
10144         local lovea2
10145
10146         mkdir -p $DIR/$tdir
10147         touch $file1 || error "create $file1 failed"
10148         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10149                 error "create $file2 failed"
10150         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10151                 error "create $file3 failed"
10152         lovea1=$($LFS getstripe $file1 | sed 1d)
10153
10154         $LFS swap_layouts $file2 $file3 ||
10155                 error "swap $file2 $file3 layouts failed"
10156         $LFS swap_layouts $file1 $file2 ||
10157                 error "swap $file1 $file2 layouts failed"
10158
10159         lovea2=$($LFS getstripe $file2 | sed 1d)
10160         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10161
10162         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10163         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10164 }
10165 run_test 184d "allow stripeless layouts swap"
10166
10167
10168 test_185() { # LU-2441
10169         # LU-3553 - no volatile file support in old servers
10170         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10171                 { skip "Need MDS version at least 2.3.60"; return 0; }
10172
10173         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10174         touch $DIR/$tdir/spoo
10175         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10176         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10177                 error "cannot create/write a volatile file"
10178         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10179                 error "FID is still valid after close"
10180
10181         multiop_bg_pause $DIR/$tdir vVw4096_c
10182         local multi_pid=$!
10183
10184         local OLD_IFS=$IFS
10185         IFS=":"
10186         local fidv=($fid)
10187         IFS=$OLD_IFS
10188         # assume that the next FID for this client is sequential, since stdout
10189         # is unfortunately eaten by multiop_bg_pause
10190         local n=$((${fidv[1]} + 1))
10191         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10192         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10193                 error "FID is missing before close"
10194         kill -USR1 $multi_pid
10195         # 1 second delay, so if mtime change we will see it
10196         sleep 1
10197         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10198         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10199 }
10200 run_test 185 "Volatile file support"
10201
10202 test_187a() {
10203         local dir0=$DIR/$tdir/$testnum
10204         mkdir -p $dir0 || error "creating dir $dir0"
10205
10206         local file=$dir0/file1
10207         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10208         local dv1=$($LFS data_version $file)
10209         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10210         local dv2=$($LFS data_version $file)
10211         [[ $dv1 != $dv2 ]] ||
10212                 error "data version did not change on write $dv1 == $dv2"
10213
10214         # clean up
10215         rm -f $file1
10216 }
10217 run_test 187a "Test data version change"
10218
10219 test_187b() {
10220         local dir0=$DIR/$tdir/$testnum
10221         mkdir -p $dir0 || error "creating dir $dir0"
10222
10223         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10224         [[ ${DV[0]} != ${DV[1]} ]] ||
10225                 error "data version did not change on write"\
10226                       " ${DV[0]} == ${DV[1]}"
10227
10228         # clean up
10229         rm -f $file1
10230 }
10231 run_test 187b "Test data version change on volatile file"
10232
10233 # OST pools tests
10234 check_file_in_pool()
10235 {
10236         local file=$1
10237         local pool=$2
10238         local tlist="$3"
10239         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10240         for i in $res
10241         do
10242                 for t in $tlist ; do
10243                         [ "$i" -eq "$t" ] && continue 2
10244                 done
10245
10246                 echo "pool list: $tlist"
10247                 echo "striping: $res"
10248                 error_noexit "$file not allocated in $pool"
10249                 return 1
10250         done
10251         return 0
10252 }
10253
10254 pool_add() {
10255         echo "Creating new pool"
10256         local pool=$1
10257
10258         create_pool $FSNAME.$pool ||
10259                 { error_noexit "No pool created, result code $?"; return 1; }
10260         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10261                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10262 }
10263
10264 pool_add_targets() {
10265         echo "Adding targets to pool"
10266         local pool=$1
10267         local first=$2
10268         local last=$3
10269         local step=${4:-1}
10270
10271         local list=$(seq $first $step $last)
10272
10273         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10274         do_facet mgs $LCTL pool_add \
10275                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10276         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10277                         | sort -u | tr '\n' ' ' " "$t" || { 
10278                 error_noexit "Add to pool failed"
10279                 return 1
10280         }
10281         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10282         local addcount=$(((last - first) / step + 1))
10283         [ $lfscount -eq $addcount ] || {
10284                 error_noexit "lfs pool_list bad ost count" \
10285                                                 "$lfscount != $addcount"
10286                 return 2
10287         }
10288 }
10289
10290 pool_set_dir() {
10291         local pool=$1
10292         local tdir=$2
10293         echo "Setting pool on directory $tdir"
10294
10295         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10296
10297         error_noexit "Cannot set pool $pool to $tdir"
10298         return 1
10299 }
10300
10301 pool_check_dir() {
10302         local pool=$1
10303         local tdir=$2
10304         echo "Checking pool on directory $tdir"
10305
10306         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10307         [ "$res" = "$pool" ] && return 0
10308
10309         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10310         return 1
10311 }
10312
10313 pool_dir_rel_path() {
10314         echo "Testing relative path works well"
10315         local pool=$1
10316         local tdir=$2
10317         local root=$3
10318
10319         mkdir -p $root/$tdir/$tdir
10320         cd $root/$tdir
10321         pool_set_dir $pool $tdir          || return 1
10322         pool_set_dir $pool ./$tdir        || return 2
10323         pool_set_dir $pool ../$tdir       || return 3
10324         pool_set_dir $pool ../$tdir/$tdir || return 4
10325         rm -rf $tdir; cd - > /dev/null
10326 }
10327
10328 pool_alloc_files() {
10329         echo "Checking files allocation from directory pool"
10330         local pool=$1
10331         local tdir=$2
10332         local count=$3
10333         local tlist="$4"
10334
10335         local failed=0
10336         for i in $(seq -w 1 $count)
10337         do
10338                 local file=$tdir/file-$i
10339                 touch $file
10340                 check_file_in_pool $file $pool "$tlist" || \
10341                         failed=$((failed + 1))
10342         done
10343         [ "$failed" = 0 ] && return 0
10344
10345         error_noexit "$failed files not allocated in $pool"
10346         return 1
10347 }
10348
10349 pool_create_files() {
10350         echo "Creating files in pool"
10351         local pool=$1
10352         local tdir=$2
10353         local count=$3
10354         local tlist="$4"
10355
10356         mkdir -p $tdir
10357         local failed=0
10358         for i in $(seq -w 1 $count)
10359         do
10360                 local file=$tdir/spoo-$i
10361                 $SETSTRIPE -p $pool $file
10362                 check_file_in_pool $file $pool "$tlist" || \
10363                         failed=$((failed + 1))
10364         done
10365         [ "$failed" = 0 ] && return 0
10366
10367         error_noexit "$failed files not allocated in $pool"
10368         return 1
10369 }
10370
10371 pool_lfs_df() {
10372         echo "Checking 'lfs df' output"
10373         local pool=$1
10374
10375         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10376                         tr '\n' ' ')
10377         local res=$($LFS df --pool $FSNAME.$pool |
10378                         awk '{print $1}' |
10379                         grep "$FSNAME-OST" |
10380                         tr '\n' ' ')
10381         [ "$res" = "$t" ] && return 0
10382
10383         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10384         return 1
10385 }
10386
10387 pool_file_rel_path() {
10388         echo "Creating files in a pool with relative pathname"
10389         local pool=$1
10390         local tdir=$2
10391
10392         mkdir -p $tdir ||
10393                 { error_noexit "unable to create $tdir"; return 1 ; }
10394         local file="/..$tdir/$tfile-1"
10395         $SETSTRIPE -p $pool $file ||
10396                 { error_noexit "unable to create $file" ; return 2 ; }
10397
10398         cd $tdir
10399         $SETSTRIPE -p $pool $tfile-2 || {
10400                 error_noexit "unable to create $tfile-2 in $tdir"
10401                 return 3
10402         }
10403 }
10404
10405 pool_remove_first_target() {
10406         echo "Removing first target from a pool"
10407         local pool=$1
10408
10409         local pname="lov.$FSNAME-*.pools.$pool"
10410         local t=$($LCTL get_param -n $pname | head -1)
10411         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10412         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10413                 error_noexit "$t not removed from $FSNAME.$pool"
10414                 return 1
10415         }
10416 }
10417
10418 pool_remove_all_targets() {
10419         echo "Removing all targets from pool"
10420         local pool=$1
10421         local file=$2
10422         local pname="lov.$FSNAME-*.pools.$pool"
10423         for t in $($LCTL get_param -n $pname | sort -u)
10424         do
10425                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10426         done
10427         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10428                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10429                 return 1
10430         }
10431         # striping on an empty/nonexistant pool should fall back 
10432         # to "pool of everything"
10433         touch $file || {
10434                 error_noexit "failed to use fallback striping for empty pool"
10435                 return 2
10436         }
10437         # setstripe on an empty pool should fail
10438         $SETSTRIPE -p $pool $file 2>/dev/null && {
10439                 error_noexit "expected failure when creating file" \
10440                                                         "with empty pool"
10441                 return 3
10442         }
10443         return 0
10444 }
10445
10446 pool_remove() {
10447         echo "Destroying pool"
10448         local pool=$1
10449         local file=$2
10450
10451         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10452
10453         sleep 2
10454         # striping on an empty/nonexistant pool should fall back 
10455         # to "pool of everything"
10456         touch $file || {
10457                 error_noexit "failed to use fallback striping for missing pool"
10458                 return 1
10459         }
10460         # setstripe on an empty pool should fail
10461         $SETSTRIPE -p $pool $file 2>/dev/null && {
10462                 error_noexit "expected failure when creating file" \
10463                                                         "with missing pool"
10464                 return 2
10465         }
10466
10467         # get param should return err once pool is gone
10468         if wait_update $HOSTNAME "lctl get_param -n \
10469                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10470         then
10471                 remove_pool_from_list $FSNAME.$pool
10472                 return 0
10473         fi
10474         error_noexit "Pool $FSNAME.$pool is not destroyed"
10475         return 3
10476 }
10477
10478 test_200() {
10479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10480         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10481
10482         local POOL=${POOL:-cea1}
10483         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10484         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10485         # Pool OST targets
10486         local first_ost=0
10487         local last_ost=$(($OSTCOUNT - 1))
10488         local ost_step=2
10489         local ost_list=$(seq $first_ost $ost_step $last_ost)
10490         local ost_range="$first_ost $last_ost $ost_step"
10491         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10492         local file_dir=$POOL_ROOT/file_tst
10493
10494         local rc=0
10495         while : ; do
10496                 # former test_200a test_200b
10497                 pool_add $POOL                          || { rc=$? ; break; }
10498                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10499                 # former test_200c test_200d
10500                 mkdir -p $test_path
10501                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10502                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10503                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10504                                                         || { rc=$? ; break; }
10505                 # former test_200e test_200f
10506                 local files=$((OSTCOUNT*3))
10507                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10508                                                         || { rc=$? ; break; }
10509                 pool_create_files $POOL $file_dir $files "$ost_list" \
10510                                                         || { rc=$? ; break; }
10511                 # former test_200g test_200h
10512                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10513                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10514
10515                 # former test_201a test_201b test_201c
10516                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10517
10518                 local f=$test_path/$tfile
10519                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10520                 pool_remove $POOL $f                    || { rc=$? ; break; }
10521                 break
10522         done
10523
10524         cleanup_pools
10525         return $rc
10526 }
10527 run_test 200 "OST pools"
10528
10529 # usage: default_attr <count | size | offset>
10530 default_attr() {
10531         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10532 }
10533
10534 # usage: check_default_stripe_attr
10535 check_default_stripe_attr() {
10536         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10537         case $1 in
10538         --stripe-count|--count)
10539                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10540         --stripe-size|--size)
10541                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10542         --stripe-index|--index)
10543                 EXPECTED=-1;;
10544         *)
10545                 error "unknown getstripe attr '$1'"
10546         esac
10547
10548         [ $ACTUAL != $EXPECTED ] &&
10549                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10550 }
10551
10552 test_204a() {
10553         test_mkdir -p $DIR/$tdir
10554         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10555
10556         check_default_stripe_attr --stripe-count
10557         check_default_stripe_attr --stripe-size
10558         check_default_stripe_attr --stripe-index
10559
10560         return 0
10561 }
10562 run_test 204a "Print default stripe attributes ================="
10563
10564 test_204b() {
10565         test_mkdir -p $DIR/$tdir
10566         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10567
10568         check_default_stripe_attr --stripe-size
10569         check_default_stripe_attr --stripe-index
10570
10571         return 0
10572 }
10573 run_test 204b "Print default stripe size and offset  ==========="
10574
10575 test_204c() {
10576         test_mkdir -p $DIR/$tdir
10577         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10578
10579         check_default_stripe_attr --stripe-count
10580         check_default_stripe_attr --stripe-index
10581
10582         return 0
10583 }
10584 run_test 204c "Print default stripe count and offset ==========="
10585
10586 test_204d() {
10587         test_mkdir -p $DIR/$tdir
10588         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10589
10590         check_default_stripe_attr --stripe-count
10591         check_default_stripe_attr --stripe-size
10592
10593         return 0
10594 }
10595 run_test 204d "Print default stripe count and size ============="
10596
10597 test_204e() {
10598         test_mkdir -p $DIR/$tdir
10599         $SETSTRIPE -d $DIR/$tdir
10600
10601         check_default_stripe_attr --stripe-count --raw
10602         check_default_stripe_attr --stripe-size --raw
10603         check_default_stripe_attr --stripe-index --raw
10604
10605         return 0
10606 }
10607 run_test 204e "Print raw stripe attributes ================="
10608
10609 test_204f() {
10610         test_mkdir -p $DIR/$tdir
10611         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10612
10613         check_default_stripe_attr --stripe-size --raw
10614         check_default_stripe_attr --stripe-index --raw
10615
10616         return 0
10617 }
10618 run_test 204f "Print raw stripe size and offset  ==========="
10619
10620 test_204g() {
10621         test_mkdir -p $DIR/$tdir
10622         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10623
10624         check_default_stripe_attr --stripe-count --raw
10625         check_default_stripe_attr --stripe-index --raw
10626
10627         return 0
10628 }
10629 run_test 204g "Print raw stripe count and offset ==========="
10630
10631 test_204h() {
10632         test_mkdir -p $DIR/$tdir
10633         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10634
10635         check_default_stripe_attr --stripe-count --raw
10636         check_default_stripe_attr --stripe-size --raw
10637
10638         return 0
10639 }
10640 run_test 204h "Print raw stripe count and size ============="
10641
10642 # Figure out which job scheduler is being used, if any,
10643 # or use a fake one
10644 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10645         JOBENV=SLURM_JOB_ID
10646 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10647         JOBENV=LSB_JOBID
10648 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10649         JOBENV=PBS_JOBID
10650 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10651         JOBENV=LOADL_STEP_ID
10652 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10653         JOBENV=JOB_ID
10654 else
10655         JOBENV=FAKE_JOBID
10656 fi
10657
10658 verify_jobstats() {
10659         local cmd=$1
10660         local target=$2
10661
10662         # clear old jobstats
10663         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10664         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10665
10666         # use a new JobID for this test, or we might see an old one
10667         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10668
10669         JOBVAL=${!JOBENV}
10670         log "Test: $cmd"
10671         log "Using JobID environment variable $JOBENV=$JOBVAL"
10672
10673         if [ $JOBENV = "FAKE_JOBID" ]; then
10674                 FAKE_JOBID=$JOBVAL $cmd
10675         else
10676                 $cmd
10677         fi
10678
10679         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10680                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10681                 do_facet $FACET lctl get_param mdt.*.job_stats |
10682                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10683         fi
10684         if [ "$target" = "ost" -o "$target" = "both" ]; then
10685                 FACET=ost1
10686                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10687                         grep $JOBVAL || error "No job stats found on OST $FACET"
10688         fi
10689 }
10690
10691 jobstats_set() {
10692         trap 0
10693         NEW_JOBENV=${1:-$OLD_JOBENV}
10694         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10695         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10696 }
10697
10698 test_205() { # Job stats
10699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10700         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10701                 skip "Server doesn't support jobstats" && return 0
10702
10703         local cmd
10704         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10705         if [ $OLD_JOBENV != $JOBENV ]; then
10706                 jobstats_set $JOBENV
10707                 trap jobstats_set EXIT
10708         fi
10709
10710         # mkdir
10711         cmd="mkdir $DIR/$tfile"
10712         verify_jobstats "$cmd" "mdt"
10713         # rmdir
10714         cmd="rm -fr $DIR/$tfile"
10715         verify_jobstats "$cmd" "mdt"
10716         # mknod
10717         cmd="mknod $DIR/$tfile c 1 3"
10718         verify_jobstats "$cmd" "mdt"
10719         # unlink
10720         cmd="rm -f $DIR/$tfile"
10721         verify_jobstats "$cmd" "mdt"
10722         # open & close
10723         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10724         verify_jobstats "$cmd" "mdt"
10725         # setattr
10726         cmd="touch $DIR/$tfile"
10727         verify_jobstats "$cmd" "both"
10728         # write
10729         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10730         verify_jobstats "$cmd" "ost"
10731         # read
10732         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10733         verify_jobstats "$cmd" "ost"
10734         # truncate
10735         cmd="$TRUNCATE $DIR/$tfile 0"
10736         verify_jobstats "$cmd" "both"
10737         # rename
10738         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10739         verify_jobstats "$cmd" "mdt"
10740
10741         # cleanup
10742         rm -f $DIR/jobstats_test_rename
10743
10744         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10745 }
10746 run_test 205 "Verify job stats"
10747
10748 # LU-1480, LU-1773 and LU-1657
10749 test_206() {
10750         mkdir -p $DIR/$tdir
10751         lfs setstripe -c -1 $DIR/$tdir
10752 #define OBD_FAIL_LOV_INIT 0x1403
10753         $LCTL set_param fail_loc=0xa0001403
10754         $LCTL set_param fail_val=1
10755         touch $DIR/$tdir/$tfile || true
10756 }
10757 run_test 206 "fail lov_init_raid0() doesn't lbug"
10758
10759 test_207a() {
10760         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10761         local fsz=`stat -c %s $DIR/$tfile`
10762         cancel_lru_locks mdc
10763
10764         # do not return layout in getattr intent
10765 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10766         $LCTL set_param fail_loc=0x170
10767         local sz=`stat -c %s $DIR/$tfile`
10768
10769         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10770
10771         rm -rf $DIR/$tfile
10772 }
10773 run_test 207a "can refresh layout at glimpse"
10774
10775 test_207b() {
10776         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10777         local cksum=`md5sum $DIR/$tfile`
10778         local fsz=`stat -c %s $DIR/$tfile`
10779         cancel_lru_locks mdc
10780         cancel_lru_locks osc
10781
10782         # do not return layout in getattr intent
10783 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10784         $LCTL set_param fail_loc=0x171
10785
10786         # it will refresh layout after the file is opened but before read issues
10787         echo checksum is "$cksum"
10788         echo "$cksum" |md5sum -c --quiet || error "file differs"
10789
10790         rm -rf $DIR/$tfile
10791 }
10792 run_test 207b "can refresh layout at open"
10793
10794 test_208() {
10795         # FIXME: in this test suite, only RD lease is used. This is okay
10796         # for now as only exclusive open is supported. After generic lease
10797         # is done, this test suite should be revised. - Jinshan
10798
10799         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10800                 { skip "Need MDS version at least 2.4.52"; return 0; }
10801
10802         echo "==== test 1: verify get lease work"
10803         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10804
10805         echo "==== test 2: verify lease can be broken by upcoming open"
10806         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10807         local PID=$!
10808         sleep 1
10809
10810         $MULTIOP $DIR/$tfile oO_RDONLY:c
10811         kill -USR1 $PID && wait $PID || error "break lease error"
10812
10813         echo "==== test 3: verify lease can't be granted if an open already exists"
10814         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10815         local PID=$!
10816         sleep 1
10817
10818         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10819         kill -USR1 $PID && wait $PID || error "open file error"
10820
10821         echo "==== test 4: lease can sustain over recovery"
10822         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10823         PID=$!
10824         sleep 1
10825
10826         fail mds1
10827
10828         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10829
10830         echo "==== test 5: lease broken can't be regained by replay"
10831         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10832         PID=$!
10833         sleep 1
10834
10835         # open file to break lease and then recovery
10836         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10837         fail mds1
10838
10839         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10840
10841         rm -f $DIR/$tfile
10842 }
10843 run_test 208 "Exclusive open"
10844
10845 test_212() {
10846         size=`date +%s`
10847         size=$((size % 8192 + 1))
10848         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10849         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10850         rm -f $DIR/f212 $DIR/f212.xyz
10851 }
10852 run_test 212 "Sendfile test ============================================"
10853
10854 test_213() {
10855         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10856         cancel_lru_locks osc
10857         lctl set_param fail_loc=0x8000040f
10858         # generate a read lock
10859         cat $DIR/$tfile > /dev/null
10860         # write to the file, it will try to cancel the above read lock.
10861         cat /etc/hosts >> $DIR/$tfile
10862 }
10863 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10864
10865 test_214() { # for bug 20133
10866         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
10867         for (( i=0; i < 340; i++ )) ; do
10868                 touch $DIR/$tdir/d214c/a$i
10869         done
10870
10871         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
10872         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10873         ls $DIR/d214c || error "ls $DIR/d214c failed"
10874         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
10875         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10876 }
10877 run_test 214 "hash-indexed directory test - bug 20133"
10878
10879 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10880 create_lnet_proc_files() {
10881         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10882         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10883
10884         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10885         rm -f "$TMP/lnet_$1.sys_tmp"
10886 }
10887
10888 # counterpart of create_lnet_proc_files
10889 remove_lnet_proc_files() {
10890         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10891 }
10892
10893 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10894 # 3rd arg as regexp for body
10895 check_lnet_proc_stats() {
10896         local l=$(cat "$TMP/lnet_$1" |wc -l)
10897         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10898
10899         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10900 }
10901
10902 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10903 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10904 # optional and can be regexp for 2nd line (lnet.routes case)
10905 check_lnet_proc_entry() {
10906         local blp=2            # blp stands for 'position of 1st line of body'
10907         [ "$5" = "" ] || blp=3 # lnet.routes case
10908
10909         local l=$(cat "$TMP/lnet_$1" |wc -l)
10910         # subtracting one from $blp because the body can be empty
10911         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10912
10913         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10914                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10915
10916         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10917                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10918
10919         # bail out if any unexpected line happened
10920         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10921         [ "$?" != 0 ] || error "$2 misformatted"
10922 }
10923
10924 test_215() { # for bugs 18102, 21079, 21517
10925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10926         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10927         local P='[1-9][0-9]*'           # positive numeric
10928         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10929         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10930         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10931         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10932
10933         local L1 # regexp for 1st line
10934         local L2 # regexp for 2nd line (optional)
10935         local BR # regexp for the rest (body)
10936
10937         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10938         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10939         create_lnet_proc_files "stats"
10940         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10941         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10942         remove_lnet_proc_files "stats"
10943
10944         # /proc/sys/lnet/routes should look like this:
10945         # Routing disabled/enabled
10946         # net hops priority state router
10947         # where net is a string like tcp0, hops > 0, priority >= 0,
10948         # state is up/down,
10949         # router is a string like 192.168.1.1@tcp2
10950         L1="^Routing (disabled|enabled)$"
10951         L2="^net +hops +priority +state +router$"
10952         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
10953         create_lnet_proc_files "routes"
10954         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10955         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10956         remove_lnet_proc_files "routes"
10957
10958         # /proc/sys/lnet/routers should look like this:
10959         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10960         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10961         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10962         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10963         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10964         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10965         create_lnet_proc_files "routers"
10966         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10967         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10968         remove_lnet_proc_files "routers"
10969
10970         # /proc/sys/lnet/peers should look like this:
10971         # nid refs state last max rtr min tx min queue
10972         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10973         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10974         # numeric (0 or >0 or <0), queue >= 0.
10975         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10976         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10977         create_lnet_proc_files "peers"
10978         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10979         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10980         remove_lnet_proc_files "peers"
10981
10982         # /proc/sys/lnet/buffers  should look like this:
10983         # pages count credits min
10984         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10985         L1="^pages +count +credits +min$"
10986         BR="^ +$N +$N +$I +$I$"
10987         create_lnet_proc_files "buffers"
10988         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10989         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10990         remove_lnet_proc_files "buffers"
10991
10992         # /proc/sys/lnet/nis should look like this:
10993         # nid status alive refs peer rtr max tx min
10994         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10995         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10996         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10997         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10998         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10999         create_lnet_proc_files "nis"
11000         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11001         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11002         remove_lnet_proc_files "nis"
11003
11004         # can we successfully write to /proc/sys/lnet/stats?
11005         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11006         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11007 }
11008 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11009
11010 test_216() { # bug 20317
11011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11012         remote_ost_nodsh && skip "remote OST with nodsh" && return
11013
11014         local node
11015         local facets=$(get_facets OST)
11016         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11017
11018         save_lustre_params client "osc.*.contention_seconds" > $p
11019         save_lustre_params $facets \
11020                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11021         save_lustre_params $facets \
11022                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11023         save_lustre_params $facets \
11024                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11025         clear_osc_stats
11026
11027         # agressive lockless i/o settings
11028         for node in $(osts_nodes); do
11029                 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'
11030         done
11031         lctl set_param -n osc.*.contention_seconds 60
11032
11033         $DIRECTIO write $DIR/$tfile 0 10 4096
11034         $CHECKSTAT -s 40960 $DIR/$tfile
11035
11036         # disable lockless i/o
11037         for node in $(osts_nodes); do
11038                 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'
11039         done
11040         lctl set_param -n osc.*.contention_seconds 0
11041         clear_osc_stats
11042
11043         dd if=/dev/zero of=$DIR/$tfile count=0
11044         $CHECKSTAT -s 0 $DIR/$tfile
11045
11046         restore_lustre_params <$p
11047         rm -f $p
11048         rm $DIR/$tfile
11049 }
11050 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11051
11052 test_217() { # bug 22430
11053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11054         local node
11055         local nid
11056
11057         for node in $(nodes_list); do
11058                 nid=$(host_nids_address $node $NETTYPE)
11059                 if [[ $nid = *-* ]] ; then
11060                         echo "lctl ping $nid@$NETTYPE"
11061                         lctl ping $nid@$NETTYPE
11062                 else
11063                         echo "skipping $node (no hyphen detected)"
11064                 fi
11065         done
11066 }
11067 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11068
11069 test_218() {
11070        # do directio so as not to populate the page cache
11071        log "creating a 10 Mb file"
11072        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11073        log "starting reads"
11074        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11075        log "truncating the file"
11076        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11077        log "killing dd"
11078        kill %+ || true # reads might have finished
11079        echo "wait until dd is finished"
11080        wait
11081        log "removing the temporary file"
11082        rm -rf $DIR/$tfile || error "tmp file removal failed"
11083 }
11084 run_test 218 "parallel read and truncate should not deadlock ======================="
11085
11086 test_219() {
11087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11088         # write one partial page
11089         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11090         # set no grant so vvp_io_commit_write will do sync write
11091         $LCTL set_param fail_loc=0x411
11092         # write a full page at the end of file
11093         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11094
11095         $LCTL set_param fail_loc=0
11096         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11097         $LCTL set_param fail_loc=0x411
11098         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11099 }
11100 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11101
11102 test_220() { #LU-325
11103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11104         remote_ost_nodsh && skip "remote OST with nodsh" && return
11105         local OSTIDX=0
11106
11107         test_mkdir -p $DIR/$tdir
11108         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11109                 awk '{print $2}' | sed -e 's/_UUID$//')
11110
11111         # on the mdt's osc
11112         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11113         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11114                         osc.$mdtosc_proc1.prealloc_last_id)
11115         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11116                         osc.$mdtosc_proc1.prealloc_next_id)
11117
11118         $LFS df -i
11119
11120         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11121         #define OBD_FAIL_OST_ENOINO              0x229
11122         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11123         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11124         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11125
11126         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11127
11128         MDSOBJS=$((last_id - next_id))
11129         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11130
11131         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11132         echo "OST still has $count kbytes free"
11133
11134         echo "create $MDSOBJS files @next_id..."
11135         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11136
11137         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11138                         osc.$mdtosc_proc1.prealloc_last_id)
11139         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11140                         osc.$mdtosc_proc1.prealloc_next_id)
11141
11142         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11143         $LFS df -i
11144
11145         echo "cleanup..."
11146
11147         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11148         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11149
11150         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11151         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11152         echo "unlink $MDSOBJS files @$next_id..."
11153         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11154 }
11155 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11156
11157 test_221() {
11158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11159         dd if=`which date` of=$MOUNT/date oflag=sync
11160         chmod +x $MOUNT/date
11161
11162         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11163         $LCTL set_param fail_loc=0x80001401
11164
11165         $MOUNT/date > /dev/null
11166         rm -f $MOUNT/date
11167 }
11168 run_test 221 "make sure fault and truncate race to not cause OOM"
11169
11170 test_222a () {
11171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11172        rm -rf $DIR/$tdir
11173        test_mkdir -p $DIR/$tdir
11174        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11175        createmany -o $DIR/$tdir/$tfile 10
11176        cancel_lru_locks mdc
11177        cancel_lru_locks osc
11178        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11179        $LCTL set_param fail_loc=0x31a
11180        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11181        $LCTL set_param fail_loc=0
11182        rm -r $DIR/$tdir
11183 }
11184 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11185
11186 test_222b () {
11187         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11188        rm -rf $DIR/$tdir
11189        test_mkdir -p $DIR/$tdir
11190        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11191        createmany -o $DIR/$tdir/$tfile 10
11192        cancel_lru_locks mdc
11193        cancel_lru_locks osc
11194        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11195        $LCTL set_param fail_loc=0x31a
11196        rm -r $DIR/$tdir || "AGL for rmdir failed"
11197        $LCTL set_param fail_loc=0
11198 }
11199 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11200
11201 test_223 () {
11202         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11203        rm -rf $DIR/$tdir
11204        test_mkdir -p $DIR/$tdir
11205        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11206        createmany -o $DIR/$tdir/$tfile 10
11207        cancel_lru_locks mdc
11208        cancel_lru_locks osc
11209        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11210        $LCTL set_param fail_loc=0x31b
11211        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11212        $LCTL set_param fail_loc=0
11213        rm -r $DIR/$tdir
11214 }
11215 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11216
11217 test_224a() { # LU-1039, MRP-303
11218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11219         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11220         $LCTL set_param fail_loc=0x508
11221         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11222         $LCTL set_param fail_loc=0
11223         df $DIR
11224 }
11225 run_test 224a "Don't panic on bulk IO failure"
11226
11227 test_224b() { # LU-1039, MRP-303
11228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11229         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11230         cancel_lru_locks osc
11231         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11232         $LCTL set_param fail_loc=0x515
11233         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11234         $LCTL set_param fail_loc=0
11235         df $DIR
11236 }
11237 run_test 224b "Don't panic on bulk IO failure"
11238
11239 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11240 test_225a () {
11241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11242         if [ -z ${MDSSURVEY} ]; then
11243               skip_env "mds-survey not found" && return
11244         fi
11245
11246         [ $MDSCOUNT -ge 2 ] &&
11247                 skip "skipping now for more than one MDT" && return
11248
11249        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11250             { skip "Need MDS version at least 2.2.51"; return; }
11251
11252        local mds=$(facet_host $SINGLEMDS)
11253        local target=$(do_nodes $mds 'lctl dl' | \
11254                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11255
11256        local cmd1="file_count=1000 thrhi=4"
11257        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11258        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11259        local cmd="$cmd1 $cmd2 $cmd3"
11260
11261        rm -f ${TMP}/mds_survey*
11262        echo + $cmd
11263        eval $cmd || error "mds-survey with zero-stripe failed"
11264        cat ${TMP}/mds_survey*
11265        rm -f ${TMP}/mds_survey*
11266 }
11267 run_test 225a "Metadata survey sanity with zero-stripe"
11268
11269 test_225b () {
11270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11271
11272         if [ -z ${MDSSURVEY} ]; then
11273               skip_env "mds-survey not found" && return
11274         fi
11275         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11276             { skip "Need MDS version at least 2.2.51"; return; }
11277
11278         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11279               skip_env "Need to mount OST to test" && return
11280         fi
11281
11282         [ $MDSCOUNT -ge 2 ] &&
11283                 skip "skipping now for more than one MDT" && return
11284        local mds=$(facet_host $SINGLEMDS)
11285        local target=$(do_nodes $mds 'lctl dl' | \
11286                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11287
11288        local cmd1="file_count=1000 thrhi=4"
11289        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11290        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11291        local cmd="$cmd1 $cmd2 $cmd3"
11292
11293        rm -f ${TMP}/mds_survey*
11294        echo + $cmd
11295        eval $cmd || error "mds-survey with stripe_count failed"
11296        cat ${TMP}/mds_survey*
11297        rm -f ${TMP}/mds_survey*
11298 }
11299 run_test 225b "Metadata survey sanity with stripe_count = 1"
11300
11301 mcreate_path2fid () {
11302         local mode=$1
11303         local major=$2
11304         local minor=$3
11305         local name=$4
11306         local desc=$5
11307         local path=$DIR/$tdir/$name
11308         local fid
11309         local rc
11310         local fid_path
11311
11312         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11313                 error "cannot create $desc"
11314
11315         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11316         rc=$?
11317         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11318
11319         fid_path=$($LFS fid2path $MOUNT $fid)
11320         rc=$?
11321         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11322
11323         [ "$path" == "$fid_path" ] ||
11324                 error "fid2path returned $fid_path, expected $path"
11325
11326         echo "pass with $path and $fid"
11327 }
11328
11329 test_226a () {
11330         rm -rf $DIR/$tdir
11331         mkdir -p $DIR/$tdir
11332
11333         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11334         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11335         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11336         mcreate_path2fid 0040666 0 0 dir "directory"
11337         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11338         mcreate_path2fid 0100666 0 0 file "regular file"
11339         mcreate_path2fid 0120666 0 0 link "symbolic link"
11340         mcreate_path2fid 0140666 0 0 sock "socket"
11341 }
11342 run_test 226a "call path2fid and fid2path on files of all type"
11343
11344 test_226b () {
11345         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11346         rm -rf $DIR/$tdir
11347         local MDTIDX=1
11348
11349         mkdir -p $DIR/$tdir
11350         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11351                 error "create remote directory failed"
11352         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11353         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11354                                 "character special file (null)"
11355         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11356                                 "character special file (no device)"
11357         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11358         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11359                                 "block special file (loop)"
11360         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11361         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11362         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11363 }
11364 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11365
11366 # LU-1299 Executing or running ldd on a truncated executable does not
11367 # cause an out-of-memory condition.
11368 test_227() {
11369         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11370         dd if=`which date` of=$MOUNT/date bs=1k count=1
11371         chmod +x $MOUNT/date
11372
11373         $MOUNT/date > /dev/null
11374         ldd $MOUNT/date > /dev/null
11375         rm -f $MOUNT/date
11376 }
11377 run_test 227 "running truncated executable does not cause OOM"
11378
11379 # LU-1512 try to reuse idle OI blocks
11380 test_228a() {
11381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11382         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11383                 skip "non-ldiskfs backend" && return
11384
11385         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11386         local myDIR=$DIR/$tdir
11387
11388         mkdir -p $myDIR
11389         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11390         $LCTL set_param fail_loc=0x80001002
11391         createmany -o $myDIR/t- 10000
11392         $LCTL set_param fail_loc=0
11393         # The guard is current the largest FID holder
11394         touch $myDIR/guard
11395         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11396                     tr -d '[')
11397         local IDX=$(($SEQ % 64))
11398
11399         do_facet $SINGLEMDS sync
11400         # Make sure journal flushed.
11401         sleep 6
11402         local blk1=$(do_facet $SINGLEMDS \
11403                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11404                      grep Blockcount | awk '{print $4}')
11405
11406         # Remove old files, some OI blocks will become idle.
11407         unlinkmany $myDIR/t- 10000
11408         # Create new files, idle OI blocks should be reused.
11409         createmany -o $myDIR/t- 2000
11410         do_facet $SINGLEMDS sync
11411         # Make sure journal flushed.
11412         sleep 6
11413         local blk2=$(do_facet $SINGLEMDS \
11414                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11415                      grep Blockcount | awk '{print $4}')
11416
11417         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11418 }
11419 run_test 228a "try to reuse idle OI blocks"
11420
11421 test_228b() {
11422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11423         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11424                 skip "non-ldiskfs backend" && return
11425
11426         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11427         local myDIR=$DIR/$tdir
11428
11429         mkdir -p $myDIR
11430         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11431         $LCTL set_param fail_loc=0x80001002
11432         createmany -o $myDIR/t- 10000
11433         $LCTL set_param fail_loc=0
11434         # The guard is current the largest FID holder
11435         touch $myDIR/guard
11436         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11437                     tr -d '[')
11438         local IDX=$(($SEQ % 64))
11439
11440         do_facet $SINGLEMDS sync
11441         # Make sure journal flushed.
11442         sleep 6
11443         local blk1=$(do_facet $SINGLEMDS \
11444                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11445                      grep Blockcount | awk '{print $4}')
11446
11447         # Remove old files, some OI blocks will become idle.
11448         unlinkmany $myDIR/t- 10000
11449
11450         # stop the MDT
11451         stop $SINGLEMDS || error "Fail to stop MDT."
11452         # remount the MDT
11453         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11454
11455         df $MOUNT || error "Fail to df."
11456         # Create new files, idle OI blocks should be reused.
11457         createmany -o $myDIR/t- 2000
11458         do_facet $SINGLEMDS sync
11459         # Make sure journal flushed.
11460         sleep 6
11461         local blk2=$(do_facet $SINGLEMDS \
11462                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11463                      grep Blockcount | awk '{print $4}')
11464
11465         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11466 }
11467 run_test 228b "idle OI blocks can be reused after MDT restart"
11468
11469 #LU-1881
11470 test_228c() {
11471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11472         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11473                 skip "non-ldiskfs backend" && return
11474
11475         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11476         local myDIR=$DIR/$tdir
11477
11478         mkdir -p $myDIR
11479         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11480         $LCTL set_param fail_loc=0x80001002
11481         # 20000 files can guarantee there are index nodes in the OI file
11482         createmany -o $myDIR/t- 20000
11483         $LCTL set_param fail_loc=0
11484         # The guard is current the largest FID holder
11485         touch $myDIR/guard
11486         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11487                     tr -d '[')
11488         local IDX=$(($SEQ % 64))
11489
11490         do_facet $SINGLEMDS sync
11491         # Make sure journal flushed.
11492         sleep 6
11493         local blk1=$(do_facet $SINGLEMDS \
11494                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11495                      grep Blockcount | awk '{print $4}')
11496
11497         # Remove old files, some OI blocks will become idle.
11498         unlinkmany $myDIR/t- 20000
11499         rm -f $myDIR/guard
11500         # The OI file should become empty now
11501
11502         # Create new files, idle OI blocks should be reused.
11503         createmany -o $myDIR/t- 2000
11504         do_facet $SINGLEMDS sync
11505         # Make sure journal flushed.
11506         sleep 6
11507         local blk2=$(do_facet $SINGLEMDS \
11508                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11509                      grep Blockcount | awk '{print $4}')
11510
11511         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11512 }
11513 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11514
11515 test_229() { # LU-2482, LU-3448
11516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11517         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11518
11519         rm -f $DIR/$tfile
11520
11521         # Create a file with a released layout and stripe count 2.
11522         $MULTIOP $DIR/$tfile H2c ||
11523                 error "failed to create file with released layout"
11524
11525         $GETSTRIPE -v $DIR/$tfile
11526
11527         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11528         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11529
11530         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11531         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11532         stat $DIR/$tfile || error "failed to stat released file"
11533
11534         chown $RUNAS_ID $DIR/$tfile ||
11535                 error "chown $RUNAS_ID $DIR/$tfile failed"
11536
11537         chgrp $RUNAS_ID $DIR/$tfile ||
11538                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11539
11540         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11541         rm $DIR/$tfile || error "failed to remove released file"
11542 }
11543 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11544
11545 test_230a() {
11546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11547         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11548         local MDTIDX=1
11549
11550         mkdir -p $DIR/$tdir/test_230_local
11551         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11552         [ $mdt_idx -ne 0 ] &&
11553                 error "create local directory on wrong MDT $mdt_idx"
11554
11555         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11556                         error "create remote directory failed"
11557         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11558         [ $mdt_idx -ne $MDTIDX ] &&
11559                 error "create remote directory on wrong MDT $mdt_idx"
11560
11561         createmany -o $DIR/$tdir/test_230/t- 10 ||
11562                 error "create files on remote directory failed"
11563         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11564         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11565         rm -r $DIR/$tdir || error "unlink remote directory failed"
11566 }
11567 run_test 230a "Create remote directory and files under the remote directory"
11568
11569 test_230b() {
11570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11571         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11572         local MDTIDX=1
11573         local remote_dir=$DIR/$tdir/remote_dir
11574         local rc=0
11575
11576         mkdir -p $DIR/$tdir
11577         $LFS mkdir -i $MDTIDX $remote_dir ||
11578                 error "create remote directory failed"
11579
11580         $LFS mkdir -i 0 $remote_dir/new_dir &&
11581                 error "nested remote directory create succeed!"
11582
11583         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11584         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11585         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11586
11587         [ $rc -ne 0 ] &&
11588            error "create remote directory failed after set enable_remote_dir"
11589
11590         rm -rf $remote_dir || error "first unlink remote directory failed"
11591
11592         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11593                                                         error "chown worked"
11594
11595         do_facet mds$MDTIDX lctl set_param \
11596                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11597         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11598         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11599
11600         [ $rc -ne 0 ] &&
11601            error "create remote dir failed after set enable_remote_dir_gid"
11602
11603         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11604 }
11605 run_test 230b "nested remote directory should be failed"
11606
11607 test_231a()
11608 {
11609         # For simplicity this test assumes that max_pages_per_rpc
11610         # is the same across all OSCs
11611         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11612         local bulk_size=$((max_pages * 4096))
11613
11614         mkdir -p $DIR/$tdir
11615
11616         # clear the OSC stats
11617         $LCTL set_param osc.*.stats=0 &>/dev/null
11618
11619         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11620         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11621                 oflag=direct &>/dev/null || error "dd failed"
11622
11623         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11624         if [ x$nrpcs != "x1" ]; then
11625                 error "found $nrpc ost_write RPCs, not 1 as expected"
11626         fi
11627
11628         # Drop the OSC cache, otherwise we will read from it
11629         cancel_lru_locks osc
11630
11631         # clear the OSC stats
11632         $LCTL set_param osc.*.stats=0 &>/dev/null
11633
11634         # Client reads $bulk_size.
11635         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11636                 iflag=direct &>/dev/null || error "dd failed"
11637
11638         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11639         if [ x$nrpcs != "x1" ]; then
11640                 error "found $nrpc ost_read RPCs, not 1 as expected"
11641         fi
11642 }
11643 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11644
11645 test_231b() {
11646         mkdir -p $DIR/$tdir
11647         local i
11648         for i in {0..1023}; do
11649                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11650                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11651                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11652         done
11653         sync
11654 }
11655 run_test 231b "must not assert on fully utilized OST request buffer"
11656
11657 test_232() {
11658         mkdir -p $DIR/$tdir
11659         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11660         $LCTL set_param fail_loc=0x31c
11661
11662         # ignore dd failure
11663         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11664
11665         $LCTL set_param fail_loc=0
11666         umount_client $MOUNT || error "umount failed"
11667         mount_client $MOUNT || error "mount failed"
11668 }
11669 run_test 232 "failed lock should not block umount"
11670
11671 test_233() {
11672         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11673         { skip "Need MDS version at least 2.3.64"; return; }
11674
11675         local fid=$($LFS path2fid $MOUNT)
11676         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11677                 error "cannot access $MOUNT using its FID '$fid'"
11678 }
11679 run_test 233 "checking that OBF of the FS root succeeds"
11680
11681 test_234() {
11682         local p="$TMP/sanityN-$TESTNAME.parameters"
11683         save_lustre_params client "llite.*.xattr_cache" > $p
11684         lctl set_param llite.*.xattr_cache 1 ||
11685                 { skip "xattr cache is not supported"; return 0; }
11686
11687         mkdir -p $DIR/$tdir || error "mkdir failed"
11688         touch $DIR/$tdir/$tfile || error "touch failed"
11689         # OBD_FAIL_LLITE_XATTR_ENOMEM
11690         $LCTL set_param fail_loc=0x1405
11691         if [ ! -f /etc/SuSE-release ]; then
11692                 # attr pre-2.4.44-7 had a bug with rc
11693                 # LU-3703 - SLES clients have older attr
11694                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11695                         error "getfattr should have failed with ENOMEM"
11696         fi
11697         $LCTL set_param fail_loc=0x0
11698         rm -rf $DIR/$tdir
11699
11700         restore_lustre_params < $p
11701         rm -f $p
11702 }
11703 run_test 234 "xattr cache should not crash on ENOMEM"
11704
11705 test_235() {
11706          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11707                 skip "Need MDS version at least 2.4.52" && return
11708         flock_deadlock $DIR/$tfile
11709         local RC=$?
11710         case $RC in
11711                 0)
11712                 ;;
11713                 124) error "process hangs on a deadlock"
11714                 ;;
11715                 *) error "error executing flock_deadlock $DIR/$tfile"
11716                 ;;
11717         esac
11718 }
11719 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11720
11721 #LU-2935
11722 test_236() {
11723         check_swap_layouts_support && return 0
11724         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11725
11726         local ref1=/etc/passwd
11727         local ref2=/etc/group
11728         local file1=$DIR/$tdir/f1
11729         local file2=$DIR/$tdir/f2
11730
11731         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11732         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11733         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11734         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11735         exec {FD}<>$file2
11736         rm $file2
11737         $LFS swap_layouts $file1 /proc/self/fd/${FD} ||
11738                 error "cannot swap layouts of '$file1' and /proc/self/fd/${FD}"
11739         exec {FD}>&-
11740         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11741
11742         #cleanup
11743         rm -rf $DIR/$tdir
11744 }
11745 run_test 236 "Layout swap on open unlinked file"
11746
11747 #
11748 # tests that do cleanup/setup should be run at the end
11749 #
11750
11751 test_900() {
11752         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11753         local ls
11754         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11755         $LCTL set_param fail_loc=0x903
11756         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11757         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11758                 echo "clear" > $ls
11759         done
11760         FAIL_ON_ERROR=true cleanup
11761         FAIL_ON_ERROR=true setup
11762 }
11763 run_test 900 "umount should not race with any mgc requeue thread"
11764
11765 complete $SECONDS
11766 check_and_cleanup_lustre
11767 if [ "$I_MOUNTED" != "yes" ]; then
11768         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11769 fi
11770 exit_status