Whamcloud - gitweb
LU-2613 recovery: free open/close request promptly
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642                 skip "Need MDS version at least 2.3.64" && return
643
644         local WDIR=$DIR/${tdir}o
645         local mdt_index
646         local mdtdevname
647         local rc=0
648
649         mkdir -p $WDIR
650         mdt_index=$($LFS getstripe -M $WDIR)
651         mdt_index=$((mdt_index+1))
652         mdtdevname=$(mdsdevname $mdt_index)
653
654         touch $WDIR/$tfile
655         stop mds${mdt_index}
656         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
657
658         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660         ls -l $WDIR/$tfile && rc=1
661         do_facet mds${mdt_index} lctl set_param fail_loc=0
662         [[ $rc -ne 0 ]] && error "stat file should fail"
663         true
664 }
665 run_test 17o "stat file with incompat LMA feature"
666
667 test_18() {
668         touch $DIR/f || error "Failed to touch $DIR/f: $?"
669         ls $DIR || error "Failed to ls $DIR: $?"
670 }
671 run_test 18 "touch .../f ; ls ... =============================="
672
673 test_19a() {
674         touch $DIR/$tfile
675         ls -l $DIR
676         rm $DIR/$tfile
677         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
678 }
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
680
681 test_19b() {
682         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
683 }
684 run_test 19b "ls -l .../f19 (should return error) =============="
685
686 test_19c() {
687         [ $RUNAS_ID -eq $UID ] &&
688                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
690 }
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
692
693 test_19d() {
694         cat $DIR/f19 && error || true
695 }
696 run_test 19d "cat .../f19 (should return error) =============="
697
698 test_20() {
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "1 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "2 done"
705         touch $DIR/$tfile
706         rm $DIR/$tfile
707         log "3 done"
708         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
709 }
710 run_test 20 "touch .../f ; ls -l ... ==========================="
711
712 test_21() {
713         test_mkdir -p $DIR/$tdir
714         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715         ln -s dangle $DIR/$tdir/link
716         echo foo >> $DIR/$tdir/link
717         cat $DIR/$tdir/dangle
718         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719         $CHECKSTAT -f -t file $DIR/$tdir/link ||
720                 error "$tdir/link not linked to a file"
721 }
722 run_test 21 "write to dangling link ============================"
723
724 test_22() {
725         WDIR=$DIR/$tdir
726         test_mkdir -p $DIR/$tdir
727         chown $RUNAS_ID:$RUNAS_GID $WDIR
728         (cd $WDIR || error "cd $WDIR failed";
729         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
730         $RUNAS tar xf -)
731         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
734 }
735 run_test 22 "unpack tar archive as non-root user ==============="
736
737 # was test_23
738 test_23a() {
739         test_mkdir -p $DIR/$tdir
740         local file=$DIR/$tdir/$tfile
741
742         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743         openfile -f O_CREAT:O_EXCL $file &&
744                 error "$file recreate succeeded" || true
745 }
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
747
748 test_23b() { # bug 18988
749         test_mkdir -p $DIR/$tdir
750         local file=$DIR/$tdir/$tfile
751
752         rm -f $file
753         echo foo > $file || error "write filed"
754         echo bar >> $file || error "append filed"
755         $CHECKSTAT -s 8 $file || error "wrong size"
756         rm $file
757 }
758 run_test 23b "O_APPEND check =========================="
759
760 # rename sanity
761 test_24a() {
762         echo '-- same directory rename'
763         test_mkdir $DIR/$tdir
764         touch $DIR/$tdir/$tfile.1
765         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
767 }
768 run_test 24a "rename file to non-existent target"
769
770 test_24b() {
771         test_mkdir $DIR/$tdir
772         touch $DIR/$tdir/$tfile.{1,2}
773         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
776 }
777 run_test 24b "rename file to existing target"
778
779 test_24c() {
780         test_mkdir $DIR/$tdir
781         test_mkdir $DIR/$tdir/d$testnum.1
782         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
785 }
786 run_test 24c "rename directory to non-existent target"
787
788 test_24d() {
789         test_mkdir $DIR/$tdir
790         test_mkdir $DIR/$tdir/d$testnum.1
791         test_mkdir $DIR/$tdir/d$testnum.2
792         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
795 }
796 run_test 24d "rename directory to existing target"
797
798 test_24e() {
799         echo '-- cross directory renames --'
800         test_mkdir $DIR/R5a
801         test_mkdir $DIR/R5b
802         touch $DIR/R5a/f
803         mv $DIR/R5a/f $DIR/R5b/g
804         $CHECKSTAT -a $DIR/R5a/f || error
805         $CHECKSTAT -t file $DIR/R5b/g || error
806 }
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
808
809 test_24f() {
810         test_mkdir $DIR/R6a
811         test_mkdir $DIR/R6b
812         touch $DIR/R6a/f $DIR/R6b/g
813         mv $DIR/R6a/f $DIR/R6b/g
814         $CHECKSTAT -a $DIR/R6a/f || error
815         $CHECKSTAT -t file $DIR/R6b/g || error
816 }
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
818
819 test_24g() {
820         test_mkdir $DIR/R7a
821         test_mkdir $DIR/R7b
822         test_mkdir $DIR/R7a/d
823         mv $DIR/R7a/d $DIR/R7b/e
824         $CHECKSTAT -a $DIR/R7a/d || error
825         $CHECKSTAT -t dir $DIR/R7b/e || error
826 }
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
828
829 test_24h() {
830         test_mkdir $DIR/R8a
831         test_mkdir $DIR/R8b
832         test_mkdir $DIR/R8a/d
833         test_mkdir $DIR/R8b/e
834         mrename $DIR/R8a/d $DIR/R8b/e
835         $CHECKSTAT -a $DIR/R8a/d || error
836         $CHECKSTAT -t dir $DIR/R8b/e || error
837 }
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
839
840 test_24i() {
841         echo "-- rename error cases"
842         test_mkdir $DIR/R9
843         test_mkdir $DIR/R9/a
844         touch $DIR/R9/f
845         mrename $DIR/R9/f $DIR/R9/a
846         $CHECKSTAT -t file $DIR/R9/f || error
847         $CHECKSTAT -t dir  $DIR/R9/a || error
848         $CHECKSTAT -a $DIR/R9/a/f || error
849 }
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
851
852 test_24j() {
853         test_mkdir $DIR/R10
854         mrename $DIR/R10/f $DIR/R10/g
855         $CHECKSTAT -t dir $DIR/R10 || error
856         $CHECKSTAT -a $DIR/R10/f || error
857         $CHECKSTAT -a $DIR/R10/g || error
858 }
859 run_test 24j "source does not exist ============================"
860
861 test_24k() {
862         test_mkdir $DIR/R11a
863         test_mkdir $DIR/R11a/d
864         touch $DIR/R11a/f
865         mv $DIR/R11a/f $DIR/R11a/d
866         $CHECKSTAT -a $DIR/R11a/f || error
867         $CHECKSTAT -t file $DIR/R11a/d/f || error
868 }
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
870
871 # bug 2429 - rename foo foo foo creates invalid file
872 test_24l() {
873         f="$DIR/f24l"
874         $MULTIOP $f OcNs || error
875 }
876 run_test 24l "Renaming a file to itself ========================"
877
878 test_24m() {
879         f="$DIR/f24m"
880         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881         # on ext3 this does not remove either the source or target files
882         # though the "expected" operation would be to remove the source
883         $CHECKSTAT -t file ${f} || error "${f} missing"
884         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
885 }
886 run_test 24m "Renaming a file to a hard link to itself ========="
887
888 test_24n() {
889     f="$DIR/f24n"
890     # this stats the old file after it was renamed, so it should fail
891     touch ${f}
892     $CHECKSTAT ${f}
893     mv ${f} ${f}.rename
894     $CHECKSTAT ${f}.rename
895     $CHECKSTAT -a ${f}
896 }
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
898
899 test_24o() {
900         check_kernel_version 37 || return 0
901         test_mkdir -p $DIR/d24o
902         rename_many -s random -v -n 10 $DIR/d24o
903 }
904 run_test 24o "rename of files during htree split ==============="
905
906 test_24p() {
907         test_mkdir $DIR/R12a
908         test_mkdir $DIR/R12b
909         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910         mrename $DIR/R12a $DIR/R12b
911         $CHECKSTAT -a $DIR/R12a || error
912         $CHECKSTAT -t dir $DIR/R12b || error
913         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
915 }
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
917
918 cleanup_multiop_pause() {
919         trap 0
920         kill -USR1 $MULTIPID
921 }
922
923 test_24q() {
924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
925         test_mkdir $DIR/R13a
926         test_mkdir $DIR/R13b
927         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
929         MULTIPID=$!
930
931         trap cleanup_multiop_pause EXIT
932         mrename $DIR/R13a $DIR/R13b
933         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937         cleanup_multiop_pause
938         wait $MULTIPID || error "multiop close failed"
939 }
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
941
942 test_24r() { #bug 3789
943         test_mkdir $DIR/R14a
944         test_mkdir $DIR/R14a/b
945         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
948 }
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
950
951 test_24s() {
952         test_mkdir $DIR/R15a
953         test_mkdir $DIR/R15a/b
954         test_mkdir $DIR/R15a/b/c
955         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
958 }
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
960 test_24t() {
961         test_mkdir $DIR/R16a
962         test_mkdir $DIR/R16a/b
963         test_mkdir $DIR/R16a/b/c
964         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
967 }
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
969
970 test_24u() { # bug12192
971         rm -rf $DIR/$tfile
972         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
974 }
975 run_test 24u "create stripe file"
976
977 page_size() {
978         getconf PAGE_SIZE
979 }
980
981 simple_cleanup_common() {
982         trap 0
983         rm -rf $DIR/$tdir
984         wait_delete_completed
985 }
986
987 max_pages_per_rpc() {
988         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
989 }
990
991 test_24v() {
992         local NRFILES=100000
993         local FREE_INODES=$(mdt_free_inodes 0)
994         [ $FREE_INODES -lt $NRFILES ] && \
995                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
996                 return
997
998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999         trap simple_cleanup_common EXIT
1000
1001         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1002         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1003
1004         mkdir -p $DIR/$tdir
1005         createmany -m $DIR/$tdir/$tfile $NRFILES
1006
1007         cancel_lru_locks mdc
1008         lctl set_param mdc.*.stats clear
1009
1010         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1011
1012         # LU-5 large readdir
1013         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1014         #               8 bytes for name(filename is mostly 5 in this test) +
1015         #               8 bytes for luda_type
1016         # take into account of overhead in lu_dirpage header and end mark in
1017         # each page, plus one in RPC_NUM calculation.
1018         DIRENT_SIZE=48
1019         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1020         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1021         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1022                                 awk '/^mds_readpage/ {print $2}')
1023         [ $mds_readpage -gt $RPC_NUM ] && \
1024                 error "large readdir doesn't take effect"
1025
1026         simple_cleanup_common
1027 }
1028 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1029
1030 test_24w() { # bug21506
1031         SZ1=234852
1032         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1033         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1034         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1035         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1036         [ "$SZ1" = "$SZ2" ] || \
1037                 error "Error reading at the end of the file $tfile"
1038 }
1039 run_test 24w "Reading a file larger than 4Gb"
1040
1041 test_24x() {
1042         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1044         local MDTIDX=1
1045         local remote_dir=$DIR/$tdir/remote_dir
1046
1047         mkdir -p $DIR/$tdir
1048         $LFS mkdir -i $MDTIDX $remote_dir ||
1049                 error "create remote directory failed"
1050
1051         mkdir -p $DIR/$tdir/src_dir
1052         touch $DIR/$tdir/src_file
1053         mkdir -p $remote_dir/tgt_dir
1054         touch $remote_dir/tgt_file
1055
1056         mrename $remote_dir $DIR/ &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1060                 error "rename dir cross MDT works!"
1061
1062         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1063                 error "rename file cross MDT works!"
1064
1065         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1066                 error "ln file cross MDT should not work!"
1067
1068         rm -rf $DIR/$tdir || error "Can not delete directories"
1069 }
1070 run_test 24x "cross rename/link should be failed"
1071
1072 test_24y() {
1073         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1075         local MDTIDX=1
1076         local remote_dir=$DIR/$tdir/remote_dir
1077
1078         mkdir -p $DIR/$tdir
1079         $LFS mkdir -i $MDTIDX $remote_dir ||
1080                    error "create remote directory failed"
1081
1082         mkdir -p $remote_dir/src_dir
1083         touch $remote_dir/src_file
1084         mkdir -p $remote_dir/tgt_dir
1085         touch $remote_dir/tgt_file
1086
1087         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1088                 error "rename subdir in the same remote dir failed!"
1089
1090         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1091                 error "rename files in the same remote dir failed!"
1092
1093         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1094                 error "link files in the same remote dir failed!"
1095
1096         rm -rf $DIR/$tdir || error "Can not delete directories"
1097 }
1098 run_test 24y "rename/link on the same dir should succeed"
1099
1100 test_24z() {
1101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1103         local MDTIDX=1
1104         local remote_src=$DIR/$tdir/remote_dir
1105         local remote_tgt=$DIR/$tdir/remote_tgt
1106
1107         mkdir -p $DIR/$tdir
1108         $LFS mkdir -i $MDTIDX $remote_src ||
1109                    error "create remote directory failed"
1110
1111         $LFS mkdir -i $MDTIDX $remote_tgt ||
1112                    error "create remote directory failed"
1113
1114         mrename $remote_src $remote_tgt &&
1115                 error "rename remote dirs should not work!"
1116
1117         # If target dir does not exists, it should succeed
1118         rm -rf $remote_tgt
1119         mrename $remote_src $remote_tgt ||
1120                 error "rename remote dirs(tgt dir does not exists) failed!"
1121
1122         rm -rf $DIR/$tdir || error "Can not delete directories"
1123 }
1124 run_test 24z "rename one remote dir to another remote dir should fail"
1125
1126 test_24A() { # LU-3182
1127         local NFILES=5000
1128
1129         rm -rf $DIR/$tdir
1130         mkdir -p $DIR/$tdir
1131         createmany -m $DIR/$tdir/$tfile $NFILES
1132         local t=`ls $DIR/$tdir | wc -l`
1133         local u=`ls $DIR/$tdir | sort -u | wc -l`
1134         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1135                 error "Expected $NFILES files, got $t ($u unique)"
1136         fi
1137
1138         rm -rf $DIR/$tdir || error "Can not delete directories"
1139 }
1140 run_test 24A "readdir() returns correct number of entries."
1141
1142 test_25a() {
1143         echo '== symlink sanity ============================================='
1144
1145         test_mkdir $DIR/d25
1146         ln -s d25 $DIR/s25
1147         touch $DIR/s25/foo || error
1148 }
1149 run_test 25a "create file in symlinked directory ==============="
1150
1151 test_25b() {
1152         [ ! -d $DIR/d25 ] && test_25a
1153         $CHECKSTAT -t file $DIR/s25/foo || error
1154 }
1155 run_test 25b "lookup file in symlinked directory ==============="
1156
1157 test_26a() {
1158         test_mkdir $DIR/d26
1159         test_mkdir $DIR/d26/d26-2
1160         ln -s d26/d26-2 $DIR/s26
1161         touch $DIR/s26/foo || error
1162 }
1163 run_test 26a "multiple component symlink ======================="
1164
1165 test_26b() {
1166         test_mkdir -p $DIR/d26b/d26-2
1167         ln -s d26b/d26-2/foo $DIR/s26-2
1168         touch $DIR/s26-2 || error
1169 }
1170 run_test 26b "multiple component symlink at end of lookup ======"
1171
1172 test_26c() {
1173         test_mkdir $DIR/d26.2
1174         touch $DIR/d26.2/foo
1175         ln -s d26.2 $DIR/s26.2-1
1176         ln -s s26.2-1 $DIR/s26.2-2
1177         ln -s s26.2-2 $DIR/s26.2-3
1178         chmod 0666 $DIR/s26.2-3/foo
1179 }
1180 run_test 26c "chain of symlinks ================================"
1181
1182 # recursive symlinks (bug 439)
1183 test_26d() {
1184         ln -s d26-3/foo $DIR/d26-3
1185 }
1186 run_test 26d "create multiple component recursive symlink ======"
1187
1188 test_26e() {
1189         [ ! -h $DIR/d26-3 ] && test_26d
1190         rm $DIR/d26-3
1191 }
1192 run_test 26e "unlink multiple component recursive symlink ======"
1193
1194 # recursive symlinks (bug 7022)
1195 test_26f() {
1196         test_mkdir -p $DIR/$tdir
1197         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1198         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1199         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1200         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1201         cd $tfile                || error "cd $tfile failed"
1202         ln -s .. dotdot          || error "ln dotdot failed"
1203         ln -s dotdot/lndir lndir || error "ln lndir failed"
1204         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1205         output=`ls $tfile/$tfile/lndir/bar1`
1206         [ "$output" = bar1 ] && error "unexpected output"
1207         rm -r $tfile             || error "rm $tfile failed"
1208         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1209 }
1210 run_test 26f "rm -r of a directory which has recursive symlink ="
1211
1212 test_27a() {
1213         echo '== stripe sanity =============================================='
1214         test_mkdir -p $DIR/d27 || error "mkdir failed"
1215         $GETSTRIPE $DIR/d27
1216         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1217         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1218         pass
1219         log "== test_27a: write to one stripe file ========================="
1220         cp /etc/hosts $DIR/d27/f0 || error
1221 }
1222 run_test 27a "one stripe file =================================="
1223
1224 test_27b() {
1225         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1226         test_mkdir -p $DIR/d27
1227         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1228         $GETSTRIPE -c $DIR/d27/f01
1229         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1230                 error "two-stripe file doesn't have two stripes"
1231
1232         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1233 }
1234 run_test 27b "create and write to two stripe file"
1235
1236 test_27d() {
1237         test_mkdir -p $DIR/d27
1238         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1239         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1240         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1241 }
1242 run_test 27d "create file with default settings ================"
1243
1244 test_27e() {
1245         test_mkdir -p $DIR/d27
1246         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1247         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1248         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1249 }
1250 run_test 27e "setstripe existing file (should return error) ======"
1251
1252 test_27f() {
1253         test_mkdir -p $DIR/d27
1254         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1255         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1256         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1257 }
1258 run_test 27f "setstripe with bad stripe size (should return error)"
1259
1260 test_27g() {
1261         test_mkdir -p $DIR/d27
1262         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1263         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1264                 error "$DIR/d27/fnone has object"
1265 }
1266 run_test 27g "$GETSTRIPE with no objects"
1267
1268 test_27i() {
1269         touch $DIR/d27/fsome || error "touch failed"
1270         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1271 }
1272 run_test 27i "$GETSTRIPE with some objects"
1273
1274 test_27j() {
1275         test_mkdir -p $DIR/d27
1276         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1277 }
1278 run_test 27j "setstripe with bad stripe offset (should return error)"
1279
1280 test_27k() { # bug 2844
1281         test_mkdir -p $DIR/d27
1282         FILE=$DIR/d27/f27k
1283         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1284         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1285         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1286         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1287         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1288         dd if=/dev/zero of=$FILE bs=4k count=1
1289         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1290         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1291 }
1292 run_test 27k "limit i_blksize for broken user apps ============="
1293
1294 test_27l() {
1295         test_mkdir -p $DIR/d27
1296         mcreate $DIR/f27l || error "creating file"
1297         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1298                 error "setstripe should have failed" || true
1299 }
1300 run_test 27l "check setstripe permissions (should return error)"
1301
1302 test_27m() {
1303         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1304                 return
1305         if [ $ORIGFREE -gt $MAXFREE ]; then
1306                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1307                 return
1308         fi
1309         trap simple_cleanup_common EXIT
1310         test_mkdir -p $DIR/$tdir
1311         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1312         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1313                 error "dd should fill OST0"
1314         i=2
1315         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1316                 i=`expr $i + 1`
1317                 [ $i -gt 256 ] && break
1318         done
1319         i=`expr $i + 1`
1320         touch $DIR/$tdir/f27m_$i
1321         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1322                 error "OST0 was full but new created file still use it"
1323         i=`expr $i + 1`
1324         touch $DIR/$tdir/f27m_$i
1325         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1326                 error "OST0 was full but new created file still use it"
1327         simple_cleanup_common
1328 }
1329 run_test 27m "create file while OST0 was full =================="
1330
1331 sleep_maxage() {
1332         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1333         sleep $DELAY
1334 }
1335
1336 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1337 # if the OST isn't full anymore.
1338 reset_enospc() {
1339         local OSTIDX=${1:-""}
1340
1341         local list=$(comma_list $(osts_nodes))
1342         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1343
1344         do_nodes $list lctl set_param fail_loc=0
1345         sync    # initiate all OST_DESTROYs from MDS to OST
1346         sleep_maxage
1347 }
1348
1349 exhaust_precreations() {
1350         local OSTIDX=$1
1351         local FAILLOC=$2
1352         local FAILIDX=${3:-$OSTIDX}
1353
1354         test_mkdir -p $DIR/$tdir
1355         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1356         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1357
1358         local OST=$(ostname_from_index $OSTIDX)
1359         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1360                           sed -e 's/_UUID$//;s/^.*-//')
1361
1362         # on the mdt's osc
1363         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1364         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1365                         osc.$mdtosc_proc1.prealloc_last_id)
1366         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1367                         osc.$mdtosc_proc1.prealloc_next_id)
1368
1369         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1370         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1371
1372         test_mkdir -p $DIR/$tdir/${OST}
1373         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1374 #define OBD_FAIL_OST_ENOSPC              0x215
1375         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1377         echo "Creating to objid $last_id on ost $OST..."
1378         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1379         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1380         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1381         sleep_maxage
1382 }
1383
1384 exhaust_all_precreations() {
1385         local i
1386         for (( i=0; i < OSTCOUNT; i++ )) ; do
1387                 exhaust_precreations $i $1 -1
1388         done
1389 }
1390
1391 test_27n() {
1392         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1395         remote_ost_nodsh && skip "remote OST with nodsh" && return
1396
1397         reset_enospc
1398         rm -f $DIR/$tdir/$tfile
1399         exhaust_precreations 0 0x80000215
1400         $SETSTRIPE -c -1 $DIR/$tdir
1401         touch $DIR/$tdir/$tfile || error
1402         $GETSTRIPE $DIR/$tdir/$tfile
1403         reset_enospc
1404 }
1405 run_test 27n "create file with some full OSTs =================="
1406
1407 test_27o() {
1408         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1410         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1411         remote_ost_nodsh && skip "remote OST with nodsh" && return
1412
1413         reset_enospc
1414         rm -f $DIR/$tdir/$tfile
1415         exhaust_all_precreations 0x215
1416
1417         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1418
1419         reset_enospc
1420         rm -rf $DIR/$tdir/*
1421 }
1422 run_test 27o "create file with all full OSTs (should error) ===="
1423
1424 test_27p() {
1425         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1428         remote_ost_nodsh && skip "remote OST with nodsh" && return
1429
1430         reset_enospc
1431         rm -f $DIR/$tdir/$tfile
1432         test_mkdir -p $DIR/$tdir
1433
1434         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1435         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1436         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1437
1438         exhaust_precreations 0 0x80000215
1439         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1440         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1441         $GETSTRIPE $DIR/$tdir/$tfile
1442
1443         reset_enospc
1444 }
1445 run_test 27p "append to a truncated file with some full OSTs ==="
1446
1447 test_27q() {
1448         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1451         remote_ost_nodsh && skip "remote OST with nodsh" && return
1452
1453         reset_enospc
1454         rm -f $DIR/$tdir/$tfile
1455
1456         test_mkdir -p $DIR/$tdir
1457         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1458         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1459         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1460
1461         exhaust_all_precreations 0x215
1462
1463         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1464         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1465
1466         reset_enospc
1467 }
1468 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1469
1470 test_27r() {
1471         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1473         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1474         remote_ost_nodsh && skip "remote OST with nodsh" && return
1475
1476         reset_enospc
1477         rm -f $DIR/$tdir/$tfile
1478         exhaust_precreations 0 0x80000215
1479
1480         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1481
1482         reset_enospc
1483 }
1484 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1485
1486 test_27s() { # bug 10725
1487         test_mkdir -p $DIR/$tdir
1488         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1489         local stripe_count=0
1490         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1491         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1492                 error "stripe width >= 2^32 succeeded" || true
1493
1494 }
1495 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1496
1497 test_27t() { # bug 10864
1498         WDIR=`pwd`
1499         WLFS=`which lfs`
1500         cd $DIR
1501         touch $tfile
1502         $WLFS getstripe $tfile
1503         cd $WDIR
1504 }
1505 run_test 27t "check that utils parse path correctly"
1506
1507 test_27u() { # bug 4900
1508         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1510         local index
1511         local list=$(comma_list $(mdts_nodes))
1512
1513 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1514         do_nodes $list $LCTL set_param fail_loc=0x139
1515         test_mkdir -p $DIR/$tdir
1516         rm -rf $DIR/$tdir/*
1517         createmany -o $DIR/$tdir/t- 1000
1518         do_nodes $list $LCTL set_param fail_loc=0
1519
1520         TLOG=$DIR/$tfile.getstripe
1521         $GETSTRIPE $DIR/$tdir > $TLOG
1522         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1523         unlinkmany $DIR/$tdir/t- 1000
1524         [ $OBJS -gt 0 ] && \
1525                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1526 }
1527 run_test 27u "skip object creation on OSC w/o objects =========="
1528
1529 test_27v() { # bug 4900
1530         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1533         remote_ost_nodsh && skip "remote OST with nodsh" && return
1534
1535         exhaust_all_precreations 0x215
1536         reset_enospc
1537
1538         test_mkdir -p $DIR/$tdir
1539         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1540
1541         touch $DIR/$tdir/$tfile
1542         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1543         # all except ost1
1544         for (( i=1; i < OSTCOUNT; i++ )); do
1545                 do_facet ost$i lctl set_param fail_loc=0x705
1546         done
1547         local START=`date +%s`
1548         createmany -o $DIR/$tdir/$tfile 32
1549
1550         local FINISH=`date +%s`
1551         local TIMEOUT=`lctl get_param -n timeout`
1552         local PROCESS=$((FINISH - START))
1553         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1554                error "$FINISH - $START >= $TIMEOUT / 2"
1555         sleep $((TIMEOUT / 2 - PROCESS))
1556         reset_enospc
1557 }
1558 run_test 27v "skip object creation on slow OST ================="
1559
1560 test_27w() { # bug 10997
1561         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1562         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1563         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1564                 error "stripe size $size != 65536" || true
1565         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1566                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1567 }
1568 run_test 27w "check $SETSTRIPE -S option"
1569
1570 test_27wa() {
1571         [ "$OSTCOUNT" -lt "2" ] &&
1572                 skip_env "skipping multiple stripe count/offset test" && return
1573
1574         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1575         for i in $(seq 1 $OSTCOUNT); do
1576                 offset=$((i - 1))
1577                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1578                         error "setstripe -c $i -i $offset failed"
1579                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1580                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1581                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1582                 [ $index -ne $offset ] &&
1583                         error "stripe offset $index != $offset" || true
1584         done
1585 }
1586 run_test 27wa "check $SETSTRIPE -c -i options"
1587
1588 test_27x() {
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1592         OFFSET=$(($OSTCOUNT - 1))
1593         OSTIDX=0
1594         local OST=$(ostname_from_index $OSTIDX)
1595
1596         test_mkdir -p $DIR/$tdir
1597         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1598         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1599         sleep_maxage
1600         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1601         for i in `seq 0 $OFFSET`; do
1602                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1603                 error "OST0 was degraded but new created file still use it"
1604         done
1605         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1606 }
1607 run_test 27x "create files while OST0 is degraded"
1608
1609 test_27y() {
1610         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1611         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1612         remote_ost_nodsh && skip "remote OST with nodsh" && return
1613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1614
1615         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1616         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1617             osc.$mdtosc.prealloc_last_id)
1618         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1619             osc.$mdtosc.prealloc_next_id)
1620         local fcount=$((last_id - next_id))
1621         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1622         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1623
1624         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1625                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1626         local OST_DEACTIVE_IDX=-1
1627         local OSC
1628         local OSTIDX
1629         local OST
1630
1631         for OSC in $MDS_OSCS; do
1632                 OST=$(osc_to_ost $OSC)
1633                 OSTIDX=$(index_from_ostuuid $OST)
1634                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1635                         OST_DEACTIVE_IDX=$OSTIDX
1636                 fi
1637                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1638                         echo $OSC "is Deactivated:"
1639                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1640                 fi
1641         done
1642
1643         OSTIDX=$(index_from_ostuuid $OST)
1644         mkdir -p $DIR/$tdir
1645         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1646
1647         for OSC in $MDS_OSCS; do
1648                 OST=$(osc_to_ost $OSC)
1649                 OSTIDX=$(index_from_ostuuid $OST)
1650                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1651                         echo $OST "is degraded:"
1652                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1653                                                 obdfilter.$OST.degraded=1
1654                 fi
1655         done
1656
1657         sleep_maxage
1658         createmany -o $DIR/$tdir/$tfile $fcount
1659
1660         for OSC in $MDS_OSCS; do
1661                 OST=$(osc_to_ost $OSC)
1662                 OSTIDX=$(index_from_ostuuid $OST)
1663                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1664                         echo $OST "is recovered from degraded:"
1665                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1666                                                 obdfilter.$OST.degraded=0
1667                 else
1668                         do_facet $SINGLEMDS lctl --device %$OSC activate
1669                 fi
1670         done
1671
1672         # all osp devices get activated, hence -1 stripe count restored
1673         local stripecnt=0
1674
1675         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1676         # devices get activated.
1677         sleep_maxage
1678         $SETSTRIPE -c -1 $DIR/$tfile
1679         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1680         rm -f $DIR/$tfile
1681         [ $stripecnt -ne $OSTCOUNT ] &&
1682                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1683         return 0
1684 }
1685 run_test 27y "create files while OST0 is degraded and the rest inactive"
1686
1687 check_seq_oid()
1688 {
1689         log "check file $1"
1690
1691         lmm_count=$($GETSTRIPE -c $1)
1692         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1693         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1694
1695         local old_ifs="$IFS"
1696         IFS=$'[:]'
1697         fid=($($LFS path2fid $1))
1698         IFS="$old_ifs"
1699
1700         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1701         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1702
1703         # compare lmm_seq and lu_fid->f_seq
1704         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1705         # compare lmm_object_id and lu_fid->oid
1706         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1707
1708         # check the trusted.fid attribute of the OST objects of the file
1709         local have_obdidx=false
1710         local stripe_nr=0
1711         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1712                 # skip lines up to and including "obdidx"
1713                 [ -z "$obdidx" ] && break
1714                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1715                 $have_obdidx || continue
1716
1717                 local ost=$((obdidx + 1))
1718                 local dev=$(ostdevname $ost)
1719                 local oid_hex
1720
1721                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1722                         echo "Currently only works with ldiskfs-based OSTs"
1723                         continue
1724                 fi
1725
1726                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1727
1728                 #don't unmount/remount the OSTs if we don't need to do that
1729                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1730                 # update too, until that use mount/ll_decode_filter_fid/mount
1731                 local dir=$(facet_mntpt ost$ost)
1732                 local opts=${OST_MOUNT_OPTS}
1733
1734                 if !  do_facet ost$ost test -b ${dev}; then
1735                         opts=$(csa_add "$opts" -o loop)
1736                 fi
1737
1738                 stop ost$ost
1739                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1740                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1741
1742                 seq=$(echo $seq | sed -e "s/^0x//g")
1743                 if [ $seq == 0 ]; then
1744                         oid_hex=$(echo $oid)
1745                 else
1746                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1747                 fi
1748                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1749                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1750                 do_facet ost$ost umount -d $dir
1751                 start ost$ost $dev $OST_MOUNT_OPTS
1752
1753                 # re-enable when debugfs will understand new filter_fid
1754                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1755                 #           $dev 2>/dev/null" | grep "parent=")
1756
1757                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1758
1759                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1760
1761                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1762                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1763                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1764                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1765                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1766                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1767
1768                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1769                 [ $ff_pseq = $lmm_seq ] ||
1770                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1771                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1772                 [ $ff_poid = $lmm_oid ] ||
1773                         error "FF parent OID $ff_poid != $lmm_oid"
1774                 [ $ff_pstripe = $stripe_nr ] ||
1775                         error "FF stripe $ff_pstripe != $stripe_nr"
1776
1777                 stripe_nr=$((stripe_nr + 1))
1778         done
1779 }
1780
1781 test_27z() {
1782         remote_ost_nodsh && skip "remote OST with nodsh" && return
1783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1784         test_mkdir -p $DIR/$tdir
1785
1786         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1787                 { error "setstripe -c -1 failed"; return 1; }
1788         # We need to send a write to every object to get parent FID info set.
1789         # This _should_ also work for setattr, but does not currently.
1790         # touch $DIR/$tdir/$tfile-1 ||
1791         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1792                 { error "dd $tfile-1 failed"; return 2; }
1793         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1794                 { error "setstripe -c -1 failed"; return 3; }
1795         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1796                 { error "dd $tfile-2 failed"; return 4; }
1797
1798         # make sure write RPCs have been sent to OSTs
1799         sync; sleep 5; sync
1800
1801         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1802         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1803 }
1804 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1805
1806 test_27A() { # b=19102
1807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1808         local restore_size=$($GETSTRIPE -S $MOUNT)
1809         local restore_count=$($GETSTRIPE -c $MOUNT)
1810         local restore_offset=$($GETSTRIPE -i $MOUNT)
1811         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1812         local default_size=$($GETSTRIPE -S $MOUNT)
1813         local default_count=$($GETSTRIPE -c $MOUNT)
1814         local default_offset=$($GETSTRIPE -i $MOUNT)
1815         local dsize=$((1024 * 1024))
1816         [ $default_size -eq $dsize ] ||
1817                 error "stripe size $default_size != $dsize"
1818         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1819         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1820         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1821 }
1822 run_test 27A "check filesystem-wide default LOV EA values"
1823
1824 test_27B() { # LU-2523
1825         test_mkdir -p $DIR/$tdir
1826         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1827         touch $DIR/$tdir/f0
1828         # open f1 with O_LOV_DELAY_CREATE
1829         # rename f0 onto f1
1830         # call setstripe ioctl on open file descriptor for f1
1831         # close
1832         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1833                 $DIR/$tdir/f0
1834
1835         rm -f $DIR/$tdir/f1
1836         # open f1 with O_LOV_DELAY_CREATE
1837         # unlink f1
1838         # call setstripe ioctl on open file descriptor for f1
1839         # close
1840         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1841
1842         # Allow multiop to fail in imitation of NFS's busted semantics.
1843         true
1844 }
1845 run_test 27B "call setstripe on open unlinked file/rename victim"
1846
1847 test_27C() { #LU-2871
1848         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1849
1850         declare -a ost_idx
1851         local index
1852         local found
1853         local i
1854         local j
1855
1856         test_mkdir -p $DIR/$tdir
1857         cd $DIR/$tdir
1858         for i in $(seq 0 $((OSTCOUNT - 1))); do
1859                 # set stripe across all OSTs starting from OST$i
1860                 $SETSTRIPE -i $i -c -1 $tfile$i
1861                 # get striping information
1862                 ost_idx=($($GETSTRIPE $tfile$i |
1863                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1864                 echo ${ost_idx[@]}
1865
1866                 # check the layout
1867                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1868                         error "${#ost_idx[@]} != $OSTCOUNT"
1869
1870                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1871                         found=0
1872                         for j in $(echo ${ost_idx[@]}); do
1873                                 if [ $index -eq $j ]; then
1874                                         found=1
1875                                         break
1876                                 fi
1877                         done
1878                         [ $found = 1 ] ||
1879                                 error "Can not find $index in ${ost_idx[@]}"
1880                 done
1881         done
1882 }
1883 run_test 27C "check full striping across all OSTs"
1884
1885 # createtest also checks that device nodes are created and
1886 # then visible correctly (#2091)
1887 test_28() { # bug 2091
1888         test_mkdir $DIR/d28
1889         $CREATETEST $DIR/d28/ct || error
1890 }
1891 run_test 28 "create/mknod/mkdir with bad file types ============"
1892
1893 test_29() {
1894         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1895         cancel_lru_locks mdc
1896         test_mkdir $DIR/d29
1897         touch $DIR/d29/foo
1898         log 'first d29'
1899         ls -l $DIR/d29
1900
1901         declare -i LOCKCOUNTORIG=0
1902         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1903                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1904         done
1905         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1906
1907         declare -i LOCKUNUSEDCOUNTORIG=0
1908         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1909                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1910         done
1911
1912         log 'second d29'
1913         ls -l $DIR/d29
1914         log 'done'
1915
1916         declare -i LOCKCOUNTCURRENT=0
1917         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1918                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1919         done
1920
1921         declare -i LOCKUNUSEDCOUNTCURRENT=0
1922         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1923                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1924         done
1925
1926         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1927                 lctl set_param -n ldlm.dump_namespaces ""
1928                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1929                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1930                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1931                 return 2
1932         fi
1933         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1934                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1935                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1936                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1937                 return 3
1938         fi
1939 }
1940 run_test 29 "IT_GETATTR regression  ============================"
1941
1942 test_30a() { # was test_30
1943         cp `which ls` $DIR || cp /bin/ls $DIR
1944         $DIR/ls / || error
1945         rm $DIR/ls
1946 }
1947 run_test 30a "execute binary from Lustre (execve) =============="
1948
1949 test_30b() {
1950         cp `which ls` $DIR || cp /bin/ls $DIR
1951         chmod go+rx $DIR/ls
1952         $RUNAS $DIR/ls / || error
1953         rm $DIR/ls
1954 }
1955 run_test 30b "execute binary from Lustre as non-root ==========="
1956
1957 test_30c() { # b=22376
1958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1959         cp `which ls` $DIR || cp /bin/ls $DIR
1960         chmod a-rw $DIR/ls
1961         cancel_lru_locks mdc
1962         cancel_lru_locks osc
1963         $RUNAS $DIR/ls / || error
1964         rm -f $DIR/ls
1965 }
1966 run_test 30c "execute binary from Lustre without read perms ===="
1967
1968 test_31a() {
1969         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1970         $CHECKSTAT -a $DIR/f31 || error
1971 }
1972 run_test 31a "open-unlink file =================================="
1973
1974 test_31b() {
1975         touch $DIR/f31 || error
1976         ln $DIR/f31 $DIR/f31b || error
1977         $MULTIOP $DIR/f31b Ouc || error
1978         $CHECKSTAT -t file $DIR/f31 || error
1979 }
1980 run_test 31b "unlink file with multiple links while open ======="
1981
1982 test_31c() {
1983         touch $DIR/f31 || error
1984         ln $DIR/f31 $DIR/f31c || error
1985         multiop_bg_pause $DIR/f31 O_uc || return 1
1986         MULTIPID=$!
1987         $MULTIOP $DIR/f31c Ouc
1988         kill -USR1 $MULTIPID
1989         wait $MULTIPID
1990 }
1991 run_test 31c "open-unlink file with multiple links ============="
1992
1993 test_31d() {
1994         opendirunlink $DIR/d31d $DIR/d31d || error
1995         $CHECKSTAT -a $DIR/d31d || error
1996 }
1997 run_test 31d "remove of open directory ========================="
1998
1999 test_31e() { # bug 2904
2000         check_kernel_version 34 || return 0
2001         openfilleddirunlink $DIR/d31e || error
2002 }
2003 run_test 31e "remove of open non-empty directory ==============="
2004
2005 test_31f() { # bug 4554
2006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2007         set -vx
2008         test_mkdir $DIR/d31f
2009         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2010         cp /etc/hosts $DIR/d31f
2011         ls -l $DIR/d31f
2012         $GETSTRIPE $DIR/d31f/hosts
2013         multiop_bg_pause $DIR/d31f D_c || return 1
2014         MULTIPID=$!
2015
2016         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2017         test_mkdir $DIR/d31f
2018         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2019         cp /etc/hosts $DIR/d31f
2020         ls -l $DIR/d31f
2021         $GETSTRIPE $DIR/d31f/hosts
2022         multiop_bg_pause $DIR/d31f D_c || return 1
2023         MULTIPID2=$!
2024
2025         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2026         wait $MULTIPID || error "first opendir $MULTIPID failed"
2027
2028         sleep 6
2029
2030         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2031         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2032         set +vx
2033 }
2034 run_test 31f "remove of open directory with open-unlink file ==="
2035
2036 test_31g() {
2037         echo "-- cross directory link --"
2038         test_mkdir $DIR/d31ga
2039         test_mkdir $DIR/d31gb
2040         touch $DIR/d31ga/f
2041         ln $DIR/d31ga/f $DIR/d31gb/g
2042         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2043         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2044         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2045         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2046 }
2047 run_test 31g "cross directory link==============="
2048
2049 test_31h() {
2050         echo "-- cross directory link --"
2051         test_mkdir $DIR/d31h
2052         test_mkdir $DIR/d31h/dir
2053         touch $DIR/d31h/f
2054         ln $DIR/d31h/f $DIR/d31h/dir/g
2055         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2056         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2057         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2058         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2059 }
2060 run_test 31h "cross directory link under child==============="
2061
2062 test_31i() {
2063         echo "-- cross directory link --"
2064         test_mkdir $DIR/d31i
2065         test_mkdir $DIR/d31i/dir
2066         touch $DIR/d31i/dir/f
2067         ln $DIR/d31i/dir/f $DIR/d31i/g
2068         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2069         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2070         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2071         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2072 }
2073 run_test 31i "cross directory link under parent==============="
2074
2075
2076 test_31j() {
2077         test_mkdir $DIR/d31j
2078         test_mkdir $DIR/d31j/dir1
2079         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2080         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2081         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2082         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2083         return 0
2084 }
2085 run_test 31j "link for directory==============="
2086
2087
2088 test_31k() {
2089         test_mkdir $DIR/d31k
2090         touch $DIR/d31k/s
2091         touch $DIR/d31k/exist
2092         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2093         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2094         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2095         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2096         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2097         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2098         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2099         return 0
2100 }
2101 run_test 31k "link to file: the same, non-existing, dir==============="
2102
2103 test_31m() {
2104         test_mkdir $DIR/d31m
2105         touch $DIR/d31m/s
2106         test_mkdir $DIR/d31m2
2107         touch $DIR/d31m2/exist
2108         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2109         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2110         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2111         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2112         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2113         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2114         return 0
2115 }
2116 run_test 31m "link to file: the same, non-existing, dir==============="
2117
2118 test_31n() {
2119         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2120         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2121         nlink=$(stat --format=%h $DIR/$tfile)
2122         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2123         exec 173<$DIR/$tfile
2124         trap "exec 173<&-" EXIT
2125         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2126         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2127         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2128         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2129         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2130         exec 173<&-
2131 }
2132 run_test 31n "check link count of unlinked file"
2133
2134 link_one() {
2135         local TEMPNAME=$(mktemp $1_XXXXXX)
2136         mlink $TEMPNAME $1 2> /dev/null &&
2137                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2138         munlink $TEMPNAME
2139 }
2140
2141 test_31o() { # LU-2901
2142         mkdir -p $DIR/$tdir
2143         for LOOP in $(seq 100); do
2144                 rm -f $DIR/$tdir/$tfile*
2145                 for THREAD in $(seq 8); do
2146                         link_one $DIR/$tdir/$tfile.$LOOP &
2147                 done
2148                 wait
2149                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2150                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2151                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2152                         break || true
2153         done
2154 }
2155 run_test 31o "duplicate hard links with same filename"
2156
2157 cleanup_test32_mount() {
2158         trap 0
2159         $UMOUNT $DIR/$tdir/ext2-mountpoint
2160 }
2161
2162 test_32a() {
2163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2164         echo "== more mountpoints and symlinks ================="
2165         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2166         trap cleanup_test32_mount EXIT
2167         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2168         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2169         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2170         cleanup_test32_mount
2171 }
2172 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2173
2174 test_32b() {
2175         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2176         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2177         trap cleanup_test32_mount EXIT
2178         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2179         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2180         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2181         cleanup_test32_mount
2182 }
2183 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2184
2185 test_32c() {
2186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2187         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2188         trap cleanup_test32_mount EXIT
2189         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2190         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2191         test_mkdir -p $DIR/$tdir/d2/test_dir
2192         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2193         cleanup_test32_mount
2194 }
2195 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2196
2197 test_32d() {
2198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2199         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2200         trap cleanup_test32_mount EXIT
2201         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2202         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2203         test_mkdir -p $DIR/$tdir/d2/test_dir
2204         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2205         cleanup_test32_mount
2206 }
2207 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2208
2209 test_32e() {
2210         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2211         test_mkdir -p $DIR/d32e/tmp
2212         TMP_DIR=$DIR/d32e/tmp
2213         ln -s $DIR/d32e $TMP_DIR/symlink11
2214         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2215         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2216         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2217 }
2218 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2219
2220 test_32f() {
2221         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2222         test_mkdir -p $DIR/d32f/tmp
2223         TMP_DIR=$DIR/d32f/tmp
2224         ln -s $DIR/d32f $TMP_DIR/symlink11
2225         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2226         ls $DIR/d32f/tmp/symlink11  || error
2227         ls $DIR/d32f/symlink01 || error
2228 }
2229 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2230
2231 test_32g() {
2232         TMP_DIR=$DIR/$tdir/tmp
2233         test_mkdir -p $DIR/$tdir/tmp
2234         test_mkdir $DIR/${tdir}2
2235         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2236         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2237         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2238         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2239         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2240         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2241 }
2242 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2243
2244 test_32h() {
2245         rm -fr $DIR/$tdir $DIR/${tdir}2
2246         TMP_DIR=$DIR/$tdir/tmp
2247         test_mkdir -p $DIR/$tdir/tmp
2248         test_mkdir $DIR/${tdir}2
2249         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2250         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2251         ls $TMP_DIR/symlink12 || error
2252         ls $DIR/$tdir/symlink02  || error
2253 }
2254 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2255
2256 test_32i() {
2257         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2258         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2259         trap cleanup_test32_mount EXIT
2260         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2261         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2262         touch $DIR/$tdir/test_file
2263         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2264         cleanup_test32_mount
2265 }
2266 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2267
2268 test_32j() {
2269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2270         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2271         trap cleanup_test32_mount EXIT
2272         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2273         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2274         touch $DIR/$tdir/test_file
2275         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2276         cleanup_test32_mount
2277 }
2278 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2279
2280 test_32k() {
2281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2282         rm -fr $DIR/$tdir
2283         trap cleanup_test32_mount EXIT
2284         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2285         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2286         test_mkdir -p $DIR/$tdir/d2
2287         touch $DIR/$tdir/d2/test_file || error
2288         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2289         cleanup_test32_mount
2290 }
2291 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2292
2293 test_32l() {
2294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2295         rm -fr $DIR/$tdir
2296         trap cleanup_test32_mount EXIT
2297         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2298         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2299         test_mkdir -p $DIR/$tdir/d2
2300         touch $DIR/$tdir/d2/test_file
2301         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2302         cleanup_test32_mount
2303 }
2304 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2305
2306 test_32m() {
2307         rm -fr $DIR/d32m
2308         test_mkdir -p $DIR/d32m/tmp
2309         TMP_DIR=$DIR/d32m/tmp
2310         ln -s $DIR $TMP_DIR/symlink11
2311         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2312         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2313         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2314 }
2315 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2316
2317 test_32n() {
2318         rm -fr $DIR/d32n
2319         test_mkdir -p $DIR/d32n/tmp
2320         TMP_DIR=$DIR/d32n/tmp
2321         ln -s $DIR $TMP_DIR/symlink11
2322         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2323         ls -l $DIR/d32n/tmp/symlink11  || error
2324         ls -l $DIR/d32n/symlink01 || error
2325 }
2326 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2327
2328 test_32o() {
2329         rm -fr $DIR/d32o $DIR/$tfile
2330         touch $DIR/$tfile
2331         test_mkdir -p $DIR/d32o/tmp
2332         TMP_DIR=$DIR/d32o/tmp
2333         ln -s $DIR/$tfile $TMP_DIR/symlink12
2334         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2335         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2336         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2337         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2338         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2339 }
2340 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2341
2342 test_32p() {
2343     log 32p_1
2344         rm -fr $DIR/d32p
2345     log 32p_2
2346         rm -f $DIR/$tfile
2347     log 32p_3
2348         touch $DIR/$tfile
2349     log 32p_4
2350         test_mkdir -p $DIR/d32p/tmp
2351     log 32p_5
2352         TMP_DIR=$DIR/d32p/tmp
2353     log 32p_6
2354         ln -s $DIR/$tfile $TMP_DIR/symlink12
2355     log 32p_7
2356         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2357     log 32p_8
2358         cat $DIR/d32p/tmp/symlink12 || error
2359     log 32p_9
2360         cat $DIR/d32p/symlink02 || error
2361     log 32p_10
2362 }
2363 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2364
2365 cleanup_testdir_mount() {
2366         trap 0
2367         $UMOUNT $DIR/$tdir
2368 }
2369
2370 test_32q() {
2371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2372         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2373         trap cleanup_testdir_mount EXIT
2374         test_mkdir -p $DIR/$tdir
2375         touch $DIR/$tdir/under_the_mount
2376         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2377         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2378         cleanup_testdir_mount
2379 }
2380 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2381
2382 test_32r() {
2383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2384         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2385         trap cleanup_testdir_mount EXIT
2386         test_mkdir -p $DIR/$tdir
2387         touch $DIR/$tdir/under_the_mount
2388         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2389         ls $DIR/$tdir | grep -q under_the_mount && error || true
2390         cleanup_testdir_mount
2391 }
2392 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2393
2394 test_33aa() {
2395         rm -f $DIR/$tfile
2396         touch $DIR/$tfile
2397         chmod 444 $DIR/$tfile
2398         chown $RUNAS_ID $DIR/$tfile
2399         log 33_1
2400         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2401         log 33_2
2402 }
2403 run_test 33aa "write file with mode 444 (should return error) ===="
2404
2405 test_33a() {
2406         rm -fr $DIR/d33
2407         test_mkdir -p $DIR/d33
2408         chown $RUNAS_ID $DIR/d33
2409         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2410         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2411                 error "open RDWR" || true
2412 }
2413 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2414
2415 test_33b() {
2416         rm -fr $DIR/d33
2417         test_mkdir -p $DIR/d33
2418         chown $RUNAS_ID $DIR/d33
2419         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2420 }
2421 run_test 33b "test open file with malformed flags (No panic and return error)"
2422
2423 test_33c() {
2424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2425         local ostnum
2426         local ostname
2427         local write_bytes
2428         local all_zeros
2429
2430         remote_ost_nodsh && skip "remote OST with nodsh" && return
2431         all_zeros=:
2432         rm -fr $DIR/d33
2433         test_mkdir -p $DIR/d33
2434         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2435
2436         sync
2437         for ostnum in $(seq $OSTCOUNT); do
2438                 # test-framework's OST numbering is one-based, while Lustre's
2439                 # is zero-based
2440                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2441                 # Parsing llobdstat's output sucks; we could grep the /proc
2442                 # path, but that's likely to not be as portable as using the
2443                 # llobdstat utility.  So we parse lctl output instead.
2444                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2445                         obdfilter/$ostname/stats |
2446                         awk '/^write_bytes/ {print $7}' )
2447                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2448                 if (( ${write_bytes:-0} > 0 ))
2449                 then
2450                         all_zeros=false
2451                         break;
2452                 fi
2453         done
2454
2455         $all_zeros || return 0
2456
2457         # Write four bytes
2458         echo foo > $DIR/d33/bar
2459         # Really write them
2460         sync
2461
2462         # Total up write_bytes after writing.  We'd better find non-zeros.
2463         for ostnum in $(seq $OSTCOUNT); do
2464                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2465                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2466                         obdfilter/$ostname/stats |
2467                         awk '/^write_bytes/ {print $7}' )
2468                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2469                 if (( ${write_bytes:-0} > 0 ))
2470                 then
2471                         all_zeros=false
2472                         break;
2473                 fi
2474         done
2475
2476         if $all_zeros
2477         then
2478                 for ostnum in $(seq $OSTCOUNT); do
2479                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2480                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2481                         do_facet ost$ostnum lctl get_param -n \
2482                                 obdfilter/$ostname/stats
2483                 done
2484                 error "OST not keeping write_bytes stats (b22312)"
2485         fi
2486 }
2487 run_test 33c "test llobdstat and write_bytes"
2488
2489 test_33d() {
2490         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2492         local MDTIDX=1
2493         local remote_dir=$DIR/$tdir/remote_dir
2494
2495         mkdir -p $DIR/$tdir
2496         $LFS mkdir -i $MDTIDX $remote_dir ||
2497                 error "create remote directory failed"
2498
2499         touch $remote_dir/$tfile
2500         chmod 444 $remote_dir/$tfile
2501         chown $RUNAS_ID $remote_dir/$tfile
2502
2503         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2504
2505         chown $RUNAS_ID $remote_dir
2506         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2507                                         error "create" || true
2508         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2509                                     error "open RDWR" || true
2510         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2511                                     error "create" || true
2512 }
2513 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2514
2515 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2516 test_34a() {
2517         rm -f $DIR/f34
2518         $MCREATE $DIR/f34 || error
2519         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2520         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2521         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2522         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2523 }
2524 run_test 34a "truncate file that has not been opened ==========="
2525
2526 test_34b() {
2527         [ ! -f $DIR/f34 ] && test_34a
2528         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2529         $OPENFILE -f O_RDONLY $DIR/f34
2530         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2531         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2532 }
2533 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2534
2535 test_34c() {
2536         [ ! -f $DIR/f34 ] && test_34a
2537         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2538         $OPENFILE -f O_RDWR $DIR/f34
2539         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2540         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2541 }
2542 run_test 34c "O_RDWR opening file-with-size works =============="
2543
2544 test_34d() {
2545         [ ! -f $DIR/f34 ] && test_34a
2546         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2547         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2548         rm $DIR/f34
2549 }
2550 run_test 34d "write to sparse file ============================="
2551
2552 test_34e() {
2553         rm -f $DIR/f34e
2554         $MCREATE $DIR/f34e || error
2555         $TRUNCATE $DIR/f34e 1000 || error
2556         $CHECKSTAT -s 1000 $DIR/f34e || error
2557         $OPENFILE -f O_RDWR $DIR/f34e
2558         $CHECKSTAT -s 1000 $DIR/f34e || error
2559 }
2560 run_test 34e "create objects, some with size and some without =="
2561
2562 test_34f() { # bug 6242, 6243
2563         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2564         SIZE34F=48000
2565         rm -f $DIR/f34f
2566         $MCREATE $DIR/f34f || error
2567         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2568         dd if=$DIR/f34f of=$TMP/f34f
2569         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2570         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2571         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2572         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2573         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2574 }
2575 run_test 34f "read from a file with no objects until EOF ======="
2576
2577 test_34g() {
2578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2579         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2580         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2581         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2582         cancel_lru_locks osc
2583         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2584                 error "wrong size after lock cancel"
2585
2586         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2587         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2588                 error "expanding truncate failed"
2589         cancel_lru_locks osc
2590         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2591                 error "wrong expanded size after lock cancel"
2592 }
2593 run_test 34g "truncate long file ==============================="
2594
2595 test_34h() {
2596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2597         local gid=10
2598         local sz=1000
2599
2600         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2601         sync # Flush the cache so that multiop below does not block on cache
2602              # flush when getting the group lock
2603         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2604         MULTIPID=$!
2605
2606         # Since just timed wait is not good enough, let's do a sync write
2607         # that way we are sure enough time for a roundtrip + processing
2608         # passed + 2 seconds of extra margin.
2609         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2610         rm $DIR/${tfile}-1
2611         sleep 2
2612
2613         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2614                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2615                 kill -9 $MULTIPID
2616         fi
2617         wait $MULTIPID
2618         local nsz=`stat -c %s $DIR/$tfile`
2619         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2620 }
2621 run_test 34h "ftruncate file under grouplock should not block"
2622
2623 test_35a() {
2624         cp /bin/sh $DIR/f35a
2625         chmod 444 $DIR/f35a
2626         chown $RUNAS_ID $DIR/f35a
2627         $RUNAS $DIR/f35a && error || true
2628         rm $DIR/f35a
2629 }
2630 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2631
2632 test_36a() {
2633         rm -f $DIR/f36
2634         utime $DIR/f36 || error
2635 }
2636 run_test 36a "MDS utime check (mknod, utime) ==================="
2637
2638 test_36b() {
2639         echo "" > $DIR/f36
2640         utime $DIR/f36 || error
2641 }
2642 run_test 36b "OST utime check (open, utime) ===================="
2643
2644 test_36c() {
2645         rm -f $DIR/d36/f36
2646         test_mkdir $DIR/d36
2647         chown $RUNAS_ID $DIR/d36
2648         $RUNAS utime $DIR/d36/f36 || error
2649 }
2650 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2651
2652 test_36d() {
2653         [ ! -d $DIR/d36 ] && test_36c
2654         echo "" > $DIR/d36/f36
2655         $RUNAS utime $DIR/d36/f36 || error
2656 }
2657 run_test 36d "non-root OST utime check (open, utime) ==========="
2658
2659 test_36e() {
2660         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2661         test_mkdir -p $DIR/$tdir
2662         touch $DIR/$tdir/$tfile
2663         $RUNAS utime $DIR/$tdir/$tfile && \
2664                 error "utime worked, expected failure" || true
2665 }
2666 run_test 36e "utime on non-owned file (should return error) ===="
2667
2668 subr_36fh() {
2669         local fl="$1"
2670         local LANG_SAVE=$LANG
2671         local LC_LANG_SAVE=$LC_LANG
2672         export LANG=C LC_LANG=C # for date language
2673
2674         DATESTR="Dec 20  2000"
2675         test_mkdir -p $DIR/$tdir
2676         lctl set_param fail_loc=$fl
2677         date; date +%s
2678         cp /etc/hosts $DIR/$tdir/$tfile
2679         sync & # write RPC generated with "current" inode timestamp, but delayed
2680         sleep 1
2681         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2682         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2683         cancel_lru_locks osc
2684         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2685         date; date +%s
2686         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2687                 echo "BEFORE: $LS_BEFORE" && \
2688                 echo "AFTER : $LS_AFTER" && \
2689                 echo "WANT  : $DATESTR" && \
2690                 error "$DIR/$tdir/$tfile timestamps changed" || true
2691
2692         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2693 }
2694
2695 test_36f() {
2696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2697         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2698         subr_36fh "0x80000214"
2699 }
2700 run_test 36f "utime on file racing with OST BRW write =========="
2701
2702 test_36g() {
2703         remote_ost_nodsh && skip "remote OST with nodsh" && return
2704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2705         local fmd_max_age
2706         local fmd_before
2707         local fmd_after
2708
2709         test_mkdir -p $DIR/$tdir
2710         fmd_max_age=$(do_facet ost1 \
2711                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2712                 head -n 1")
2713
2714         fmd_before=$(do_facet ost1 \
2715                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2716         touch $DIR/$tdir/$tfile
2717         sleep $((fmd_max_age + 12))
2718         fmd_after=$(do_facet ost1 \
2719                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2720
2721         echo "fmd_before: $fmd_before"
2722         echo "fmd_after: $fmd_after"
2723         [ "$fmd_after" -gt "$fmd_before" ] && \
2724                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2725                 error "fmd didn't expire after ping" || true
2726 }
2727 run_test 36g "filter mod data cache expiry ====================="
2728
2729 test_36h() {
2730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2731         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2732         subr_36fh "0x80000227"
2733 }
2734 run_test 36h "utime on file racing with OST BRW write =========="
2735
2736 # test_37 - duplicate with tests 32q 32r
2737
2738 test_38() {
2739         local file=$DIR/$tfile
2740         touch $file
2741         openfile -f O_DIRECTORY $file
2742         local RC=$?
2743         local ENOTDIR=20
2744         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2745         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2746 }
2747 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2748
2749 test_39() {
2750         touch $DIR/$tfile
2751         touch $DIR/${tfile}2
2752 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2753 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2754 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2755         sleep 2
2756         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2757         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2758                 echo "mtime"
2759                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2760                 echo "atime"
2761                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2762                 echo "ctime"
2763                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2764                 error "O_TRUNC didn't change timestamps"
2765         fi
2766 }
2767 run_test 39 "mtime changed on create ==========================="
2768
2769 test_39b() {
2770         test_mkdir -p $DIR/$tdir
2771         cp -p /etc/passwd $DIR/$tdir/fopen
2772         cp -p /etc/passwd $DIR/$tdir/flink
2773         cp -p /etc/passwd $DIR/$tdir/funlink
2774         cp -p /etc/passwd $DIR/$tdir/frename
2775         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2776
2777         sleep 1
2778         echo "aaaaaa" >> $DIR/$tdir/fopen
2779         echo "aaaaaa" >> $DIR/$tdir/flink
2780         echo "aaaaaa" >> $DIR/$tdir/funlink
2781         echo "aaaaaa" >> $DIR/$tdir/frename
2782
2783         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2784         local link_new=`stat -c %Y $DIR/$tdir/flink`
2785         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2786         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2787
2788         cat $DIR/$tdir/fopen > /dev/null
2789         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2790         rm -f $DIR/$tdir/funlink2
2791         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2792
2793         for (( i=0; i < 2; i++ )) ; do
2794                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2795                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2796                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2797                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2798
2799                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2800                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2801                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2802                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2803
2804                 cancel_lru_locks osc
2805                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2806         done
2807 }
2808 run_test 39b "mtime change on open, link, unlink, rename  ======"
2809
2810 # this should be set to past
2811 TEST_39_MTIME=`date -d "1 year ago" +%s`
2812
2813 # bug 11063
2814 test_39c() {
2815         touch $DIR1/$tfile
2816         sleep 2
2817         local mtime0=`stat -c %Y $DIR1/$tfile`
2818
2819         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2820         local mtime1=`stat -c %Y $DIR1/$tfile`
2821         [ "$mtime1" = $TEST_39_MTIME ] || \
2822                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2823
2824         local d1=`date +%s`
2825         echo hello >> $DIR1/$tfile
2826         local d2=`date +%s`
2827         local mtime2=`stat -c %Y $DIR1/$tfile`
2828         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2829                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2830
2831         mv $DIR1/$tfile $DIR1/$tfile-1
2832
2833         for (( i=0; i < 2; i++ )) ; do
2834                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2835                 [ "$mtime2" = "$mtime3" ] || \
2836                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2837
2838                 cancel_lru_locks osc
2839                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2840         done
2841 }
2842 run_test 39c "mtime change on rename ==========================="
2843
2844 # bug 21114
2845 test_39d() {
2846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2847         touch $DIR1/$tfile
2848
2849         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2850
2851         for (( i=0; i < 2; i++ )) ; do
2852                 local mtime=`stat -c %Y $DIR1/$tfile`
2853                 [ $mtime = $TEST_39_MTIME ] || \
2854                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2855
2856                 cancel_lru_locks osc
2857                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2858         done
2859 }
2860 run_test 39d "create, utime, stat =============================="
2861
2862 # bug 21114
2863 test_39e() {
2864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2865         touch $DIR1/$tfile
2866         local mtime1=`stat -c %Y $DIR1/$tfile`
2867
2868         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2869
2870         for (( i=0; i < 2; i++ )) ; do
2871                 local mtime2=`stat -c %Y $DIR1/$tfile`
2872                 [ $mtime2 = $TEST_39_MTIME ] || \
2873                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2874
2875                 cancel_lru_locks osc
2876                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2877         done
2878 }
2879 run_test 39e "create, stat, utime, stat ========================"
2880
2881 # bug 21114
2882 test_39f() {
2883         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2884         touch $DIR1/$tfile
2885         mtime1=`stat -c %Y $DIR1/$tfile`
2886
2887         sleep 2
2888         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2889
2890         for (( i=0; i < 2; i++ )) ; do
2891                 local mtime2=`stat -c %Y $DIR1/$tfile`
2892                 [ $mtime2 = $TEST_39_MTIME ] || \
2893                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2894
2895                 cancel_lru_locks osc
2896                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2897         done
2898 }
2899 run_test 39f "create, stat, sleep, utime, stat ================="
2900
2901 # bug 11063
2902 test_39g() {
2903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2904         echo hello >> $DIR1/$tfile
2905         local mtime1=`stat -c %Y $DIR1/$tfile`
2906
2907         sleep 2
2908         chmod o+r $DIR1/$tfile
2909
2910         for (( i=0; i < 2; i++ )) ; do
2911                 local mtime2=`stat -c %Y $DIR1/$tfile`
2912                 [ "$mtime1" = "$mtime2" ] || \
2913                         error "lost mtime: $mtime2, should be $mtime1"
2914
2915                 cancel_lru_locks osc
2916                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2917         done
2918 }
2919 run_test 39g "write, chmod, stat ==============================="
2920
2921 # bug 11063
2922 test_39h() {
2923         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2924         touch $DIR1/$tfile
2925         sleep 1
2926
2927         local d1=`date`
2928         echo hello >> $DIR1/$tfile
2929         local mtime1=`stat -c %Y $DIR1/$tfile`
2930
2931         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2932         local d2=`date`
2933         if [ "$d1" != "$d2" ]; then
2934                 echo "write and touch not within one second"
2935         else
2936                 for (( i=0; i < 2; i++ )) ; do
2937                         local mtime2=`stat -c %Y $DIR1/$tfile`
2938                         [ "$mtime2" = $TEST_39_MTIME ] || \
2939                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2940
2941                         cancel_lru_locks osc
2942                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2943                 done
2944         fi
2945 }
2946 run_test 39h "write, utime within one second, stat ============="
2947
2948 test_39i() {
2949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2950         touch $DIR1/$tfile
2951         sleep 1
2952
2953         echo hello >> $DIR1/$tfile
2954         local mtime1=`stat -c %Y $DIR1/$tfile`
2955
2956         mv $DIR1/$tfile $DIR1/$tfile-1
2957
2958         for (( i=0; i < 2; i++ )) ; do
2959                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2960
2961                 [ "$mtime1" = "$mtime2" ] || \
2962                         error "lost mtime: $mtime2, should be $mtime1"
2963
2964                 cancel_lru_locks osc
2965                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2966         done
2967 }
2968 run_test 39i "write, rename, stat =============================="
2969
2970 test_39j() {
2971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2972         start_full_debug_logging
2973         touch $DIR1/$tfile
2974         sleep 1
2975
2976         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2977         lctl set_param fail_loc=0x80000412
2978         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2979                 error "multiop failed"
2980         local multipid=$!
2981         local mtime1=`stat -c %Y $DIR1/$tfile`
2982
2983         mv $DIR1/$tfile $DIR1/$tfile-1
2984
2985         kill -USR1 $multipid
2986         wait $multipid || error "multiop close failed"
2987
2988         for (( i=0; i < 2; i++ )) ; do
2989                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2990                 [ "$mtime1" = "$mtime2" ] ||
2991                         error "mtime is lost on close: $mtime2, " \
2992                               "should be $mtime1"
2993
2994                 cancel_lru_locks osc
2995                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2996         done
2997         lctl set_param fail_loc=0
2998         stop_full_debug_logging
2999 }
3000 run_test 39j "write, rename, close, stat ======================="
3001
3002 test_39k() {
3003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3004         touch $DIR1/$tfile
3005         sleep 1
3006
3007         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3008         local multipid=$!
3009         local mtime1=`stat -c %Y $DIR1/$tfile`
3010
3011         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3012
3013         kill -USR1 $multipid
3014         wait $multipid || error "multiop close failed"
3015
3016         for (( i=0; i < 2; i++ )) ; do
3017                 local mtime2=`stat -c %Y $DIR1/$tfile`
3018
3019                 [ "$mtime2" = $TEST_39_MTIME ] || \
3020                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3021
3022                 cancel_lru_locks osc
3023                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3024         done
3025 }
3026 run_test 39k "write, utime, close, stat ========================"
3027
3028 # this should be set to future
3029 TEST_39_ATIME=`date -d "1 year" +%s`
3030
3031 test_39l() {
3032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3033         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3034         local atime_diff=$(do_facet $SINGLEMDS \
3035                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3036         rm -rf $DIR/$tdir
3037         mkdir -p $DIR/$tdir
3038
3039         # test setting directory atime to future
3040         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3041         local atime=$(stat -c %X $DIR/$tdir)
3042         [ "$atime" = $TEST_39_ATIME ] || \
3043                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3044
3045         # test setting directory atime from future to now
3046         local d1=$(date +%s)
3047         ls $DIR/$tdir
3048         local d2=$(date +%s)
3049
3050         cancel_lru_locks mdc
3051         atime=$(stat -c %X $DIR/$tdir)
3052         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3053                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3054
3055         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3056         sleep 3
3057
3058         # test setting directory atime when now > dir atime + atime_diff
3059         d1=$(date +%s)
3060         ls $DIR/$tdir
3061         d2=$(date +%s)
3062         cancel_lru_locks mdc
3063         atime=$(stat -c %X $DIR/$tdir)
3064         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3065                 error "atime is not updated  : $atime, should be $d2"
3066
3067         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3068         sleep 3
3069
3070         # test not setting directory atime when now < dir atime + atime_diff
3071         ls $DIR/$tdir
3072         cancel_lru_locks mdc
3073         atime=$(stat -c %X $DIR/$tdir)
3074         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3075                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3076
3077         do_facet $SINGLEMDS \
3078                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3079 }
3080 run_test 39l "directory atime update ==========================="
3081
3082 test_39m() {
3083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3084         touch $DIR1/$tfile
3085         sleep 2
3086         local far_past_mtime=$(date -d "May 29 1953" +%s)
3087         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3088
3089         touch -m -d @$far_past_mtime $DIR1/$tfile
3090         touch -a -d @$far_past_atime $DIR1/$tfile
3091
3092         for (( i=0; i < 2; i++ )) ; do
3093                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3094                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3095                         error "atime or mtime set incorrectly"
3096
3097                 cancel_lru_locks osc
3098                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3099         done
3100 }
3101 run_test 39m "test atime and mtime before 1970"
3102
3103 test_39n() { # LU-3832
3104         local atime_diff=$(do_facet $SINGLEMDS \
3105                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3106         local atime0
3107         local atime1
3108         local atime2
3109
3110         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3111
3112         rm -rf $DIR/$tfile
3113         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3114         atime0=$(stat -c %X $DIR/$tfile)
3115
3116         sleep 5
3117         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3118         atime1=$(stat -c %X $DIR/$tfile)
3119
3120         sleep 5
3121         cancel_lru_locks mdc
3122         cancel_lru_locks osc
3123         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3124         atime2=$(stat -c %X $DIR/$tfile)
3125
3126         do_facet $SINGLEMDS \
3127                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3128
3129         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3130         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3131 }
3132 run_test 39n "check that O_NOATIME is honored"
3133
3134 test_39o() {
3135         TESTDIR=$DIR/$tdir/$tfile
3136         [ -e $TESTDIR ] && rm -rf $TESTDIR
3137         mkdir -p $TESTDIR
3138         cd $TESTDIR
3139         links1=2
3140         ls
3141         mkdir a b
3142         ls
3143         links2=$(stat -c %h .)
3144         [ $(($links1 + 2)) != $links2 ] &&
3145                 error "wrong links count $(($links1 + 2)) != $links2"
3146         rmdir b
3147         links3=$(stat -c %h .)
3148         [ $(($links1 + 1)) != $links3 ] &&
3149                 error "wrong links count $links1 != $links3"
3150         return 0
3151 }
3152 run_test 39o "directory cached attributes updated after create ========"
3153
3154 test_40() {
3155         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3156         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3157                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3158         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3159                 error "$tfile is not 4096 bytes in size"
3160 }
3161 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3162
3163 test_41() {
3164         # bug 1553
3165         small_write $DIR/f41 18
3166 }
3167 run_test 41 "test small file write + fstat ====================="
3168
3169 count_ost_writes() {
3170         lctl get_param -n osc.*.stats |
3171             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3172 }
3173
3174 # decent default
3175 WRITEBACK_SAVE=500
3176 DIRTY_RATIO_SAVE=40
3177 MAX_DIRTY_RATIO=50
3178 BG_DIRTY_RATIO_SAVE=10
3179 MAX_BG_DIRTY_RATIO=25
3180
3181 start_writeback() {
3182         trap 0
3183         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3184         # dirty_ratio, dirty_background_ratio
3185         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3186                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3187                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3188                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3189         else
3190                 # if file not here, we are a 2.4 kernel
3191                 kill -CONT `pidof kupdated`
3192         fi
3193 }
3194
3195 stop_writeback() {
3196         # setup the trap first, so someone cannot exit the test at the
3197         # exact wrong time and mess up a machine
3198         trap start_writeback EXIT
3199         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3200         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3201                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3202                 sysctl -w vm.dirty_writeback_centisecs=0
3203                 sysctl -w vm.dirty_writeback_centisecs=0
3204                 # save and increase /proc/sys/vm/dirty_ratio
3205                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3206                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3207                 # save and increase /proc/sys/vm/dirty_background_ratio
3208                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3209                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3210         else
3211                 # if file not here, we are a 2.4 kernel
3212                 kill -STOP `pidof kupdated`
3213         fi
3214 }
3215
3216 # ensure that all stripes have some grant before we test client-side cache
3217 setup_test42() {
3218         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3219                 dd if=/dev/zero of=$i bs=4k count=1
3220                 rm $i
3221         done
3222 }
3223
3224 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3225 # file truncation, and file removal.
3226 test_42a() {
3227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3228         setup_test42
3229         cancel_lru_locks osc
3230         stop_writeback
3231         sync; sleep 1; sync # just to be safe
3232         BEFOREWRITES=`count_ost_writes`
3233         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3234         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3235         AFTERWRITES=`count_ost_writes`
3236         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3237                 error "$BEFOREWRITES < $AFTERWRITES"
3238         start_writeback
3239 }
3240 run_test 42a "ensure that we don't flush on close =============="
3241
3242 test_42b() {
3243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3244         setup_test42
3245         cancel_lru_locks osc
3246         stop_writeback
3247         sync
3248         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3249         BEFOREWRITES=`count_ost_writes`
3250         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3251         AFTERWRITES=`count_ost_writes`
3252         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3253                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3254         fi
3255         BEFOREWRITES=`count_ost_writes`
3256         sync || error "sync: $?"
3257         AFTERWRITES=`count_ost_writes`
3258         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3259                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3260         fi
3261         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3262         start_writeback
3263         return 0
3264 }
3265 run_test 42b "test destroy of file with cached dirty data ======"
3266
3267 # if these tests just want to test the effect of truncation,
3268 # they have to be very careful.  consider:
3269 # - the first open gets a {0,EOF}PR lock
3270 # - the first write conflicts and gets a {0, count-1}PW
3271 # - the rest of the writes are under {count,EOF}PW
3272 # - the open for truncate tries to match a {0,EOF}PR
3273 #   for the filesize and cancels the PWs.
3274 # any number of fixes (don't get {0,EOF} on open, match
3275 # composite locks, do smarter file size management) fix
3276 # this, but for now we want these tests to verify that
3277 # the cancellation with truncate intent works, so we
3278 # start the file with a full-file pw lock to match against
3279 # until the truncate.
3280 trunc_test() {
3281         test=$1
3282         file=$DIR/$test
3283         offset=$2
3284         cancel_lru_locks osc
3285         stop_writeback
3286         # prime the file with 0,EOF PW to match
3287         touch $file
3288         $TRUNCATE $file 0
3289         sync; sync
3290         # now the real test..
3291         dd if=/dev/zero of=$file bs=1024 count=100
3292         BEFOREWRITES=`count_ost_writes`
3293         $TRUNCATE $file $offset
3294         cancel_lru_locks osc
3295         AFTERWRITES=`count_ost_writes`
3296         start_writeback
3297 }
3298
3299 test_42c() {
3300         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3301         trunc_test 42c 1024
3302         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3303             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3304         rm $file
3305 }
3306 run_test 42c "test partial truncate of file with cached dirty data"
3307
3308 test_42d() {
3309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3310         trunc_test 42d 0
3311         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3312             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3313         rm $file
3314 }
3315 run_test 42d "test complete truncate of file with cached dirty data"
3316
3317 test_42e() { # bug22074
3318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3319         local TDIR=$DIR/${tdir}e
3320         local pagesz=$(page_size)
3321         local pages=16 # hardcoded 16 pages, don't change it.
3322         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3323         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3324         local max_dirty_mb
3325         local warmup_files
3326
3327         test_mkdir -p $DIR/${tdir}e
3328         $SETSTRIPE -c 1 $TDIR
3329         createmany -o $TDIR/f $files
3330
3331         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3332
3333         # we assume that with $OSTCOUNT files, at least one of them will
3334         # be allocated on OST0.
3335         warmup_files=$((OSTCOUNT * max_dirty_mb))
3336         createmany -o $TDIR/w $warmup_files
3337
3338         # write a large amount of data into one file and sync, to get good
3339         # avail_grant number from OST.
3340         for ((i=0; i<$warmup_files; i++)); do
3341                 idx=$($GETSTRIPE -i $TDIR/w$i)
3342                 [ $idx -ne 0 ] && continue
3343                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3344                 break
3345         done
3346         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3347         sync
3348         $LCTL get_param $proc_osc0/cur_dirty_bytes
3349         $LCTL get_param $proc_osc0/cur_grant_bytes
3350
3351         # create as much dirty pages as we can while not to trigger the actual
3352         # RPCs directly. but depends on the env, VFS may trigger flush during this
3353         # period, hopefully we are good.
3354         for ((i=0; i<$warmup_files; i++)); do
3355                 idx=$($GETSTRIPE -i $TDIR/w$i)
3356                 [ $idx -ne 0 ] && continue
3357                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3358         done
3359         $LCTL get_param $proc_osc0/cur_dirty_bytes
3360         $LCTL get_param $proc_osc0/cur_grant_bytes
3361
3362         # perform the real test
3363         $LCTL set_param $proc_osc0/rpc_stats 0
3364         for ((;i<$files; i++)); do
3365                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3366                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3367         done
3368         sync
3369         $LCTL get_param $proc_osc0/rpc_stats
3370
3371         local percent=0
3372         local have_ppr=false
3373         $LCTL get_param $proc_osc0/rpc_stats |
3374                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3375                         # skip lines until we are at the RPC histogram data
3376                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3377                         $have_ppr || continue
3378
3379                         # we only want the percent stat for < 16 pages
3380                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3381
3382                         percent=$((percent + WPCT))
3383                         if [ $percent -gt 15 ]; then
3384                                 error "less than 16-pages write RPCs" \
3385                                       "$percent% > 15%"
3386                                 break
3387                         fi
3388                 done
3389         rm -rf $TDIR
3390 }
3391 run_test 42e "verify sub-RPC writes are not done synchronously"
3392
3393 test_43() {
3394         test_mkdir -p $DIR/$tdir
3395         cp -p /bin/ls $DIR/$tdir/$tfile
3396         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3397         pid=$!
3398         # give multiop a chance to open
3399         sleep 1
3400
3401         $DIR/$tdir/$tfile && error || true
3402         kill -USR1 $pid
3403 }
3404 run_test 43 "execution of file opened for write should return -ETXTBSY"
3405
3406 test_43a() {
3407         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3408         test_mkdir -p $DIR/$tdir
3409         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3410                         cp -p multiop $DIR/$tdir/multiop
3411         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3412                         return 1
3413         MULTIOP_PID=$!
3414         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3415         kill -USR1 $MULTIOP_PID || return 2
3416         wait $MULTIOP_PID || return 3
3417         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3418 }
3419 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3420
3421 test_43b() {
3422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3423         test_mkdir -p $DIR/$tdir
3424         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3425                         cp -p multiop $DIR/$tdir/multiop
3426         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3427                         return 1
3428         MULTIOP_PID=$!
3429         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3430         kill -USR1 $MULTIOP_PID || return 2
3431         wait $MULTIOP_PID || return 3
3432         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3433 }
3434 run_test 43b "truncate of file being executed should return -ETXTBSY"
3435
3436 test_43c() {
3437         local testdir="$DIR/$tdir"
3438         test_mkdir -p $DIR/$tdir
3439         cp $SHELL $testdir/
3440         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3441                 ( cd $testdir && md5sum -c)
3442 }
3443 run_test 43c "md5sum of copy into lustre========================"
3444
3445 test_44() {
3446         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3447         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3448         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3449 }
3450 run_test 44 "zero length read from a sparse stripe ============="
3451
3452 test_44a() {
3453     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3454                          awk '{print $2}'`
3455     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3456     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3457     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3458                       awk '{print $2}'`
3459     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3460         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3461     fi
3462
3463     OFFSETS="0 $((stride/2)) $((stride-1))"
3464     for offset in $OFFSETS ; do
3465       for i in `seq 0 $((nstripe-1))`; do
3466         local GLOBALOFFSETS=""
3467         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3468         local myfn=$DIR/d44a-$size
3469         echo "--------writing $myfn at $size"
3470         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3471         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3472         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3473                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3474
3475         for j in `seq 0 $((nstripe-1))`; do
3476             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3477             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3478             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3479         done
3480         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3481                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3482         rm -f $myfn
3483       done
3484     done
3485 }
3486 run_test 44a "test sparse pwrite ==============================="
3487
3488 dirty_osc_total() {
3489         tot=0
3490         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3491                 tot=$(($tot + $d))
3492         done
3493         echo $tot
3494 }
3495 do_dirty_record() {
3496         before=`dirty_osc_total`
3497         echo executing "\"$*\""
3498         eval $*
3499         after=`dirty_osc_total`
3500         echo before $before, after $after
3501 }
3502 test_45() {
3503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3504         f="$DIR/f45"
3505         # Obtain grants from OST if it supports it
3506         echo blah > ${f}_grant
3507         stop_writeback
3508         sync
3509         do_dirty_record "echo blah > $f"
3510         [ $before -eq $after ] && error "write wasn't cached"
3511         do_dirty_record "> $f"
3512         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3513         do_dirty_record "echo blah > $f"
3514         [ $before -eq $after ] && error "write wasn't cached"
3515         do_dirty_record "sync"
3516         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3517         do_dirty_record "echo blah > $f"
3518         [ $before -eq $after ] && error "write wasn't cached"
3519         do_dirty_record "cancel_lru_locks osc"
3520         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3521         start_writeback
3522 }
3523 run_test 45 "osc io page accounting ============================"
3524
3525 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3526 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3527 # objects offset and an assert hit when an rpc was built with 1023's mapped
3528 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3529 test_46() {
3530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3531         f="$DIR/f46"
3532         stop_writeback
3533         sync
3534         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3535         sync
3536         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3537         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3538         sync
3539         start_writeback
3540 }
3541 run_test 46 "dirtying a previously written page ================"
3542
3543 # test_47 is removed "Device nodes check" is moved to test_28
3544
3545 test_48a() { # bug 2399
3546         check_kernel_version 34 || return 0
3547         test_mkdir -p $DIR/$tdir
3548         cd $DIR/$tdir
3549         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3550         test_mkdir $DIR/$tdir || error "recreate directory failed"
3551         touch foo || error "'touch foo' failed after recreating cwd"
3552         test_mkdir $DIR/$tdir/bar ||
3553                      error "'mkdir foo' failed after recreating cwd"
3554         if check_kernel_version 44; then
3555                 touch .foo || error "'touch .foo' failed after recreating cwd"
3556                 test_mkdir $DIR/$tdir/.bar ||
3557                               error "'mkdir .foo' failed after recreating cwd"
3558         fi
3559         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3560         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3561         cd . || error "'cd .' failed after recreating cwd"
3562         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3563         rmdir . && error "'rmdir .' worked after recreating cwd"
3564         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3565         cd .. || error "'cd ..' failed after recreating cwd"
3566 }
3567 run_test 48a "Access renamed working dir (should return errors)="
3568
3569 test_48b() { # bug 2399
3570         check_kernel_version 34 || return 0
3571         rm -rf $DIR/$tdir
3572         test_mkdir -p $DIR/$tdir
3573         cd $DIR/$tdir
3574         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3575         touch foo && error "'touch foo' worked after removing cwd"
3576         test_mkdir $DIR/$tdir/foo &&
3577                      error "'mkdir foo' worked after removing cwd"
3578         if check_kernel_version 44; then
3579                 touch .foo && error "'touch .foo' worked after removing cwd"
3580                 test_mkdir $DIR/$tdir/.foo &&
3581                               error "'mkdir .foo' worked after removing cwd"
3582         fi
3583         ls . > /dev/null && error "'ls .' worked after removing cwd"
3584         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3585         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3586         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3587         rmdir . && error "'rmdir .' worked after removing cwd"
3588         ln -s . foo && error "'ln -s .' worked after removing cwd"
3589         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3590 }
3591 run_test 48b "Access removed working dir (should return errors)="
3592
3593 test_48c() { # bug 2350
3594         check_kernel_version 36 || return 0
3595         #lctl set_param debug=-1
3596         #set -vx
3597         rm -rf $DIR/$tdir
3598         test_mkdir -p $DIR/$tdir/dir
3599         cd $DIR/$tdir/dir
3600         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3601         $TRACE touch foo && error "touch foo worked after removing cwd"
3602         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3603         if check_kernel_version 44; then
3604                 touch .foo && error "touch .foo worked after removing cwd"
3605                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3606         fi
3607         $TRACE ls . && error "'ls .' worked after removing cwd"
3608         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3609         is_patchless || ( $TRACE cd . &&
3610                         error "'cd .' worked after removing cwd" )
3611         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3612         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3613         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3614         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3615 }
3616 run_test 48c "Access removed working subdir (should return errors)"
3617
3618 test_48d() { # bug 2350
3619         check_kernel_version 36 || return 0
3620         #lctl set_param debug=-1
3621         #set -vx
3622         rm -rf $DIR/$tdir
3623         test_mkdir -p $DIR/$tdir/dir
3624         cd $DIR/$tdir/dir
3625         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3626         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3627         $TRACE touch foo && error "'touch foo' worked after removing parent"
3628         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3629         if check_kernel_version 44; then
3630                 touch .foo && error "'touch .foo' worked after removing parent"
3631                 test_mkdir .foo &&
3632                               error "mkdir .foo worked after removing parent"
3633         fi
3634         $TRACE ls . && error "'ls .' worked after removing parent"
3635         $TRACE ls .. && error "'ls ..' worked after removing parent"
3636         is_patchless || ( $TRACE cd . &&
3637                         error "'cd .' worked after recreate parent" )
3638         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3639         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3640         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3641         is_patchless || ( $TRACE cd .. &&
3642                         error "'cd ..' worked after removing parent" || true )
3643 }
3644 run_test 48d "Access removed parent subdir (should return errors)"
3645
3646 test_48e() { # bug 4134
3647         check_kernel_version 41 || return 0
3648         #lctl set_param debug=-1
3649         #set -vx
3650         rm -rf $DIR/$tdir
3651         test_mkdir -p $DIR/$tdir/dir
3652         cd $DIR/$tdir/dir
3653         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3654         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3655         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3656         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3657         # On a buggy kernel addition of "touch foo" after cd .. will
3658         # produce kernel oops in lookup_hash_it
3659         touch ../foo && error "'cd ..' worked after recreate parent"
3660         cd $DIR
3661         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3662 }
3663 run_test 48e "Access to recreated parent subdir (should return errors)"
3664
3665 test_49() { # LU-1030
3666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3667         # get ost1 size - lustre-OST0000
3668         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3669         # write 800M at maximum
3670         [ $ost1_size -gt 819200 ] && ost1_size=819200
3671
3672         lfs setstripe -c 1 -i 0 $DIR/$tfile
3673         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3674         local dd_pid=$!
3675
3676         # change max_pages_per_rpc while writing the file
3677         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3678         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3679         # loop until dd process exits
3680         while ps ax -opid | grep -wq $dd_pid; do
3681                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3682                 sleep $((RANDOM % 5 + 1))
3683         done
3684         # restore original max_pages_per_rpc
3685         $LCTL set_param $osc1_mppc=$orig_mppc
3686         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3687 }
3688 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3689
3690 test_50() {
3691         # bug 1485
3692         test_mkdir $DIR/$tdir
3693         cd $DIR/$tdir
3694         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3695 }
3696 run_test 50 "special situations: /proc symlinks  ==============="
3697
3698 test_51a() {    # was test_51
3699         # bug 1516 - create an empty entry right after ".." then split dir
3700         test_mkdir -p $DIR/$tdir
3701         touch $DIR/$tdir/foo
3702         $MCREATE $DIR/$tdir/bar
3703         rm $DIR/$tdir/foo
3704         createmany -m $DIR/$tdir/longfile 201
3705         FNUM=202
3706         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3707                 $MCREATE $DIR/$tdir/longfile$FNUM
3708                 FNUM=$(($FNUM + 1))
3709                 echo -n "+"
3710         done
3711         echo
3712         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3713 }
3714 run_test 51a "special situations: split htree with empty entry =="
3715
3716 export NUMTEST=70000
3717 test_51b() {
3718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3719         local BASE=$DIR/$tdir
3720
3721         # cleanup the directory
3722         rm -fr $BASE
3723
3724         test_mkdir -p $BASE
3725
3726         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3727         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3728         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3729                 return
3730
3731         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3732                 echo "reduced count to $NUMTEST due to inodes"
3733
3734         # need to check free space for the directories as well
3735         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3736         numfree=$((blkfree / 4))
3737         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3738                 echo "reduced count to $NUMTEST due to blocks"
3739
3740         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3741                 echo "failed" > $BASE/fnum
3742 }
3743 run_test 51b "exceed 64k subdirectory nlink limit"
3744
3745 test_51ba() { # LU-993
3746         local BASE=$DIR/$tdir
3747         # unlink all but 100 subdirectories, then check it still works
3748         local LEFT=100
3749         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3750
3751         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3752         local DELETE=$((NUMTEST - LEFT))
3753
3754         # continue on to run this test even if 51b didn't finish,
3755         # just to delete the many subdirectories created.
3756         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3757
3758         # for ldiskfs the nlink count should be 1, but this is OSD specific
3759         # and so this is listed for informational purposes only
3760         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3761         unlinkmany -d $BASE/d $DELETE
3762         RC=$?
3763
3764         if [ $RC -ne 0 ]; then
3765                 if [ "$NUMPREV" == "failed" ]; then
3766                         skip "previous setup failed"
3767                         return 0
3768                 else
3769                         error "unlink of first $DELETE subdirs failed"
3770                         return $RC
3771                 fi
3772         fi
3773
3774         echo "nlink between: $(stat -c %h $BASE)"
3775         # trim the first line of ls output
3776         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3777         [ $FOUND -ne $LEFT ] &&
3778                 error "can't find subdirs: found only $FOUND/$LEFT"
3779
3780         unlinkmany -d $BASE/d $DELETE $LEFT ||
3781                 error "unlink of second $LEFT subdirs failed"
3782         # regardless of whether the backing filesystem tracks nlink accurately
3783         # or not, the nlink count shouldn't be more than "." and ".." here
3784         local AFTER=$(stat -c %h $BASE)
3785         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3786                 echo "nlink after: $AFTER"
3787 }
3788 run_test 51ba "verify nlink for many subdirectory cleanup"
3789
3790 test_51d() {
3791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3792         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3793         test_mkdir -p $DIR/$tdir
3794         createmany -o $DIR/$tdir/t- 1000
3795         $GETSTRIPE $DIR/$tdir > $TMP/files
3796         for N in `seq 0 $((OSTCOUNT - 1))`; do
3797             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3798             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3799             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3800         done
3801         unlinkmany $DIR/$tdir/t- 1000
3802
3803         NLAST=0
3804         for N in `seq 1 $((OSTCOUNT - 1))`; do
3805             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3806                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3807             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3808                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3809
3810             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3811                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3812             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3813                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3814             NLAST=$N
3815         done
3816 }
3817 run_test 51d "check object distribution ===================="
3818
3819 test_52a() {
3820         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3821         test_mkdir -p $DIR/$tdir
3822         touch $DIR/$tdir/foo
3823         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3824         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3825         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3826         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3827         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3828                                         error "link worked"
3829         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3830         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3831         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3832                                                      error "lsattr"
3833         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3834         cp -r $DIR/$tdir /tmp/
3835         rm -fr $DIR/$tdir || error "cleanup rm failed"
3836 }
3837 run_test 52a "append-only flag test (should return errors) ====="
3838
3839 test_52b() {
3840         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3841         test_mkdir -p $DIR/$tdir
3842         touch $DIR/$tdir/foo
3843         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3844         cat test > $DIR/$tdir/foo && error "cat test worked"
3845         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3846         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3847         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3848                                         error "link worked"
3849         echo foo >> $DIR/$tdir/foo && error "echo worked"
3850         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3851         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3852         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3853         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3854                                                         error "lsattr"
3855         chattr -i $DIR/$tdir/foo || error "chattr failed"
3856
3857         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3858 }
3859 run_test 52b "immutable flag test (should return errors) ======="
3860
3861 test_53() {
3862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3863         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3864         remote_ost_nodsh && skip "remote OST with nodsh" && return
3865
3866         local param
3867         local param_seq
3868         local ostname
3869         local mds_last
3870         local mds_last_seq
3871         local ost_last
3872         local ost_last_seq
3873         local ost_last_id
3874         local ostnum
3875         local node
3876         local found=0
3877
3878         # only test MDT0000
3879         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3880         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3881                 param=$(echo ${value[0]} | cut -d "=" -f1)
3882                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3883                 param_seq=$(echo ${param} |
3884                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3885                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3886                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3887
3888                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3889                 node=$(facet_active_host ost$((ostnum+1)))
3890                 param="obdfilter.$ostname.last_id"
3891                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3892                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3893                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3894                                       sed -e "s/^0x//g")
3895                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3896                         if [ $ost_last_seq = $mds_last_seq ]; then
3897                                 if [ $ost_last_id != $mds_last ]; then
3898                                         error "$ost_last != $mds_last_id"
3899                                 else
3900                                         found=1
3901                                         break
3902                                 fi
3903                         fi
3904                 done
3905         done
3906         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3907         return 0
3908 }
3909 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3910
3911 test_54a() {
3912         $SOCKETSERVER $DIR/socket ||
3913                 error "$SOCKETSERVER $DIR/socket failed: $?"
3914         $SOCKETCLIENT $DIR/socket ||
3915                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3916         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3917 }
3918 run_test 54a "unix domain socket test =========================="
3919
3920 test_54b() {
3921         f="$DIR/f54b"
3922         mknod $f c 1 3
3923         chmod 0666 $f
3924         dd if=/dev/zero of=$f bs=$(page_size) count=1
3925 }
3926 run_test 54b "char device works in lustre ======================"
3927
3928 find_loop_dev() {
3929         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3930         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3931         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3932
3933         for i in $(seq 3 7); do
3934                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3935                 LOOPDEV=$LOOPBASE$i
3936                 LOOPNUM=$i
3937                 break
3938         done
3939 }
3940
3941 test_54c() {
3942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3943         tfile="$DIR/f54c"
3944         tdir="$DIR/d54c"
3945         loopdev="$DIR/loop54c"
3946
3947         find_loop_dev
3948         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3949         mknod $loopdev b 7 $LOOPNUM
3950         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3951         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3952         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3953         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3954         test_mkdir -p $tdir
3955         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3956         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3957         df $tdir
3958         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3959         $UMOUNT $tdir
3960         losetup -d $loopdev
3961         rm $loopdev
3962 }
3963 run_test 54c "block device works in lustre ====================="
3964
3965 test_54d() {
3966         f="$DIR/f54d"
3967         string="aaaaaa"
3968         mknod $f p
3969         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3970 }
3971 run_test 54d "fifo device works in lustre ======================"
3972
3973 test_54e() {
3974         check_kernel_version 46 || return 0
3975         f="$DIR/f54e"
3976         string="aaaaaa"
3977         cp -aL /dev/console $f
3978         echo $string > $f || error "echo $string to $f failed"
3979 }
3980 run_test 54e "console/tty device works in lustre ======================"
3981
3982 #The test_55 used to be iopen test and it was removed by bz#24037.
3983 #run_test 55 "check iopen_connect_dentry() ======================"
3984
3985 test_56a() {    # was test_56
3986         rm -rf $DIR/$tdir
3987         $SETSTRIPE -d $DIR
3988         test_mkdir -p $DIR/$tdir/dir
3989         NUMFILES=3
3990         NUMFILESx2=$(($NUMFILES * 2))
3991         for i in `seq 1 $NUMFILES` ; do
3992                 touch $DIR/$tdir/file$i
3993                 touch $DIR/$tdir/dir/file$i
3994         done
3995
3996         # test lfs getstripe with --recursive
3997         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3998         [ $FILENUM -eq $NUMFILESx2 ] ||
3999                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4000         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
4001         [ $FILENUM -eq $NUMFILES ] ||
4002                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4003         echo "$GETSTRIPE --recursive passed."
4004
4005         # test lfs getstripe with file instead of dir
4006         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
4007         [ $FILENUM  -eq 1 ] || error \
4008                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4009         echo "$GETSTRIPE file1 passed."
4010
4011         #test lfs getstripe with --verbose
4012         [ `$GETSTRIPE --verbose $DIR/$tdir |
4013                         grep -c lmm_magic` -eq $NUMFILES ] ||
4014                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4015         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
4016             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4017         echo "$GETSTRIPE --verbose passed."
4018
4019         #test lfs getstripe with --obd
4020         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4021                                         grep -q "unknown obduuid" ||
4022                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4023
4024         [  "$OSTCOUNT" -lt 2 ] &&
4025                 skip_env "skipping other $GETSTRIPE --obd test" && return
4026
4027         OSTIDX=1
4028         OBDUUID=$(ostuuid_from_index $OSTIDX)
4029         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4030         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4031         [ $FOUND -eq $FILENUM ] ||
4032                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4033         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4034                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4035                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4036                 error "$GETSTRIPE --obd: should not show file on other obd"
4037         echo "$GETSTRIPE --obd passed"
4038 }
4039 run_test 56a "check $GETSTRIPE"
4040
4041 NUMFILES=3
4042 NUMDIRS=3
4043 setup_56() {
4044         local LOCAL_NUMFILES="$1"
4045         local LOCAL_NUMDIRS="$2"
4046         local MKDIR_PARAMS="$3"
4047
4048         if [ ! -d "$TDIR" ] ; then
4049                 test_mkdir -p $TDIR
4050                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4051                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4052                         touch $TDIR/file$i
4053                 done
4054                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4055                         test_mkdir $TDIR/dir$i
4056                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4057                                 touch $TDIR/dir$i/file$j
4058                         done
4059                 done
4060         fi
4061 }
4062
4063 setup_56_special() {
4064         LOCAL_NUMFILES=$1
4065         LOCAL_NUMDIRS=$2
4066         setup_56 $1 $2
4067         if [ ! -e "$TDIR/loop1b" ] ; then
4068                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4069                         mknod $TDIR/loop${i}b b 7 $i
4070                         mknod $TDIR/null${i}c c 1 3
4071                         ln -s $TDIR/file1 $TDIR/link${i}l
4072                 done
4073                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4074                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4075                         mknod $TDIR/dir$i/null${i}c c 1 3
4076                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4077                 done
4078         fi
4079 }
4080
4081 test_56g() {
4082         $SETSTRIPE -d $DIR
4083
4084         TDIR=$DIR/${tdir}g
4085         setup_56 $NUMFILES $NUMDIRS
4086
4087         EXPECTED=$(($NUMDIRS + 2))
4088         # test lfs find with -name
4089         for i in $(seq 1 $NUMFILES) ; do
4090                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4091                 [ $NUMS -eq $EXPECTED ] ||
4092                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4093                               "found $NUMS, expected $EXPECTED"
4094         done
4095 }
4096 run_test 56g "check lfs find -name ============================="
4097
4098 test_56h() {
4099         $SETSTRIPE -d $DIR
4100
4101         TDIR=$DIR/${tdir}g
4102         setup_56 $NUMFILES $NUMDIRS
4103
4104         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4105         # test lfs find with ! -name
4106         for i in $(seq 1 $NUMFILES) ; do
4107                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4108                 [ $NUMS -eq $EXPECTED ] ||
4109                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4110                               "found $NUMS, expected $EXPECTED"
4111         done
4112 }
4113 run_test 56h "check lfs find ! -name ============================="
4114
4115 test_56i() {
4116        tdir=${tdir}i
4117        test_mkdir -p $DIR/$tdir
4118        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4119        CMD="$LFIND -ost $UUID $DIR/$tdir"
4120        OUT=$($CMD)
4121        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4122 }
4123 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4124
4125 test_56j() {
4126         TDIR=$DIR/${tdir}g
4127         setup_56_special $NUMFILES $NUMDIRS
4128
4129         EXPECTED=$((NUMDIRS + 1))
4130         CMD="$LFIND -type d $TDIR"
4131         NUMS=$($CMD | wc -l)
4132         [ $NUMS -eq $EXPECTED ] ||
4133                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4134 }
4135 run_test 56j "check lfs find -type d ============================="
4136
4137 test_56k() {
4138         TDIR=$DIR/${tdir}g
4139         setup_56_special $NUMFILES $NUMDIRS
4140
4141         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4142         CMD="$LFIND -type f $TDIR"
4143         NUMS=$($CMD | wc -l)
4144         [ $NUMS -eq $EXPECTED ] ||
4145                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4146 }
4147 run_test 56k "check lfs find -type f ============================="
4148
4149 test_56l() {
4150         TDIR=$DIR/${tdir}g
4151         setup_56_special $NUMFILES $NUMDIRS
4152
4153         EXPECTED=$((NUMDIRS + NUMFILES))
4154         CMD="$LFIND -type b $TDIR"
4155         NUMS=$($CMD | wc -l)
4156         [ $NUMS -eq $EXPECTED ] ||
4157                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4158 }
4159 run_test 56l "check lfs find -type b ============================="
4160
4161 test_56m() {
4162         TDIR=$DIR/${tdir}g
4163         setup_56_special $NUMFILES $NUMDIRS
4164
4165         EXPECTED=$((NUMDIRS + NUMFILES))
4166         CMD="$LFIND -type c $TDIR"
4167         NUMS=$($CMD | wc -l)
4168         [ $NUMS -eq $EXPECTED ] ||
4169                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4170 }
4171 run_test 56m "check lfs find -type c ============================="
4172
4173 test_56n() {
4174         TDIR=$DIR/${tdir}g
4175         setup_56_special $NUMFILES $NUMDIRS
4176
4177         EXPECTED=$((NUMDIRS + NUMFILES))
4178         CMD="$LFIND -type l $TDIR"
4179         NUMS=$($CMD | wc -l)
4180         [ $NUMS -eq $EXPECTED ] ||
4181                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4182 }
4183 run_test 56n "check lfs find -type l ============================="
4184
4185 test_56o() {
4186         TDIR=$DIR/${tdir}o
4187         setup_56 $NUMFILES $NUMDIRS
4188
4189         utime $TDIR/file1 > /dev/null || error "utime (1)"
4190         utime $TDIR/file2 > /dev/null || error "utime (2)"
4191         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4192         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4193         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4194         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4195
4196         EXPECTED=4
4197         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4198         [ $NUMS -eq $EXPECTED ] || \
4199                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4200
4201         EXPECTED=12
4202         CMD="$LFIND -mtime 0 $TDIR"
4203         NUMS=$($CMD | wc -l)
4204         [ $NUMS -eq $EXPECTED ] ||
4205                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4206 }
4207 run_test 56o "check lfs find -mtime for old files =========================="
4208
4209 test_56p() {
4210         [ $RUNAS_ID -eq $UID ] &&
4211                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4212
4213         TDIR=$DIR/${tdir}p
4214         setup_56 $NUMFILES $NUMDIRS
4215
4216         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4217         EXPECTED=$NUMFILES
4218         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4219         NUMS=$($CMD | wc -l)
4220         [ $NUMS -eq $EXPECTED ] || \
4221                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4222
4223         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4224         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4225         NUMS=$($CMD | wc -l)
4226         [ $NUMS -eq $EXPECTED ] || \
4227                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4228 }
4229 run_test 56p "check lfs find -uid and ! -uid ==============================="
4230
4231 test_56q() {
4232         [ $RUNAS_ID -eq $UID ] &&
4233                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4234
4235         TDIR=$DIR/${tdir}q
4236         setup_56 $NUMFILES $NUMDIRS
4237
4238         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4239
4240         EXPECTED=$NUMFILES
4241         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4242         NUMS=$($CMD | wc -l)
4243         [ $NUMS -eq $EXPECTED ] ||
4244                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4245
4246         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4247         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4248         NUMS=$($CMD | wc -l)
4249         [ $NUMS -eq $EXPECTED ] ||
4250                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4251 }
4252 run_test 56q "check lfs find -gid and ! -gid ==============================="
4253
4254 test_56r() {
4255         TDIR=$DIR/${tdir}r
4256         setup_56 $NUMFILES $NUMDIRS
4257
4258         EXPECTED=12
4259         CMD="$LFIND -size 0 -type f $TDIR"
4260         NUMS=$($CMD | wc -l)
4261         [ $NUMS -eq $EXPECTED ] ||
4262                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4263         EXPECTED=0
4264         CMD="$LFIND ! -size 0 -type f $TDIR"
4265         NUMS=$($CMD | wc -l)
4266         [ $NUMS -eq $EXPECTED ] ||
4267                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4268         echo "test" > $TDIR/$tfile
4269         echo "test2" > $TDIR/$tfile.2 && sync
4270         EXPECTED=1
4271         CMD="$LFIND -size 5 -type f $TDIR"
4272         NUMS=$($CMD | wc -l)
4273         [ $NUMS -eq $EXPECTED ] ||
4274                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4275         EXPECTED=1
4276         CMD="$LFIND -size +5 -type f $TDIR"
4277         NUMS=$($CMD | wc -l)
4278         [ $NUMS -eq $EXPECTED ] ||
4279                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4280         EXPECTED=2
4281         CMD="$LFIND -size +0 -type f $TDIR"
4282         NUMS=$($CMD | wc -l)
4283         [ $NUMS -eq $EXPECTED ] ||
4284                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4285         EXPECTED=2
4286         CMD="$LFIND ! -size -5 -type f $TDIR"
4287         NUMS=$($CMD | wc -l)
4288         [ $NUMS -eq $EXPECTED ] ||
4289                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4290         EXPECTED=12
4291         CMD="$LFIND -size -5 -type f $TDIR"
4292         NUMS=$($CMD | wc -l)
4293         [ $NUMS -eq $EXPECTED ] ||
4294                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4295 }
4296 run_test 56r "check lfs find -size works =========================="
4297
4298 test_56s() { # LU-611
4299         TDIR=$DIR/${tdir}s
4300         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4301
4302         if [ $OSTCOUNT -gt 1 ]; then
4303                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4304                 ONESTRIPE=4
4305                 EXTRA=4
4306         else
4307                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4308                 EXTRA=0
4309         fi
4310
4311         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4312         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4313         NUMS=$($CMD | wc -l)
4314         [ $NUMS -eq $EXPECTED ] ||
4315                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4316
4317         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4318         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4319         NUMS=$($CMD | wc -l)
4320         [ $NUMS -eq $EXPECTED ] ||
4321                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4322
4323         EXPECTED=$ONESTRIPE
4324         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4325         NUMS=$($CMD | wc -l)
4326         [ $NUMS -eq $EXPECTED ] ||
4327                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4328
4329         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4330         NUMS=$($CMD | wc -l)
4331         [ $NUMS -eq $EXPECTED ] ||
4332                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4333
4334         EXPECTED=0
4335         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4336         NUMS=$($CMD | wc -l)
4337         [ $NUMS -eq $EXPECTED ] ||
4338                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4339 }
4340 run_test 56s "check lfs find -stripe-count works"
4341
4342 test_56t() { # LU-611
4343         TDIR=$DIR/${tdir}t
4344         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4345
4346         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4347
4348         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4349         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4350         NUMS=$($CMD | wc -l)
4351         [ $NUMS -eq $EXPECTED ] ||
4352                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4353
4354         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4355         NUMS=$($CMD | wc -l)
4356         [ $NUMS -eq $EXPECTED ] ||
4357                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4358
4359         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4360         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4361         NUMS=$($CMD | wc -l)
4362         [ $NUMS -eq $EXPECTED ] ||
4363                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4364
4365         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4366         NUMS=$($CMD | wc -l)
4367         [ $NUMS -eq $EXPECTED ] ||
4368                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4369
4370         EXPECTED=4
4371         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4372         NUMS=$($CMD | wc -l)
4373         [ $NUMS -eq $EXPECTED ] ||
4374                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4375
4376         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4377         NUMS=$($CMD | wc -l)
4378         [ $NUMS -eq $EXPECTED ] ||
4379                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4380
4381         EXPECTED=0
4382         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4383         NUMS=$($CMD | wc -l)
4384         [ $NUMS -eq $EXPECTED ] ||
4385                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4386 }
4387 run_test 56t "check lfs find -stripe-size works"
4388
4389 test_56u() { # LU-611
4390         TDIR=$DIR/${tdir}u
4391         setup_56 $NUMFILES $NUMDIRS "-i 0"
4392
4393         if [ $OSTCOUNT -gt 1 ]; then
4394                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4395                 ONESTRIPE=4
4396         else
4397                 ONESTRIPE=0
4398         fi
4399
4400         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4401         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4402         NUMS=$($CMD | wc -l)
4403         [ $NUMS -eq $EXPECTED ] ||
4404                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4405
4406         EXPECTED=$ONESTRIPE
4407         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4408         NUMS=$($CMD | wc -l)
4409         [ $NUMS -eq $EXPECTED ] ||
4410                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4411
4412         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4413         NUMS=$($CMD | wc -l)
4414         [ $NUMS -eq $EXPECTED ] ||
4415                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4416
4417         EXPECTED=0
4418         # This should produce an error and not return any files
4419         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4420         NUMS=$($CMD 2>/dev/null | wc -l)
4421         [ $NUMS -eq $EXPECTED ] ||
4422                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4423
4424         if [ $OSTCOUNT -gt 1 ]; then
4425                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4426                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4427                 NUMS=$($CMD | wc -l)
4428                 [ $NUMS -eq $EXPECTED ] ||
4429                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4430         fi
4431 }
4432 run_test 56u "check lfs find -stripe-index works"
4433
4434 test_56v() {
4435     local MDT_IDX=0
4436
4437     TDIR=$DIR/${tdir}v
4438     rm -rf $TDIR
4439     setup_56 $NUMFILES $NUMDIRS
4440
4441     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4442     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4443
4444     for file in $($LFIND -mdt $UUID $TDIR); do
4445         file_mdt_idx=$($GETSTRIPE -M $file)
4446         [ $file_mdt_idx -eq $MDT_IDX ] ||
4447             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4448     done
4449 }
4450 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4451
4452 # Get and check the actual stripe count of one file.
4453 # Usage: check_stripe_count <file> <expected_stripe_count>
4454 check_stripe_count() {
4455     local file=$1
4456     local expected=$2
4457     local actual
4458
4459     [[ -z "$file" || -z "$expected" ]] &&
4460         error "check_stripe_count: invalid argument!"
4461
4462     local cmd="$GETSTRIPE -c $file"
4463     actual=$($cmd) || error "$cmd failed"
4464     actual=${actual%% *}
4465
4466     if [[ $actual -ne $expected ]]; then
4467         [[ $expected -eq -1 ]] ||
4468             error "$cmd wrong: found $actual, expected $expected"
4469         [[ $actual -eq $OSTCOUNT ]] ||
4470             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4471     fi
4472 }
4473
4474 test_56w() {
4475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4476         TDIR=$DIR/${tdir}w
4477
4478     rm -rf $TDIR || error "remove $TDIR failed"
4479     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4480
4481     local stripe_size
4482     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4483         error "$GETSTRIPE -S -d $TDIR failed"
4484     stripe_size=${stripe_size%% *}
4485
4486     local file_size=$((stripe_size * OSTCOUNT))
4487     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4488     local required_space=$((file_num * file_size))
4489     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4490     [[ $free_space -le $((required_space / 1024)) ]] &&
4491         skip_env "need at least $required_space bytes free space," \
4492                  "have $free_space kbytes" && return
4493
4494     local dd_bs=65536
4495     local dd_count=$((file_size / dd_bs))
4496
4497     # write data into the files
4498     local i
4499     local j
4500     local file
4501     for i in $(seq 1 $NUMFILES); do
4502         file=$TDIR/file$i
4503         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4504             error "write data into $file failed"
4505     done
4506     for i in $(seq 1 $NUMDIRS); do
4507         for j in $(seq 1 $NUMFILES); do
4508             file=$TDIR/dir$i/file$j
4509             yes | dd bs=$dd_bs count=$dd_count of=$file \
4510                 >/dev/null 2>&1 ||
4511                 error "write data into $file failed"
4512         done
4513     done
4514
4515     local expected=-1
4516     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4517
4518     # lfs_migrate file
4519     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4520     echo "$cmd"
4521     eval $cmd || error "$cmd failed"
4522
4523     check_stripe_count $TDIR/file1 $expected
4524
4525     # lfs_migrate dir
4526     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4527     echo "$cmd"
4528     eval $cmd || error "$cmd failed"
4529
4530     for j in $(seq 1 $NUMFILES); do
4531         check_stripe_count $TDIR/dir1/file$j $expected
4532     done
4533
4534     # lfs_migrate works with lfs find
4535     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4536          $LFS_MIGRATE -y -c $expected"
4537     echo "$cmd"
4538     eval $cmd || error "$cmd failed"
4539
4540     for i in $(seq 2 $NUMFILES); do
4541         check_stripe_count $TDIR/file$i $expected
4542     done
4543     for i in $(seq 2 $NUMDIRS); do
4544         for j in $(seq 1 $NUMFILES); do
4545             check_stripe_count $TDIR/dir$i/file$j $expected
4546         done
4547     done
4548 }
4549 run_test 56w "check lfs_migrate -c stripe_count works"
4550
4551 test_56x() {
4552         check_swap_layouts_support && return 0
4553         [ "$OSTCOUNT" -lt "2" ] &&
4554                 skip_env "need 2 OST, skipping test" && return
4555
4556         local dir0=$DIR/$tdir/$testnum
4557         mkdir -p $dir0 || error "creating dir $dir0"
4558
4559         local ref1=/etc/passwd
4560         local file1=$dir0/file1
4561
4562         $SETSTRIPE -c 2 $file1
4563         cp $ref1 $file1
4564         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4565         stripe=$($GETSTRIPE -c $file1)
4566         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4567         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4568
4569         # clean up
4570         rm -f $file1
4571 }
4572 run_test 56x "lfs migration support"
4573
4574 test_56y() {
4575         local res=""
4576
4577         local dir0=$DIR/$tdir/$testnum
4578         mkdir -p $dir0 || error "creating dir $dir0"
4579         local f1=$dir0/file1
4580         local f2=$dir0/file2
4581
4582         touch $f1 || error "creating std file $f1"
4583         $MULTIOP $f2 H2c || error "creating released file $f2"
4584
4585         # a directory can be raid0, so ask only for files
4586         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4587         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4588
4589         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4590         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4591
4592         # only files can be released, so no need to force file search
4593         res=$($LFIND $dir0 -L released)
4594         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4595
4596         res=$($LFIND $dir0 \! -L released)
4597         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4598
4599 }
4600 run_test 56y "lfs find -L raid0|released"
4601
4602 test_57a() {
4603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4604         # note test will not do anything if MDS is not local
4605         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4606                 skip "Only applicable to ldiskfs-based MDTs"
4607                 return
4608         fi
4609
4610         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4611         local MNTDEV="osd*.*MDT*.mntdev"
4612         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4613         [ -z "$DEV" ] && error "can't access $MNTDEV"
4614         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4615                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4616                         error "can't access $DEV"
4617                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4618                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4619                 rm $TMP/t57a.dump
4620         done
4621 }
4622 run_test 57a "verify MDS filesystem created with large inodes =="
4623
4624 test_57b() {
4625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4626         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4627                 skip "Only applicable to ldiskfs-based MDTs"
4628                 return
4629         fi
4630
4631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4632         local dir=$DIR/d57b
4633
4634         local FILECOUNT=100
4635         local FILE1=$dir/f1
4636         local FILEN=$dir/f$FILECOUNT
4637
4638         rm -rf $dir || error "removing $dir"
4639         test_mkdir -p $dir || error "creating $dir"
4640         local num=$(get_mds_dir $dir)
4641         local mymds=mds$num
4642
4643         echo "mcreating $FILECOUNT files"
4644         createmany -m $dir/f 1 $FILECOUNT || \
4645                 error "creating files in $dir"
4646
4647         # verify that files do not have EAs yet
4648         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4649         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4650
4651         sync
4652         sleep 1
4653         df $dir  #make sure we get new statfs data
4654         local MDSFREE=$(do_facet $mymds \
4655                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4656         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4657         echo "opening files to create objects/EAs"
4658         local FILE
4659         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4660                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4661         done
4662
4663         # verify that files have EAs now
4664         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4665         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4666
4667         sleep 1  #make sure we get new statfs data
4668         df $dir
4669         local MDSFREE2=$(do_facet $mymds \
4670                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4671         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4672         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4673                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4674                         error "MDC before $MDCFREE != after $MDCFREE2"
4675                 else
4676                         echo "MDC before $MDCFREE != after $MDCFREE2"
4677                         echo "unable to confirm if MDS has large inodes"
4678                 fi
4679         fi
4680         rm -rf $dir
4681 }
4682 run_test 57b "default LOV EAs are stored inside large inodes ==="
4683
4684 test_58() {
4685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4686         [ -z "$(which wiretest 2>/dev/null)" ] &&
4687                         skip_env "could not find wiretest" && return
4688         wiretest
4689 }
4690 run_test 58 "verify cross-platform wire constants =============="
4691
4692 test_59() {
4693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4694         echo "touch 130 files"
4695         createmany -o $DIR/f59- 130
4696         echo "rm 130 files"
4697         unlinkmany $DIR/f59- 130
4698         sync
4699         # wait for commitment of removal
4700         wait_delete_completed
4701 }
4702 run_test 59 "verify cancellation of llog records async ========="
4703
4704 TEST60_HEAD="test_60 run $RANDOM"
4705 test_60a() {
4706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4707         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4708         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4709                 skip_env "missing subtest run-llog.sh" && return
4710         log "$TEST60_HEAD - from kernel mode"
4711         do_facet mgs sh run-llog.sh
4712 }
4713 run_test 60a "llog sanity tests run from kernel module =========="
4714
4715 test_60b() { # bug 6411
4716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4717         dmesg > $DIR/$tfile
4718         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4719                                  /llog.test/ {
4720                                          if (marker)
4721                                                  from_marker++
4722                                          from_begin++
4723                                  }
4724                                  END {
4725                                          if (marker)
4726                                                  print from_marker
4727                                          else
4728                                                  print from_begin
4729                                  }"`
4730         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4731 }
4732 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4733
4734 test_60c() {
4735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4736         echo "create 5000 files"
4737         createmany -o $DIR/f60c- 5000
4738 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4739         lctl set_param fail_loc=0x80000137
4740         unlinkmany $DIR/f60c- 5000
4741         lctl set_param fail_loc=0
4742 }
4743 run_test 60c "unlink file when mds full"
4744
4745 test_60d() {
4746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4747         SAVEPRINTK=$(lctl get_param -n printk)
4748
4749         # verify "lctl mark" is even working"
4750         MESSAGE="test message ID $RANDOM $$"
4751         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4752         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4753
4754         lctl set_param printk=0 || error "set lnet.printk failed"
4755         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4756         MESSAGE="new test message ID $RANDOM $$"
4757         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4758         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4759         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4760
4761         lctl set_param -n printk="$SAVEPRINTK"
4762 }
4763 run_test 60d "test printk console message masking"
4764
4765 test_61() {
4766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4767         f="$DIR/f61"
4768         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4769         cancel_lru_locks osc
4770         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4771         sync
4772 }
4773 run_test 61 "mmap() writes don't make sync hang ================"
4774
4775 # bug 2330 - insufficient obd_match error checking causes LBUG
4776 test_62() {
4777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4778         f="$DIR/f62"
4779         echo foo > $f
4780         cancel_lru_locks osc
4781         lctl set_param fail_loc=0x405
4782         cat $f && error "cat succeeded, expect -EIO"
4783         lctl set_param fail_loc=0
4784 }
4785 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4786 # match every page all of the time.
4787 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4788
4789 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4790 test_63a() {    # was test_63
4791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4792         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4793         lctl set_param -n osc.*.max_dirty_mb 0
4794         for i in `seq 10` ; do
4795                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4796                 sleep 5
4797                 kill $!
4798                 sleep 1
4799         done
4800
4801         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4802         rm -f $DIR/f63 || true
4803 }
4804 run_test 63a "Verify oig_wait interruption does not crash ======="
4805
4806 # bug 2248 - async write errors didn't return to application on sync
4807 # bug 3677 - async write errors left page locked
4808 test_63b() {
4809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4810         debugsave
4811         lctl set_param debug=-1
4812
4813         # ensure we have a grant to do async writes
4814         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4815         rm $DIR/$tfile
4816
4817         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4818         lctl set_param fail_loc=0x80000406
4819         $MULTIOP $DIR/$tfile Owy && \
4820                 error "sync didn't return ENOMEM"
4821         sync; sleep 2; sync     # do a real sync this time to flush page
4822         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4823                 error "locked page left in cache after async error" || true
4824         debugrestore
4825 }
4826 run_test 63b "async write errors should be returned to fsync ==="
4827
4828 test_64a () {
4829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4830         df $DIR
4831         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4832 }
4833 run_test 64a "verify filter grant calculations (in kernel) ====="
4834
4835 test_64b () {
4836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4837         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4838 }
4839 run_test 64b "check out-of-space detection on client ==========="
4840
4841 test_64c() {
4842         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4843 }
4844 run_test 64c "verify grant shrink ========================------"
4845
4846 # bug 1414 - set/get directories' stripe info
4847 test_65a() {
4848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4849         test_mkdir -p $DIR/$tdir
4850         touch $DIR/$tdir/f1
4851         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4852 }
4853 run_test 65a "directory with no stripe info ===================="
4854
4855 test_65b() {
4856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4857         test_mkdir -p $DIR/$tdir
4858         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4859                                                 error "setstripe"
4860         touch $DIR/$tdir/f2
4861         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4862 }
4863 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4864
4865 test_65c() {
4866         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4867         if [ $OSTCOUNT -gt 1 ]; then
4868                 test_mkdir -p $DIR/$tdir
4869                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4870                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4871                 touch $DIR/$tdir/f3
4872                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4873         fi
4874 }
4875 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4876
4877 test_65d() {
4878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4879         test_mkdir -p $DIR/$tdir
4880         if [ $STRIPECOUNT -le 0 ]; then
4881                 sc=1
4882         elif [ $STRIPECOUNT -gt 2000 ]; then
4883 #LOV_MAX_STRIPE_COUNT is 2000
4884                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4885         else
4886                 sc=$(($STRIPECOUNT - 1))
4887         fi
4888         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4889         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4890         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4891                                                 error "lverify failed"
4892 }
4893 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4894
4895 test_65e() {
4896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4897         test_mkdir -p $DIR/$tdir
4898
4899         $SETSTRIPE $DIR/$tdir || error "setstripe"
4900         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4901                                         error "no stripe info failed"
4902         touch $DIR/$tdir/f6
4903         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4904 }
4905 run_test 65e "directory setstripe defaults ======================="
4906
4907 test_65f() {
4908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4909         test_mkdir -p $DIR/${tdir}f
4910         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4911 }
4912 run_test 65f "dir setstripe permission (should return error) ==="
4913
4914 test_65g() {
4915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4916         test_mkdir -p $DIR/$tdir
4917         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4918                                                         error "setstripe"
4919         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4920         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4921                 error "delete default stripe failed"
4922 }
4923 run_test 65g "directory setstripe -d ==========================="
4924
4925 test_65h() {
4926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4927         test_mkdir -p $DIR/$tdir
4928         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4929                                                         error "setstripe"
4930         test_mkdir -p $DIR/$tdir/dd1
4931         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4932                 error "stripe info inherit failed"
4933 }
4934 run_test 65h "directory stripe info inherit ===================="
4935
4936 test_65i() { # bug6367
4937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4938         $SETSTRIPE -S 65536 -c -1 $MOUNT
4939 }
4940 run_test 65i "set non-default striping on root directory (bug 6367)="
4941
4942 test_65ia() { # bug12836
4943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4944         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4945 }
4946 run_test 65ia "getstripe on -1 default directory striping"
4947
4948 test_65ib() { # bug12836
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4951 }
4952 run_test 65ib "getstripe -v on -1 default directory striping"
4953
4954 test_65ic() { # bug12836
4955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4956         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4957 }
4958 run_test 65ic "new find on -1 default directory striping"
4959
4960 test_65j() { # bug6367
4961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4962         sync; sleep 1
4963         # if we aren't already remounting for each test, do so for this test
4964         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4965                 cleanup || error "failed to unmount"
4966                 setup
4967         fi
4968         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4969 }
4970 run_test 65j "set default striping on root directory (bug 6367)="
4971
4972 test_65k() { # bug11679
4973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4974         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4975         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4976
4977     echo "Check OST status: "
4978     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4979               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4980
4981     for OSC in $MDS_OSCS; do
4982         echo $OSC "is activate"
4983         do_facet $SINGLEMDS lctl --device %$OSC activate
4984     done
4985
4986     mkdir -p $DIR/$tdir
4987     for INACTIVE_OSC in $MDS_OSCS; do
4988         echo "Deactivate: " $INACTIVE_OSC
4989         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4990         for STRIPE_OSC in $MDS_OSCS; do
4991             OST=`osc_to_ost $STRIPE_OSC`
4992             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4993                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4994
4995             [ -f $DIR/$tdir/$IDX ] && continue
4996             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4997             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4998             RC=$?
4999             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5000         done
5001         rm -f $DIR/$tdir/*
5002         echo $INACTIVE_OSC "is Activate."
5003         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5004     done
5005 }
5006 run_test 65k "validate manual striping works properly with deactivated OSCs"
5007
5008 test_65l() { # bug 12836
5009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5010         test_mkdir -p $DIR/$tdir/test_dir
5011         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5012         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5013 }
5014 run_test 65l "lfs find on -1 stripe dir ========================"
5015
5016 # bug 2543 - update blocks count on client
5017 test_66() {
5018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5019         COUNT=${COUNT:-8}
5020         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5021         sync; sync_all_data; sync; sync_all_data
5022         cancel_lru_locks osc
5023         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5024         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5025 }
5026 run_test 66 "update inode blocks count on client ==============="
5027
5028 LLOOP=
5029 LLITELOOPLOAD=
5030 cleanup_68() {
5031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5032         trap 0
5033         if [ ! -z "$LLOOP" ]; then
5034                 if swapon -s | grep -q $LLOOP; then
5035                         swapoff $LLOOP || error "swapoff failed"
5036                 fi
5037
5038                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5039                 rm -f $LLOOP
5040                 unset LLOOP
5041         fi
5042         if [ ! -z "$LLITELOOPLOAD" ]; then
5043                 rmmod llite_lloop
5044                 unset LLITELOOPLOAD
5045         fi
5046         rm -f $DIR/f68*
5047 }
5048
5049 meminfo() {
5050         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5051 }
5052
5053 swap_used() {
5054         swapon -s | awk '($1 == "'$1'") { print $4 }'
5055 }
5056
5057 # test case for lloop driver, basic function
5058 test_68a() {
5059         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5060         [ "$UID" != 0 ] && skip_env "must run as root" && return
5061         llite_lloop_enabled || \
5062                 { skip_env "llite_lloop module disabled" && return; }
5063
5064         trap cleanup_68 EXIT
5065
5066         if ! module_loaded llite_lloop; then
5067                 if load_module llite/llite_lloop; then
5068                         LLITELOOPLOAD=yes
5069                 else
5070                         skip_env "can't find module llite_lloop"
5071                         return
5072                 fi
5073         fi
5074
5075         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5076         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5077         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5078
5079         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5080         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5081
5082         cleanup_68
5083 }
5084 run_test 68a "lloop driver - basic test ========================"
5085
5086 # excercise swapping to lustre by adding a high priority swapfile entry
5087 # and then consuming memory until it is used.
5088 test_68b() {  # was test_68
5089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5090         [ "$UID" != 0 ] && skip_env "must run as root" && return
5091         lctl get_param -n devices | grep -q obdfilter && \
5092                 skip "local OST" && return
5093
5094         grep -q llite_lloop /proc/modules
5095         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5096
5097         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5098                 skip "can't reliably test swap with TCP" && return
5099
5100         MEMTOTAL=`meminfo MemTotal`
5101         NR_BLOCKS=$((MEMTOTAL>>8))
5102         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5103
5104         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5105         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5106         mkswap $DIR/f68b
5107
5108         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5109
5110         trap cleanup_68 EXIT
5111
5112         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5113
5114         echo "before: `swapon -s | grep $LLOOP`"
5115         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5116         echo "after: `swapon -s | grep $LLOOP`"
5117         SWAPUSED=`swap_used $LLOOP`
5118
5119         cleanup_68
5120
5121         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5122 }
5123 run_test 68b "support swapping to Lustre ========================"
5124
5125 # bug5265, obdfilter oa2dentry return -ENOENT
5126 # #define OBD_FAIL_OST_ENOENT 0x217
5127 test_69() {
5128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5129         remote_ost_nodsh && skip "remote OST with nodsh" && return
5130
5131         f="$DIR/$tfile"
5132         $SETSTRIPE -c 1 -i 0 $f
5133
5134         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5135
5136         do_facet ost1 lctl set_param fail_loc=0x217
5137         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5138         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5139
5140         do_facet ost1 lctl set_param fail_loc=0
5141         $DIRECTIO write $f 0 2 || error "write error"
5142
5143         cancel_lru_locks osc
5144         $DIRECTIO read $f 0 1 || error "read error"
5145
5146         do_facet ost1 lctl set_param fail_loc=0x217
5147         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5148
5149         do_facet ost1 lctl set_param fail_loc=0
5150         rm -f $f
5151 }
5152 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5153
5154 test_71() {
5155     test_mkdir -p $DIR/$tdir
5156     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5157 }
5158 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5159
5160 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5162         [ "$RUNAS_ID" = "$UID" ] &&
5163                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5164
5165         # Check that testing environment is properly set up. Skip if not
5166         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5167                 skip_env "User $RUNAS_ID does not exist - skipping"
5168                 return 0
5169         }
5170         # We had better clear the $DIR to get enough space for dd
5171         rm -rf $DIR/*
5172         touch $DIR/$tfile
5173         chmod 777 $DIR/$tfile
5174         chmod ug+s $DIR/$tfile
5175         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5176                 error "$RUNAS dd $DIR/$tfile failed"
5177         # See if we are still setuid/sgid
5178         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5179                 error "S/gid is not dropped on write"
5180         # Now test that MDS is updated too
5181         cancel_lru_locks mdc
5182         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5183                 error "S/gid is not dropped on MDS"
5184         rm -f $DIR/$tfile
5185 }
5186 run_test 72a "Test that remove suid works properly (bug5695) ===="
5187
5188 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5189         local perm
5190
5191         [ "$RUNAS_ID" = "$UID" ] && \
5192                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5193         [ "$RUNAS_ID" -eq 0 ] && \
5194                 skip_env "RUNAS_ID = 0 -- skipping" && return
5195
5196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5197         # Check that testing environment is properly set up. Skip if not
5198         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5199                 skip_env "User $RUNAS_ID does not exist - skipping"
5200                 return 0
5201         }
5202         touch $DIR/${tfile}-f{g,u}
5203         test_mkdir $DIR/${tfile}-dg
5204         test_mkdir $DIR/${tfile}-du
5205         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5206         chmod g+s $DIR/${tfile}-{f,d}g
5207         chmod u+s $DIR/${tfile}-{f,d}u
5208         for perm in 777 2777 4777; do
5209                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5210                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5211                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5212                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5213         done
5214         true
5215 }
5216 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5217
5218 # bug 3462 - multiple simultaneous MDC requests
5219 test_73() {
5220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5221         test_mkdir $DIR/d73-1
5222         test_mkdir $DIR/d73-2
5223         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5224         pid1=$!
5225
5226         lctl set_param fail_loc=0x80000129
5227         $MULTIOP $DIR/d73-1/f73-2 Oc &
5228         sleep 1
5229         lctl set_param fail_loc=0
5230
5231         $MULTIOP $DIR/d73-2/f73-3 Oc &
5232         pid3=$!
5233
5234         kill -USR1 $pid1
5235         wait $pid1 || return 1
5236
5237         sleep 25
5238
5239         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5240         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5241         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5242
5243         rm -rf $DIR/d73-*
5244 }
5245 run_test 73 "multiple MDC requests (should not deadlock)"
5246
5247 test_74a() { # bug 6149, 6184
5248         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5249         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5250         #
5251         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5252         # will spin in a tight reconnection loop
5253         touch $DIR/f74a
5254         lctl set_param fail_loc=0x8000030e
5255         # get any lock that won't be difficult - lookup works.
5256         ls $DIR/f74a
5257         lctl set_param fail_loc=0
5258         true
5259         rm -f $DIR/f74a
5260 }
5261 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5262
5263 test_74b() { # bug 13310
5264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5265         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5266         #
5267         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5268         # will spin in a tight reconnection loop
5269         lctl set_param fail_loc=0x8000030e
5270         # get a "difficult" lock
5271         touch $DIR/f74b
5272         lctl set_param fail_loc=0
5273         true
5274         rm -f $DIR/f74b
5275 }
5276 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5277
5278 test_74c() {
5279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5280 #define OBD_FAIL_LDLM_NEW_LOCK
5281         lctl set_param fail_loc=0x80000319
5282         touch $DIR/$tfile && error "Touch successful"
5283         true
5284 }
5285 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5286
5287 num_inodes() {
5288         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5289 }
5290
5291 get_inode_slab_tunables() {
5292         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5293 }
5294
5295 set_inode_slab_tunables() {
5296         echo "lustre_inode_cache $1" > /proc/slabinfo
5297 }
5298
5299 test_76() { # Now for bug 20433, added originally in bug 1443
5300         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5301         local SLAB_SETTINGS=`get_inode_slab_tunables`
5302         local CPUS=`getconf _NPROCESSORS_ONLN`
5303         # we cannot set limit below 1 which means 1 inode in each
5304         # per-cpu cache is still allowed
5305         set_inode_slab_tunables "1 1 0"
5306         cancel_lru_locks osc
5307         BEFORE_INODES=`num_inodes`
5308         echo "before inodes: $BEFORE_INODES"
5309         local COUNT=1000
5310         [ "$SLOW" = "no" ] && COUNT=100
5311         for i in `seq $COUNT`; do
5312                 touch $DIR/$tfile
5313                 rm -f $DIR/$tfile
5314         done
5315         cancel_lru_locks osc
5316         AFTER_INODES=`num_inodes`
5317         echo "after inodes: $AFTER_INODES"
5318         local wait=0
5319         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5320                 sleep 2
5321                 AFTER_INODES=`num_inodes`
5322                 wait=$((wait+2))
5323                 echo "wait $wait seconds inodes: $AFTER_INODES"
5324                 if [ $wait -gt 30 ]; then
5325                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5326                 fi
5327         done
5328         set_inode_slab_tunables "$SLAB_SETTINGS"
5329 }
5330 run_test 76 "confirm clients recycle inodes properly ===="
5331
5332
5333 export ORIG_CSUM=""
5334 set_checksums()
5335 {
5336         # Note: in sptlrpc modes which enable its own bulk checksum, the
5337         # original crc32_le bulk checksum will be automatically disabled,
5338         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5339         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5340         # In this case set_checksums() will not be no-op, because sptlrpc
5341         # bulk checksum will be enabled all through the test.
5342
5343         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5344         lctl set_param -n osc.*.checksums $1
5345         return 0
5346 }
5347
5348 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5349                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5350 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5351 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5352 set_checksum_type()
5353 {
5354         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5355         log "set checksum type to $1"
5356         return 0
5357 }
5358 F77_TMP=$TMP/f77-temp
5359 F77SZ=8
5360 setup_f77() {
5361         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5362                 error "error writing to $F77_TMP"
5363 }
5364
5365 test_77a() { # bug 10889
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         $GSS && skip "could not run with gss" && return
5368         [ ! -f $F77_TMP ] && setup_f77
5369         set_checksums 1
5370         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5371         set_checksums 0
5372         rm -f $DIR/$tfile
5373 }
5374 run_test 77a "normal checksum read/write operation"
5375
5376 test_77b() { # bug 10889
5377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5378         $GSS && skip "could not run with gss" && return
5379         [ ! -f $F77_TMP ] && setup_f77
5380         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5381         $LCTL set_param fail_loc=0x80000409
5382         set_checksums 1
5383
5384         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5385                 error "dd error: $?"
5386         $LCTL set_param fail_loc=0
5387
5388         for algo in $CKSUM_TYPES; do
5389                 cancel_lru_locks osc
5390                 set_checksum_type $algo
5391                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5392                 $LCTL set_param fail_loc=0x80000408
5393                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5394                 $LCTL set_param fail_loc=0
5395         done
5396         set_checksums 0
5397         set_checksum_type $ORIG_CSUM_TYPE
5398         rm -f $DIR/$tfile
5399 }
5400 run_test 77b "checksum error on client write, read"
5401
5402 test_77d() { # bug 10889
5403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5404         $GSS && skip "could not run with gss" && return
5405         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5406         $LCTL set_param fail_loc=0x80000409
5407         set_checksums 1
5408         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5409                 error "direct write: rc=$?"
5410         $LCTL set_param fail_loc=0
5411         set_checksums 0
5412
5413         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5414         $LCTL set_param fail_loc=0x80000408
5415         set_checksums 1
5416         cancel_lru_locks osc
5417         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5418                 error "direct read: rc=$?"
5419         $LCTL set_param fail_loc=0
5420         set_checksums 0
5421 }
5422 run_test 77d "checksum error on OST direct write, read"
5423
5424 test_77f() { # bug 10889
5425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5426         $GSS && skip "could not run with gss" && return
5427         set_checksums 1
5428         for algo in $CKSUM_TYPES; do
5429                 cancel_lru_locks osc
5430                 set_checksum_type $algo
5431                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5432                 $LCTL set_param fail_loc=0x409
5433                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5434                         error "direct write succeeded"
5435                 $LCTL set_param fail_loc=0
5436         done
5437         set_checksum_type $ORIG_CSUM_TYPE
5438         set_checksums 0
5439 }
5440 run_test 77f "repeat checksum error on write (expect error)"
5441
5442 test_77g() { # bug 10889
5443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5444         $GSS && skip "could not run with gss" && return
5445         remote_ost_nodsh && skip "remote OST with nodsh" && return
5446
5447         [ ! -f $F77_TMP ] && setup_f77
5448
5449         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5450         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5451         do_facet ost1 lctl set_param fail_loc=0x8000021a
5452         set_checksums 1
5453         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5454                 error "write error: rc=$?"
5455         do_facet ost1 lctl set_param fail_loc=0
5456         set_checksums 0
5457
5458         cancel_lru_locks osc
5459         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5460         do_facet ost1 lctl set_param fail_loc=0x8000021b
5461         set_checksums 1
5462         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5463         do_facet ost1 lctl set_param fail_loc=0
5464         set_checksums 0
5465 }
5466 run_test 77g "checksum error on OST write, read"
5467
5468 test_77i() { # bug 13805
5469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5470         $GSS && skip "could not run with gss" && return
5471         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5472         lctl set_param fail_loc=0x40b
5473         remount_client $MOUNT
5474         lctl set_param fail_loc=0
5475         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5476                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5477                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5478                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5479         done
5480         remount_client $MOUNT
5481 }
5482 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5483
5484 test_77j() { # bug 13805
5485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5486         $GSS && skip "could not run with gss" && return
5487         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5488         lctl set_param fail_loc=0x40c
5489         remount_client $MOUNT
5490         lctl set_param fail_loc=0
5491         sleep 2 # wait async osc connect to finish
5492         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5493                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5494                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5495                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5496         done
5497         remount_client $MOUNT
5498 }
5499 run_test 77j "client only supporting ADLER32"
5500
5501 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5502 rm -f $F77_TMP
5503 unset F77_TMP
5504
5505 test_78() { # bug 10901
5506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5507         remote_ost || { skip_env "local OST" && return; }
5508
5509         NSEQ=5
5510         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5511         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5512         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5513         echo "MemTotal: $MEMTOTAL"
5514 # reserve 256MB of memory for the kernel and other running processes,
5515 # and then take 1/2 of the remaining memory for the read/write buffers.
5516     if [ $MEMTOTAL -gt 512 ] ;then
5517         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5518     else
5519         # for those poor memory-starved high-end clusters...
5520         MEMTOTAL=$((MEMTOTAL / 2))
5521     fi
5522         echo "Mem to use for directio: $MEMTOTAL"
5523         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5524         [ $F78SIZE -gt 512 ] && F78SIZE=512
5525         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5526         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5527         echo "Smallest OST: $SMALLESTOST"
5528         [ $SMALLESTOST -lt 10240 ] && \
5529                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5530
5531         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5532                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5533
5534         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5535         echo "File size: $F78SIZE"
5536         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5537         for i in `seq 1 $NSEQ`
5538         do
5539                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5540                 echo directIO rdwr round $i of $NSEQ
5541                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5542         done
5543
5544         rm -f $DIR/$tfile
5545 }
5546 run_test 78 "handle large O_DIRECT writes correctly ============"
5547
5548 test_79() { # bug 12743
5549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5550         wait_delete_completed
5551
5552         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5553         BKFREE=$(calc_osc_kbytes kbytesfree)
5554         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5555
5556         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5557         DFTOTAL=`echo $STRING | cut -d, -f1`
5558         DFUSED=`echo $STRING  | cut -d, -f2`
5559         DFAVAIL=`echo $STRING | cut -d, -f3`
5560         DFFREE=$(($DFTOTAL - $DFUSED))
5561
5562         ALLOWANCE=$((64 * $OSTCOUNT))
5563
5564         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5565            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5566                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5567         fi
5568         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5569            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5570                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5571         fi
5572         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5573            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5574                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5575         fi
5576 }
5577 run_test 79 "df report consistency check ======================="
5578
5579 test_80() { # bug 10718
5580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5581         # relax strong synchronous semantics for slow backends like ZFS
5582         local soc="obdfilter.*.sync_on_lock_cancel"
5583         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5584         local hosts=
5585         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5586                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5587                           facet_active_host $host; done | sort -u)
5588                 do_nodes $hosts lctl set_param $soc=never
5589         fi
5590
5591         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5592         sync; sleep 1; sync
5593         local BEFORE=`date +%s`
5594         cancel_lru_locks osc
5595         local AFTER=`date +%s`
5596         local DIFF=$((AFTER-BEFORE))
5597         if [ $DIFF -gt 1 ] ; then
5598                 error "elapsed for 1M@1T = $DIFF"
5599         fi
5600
5601         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5602
5603         rm -f $DIR/$tfile
5604 }
5605 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5606
5607 test_81a() { # LU-456
5608         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5609         remote_ost_nodsh && skip "remote OST with nodsh" && return
5610         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5611         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5612         do_facet ost1 lctl set_param fail_loc=0x80000228
5613
5614         # write should trigger a retry and success
5615         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5616         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5617         RC=$?
5618         if [ $RC -ne 0 ] ; then
5619                 error "write should success, but failed for $RC"
5620         fi
5621 }
5622 run_test 81a "OST should retry write when get -ENOSPC ==============="
5623
5624 test_81b() { # LU-456
5625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5626         remote_ost_nodsh && skip "remote OST with nodsh" && return
5627         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5628         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5629         do_facet ost1 lctl set_param fail_loc=0x228
5630
5631         # write should retry several times and return -ENOSPC finally
5632         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5633         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5634         RC=$?
5635         ENOSPC=28
5636         if [ $RC -ne $ENOSPC ] ; then
5637                 error "dd should fail for -ENOSPC, but succeed."
5638         fi
5639 }
5640 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5641
5642 test_82() { # LU-1031
5643         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5644         local gid1=14091995
5645         local gid2=16022000
5646
5647         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5648         local MULTIPID1=$!
5649         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5650         local MULTIPID2=$!
5651         kill -USR1 $MULTIPID2
5652         sleep 2
5653         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5654                 error "First grouplock does not block second one"
5655         else
5656                 echo "Second grouplock blocks first one"
5657         fi
5658         kill -USR1 $MULTIPID1
5659         wait $MULTIPID1
5660         wait $MULTIPID2
5661 }
5662 run_test 82 "Basic grouplock test ==============================="
5663
5664 test_99a() {
5665         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5666                 return
5667         test_mkdir -p $DIR/d99cvsroot
5668         chown $RUNAS_ID $DIR/d99cvsroot
5669         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5670         cd $TMP
5671
5672         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5673         cd $oldPWD
5674 }
5675 run_test 99a "cvs init ========================================="
5676
5677 test_99b() {
5678         [ -z "$(which cvs 2>/dev/null)" ] &&
5679                 skip_env "could not find cvs" && return
5680         [ ! -d $DIR/d99cvsroot ] && test_99a
5681         cd /etc/init.d
5682         # some versions of cvs import exit(1) when asked to import links or
5683         # files they can't read.  ignore those files.
5684         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5685                         ! -perm +4 -printf '-I %f\n')
5686         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5687                 d99reposname vtag rtag
5688 }
5689 run_test 99b "cvs import ======================================="
5690
5691 test_99c() {
5692         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5693         [ ! -d $DIR/d99cvsroot ] && test_99b
5694         cd $DIR
5695         test_mkdir -p $DIR/d99reposname
5696         chown $RUNAS_ID $DIR/d99reposname
5697         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5698 }
5699 run_test 99c "cvs checkout ====================================="
5700
5701 test_99d() {
5702         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5703         [ ! -d $DIR/d99cvsroot ] && test_99c
5704         cd $DIR/d99reposname
5705         $RUNAS touch foo99
5706         $RUNAS cvs add -m 'addmsg' foo99
5707 }
5708 run_test 99d "cvs add =========================================="
5709
5710 test_99e() {
5711         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5712         [ ! -d $DIR/d99cvsroot ] && test_99c
5713         cd $DIR/d99reposname
5714         $RUNAS cvs update
5715 }
5716 run_test 99e "cvs update ======================================="
5717
5718 test_99f() {
5719         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5720         [ ! -d $DIR/d99cvsroot ] && test_99d
5721         cd $DIR/d99reposname
5722         $RUNAS cvs commit -m 'nomsg' foo99
5723     rm -fr $DIR/d99cvsroot
5724 }
5725 run_test 99f "cvs commit ======================================="
5726
5727 test_100() {
5728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5729         [ "$NETTYPE" = tcp ] || \
5730                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5731                         return ; }
5732
5733         remote_ost_nodsh && skip "remote OST with nodsh" && return
5734         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5735         remote_servers || \
5736                 { skip "useless for local single node setup" && return; }
5737
5738         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5739                 [ "$PROT" != "tcp" ] && continue
5740                 RPORT=$(echo $REMOTE | cut -d: -f2)
5741                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5742
5743                 rc=0
5744                 LPORT=`echo $LOCAL | cut -d: -f2`
5745                 if [ $LPORT -ge 1024 ]; then
5746                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5747                         netstat -tna
5748                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5749                 fi
5750         done
5751         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5752 }
5753 run_test 100 "check local port using privileged port ==========="
5754
5755 function get_named_value()
5756 {
5757     local tag
5758
5759     tag=$1
5760     while read ;do
5761         line=$REPLY
5762         case $line in
5763         $tag*)
5764             echo $line | sed "s/^$tag[ ]*//"
5765             break
5766             ;;
5767         esac
5768     done
5769 }
5770
5771 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5772                    awk '/^max_cached_mb/ { print $2 }')
5773
5774 cleanup_101a() {
5775         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5776         trap 0
5777 }
5778
5779 test_101a() {
5780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5781         local s
5782         local discard
5783         local nreads=10000
5784         local cache_limit=32
5785
5786         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5787         trap cleanup_101a EXIT
5788         $LCTL set_param -n llite.*.read_ahead_stats 0
5789         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5790
5791         #
5792         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5793         #
5794         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5795         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5796
5797         discard=0
5798         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5799                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5800                         discard=$(($discard + $s))
5801         done
5802         cleanup_101a
5803
5804         if [ $(($discard * 10)) -gt $nreads ] ;then
5805                 $LCTL get_param osc.*-osc*.rpc_stats
5806                 $LCTL get_param llite.*.read_ahead_stats
5807                 error "too many ($discard) discarded pages"
5808         fi
5809         rm -f $DIR/$tfile || true
5810 }
5811 run_test 101a "check read-ahead for random reads ================"
5812
5813 setup_test101bc() {
5814         test_mkdir -p $DIR/$tdir
5815         STRIPE_SIZE=1048576
5816         STRIPE_COUNT=$OSTCOUNT
5817         STRIPE_OFFSET=0
5818
5819         local list=$(comma_list $(osts_nodes))
5820         set_osd_param $list '' read_cache_enable 0
5821         set_osd_param $list '' writethrough_cache_enable 0
5822
5823         trap cleanup_test101bc EXIT
5824         # prepare the read-ahead file
5825         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5826
5827         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5828 }
5829
5830 cleanup_test101bc() {
5831         trap 0
5832         rm -rf $DIR/$tdir
5833         rm -f $DIR/$tfile
5834
5835         local list=$(comma_list $(osts_nodes))
5836         set_osd_param $list '' read_cache_enable 1
5837         set_osd_param $list '' writethrough_cache_enable 1
5838 }
5839
5840 calc_total() {
5841         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5842 }
5843
5844 ra_check_101() {
5845         local READ_SIZE=$1
5846         local STRIPE_SIZE=1048576
5847         local RA_INC=1048576
5848         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5849         local FILE_LENGTH=$((64*100))
5850         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5851                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5852         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5853                         get_named_value 'read but discarded' | \
5854                         cut -d" " -f1 | calc_total`
5855         if [ $DISCARD -gt $discard_limit ]; then
5856                 $LCTL get_param llite.*.read_ahead_stats
5857                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5858         else
5859                 echo "Read-ahead success for size ${READ_SIZE}"
5860         fi
5861 }
5862
5863 test_101b() {
5864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5865         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5866         local STRIPE_SIZE=1048576
5867         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5868         local FILE_LENGTH=$((STRIPE_SIZE*100))
5869         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5870         # prepare the read-ahead file
5871         setup_test101bc
5872         cancel_lru_locks osc
5873         for BIDX in 2 4 8 16 32 64 128 256
5874         do
5875                 local BSIZE=$((BIDX*4096))
5876                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5877                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5878                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5879                 $LCTL set_param -n llite.*.read_ahead_stats 0
5880                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5881                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5882                 cancel_lru_locks osc
5883                 ra_check_101 $BSIZE
5884         done
5885         cleanup_test101bc
5886         true
5887 }
5888 run_test 101b "check stride-io mode read-ahead ================="
5889
5890 test_101c() {
5891         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5892         local STRIPE_SIZE=1048576
5893         local FILE_LENGTH=$((STRIPE_SIZE*100))
5894         local nreads=10000
5895         local osc_rpc_stats
5896
5897         setup_test101bc
5898
5899         cancel_lru_locks osc
5900         $LCTL set_param osc.*.rpc_stats 0
5901         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5902         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5903                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5904                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5905                 local size
5906
5907                 if [ $lines -le 20 ]; then
5908                         continue
5909                 fi
5910                 for size in 1 2 4 8; do
5911                         local rpc=$(echo "$stats" |
5912                                     awk '($1 == "'$size':") {print $2; exit; }')
5913                         [ $rpc != 0 ] &&
5914                                 error "Small $((size*4))k read IO $rpc !"
5915                 done
5916                 echo "$osc_rpc_stats check passed!"
5917         done
5918         cleanup_test101bc
5919         true
5920 }
5921 run_test 101c "check stripe_size aligned read-ahead ================="
5922
5923 set_read_ahead() {
5924    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5925    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5926 }
5927
5928 test_101d() {
5929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5930         local file=$DIR/$tfile
5931         local size=${FILESIZE_101c:-500}
5932         local ra_MB=${READAHEAD_MB:-40}
5933
5934         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5935         [ $space -gt $((size * 1024)) ] ||
5936                 { skip "Need free space ${size}M, have ${space}K" && return; }
5937
5938         echo "Creating test file $file of size ${size}M with ${space}K free space"
5939         $SETSTRIPE -c -1 $file || error "setstripe failed"
5940         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5941         echo Cancel LRU locks on lustre client to flush the client cache
5942         cancel_lru_locks osc
5943
5944     echo Disable read-ahead
5945     local old_READAHEAD=$(set_read_ahead 0)
5946
5947     echo Reading the test file $file with read-ahead disabled
5948     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5949
5950     echo Cancel LRU locks on lustre client to flush the client cache
5951     cancel_lru_locks osc
5952     echo Enable read-ahead with ${ra_MB}MB
5953     set_read_ahead $ra_MB
5954
5955     echo Reading the test file $file with read-ahead enabled
5956     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5957
5958     echo read-ahead disabled time read $time_ra_OFF
5959     echo read-ahead enabled  time read $time_ra_ON
5960
5961         set_read_ahead $old_READAHEAD
5962         rm -f $file
5963         wait_delete_completed
5964
5965     [ $time_ra_ON -lt $time_ra_OFF ] ||
5966         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5967                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5968 }
5969 run_test 101d "file read with and without read-ahead enabled  ================="
5970
5971 test_101e() {
5972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5973     local file=$DIR/$tfile
5974     local size=500  #KB
5975     local count=100
5976     local blksize=1024
5977
5978     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5979     local need_space=$((count * size))
5980     [ $space -gt $need_space ] ||
5981         { skip_env "Need free space $need_space, have $space" && return; }
5982
5983     echo Creating $count ${size}K test files
5984     for ((i = 0; i < $count; i++)); do
5985         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5986     done
5987
5988     echo Cancel LRU locks on lustre client to flush the client cache
5989     cancel_lru_locks osc
5990
5991     echo Reset readahead stats
5992     $LCTL set_param -n llite.*.read_ahead_stats 0
5993
5994     for ((i = 0; i < $count; i++)); do
5995         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5996     done
5997
5998     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5999           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6000
6001     for ((i = 0; i < $count; i++)); do
6002         rm -rf ${file}_${i} 2>/dev/null
6003     done
6004
6005     #10000 means 20% reads are missing in readahead
6006     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
6007 }
6008 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6009
6010 cleanup_test101f() {
6011     trap 0
6012     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6013     rm -rf $DIR/$tfile 2>/dev/null
6014 }
6015
6016 test_101f() {
6017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6018     local file=$DIR/$tfile
6019     local nreads=1000
6020
6021     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6022     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6023     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6024     trap cleanup_test101f EXIT
6025
6026     echo Cancel LRU locks on lustre client to flush the client cache
6027     cancel_lru_locks osc
6028
6029     echo Reset readahead stats
6030     $LCTL set_param -n llite.*.read_ahead_stats 0
6031     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6032     # readahead should read in 2M file on second read, so only miss
6033     # 2 pages.
6034     echo Random 4K reads on 2M file for 1000 times
6035     $READS -f $file -s 2097152 -b 4096 -n $nreads
6036
6037     echo checking missing pages
6038     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6039           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6040
6041     [ $miss -lt 3 ] || error "misses too much pages!"
6042     cleanup_test101f
6043 }
6044 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6045
6046 setup_test102() {
6047         test_mkdir -p $DIR/$tdir
6048         chown $RUNAS_ID $DIR/$tdir
6049         STRIPE_SIZE=65536
6050         STRIPE_OFFSET=1
6051         STRIPE_COUNT=$OSTCOUNT
6052         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6053
6054         trap cleanup_test102 EXIT
6055         cd $DIR
6056         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6057         cd $DIR/$tdir
6058         for num in 1 2 3 4; do
6059                 for count in $(seq 1 $STRIPE_COUNT); do
6060                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6061                                 local size=`expr $STRIPE_SIZE \* $num`
6062                                 local file=file"$num-$idx-$count"
6063                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6064                         done
6065                 done
6066         done
6067
6068         cd $DIR
6069         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6070 }
6071
6072 cleanup_test102() {
6073         trap 0
6074         rm -f $TMP/f102.tar
6075         rm -rf $DIR/d0.sanity/d102
6076 }
6077
6078 test_102a() {
6079         local testfile=$DIR/xattr_testfile
6080
6081         touch $testfile
6082
6083         [ "$UID" != 0 ] && skip_env "must run as root" && return
6084         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6085                 skip_env "must have user_xattr" && return
6086
6087         [ -z "$(which setfattr 2>/dev/null)" ] &&
6088                 skip_env "could not find setfattr" && return
6089
6090         echo "set/get xattr..."
6091         setfattr -n trusted.name1 -v value1 $testfile ||
6092                 error "setfattr -n trusted.name1=value1 $testfile failed"
6093         getfattr -n trusted.name1 $testfile 2> /dev/null |
6094           grep "trusted.name1=.value1" ||
6095                 error "$testfile missing trusted.name1=value1"
6096
6097         setfattr -n user.author1 -v author1 $testfile ||
6098                 error "setfattr -n user.author1=author1 $testfile failed"
6099         getfattr -n user.author1 $testfile 2> /dev/null |
6100           grep "user.author1=.author1" ||
6101                 error "$testfile missing trusted.author1=author1"
6102
6103         echo "listxattr..."
6104         setfattr -n trusted.name2 -v value2 $testfile ||
6105                 error "$testfile unable to set trusted.name2"
6106         setfattr -n trusted.name3 -v value3 $testfile ||
6107                 error "$testfile unable to set trusted.name3"
6108         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6109             grep "trusted.name" | wc -l) -eq 3 ] ||
6110                 error "$testfile missing 3 trusted.name xattrs"
6111
6112         setfattr -n user.author2 -v author2 $testfile ||
6113                 error "$testfile unable to set user.author2"
6114         setfattr -n user.author3 -v author3 $testfile ||
6115                 error "$testfile unable to set user.author3"
6116         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6117             grep "user.author" | wc -l) -eq 3 ] ||
6118                 error "$testfile missing 3 user.author xattrs"
6119
6120         echo "remove xattr..."
6121         setfattr -x trusted.name1 $testfile ||
6122                 error "$testfile error deleting trusted.name1"
6123         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6124                 error "$testfile did not delete trusted.name1 xattr"
6125
6126         setfattr -x user.author1 $testfile ||
6127                 error "$testfile error deleting user.author1"
6128         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6129                 error "$testfile did not delete trusted.name1 xattr"
6130
6131         # b10667: setting lustre special xattr be silently discarded
6132         echo "set lustre special xattr ..."
6133         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6134                 error "$testfile allowed setting trusted.lov"
6135 }
6136 run_test 102a "user xattr test =================================="
6137
6138 test_102b() {
6139         # b10930: get/set/list trusted.lov xattr
6140         echo "get/set/list trusted.lov xattr ..."
6141         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6142         local testfile=$DIR/$tfile
6143         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6144                 error "setstripe failed"
6145         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6146                 error "getstripe failed"
6147         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6148         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6149
6150         local testfile2=${testfile}2
6151         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6152                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6153
6154         $MCREATE $testfile2
6155         setfattr -n trusted.lov -v $value $testfile2
6156         local stripe_size=$($GETSTRIPE -S $testfile2)
6157         local stripe_count=$($GETSTRIPE -c $testfile2)
6158         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6159         [ $stripe_count -eq $STRIPECOUNT ] ||
6160                 error "stripe count $stripe_count != $STRIPECOUNT"
6161         rm -f $DIR/$tfile
6162 }
6163 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6164
6165 test_102c() {
6166         # b10930: get/set/list lustre.lov xattr
6167         echo "get/set/list lustre.lov xattr ..."
6168         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6169         test_mkdir -p $DIR/$tdir
6170         chown $RUNAS_ID $DIR/$tdir
6171         local testfile=$DIR/$tdir/$tfile
6172         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6173                 error "setstripe failed"
6174         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6175                 error "getstripe failed"
6176         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6177         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6178
6179         local testfile2=${testfile}2
6180         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6181                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6182
6183         $RUNAS $MCREATE $testfile2
6184         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6185         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6186         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6187         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6188         [ $stripe_count -eq $STRIPECOUNT ] ||
6189                 error "stripe count $stripe_count != $STRIPECOUNT"
6190 }
6191 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6192
6193 compare_stripe_info1() {
6194         local stripe_index_all_zero=true
6195
6196         for num in 1 2 3 4; do
6197                 for count in $(seq 1 $STRIPE_COUNT); do
6198                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6199                                 local size=$((STRIPE_SIZE * num))
6200                                 local file=file"$num-$offset-$count"
6201                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6202                                 [ $stripe_size -ne $size ] &&
6203                                     error "$file: size $stripe_size != $size"
6204                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6205                                 # allow fewer stripes to be created, ORI-601
6206                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6207                                     error "$file: count $stripe_count != $count"
6208                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6209                                 [ $stripe_index -ne 0 ] &&
6210                                         stripe_index_all_zero=false
6211                         done
6212                 done
6213         done
6214         $stripe_index_all_zero &&
6215                 error "all files are being extracted starting from OST index 0"
6216         return 0
6217 }
6218
6219 find_lustre_tar() {
6220         [ -n "$(which tar 2>/dev/null)" ] &&
6221                 strings $(which tar) | grep -q "lustre" && echo tar
6222 }
6223
6224 test_102d() {
6225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6226         # b10930: tar test for trusted.lov xattr
6227         TAR=$(find_lustre_tar)
6228         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6229         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6230         setup_test102
6231         test_mkdir -p $DIR/d102d
6232         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6233         cd $DIR/d102d/$tdir
6234         compare_stripe_info1
6235 }
6236 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6237
6238 test_102f() {
6239         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6240         # b10930: tar test for trusted.lov xattr
6241         TAR=$(find_lustre_tar)
6242         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6243         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6244         setup_test102
6245         test_mkdir -p $DIR/d102f
6246         cd $DIR
6247         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6248         cd $DIR/d102f/$tdir
6249         compare_stripe_info1
6250 }
6251 run_test 102f "tar copy files, not keep osts ==========="
6252
6253 grow_xattr() {
6254         local xsize=${1:-1024}  # in bytes
6255         local file=$DIR/$tfile
6256
6257         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6258                 skip "must have user_xattr" && return 0
6259         [ -z "$(which setfattr 2>/dev/null)" ] &&
6260                 skip_env "could not find setfattr" && return 0
6261         [ -z "$(which getfattr 2>/dev/null)" ] &&
6262                 skip_env "could not find getfattr" && return 0
6263
6264         touch $file
6265
6266         local value="$(generate_string $xsize)"
6267
6268         local xbig=trusted.big
6269         log "save $xbig on $file"
6270         setfattr -n $xbig -v $value $file ||
6271                 error "saving $xbig on $file failed"
6272
6273         local orig=$(get_xattr_value $xbig $file)
6274         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6275
6276         local xsml=trusted.sml
6277         log "save $xsml on $file"
6278         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6279
6280         local new=$(get_xattr_value $xbig $file)
6281         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6282
6283         log "grow $xsml on $file"
6284         setfattr -n $xsml -v "$value" $file ||
6285                 error "growing $xsml on $file failed"
6286
6287         new=$(get_xattr_value $xbig $file)
6288         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6289         log "$xbig still valid after growing $xsml"
6290
6291         rm -f $file
6292 }
6293
6294 test_102h() { # bug 15777
6295         grow_xattr 1024
6296 }
6297 run_test 102h "grow xattr from inside inode to external block"
6298
6299 test_102ha() {
6300         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6301         grow_xattr $(max_xattr_size)
6302 }
6303 run_test 102ha "grow xattr from inside inode to external inode"
6304
6305 test_102i() { # bug 17038
6306         touch $DIR/$tfile
6307         ln -s $DIR/$tfile $DIR/${tfile}link
6308         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6309         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"
6310         rm -f $DIR/$tfile $DIR/${tfile}link
6311 }
6312 run_test 102i "lgetxattr test on symbolic link ============"
6313
6314 test_102j() {
6315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6316         TAR=$(find_lustre_tar)
6317         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6318         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6319         setup_test102 "$RUNAS"
6320         test_mkdir -p $DIR/d102j
6321         chown $RUNAS_ID $DIR/d102j
6322         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6323         cd $DIR/d102j/$tdir
6324         compare_stripe_info1 "$RUNAS"
6325 }
6326 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6327
6328 test_102k() {
6329         touch $DIR/$tfile
6330         # b22187 just check that does not crash for regular file.
6331         setfattr -n trusted.lov $DIR/$tfile
6332         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6333         local test_kdir=$DIR/d102k
6334         test_mkdir $test_kdir
6335         local default_size=`$GETSTRIPE -S $test_kdir`
6336         local default_count=`$GETSTRIPE -c $test_kdir`
6337         local default_offset=`$GETSTRIPE -i $test_kdir`
6338         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6339                 error 'dir setstripe failed'
6340         setfattr -n trusted.lov $test_kdir
6341         local stripe_size=`$GETSTRIPE -S $test_kdir`
6342         local stripe_count=`$GETSTRIPE -c $test_kdir`
6343         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6344         [ $stripe_size -eq $default_size ] ||
6345                 error "stripe size $stripe_size != $default_size"
6346         [ $stripe_count -eq $default_count ] ||
6347                 error "stripe count $stripe_count != $default_count"
6348         [ $stripe_offset -eq $default_offset ] ||
6349                 error "stripe offset $stripe_offset != $default_offset"
6350         rm -rf $DIR/$tfile $test_kdir
6351 }
6352 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6353
6354 test_102l() {
6355         # LU-532 trusted. xattr is invisible to non-root
6356         local testfile=$DIR/$tfile
6357
6358         touch $testfile
6359
6360         echo "listxattr as user..."
6361         chown $RUNAS_ID $testfile
6362         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6363             grep -q "trusted" &&
6364                 error "$testfile trusted xattrs are user visible"
6365
6366         return 0;
6367 }
6368 run_test 102l "listxattr size test =================================="
6369
6370 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6371         local path=$DIR/$tfile
6372         touch $path
6373
6374         listxattr_size_check $path || error "listattr_size_check $path failed"
6375 }
6376 run_test 102m "Ensure listxattr fails on small bufffer ========"
6377
6378 cleanup_test102
6379
6380 run_acl_subtest()
6381 {
6382     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6383     return $?
6384 }
6385
6386 test_103 () {
6387         [ "$UID" != 0 ] && skip_env "must run as root" && return
6388         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6389                 skip "must have acl enabled" && return
6390         [ -z "$(which setfacl 2>/dev/null)" ] &&
6391                 skip_env "could not find setfacl" && return
6392         $GSS && skip "could not run under gss" && return
6393
6394         declare -a identity_old
6395
6396         for num in $(seq $MDSCOUNT); do
6397                 switch_identity $num true || identity_old[$num]=$?
6398         done
6399
6400         SAVE_UMASK=$(umask)
6401         umask 0022
6402         cd $DIR
6403
6404         echo "performing cp ..."
6405         run_acl_subtest cp || error "run_acl_subtest cp failed"
6406         echo "performing getfacl-noacl..."
6407         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6408         echo "performing misc..."
6409         run_acl_subtest misc || error  "misc test failed"
6410         echo "performing permissions..."
6411         run_acl_subtest permissions || error "permissions failed"
6412         echo "performing setfacl..."
6413         run_acl_subtest setfacl || error  "setfacl test failed"
6414
6415         # inheritance test got from HP
6416         echo "performing inheritance..."
6417         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6418         chmod +x make-tree || error "chmod +x failed"
6419         run_acl_subtest inheritance || error "inheritance test failed"
6420         rm -f make-tree
6421
6422         echo "LU-974 ignore umask when acl is enabled..."
6423         run_acl_subtest 974 || error "LU-974 umask test failed"
6424         if [ $MDSCOUNT -ge 2 ]; then
6425                 run_acl_subtest 974_remote ||
6426                         error "LU-974 umask test failed under remote dir"
6427         fi
6428
6429         echo "LU-2561 newly created file is same size as directory..."
6430         run_acl_subtest 2561 || error "LU-2561 test failed"
6431
6432         cd $SAVE_PWD
6433         umask $SAVE_UMASK
6434
6435         for num in $(seq $MDSCOUNT); do
6436                 if [ "${identity_old[$num]}" = 1 ]; then
6437                         switch_identity $num false || identity_old[$num]=$?
6438                 fi
6439         done
6440 }
6441 run_test 103 "acl test ========================================="
6442
6443 test_104a() {
6444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6445         touch $DIR/$tfile
6446         lfs df || error "lfs df failed"
6447         lfs df -ih || error "lfs df -ih failed"
6448         lfs df -h $DIR || error "lfs df -h $DIR failed"
6449         lfs df -i $DIR || error "lfs df -i $DIR failed"
6450         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6451         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6452
6453         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6454         lctl --device %$OSC deactivate
6455         lfs df || error "lfs df with deactivated OSC failed"
6456         lctl --device %$OSC activate
6457         # wait the osc back to normal
6458         wait_osc_import_state client ost FULL
6459
6460         lfs df || error "lfs df with reactivated OSC failed"
6461         rm -f $DIR/$tfile
6462 }
6463 run_test 104a "lfs df [-ih] [path] test ========================="
6464
6465 test_104b() {
6466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6467         [ $RUNAS_ID -eq $UID ] &&
6468                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6469         chmod 666 /dev/obd
6470         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6471                         grep "Permission denied" | wc -l)))
6472         if [ $denied_cnt -ne 0 ]; then
6473                 error "lfs check servers test failed"
6474         fi
6475 }
6476 run_test 104b "$RUNAS lfs check servers test ===================="
6477
6478 test_105a() {
6479         # doesn't work on 2.4 kernels
6480         touch $DIR/$tfile
6481         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6482                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6483         else
6484                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6485         fi
6486         rm -f $DIR/$tfile
6487 }
6488 run_test 105a "flock when mounted without -o flock test ========"
6489
6490 test_105b() {
6491         touch $DIR/$tfile
6492         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6493                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6494         else
6495                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6496         fi
6497         rm -f $DIR/$tfile
6498 }
6499 run_test 105b "fcntl when mounted without -o flock test ========"
6500
6501 test_105c() {
6502         touch $DIR/$tfile
6503         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6504                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6505         else
6506                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6507         fi
6508         rm -f $DIR/$tfile
6509 }
6510 run_test 105c "lockf when mounted without -o flock test ========"
6511
6512 test_105d() { # bug 15924
6513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6514         test_mkdir -p $DIR/$tdir
6515         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6516                 skip "mount w/o flock enabled" && return
6517         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6518         $LCTL set_param fail_loc=0x80000315
6519         flocks_test 2 $DIR/$tdir
6520 }
6521 run_test 105d "flock race (should not freeze) ========"
6522
6523 test_105e() { # bug 22660 && 22040
6524         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6525                 skip "mount w/o flock enabled" && return
6526         touch $DIR/$tfile
6527         flocks_test 3 $DIR/$tfile
6528 }
6529 run_test 105e "Two conflicting flocks from same process ======="
6530
6531 test_106() { #bug 10921
6532         test_mkdir -p $DIR/$tdir
6533         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6534         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6535 }
6536 run_test 106 "attempt exec of dir followed by chown of that dir"
6537
6538 test_107() {
6539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6540         CDIR=`pwd`
6541         cd $DIR
6542
6543         local file=core
6544         rm -f $file
6545
6546         local save_pattern=$(sysctl -n kernel.core_pattern)
6547         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6548         sysctl -w kernel.core_pattern=$file
6549         sysctl -w kernel.core_uses_pid=0
6550
6551         ulimit -c unlimited
6552         sleep 60 &
6553         SLEEPPID=$!
6554
6555         sleep 1
6556
6557         kill -s 11 $SLEEPPID
6558         wait $SLEEPPID
6559         if [ -e $file ]; then
6560                 size=`stat -c%s $file`
6561                 [ $size -eq 0 ] && error "Fail to create core file $file"
6562         else
6563                 error "Fail to create core file $file"
6564         fi
6565         rm -f $file
6566         sysctl -w kernel.core_pattern=$save_pattern
6567         sysctl -w kernel.core_uses_pid=$save_uses_pid
6568         cd $CDIR
6569 }
6570 run_test 107 "Coredump on SIG"
6571
6572 test_110() {
6573         test_mkdir -p $DIR/$tdir
6574         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6575                 error "mkdir with 255 char failed"
6576         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6577                 error "mkdir with 256 char should fail, but did not"
6578         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6579                 error "create with 255 char failed"
6580         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6581                 error "create with 256 char should fail, but did not"
6582
6583         ls -l $DIR/$tdir
6584         rm -rf $DIR/$tdir
6585 }
6586 run_test 110 "filename length checking"
6587
6588 test_115() {
6589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6590         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6591             cut -c11-20)
6592         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6593             return
6594         echo "Starting with $OSTIO_pre threads"
6595
6596         NUMTEST=20000
6597         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6598         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6599         echo "$NUMTEST creates/unlinks"
6600         test_mkdir -p $DIR/$tdir
6601         createmany -o $DIR/$tdir/$tfile $NUMTEST
6602         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6603
6604         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6605             cut -c11-20)
6606
6607         # don't return an error
6608         [ $OSTIO_post == $OSTIO_pre ] && echo \
6609             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6610             echo "This may be fine, depending on what ran before this test" &&
6611             echo "and how fast this system is." && return
6612
6613         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6614 }
6615 run_test 115 "verify dynamic thread creation===================="
6616
6617 free_min_max () {
6618         wait_delete_completed
6619         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6620         echo OST kbytes available: ${AVAIL[@]}
6621         MAXI=0; MAXV=${AVAIL[0]}
6622         MINI=0; MINV=${AVAIL[0]}
6623         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6624             #echo OST $i: ${AVAIL[i]}kb
6625             if [ ${AVAIL[i]} -gt $MAXV ]; then
6626                 MAXV=${AVAIL[i]}; MAXI=$i
6627             fi
6628             if [ ${AVAIL[i]} -lt $MINV ]; then
6629                 MINV=${AVAIL[i]}; MINI=$i
6630             fi
6631         done
6632         echo Min free space: OST $MINI: $MINV
6633         echo Max free space: OST $MAXI: $MAXV
6634 }
6635
6636 test_116a() { # was previously test_116()
6637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6638         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6639
6640         echo -n "Free space priority "
6641         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6642                 head -1
6643         declare -a AVAIL
6644         free_min_max
6645
6646         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6647         trap simple_cleanup_common EXIT
6648
6649         # Check if we need to generate uneven OSTs
6650         test_mkdir -p $DIR/$tdir/OST${MINI}
6651         local FILL=$(($MINV / 4))
6652         local DIFF=$(($MAXV - $MINV))
6653         local DIFF2=$(($DIFF * 100 / $MINV))
6654
6655         local threshold=$(do_facet $SINGLEMDS \
6656                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6657         threshold=${threshold%%%}
6658         echo -n "Check for uneven OSTs: "
6659         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6660
6661         if [ $DIFF2 -gt $threshold ]; then
6662                 echo "ok"
6663                 echo "Don't need to fill OST$MINI"
6664         else
6665                 # generate uneven OSTs. Write 2% over the QOS threshold value
6666                 echo "no"
6667                 DIFF=$(($threshold - $DIFF2 + 2))
6668                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6669                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6670                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6671                         error "setstripe failed"
6672                 DIFF=$(($DIFF2 / 2048))
6673                 i=0
6674                 while [ $i -lt $DIFF ]; do
6675                         i=$(($i + 1))
6676                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6677                                 bs=2M count=1 2>/dev/null
6678                         echo -n .
6679                 done
6680                 echo .
6681                 sync
6682                 sleep_maxage
6683                 free_min_max
6684         fi
6685
6686         DIFF=$(($MAXV - $MINV))
6687         DIFF2=$(($DIFF * 100 / $MINV))
6688         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6689         if [ $DIFF2 -gt $threshold ]; then
6690                 echo "ok"
6691         else
6692                 echo "failed - QOS mode won't be used"
6693                 skip "QOS imbalance criteria not met"
6694                 simple_cleanup_common
6695                 return
6696         fi
6697
6698         MINI1=$MINI; MINV1=$MINV
6699         MAXI1=$MAXI; MAXV1=$MAXV
6700
6701         # now fill using QOS
6702         $SETSTRIPE -c 1 $DIR/$tdir
6703         FILL=$(($FILL / 200))
6704         if [ $FILL -gt 600 ]; then
6705                 FILL=600
6706         fi
6707         echo "writing $FILL files to QOS-assigned OSTs"
6708         i=0
6709         while [ $i -lt $FILL ]; do
6710                 i=$(($i + 1))
6711                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6712                         count=1 2>/dev/null
6713                 echo -n .
6714         done
6715         echo "wrote $i 200k files"
6716         sync
6717         sleep_maxage
6718
6719         echo "Note: free space may not be updated, so measurements might be off"
6720         free_min_max
6721         DIFF2=$(($MAXV - $MINV))
6722         echo "free space delta: orig $DIFF final $DIFF2"
6723         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6724         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6725         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6726         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6727         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6728         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6729         [ $DIFF -gt 0 ] &&
6730                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6731
6732         # Figure out which files were written where
6733         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6734                   awk '/'$MINI1': / {print $2; exit}')
6735         echo $UUID
6736         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6737         echo "$MINC files created on smaller OST $MINI1"
6738         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6739                   awk '/'$MAXI1': / {print $2; exit}')
6740         echo $UUID
6741         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6742         echo "$MAXC files created on larger OST $MAXI1"
6743         FILL=$(($MAXC * 100 / $MINC - 100))
6744         [ $MINC -gt 0 ] &&
6745                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6746         [ $MAXC -gt $MINC ] ||
6747                 error_ignore LU-9 "stripe QOS didn't balance free space"
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 bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9308         else
9309                 log "cache hits:: before: $BEFORE, after: $AFTER"
9310         fi
9311
9312     log "Turn on the read cache and turn off the write cache"
9313     set_cache read on
9314     set_cache writethrough off
9315
9316     log "Write data and read it back"
9317     log "It should not be satisfied from the cache."
9318     rm -f $file
9319     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9320     BEFORE=`roc_hit`
9321     cancel_lru_locks osc
9322     cat $file >/dev/null
9323     AFTER=`roc_hit`
9324         if ! let "AFTER - BEFORE == 0"; then
9325                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9326         else
9327                 log "cache hits:: before: $BEFORE, after: $AFTER"
9328         fi
9329
9330     log "Read again; it should be satisfied from the cache."
9331     BEFORE=`roc_hit`
9332     cancel_lru_locks osc
9333     cat $file >/dev/null
9334     AFTER=`roc_hit`
9335     if ! let "AFTER - BEFORE == CPAGES"; then
9336         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9337     else
9338         log "cache hits:: before: $BEFORE, after: $AFTER"
9339     fi
9340
9341     rm -f $file
9342 }
9343 run_test 156 "Verification of tunables ============================"
9344
9345 #Changelogs
9346 err17935 () {
9347         if [ $MDSCOUNT -gt 1 ]; then
9348                 error_ignore bz17935 $*
9349         else
9350                 error $*
9351         fi
9352 }
9353
9354 changelog_chmask()
9355 {
9356         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9357
9358         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9359
9360         if [ $MASK -eq 1 ]; then
9361                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9362         else
9363                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9364         fi
9365 }
9366
9367 changelog_extract_field() {
9368         local mdt=$1
9369         local cltype=$2
9370         local file=$3
9371         local identifier=$4
9372
9373         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9374                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9375                 tail -1
9376 }
9377
9378 test_160a() {
9379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9380         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9381         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9382                 { skip "Need MDS version at least 2.2.0"; return; }
9383
9384         local CL_USERS="mdd.$MDT0.changelog_users"
9385         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9386         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9387         echo "Registered as changelog user $USER"
9388         $GET_CL_USERS | grep -q $USER ||
9389                 error "User $USER not found in changelog_users"
9390
9391         # change something
9392         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9393         touch $DIR/$tdir/pics/2008/zachy/timestamp
9394         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9395         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9396         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9397         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9398         rm $DIR/$tdir/pics/desktop.jpg
9399
9400         $LFS changelog $MDT0 | tail -5
9401
9402         echo "verifying changelog mask"
9403         changelog_chmask "MKDIR"
9404         changelog_chmask "CLOSE"
9405
9406         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9407         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9408
9409         changelog_chmask "MKDIR"
9410         changelog_chmask "CLOSE"
9411
9412         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9413         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9414
9415         $LFS changelog $MDT0
9416         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9417         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9418         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9419         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9420
9421         # verify contents
9422         echo "verifying target fid"
9423         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9424         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9425         [ "$fidc" == "$fidf" ] ||
9426                 err17935 "fid in changelog $fidc != file fid $fidf"
9427         echo "verifying parent fid"
9428         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9429         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9430         [ "$fidc" == "$fidf" ] ||
9431                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9432
9433         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9434         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9435         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9436         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9437         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9438                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9439
9440         MIN_REC=$($GET_CL_USERS |
9441                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9442         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9443         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9444         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9445                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9446
9447         # LU-3446 changelog index reset on MDT restart
9448         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9449         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9450         $LFS changelog_clear $MDT0 $USER 0
9451         stop $SINGLEMDS || error "Fail to stop MDT."
9452         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9453         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9454         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9455         [ $CUR_REC1 == $CUR_REC2 ] ||
9456                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9457
9458         echo "verifying user deregister"
9459         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9460         $GET_CL_USERS | grep -q $USER &&
9461                 error "User $USER still in changelog_users"
9462
9463         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9464         if [ $USERS -eq 0 ]; then
9465                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9466                 touch $DIR/$tdir/chloe
9467                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9468                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9469                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9470         else
9471                 echo "$USERS other changelog users; can't verify off"
9472         fi
9473 }
9474 run_test 160a "changelog sanity"
9475
9476 test_160b() { # LU-3587
9477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9478         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9479         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9480                 { skip "Need MDS version at least 2.2.0"; return; }
9481
9482         local CL_USERS="mdd.$MDT0.changelog_users"
9483         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9484         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9485         echo "Registered as changelog user $USER"
9486         $GET_CL_USERS | grep -q $USER ||
9487                 error "User $USER not found in changelog_users"
9488
9489         local LONGNAME1=$(str_repeat a 255)
9490         local LONGNAME2=$(str_repeat b 255)
9491
9492         cd $DIR
9493         echo "creating very long named file"
9494         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9495         echo "moving very long named file"
9496         mv $LONGNAME1 $LONGNAME2
9497
9498         $LFS changelog $MDT0 | grep RENME
9499
9500         echo "deregistering $USER"
9501         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9502
9503         rm -f $LONGNAME2
9504 }
9505 run_test 160b "Verify that very long rename doesn't crash in changelog"
9506
9507 test_161a() {
9508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9509     test_mkdir -p $DIR/$tdir
9510     cp /etc/hosts $DIR/$tdir/$tfile
9511     test_mkdir $DIR/$tdir/foo1
9512     test_mkdir $DIR/$tdir/foo2
9513     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9514     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9515     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9516     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9517         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9518         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9519                 $LFS fid2path $DIR $FID
9520                 err17935 "bad link ea"
9521         fi
9522     # middle
9523     rm $DIR/$tdir/foo2/zachary
9524     # last
9525     rm $DIR/$tdir/foo2/thor
9526     # first
9527     rm $DIR/$tdir/$tfile
9528     # rename
9529     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9530     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9531         then
9532         $LFS fid2path $DIR $FID
9533         err17935 "bad link rename"
9534     fi
9535     rm $DIR/$tdir/foo2/maggie
9536
9537     # overflow the EA
9538     local longname=filename_avg_len_is_thirty_two_
9539     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9540         error "failed to hardlink many files"
9541     links=$($LFS fid2path $DIR $FID | wc -l)
9542     echo -n "${links}/1000 links in link EA"
9543     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9544     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9545         error "failed to unlink many hardlinks"
9546 }
9547 run_test 161a "link ea sanity"
9548
9549 test_161b() {
9550         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9551         [ $MDSCOUNT -lt 2 ] &&
9552                 skip "skipping remote directory test" && return
9553         local MDTIDX=1
9554         local remote_dir=$DIR/$tdir/remote_dir
9555
9556         mkdir -p $DIR/$tdir
9557         $LFS mkdir -i $MDTIDX $remote_dir ||
9558                 error "create remote directory failed"
9559
9560         cp /etc/hosts $remote_dir/$tfile
9561         mkdir -p $remote_dir/foo1
9562         mkdir -p $remote_dir/foo2
9563         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9564         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9565         ln $remote_dir/$tfile $remote_dir/foo1/luna
9566         ln $remote_dir/$tfile $remote_dir/foo2/thor
9567
9568         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9569                      tr -d ']')
9570         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9571                 $LFS fid2path $DIR $FID
9572                 err17935 "bad link ea"
9573         fi
9574         # middle
9575         rm $remote_dir/foo2/zachary
9576         # last
9577         rm $remote_dir/foo2/thor
9578         # first
9579         rm $remote_dir/$tfile
9580         # rename
9581         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9582         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9583         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9584                 $LFS fid2path $DIR $FID
9585                 err17935 "bad link rename"
9586         fi
9587         rm $remote_dir/foo2/maggie
9588
9589         # overflow the EA
9590         local longname=filename_avg_len_is_thirty_two_
9591         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9592                 error "failed to hardlink many files"
9593         links=$($LFS fid2path $DIR $FID | wc -l)
9594         echo -n "${links}/1000 links in link EA"
9595         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9596         unlinkmany $remote_dir/foo2/$longname 1000 ||
9597         error "failed to unlink many hardlinks"
9598 }
9599 run_test 161b "link ea sanity under remote directory"
9600
9601 test_161c() {
9602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9603         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9604                 skip "Need MDS version at least 2.1.5" && return
9605
9606         # define CLF_RENAME_LAST 0x0001
9607         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9608         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9609                 changelog_register -n)
9610         rm -rf $DIR/$tdir
9611         mkdir -p $DIR/$tdir
9612         touch $DIR/$tdir/foo_161c
9613         touch $DIR/$tdir/bar_161c
9614         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9615         $LFS changelog $MDT0 | grep RENME
9616         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9617                 cut -f5 -d' ')
9618         $LFS changelog_clear $MDT0 $USER 0
9619         if [ x$flags != "x0x1" ]; then
9620                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9621                         $USER
9622                 error "flag $flags is not 0x1"
9623         fi
9624         echo "rename overwrite a target having nlink = 1," \
9625                 "changelog record has flags of $flags"
9626
9627         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9628         touch $DIR/$tdir/foo_161c
9629         touch $DIR/$tdir/bar_161c
9630         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9631         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9632         $LFS changelog $MDT0 | grep RENME
9633         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9634         $LFS changelog_clear $MDT0 $USER 0
9635         if [ x$flags != "x0x0" ]; then
9636                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9637                         $USER
9638                 error "flag $flags is not 0x0"
9639         fi
9640         echo "rename overwrite a target having nlink > 1," \
9641                 "changelog record has flags of $flags"
9642
9643         # rename doesn't overwrite a target (changelog flag 0x0)
9644         touch $DIR/$tdir/foo_161c
9645         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9646         $LFS changelog $MDT0 | grep RENME
9647         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9648         $LFS changelog_clear $MDT0 $USER 0
9649         if [ x$flags != "x0x0" ]; then
9650                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9651                         $USER
9652                 error "flag $flags is not 0x0"
9653         fi
9654         echo "rename doesn't overwrite a target," \
9655                 "changelog record has flags of $flags"
9656
9657         # define CLF_UNLINK_LAST 0x0001
9658         # unlink a file having nlink = 1 (changelog flag 0x1)
9659         rm -f $DIR/$tdir/foo2_161c
9660         $LFS changelog $MDT0 | grep UNLNK
9661         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9662         $LFS changelog_clear $MDT0 $USER 0
9663         if [ x$flags != "x0x1" ]; then
9664                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9665                         $USER
9666                 error "flag $flags is not 0x1"
9667         fi
9668         echo "unlink a file having nlink = 1," \
9669                 "changelog record has flags of $flags"
9670
9671         # unlink a file having nlink > 1 (changelog flag 0x0)
9672         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9673         rm -f $DIR/$tdir/foobar_161c
9674         $LFS changelog $MDT0 | grep UNLNK
9675         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9676         $LFS changelog_clear $MDT0 $USER 0
9677         if [ x$flags != "x0x0" ]; then
9678                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9679                         $USER
9680                 error "flag $flags is not 0x0"
9681         fi
9682         echo "unlink a file having nlink > 1," \
9683                 "changelog record has flags of $flags"
9684         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9685 }
9686 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9687
9688 check_path() {
9689     local expected=$1
9690     shift
9691     local fid=$2
9692
9693     local path=$(${LFS} fid2path $*)
9694     RC=$?
9695
9696     if [ $RC -ne 0 ]; then
9697         err17935 "path looked up of $expected failed. Error $RC"
9698         return $RC
9699     elif [ "${path}" != "${expected}" ]; then
9700         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9701         return 2
9702     fi
9703     echo "fid $fid resolves to path $path (expected $expected)"
9704 }
9705
9706 test_162() {
9707         # Make changes to filesystem
9708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9709         test_mkdir -p $DIR/$tdir/d2
9710         touch $DIR/$tdir/d2/$tfile
9711         touch $DIR/$tdir/d2/x1
9712         touch $DIR/$tdir/d2/x2
9713         test_mkdir -p $DIR/$tdir/d2/a/b/c
9714         test_mkdir -p $DIR/$tdir/d2/p/q/r
9715         # regular file
9716         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9717         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9718
9719         # softlink
9720         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9721         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9722         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9723
9724         # softlink to wrong file
9725         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9726         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9727         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9728
9729         # hardlink
9730         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9731         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9732         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9733         # fid2path dir/fsname should both work
9734         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9735         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9736
9737         # hardlink count: check that there are 2 links
9738         # Doesnt work with CMD yet: 17935
9739         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9740                 err17935 "expected 2 links"
9741
9742         # hardlink indexing: remove the first link
9743         rm $DIR/$tdir/d2/p/q/r/hlink
9744         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9745
9746         return 0
9747 }
9748 run_test 162 "path lookup sanity"
9749
9750 test_169() {
9751         # do directio so as not to populate the page cache
9752         log "creating a 10 Mb file"
9753         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9754         log "starting reads"
9755         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9756         log "truncating the file"
9757         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9758         log "killing dd"
9759         kill %+ || true # reads might have finished
9760         echo "wait until dd is finished"
9761         wait
9762         log "removing the temporary file"
9763         rm -rf $DIR/$tfile || error "tmp file removal failed"
9764 }
9765 run_test 169 "parallel read and truncate should not deadlock"
9766
9767 test_170() {
9768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9769         $LCTL clear     # bug 18514
9770         $LCTL debug_daemon start $TMP/${tfile}_log_good
9771         touch $DIR/$tfile
9772         $LCTL debug_daemon stop
9773         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9774                error "sed failed to read log_good"
9775
9776         $LCTL debug_daemon start $TMP/${tfile}_log_good
9777         rm -rf $DIR/$tfile
9778         $LCTL debug_daemon stop
9779
9780         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9781                error "lctl df log_bad failed"
9782
9783         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9784         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9785
9786         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9787         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9788
9789         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9790                 error "bad_line good_line1 good_line2 are empty"
9791
9792         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9793         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9794         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9795
9796         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9797         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9798         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9799
9800         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9801                 error "bad_line_new good_line_new are empty"
9802
9803         local expected_good=$((good_line1 + good_line2*2))
9804
9805         rm -f $TMP/${tfile}*
9806         # LU-231, short malformed line may not be counted into bad lines
9807         if [ $bad_line -ne $bad_line_new ] &&
9808                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9809                 error "expected $bad_line bad lines, but got $bad_line_new"
9810                 return 1
9811         fi
9812
9813         if [ $expected_good -ne $good_line_new ]; then
9814                 error "expected $expected_good good lines, but got $good_line_new"
9815                 return 2
9816         fi
9817         true
9818 }
9819 run_test 170 "test lctl df to handle corrupted log ====================="
9820
9821 test_171() { # bug20592
9822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9823 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9824         $LCTL set_param fail_loc=0x50e
9825         $LCTL set_param fail_val=3000
9826         multiop_bg_pause $DIR/$tfile O_s || true
9827         local MULTIPID=$!
9828         kill -USR1 $MULTIPID
9829         # cause log dump
9830         sleep 3
9831         wait $MULTIPID
9832         if dmesg | grep "recursive fault"; then
9833                 error "caught a recursive fault"
9834         fi
9835         $LCTL set_param fail_loc=0
9836         true
9837 }
9838 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9839
9840 # it would be good to share it with obdfilter-survey/libecho code
9841 setup_obdecho_osc () {
9842         local rc=0
9843         local ost_nid=$1
9844         local obdfilter_name=$2
9845         echo "Creating new osc for $obdfilter_name on $ost_nid"
9846         # make sure we can find loopback nid
9847         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9848
9849         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9850                            ${obdfilter_name}_osc_UUID || rc=2; }
9851         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9852                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9853         return $rc
9854 }
9855
9856 cleanup_obdecho_osc () {
9857         local obdfilter_name=$1
9858         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9859         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9860         return 0
9861 }
9862
9863 obdecho_test() {
9864         local OBD=$1
9865         local node=$2
9866         local pages=${3:-64}
9867         local rc=0
9868         local id
9869         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9870         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9871                            rc=2; }
9872         if [ $rc -eq 0 ]; then
9873             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9874             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9875         fi
9876         echo "New object id is $id"
9877         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9878                            rc=4; }
9879         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9880                            "test_brw 10 w v $pages $id" || rc=4; }
9881         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9882                            rc=4; }
9883         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9884                                         "cleanup" || rc=5; }
9885         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9886                                         "detach" || rc=6; }
9887         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9888         return $rc
9889 }
9890
9891 test_180a() {
9892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9893         remote_ost_nodsh && skip "remote OST with nodsh" && return
9894         local rc=0
9895         local rmmod_local=0
9896
9897         if ! module_loaded obdecho; then
9898             load_module obdecho/obdecho
9899             rmmod_local=1
9900         fi
9901
9902         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9903         local host=$(lctl get_param -n osc.$osc.import |
9904                              awk '/current_connection:/ {print $2}' )
9905         local target=$(lctl get_param -n osc.$osc.import |
9906                              awk '/target:/ {print $2}' )
9907         target=${target%_UUID}
9908
9909         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9910         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9911         [[ -n $target ]] && cleanup_obdecho_osc $target
9912         [ $rmmod_local -eq 1 ] && rmmod obdecho
9913         return $rc
9914 }
9915 run_test 180a "test obdecho on osc"
9916
9917 test_180b() {
9918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9919         remote_ost_nodsh && skip "remote OST with nodsh" && return
9920         local rc=0
9921         local rmmod_remote=0
9922
9923         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9924                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9925                       "modprobe obdecho; }" && rmmod_remote=1
9926         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9927         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9928         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9929         return $rc
9930 }
9931 run_test 180b "test obdecho directly on obdfilter"
9932
9933 test_180c() { # LU-2598
9934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9935         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9936                 skip "Need MDS version at least 2.4.0" && return
9937
9938         local rc=0
9939         local rmmod_remote=false
9940         local pages=16384 # 64MB bulk I/O RPC size
9941         local target
9942
9943         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9944                 rmmod_remote=true || error "failed to load module obdecho"
9945
9946         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9947         if [[ -n $target ]]; then
9948                 obdecho_test "$target" ost1 "$pages" ||
9949                         rc=${PIPESTATUS[0]}
9950         else
9951                 echo "there is no obdfilter target on ost1"
9952                 rc=2
9953         fi
9954         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9955         return $rc
9956 }
9957 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9958
9959 test_181() { # bug 22177
9960         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9961         # create enough files to index the directory
9962         createmany -o $DIR/$tdir/foobar 4000
9963         # print attributes for debug purpose
9964         lsattr -d .
9965         # open dir
9966         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9967         MULTIPID=$!
9968         # remove the files & current working dir
9969         unlinkmany $DIR/$tdir/foobar 4000
9970         rmdir $DIR/$tdir
9971         kill -USR1 $MULTIPID
9972         wait $MULTIPID
9973         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9974         return 0
9975 }
9976 run_test 181 "Test open-unlinked dir ========================"
9977
9978 test_182() {
9979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9980         # disable MDC RPC lock wouldn't crash client
9981         local fcount=1000
9982         local tcount=4
9983
9984         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9985 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9986         $LCTL set_param fail_loc=0x804
9987
9988         for (( i=0; i < $tcount; i++ )) ; do
9989                 mkdir $DIR/$tdir/$i
9990                 createmany -o $DIR/$tdir/$i/f- $fcount &
9991         done
9992         wait
9993
9994         for (( i=0; i < $tcount; i++ )) ; do
9995                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9996         done
9997         wait
9998
9999         rm -rf $DIR/$tdir
10000
10001         $LCTL set_param fail_loc=0
10002 }
10003 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10004
10005 test_183() { # LU-2275
10006         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10007                 skip "Need MDS version at least 2.3.56" && return
10008
10009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10010         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10011         echo aaa > $DIR/$tdir/$tfile
10012
10013 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10014         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10015
10016         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10017         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10018
10019         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10020
10021         # Flush negative dentry cache
10022         touch $DIR/$tdir/$tfile
10023
10024         # We are not checking for any leaked references here, they'll
10025         # become evident next time we do cleanup with module unload.
10026         rm -rf $DIR/$tdir
10027 }
10028 run_test 183 "No crash or request leak in case of strange dispositions ========"
10029
10030 # test suite 184 is for LU-2016, LU-2017
10031 test_184a() {
10032         check_swap_layouts_support && return 0
10033
10034         dir0=$DIR/$tdir/$testnum
10035         test_mkdir -p $dir0 || error "creating dir $dir0"
10036         ref1=/etc/passwd
10037         ref2=/etc/group
10038         file1=$dir0/f1
10039         file2=$dir0/f2
10040         $SETSTRIPE -c1 $file1
10041         cp $ref1 $file1
10042         $SETSTRIPE -c2 $file2
10043         cp $ref2 $file2
10044         gen1=$($GETSTRIPE -g $file1)
10045         gen2=$($GETSTRIPE -g $file2)
10046
10047         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10048         gen=$($GETSTRIPE -g $file1)
10049         [[ $gen1 != $gen ]] ||
10050                 "Layout generation on $file1 does not change"
10051         gen=$($GETSTRIPE -g $file2)
10052         [[ $gen2 != $gen ]] ||
10053                 "Layout generation on $file2 does not change"
10054
10055         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10056         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10057 }
10058 run_test 184a "Basic layout swap"
10059
10060 test_184b() {
10061         check_swap_layouts_support && return 0
10062
10063         dir0=$DIR/$tdir/$testnum
10064         mkdir -p $dir0 || error "creating dir $dir0"
10065         file1=$dir0/f1
10066         file2=$dir0/f2
10067         file3=$dir0/f3
10068         dir1=$dir0/d1
10069         dir2=$dir0/d2
10070         mkdir $dir1 $dir2
10071         $SETSTRIPE -c1 $file1
10072         $SETSTRIPE -c2 $file2
10073         $SETSTRIPE -c1 $file3
10074         chown $RUNAS_ID $file3
10075         gen1=$($GETSTRIPE -g $file1)
10076         gen2=$($GETSTRIPE -g $file2)
10077
10078         $LFS swap_layouts $dir1 $dir2 &&
10079                 error "swap of directories layouts should fail"
10080         $LFS swap_layouts $dir1 $file1 &&
10081                 error "swap of directory and file layouts should fail"
10082         $RUNAS $LFS swap_layouts $file1 $file2 &&
10083                 error "swap of file we cannot write should fail"
10084         $LFS swap_layouts $file1 $file3 &&
10085                 error "swap of file with different owner should fail"
10086         /bin/true # to clear error code
10087 }
10088 run_test 184b "Forbidden layout swap (will generate errors)"
10089
10090 test_184c() {
10091         check_swap_layouts_support && return 0
10092
10093         local dir0=$DIR/$tdir/$testnum
10094         mkdir -p $dir0 || error "creating dir $dir0"
10095
10096         local ref1=$dir0/ref1
10097         local ref2=$dir0/ref2
10098         local file1=$dir0/file1
10099         local file2=$dir0/file2
10100         # create a file large enough for the concurent test
10101         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10102         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10103         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10104
10105         cp $ref2 $file2
10106         dd if=$ref1 of=$file1 bs=16k &
10107         local DD_PID=$!
10108
10109         # Make sure dd starts to copy file
10110         while [ ! -f $file1 ]; do sleep 0.1; done
10111
10112         $LFS swap_layouts $file1 $file2
10113         local rc=$?
10114         wait $DD_PID
10115         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10116         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10117
10118         # how many bytes copied before swapping layout
10119         local copied=`stat -c %s $file2`
10120         local remaining=`stat -c %s $ref1`
10121         remaining=$((remaining - copied))
10122         echo "Copied $copied bytes before swapping layout..."
10123
10124         cmp -n $copied $file1 $ref2 | grep differ &&
10125                 error "Content mismatch [0, $copied) of ref2 and file1"
10126         cmp -n $copied $file2 $ref1 ||
10127                 error "Content mismatch [0, $copied) of ref1 and file2"
10128         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10129                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10130
10131         # clean up
10132         rm -f $ref1 $ref2 $file1 $file2
10133 }
10134 run_test 184c "Concurrent write and layout swap"
10135
10136 test_184d() {
10137         check_swap_layouts_support && return 0
10138
10139         local file1=$DIR/$tdir/$tfile-1
10140         local file2=$DIR/$tdir/$tfile-2
10141         local file3=$DIR/$tdir/$tfile-3
10142         local lovea1
10143         local lovea2
10144
10145         mkdir -p $DIR/$tdir
10146         touch $file1 || error "create $file1 failed"
10147         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10148                 error "create $file2 failed"
10149         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10150                 error "create $file3 failed"
10151         lovea1=$($LFS getstripe $file1 | sed 1d)
10152
10153         $LFS swap_layouts $file2 $file3 ||
10154                 error "swap $file2 $file3 layouts failed"
10155         $LFS swap_layouts $file1 $file2 ||
10156                 error "swap $file1 $file2 layouts failed"
10157
10158         lovea2=$($LFS getstripe $file2 | sed 1d)
10159         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10160
10161         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10162         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10163 }
10164 run_test 184d "allow stripeless layouts swap"
10165
10166
10167 test_185() { # LU-2441
10168         # LU-3553 - no volatile file support in old servers
10169         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10170                 { skip "Need MDS version at least 2.3.60"; return 0; }
10171
10172         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10173         touch $DIR/$tdir/spoo
10174         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10175         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10176                 error "cannot create/write a volatile file"
10177         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10178                 error "FID is still valid after close"
10179
10180         multiop_bg_pause $DIR/$tdir vVw4096_c
10181         local multi_pid=$!
10182
10183         local OLD_IFS=$IFS
10184         IFS=":"
10185         local fidv=($fid)
10186         IFS=$OLD_IFS
10187         # assume that the next FID for this client is sequential, since stdout
10188         # is unfortunately eaten by multiop_bg_pause
10189         local n=$((${fidv[1]} + 1))
10190         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10191         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10192                 error "FID is missing before close"
10193         kill -USR1 $multi_pid
10194         # 1 second delay, so if mtime change we will see it
10195         sleep 1
10196         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10197         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10198 }
10199 run_test 185 "Volatile file support"
10200
10201 test_187a() {
10202         local dir0=$DIR/$tdir/$testnum
10203         mkdir -p $dir0 || error "creating dir $dir0"
10204
10205         local file=$dir0/file1
10206         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10207         local dv1=$($LFS data_version $file)
10208         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10209         local dv2=$($LFS data_version $file)
10210         [[ $dv1 != $dv2 ]] ||
10211                 error "data version did not change on write $dv1 == $dv2"
10212
10213         # clean up
10214         rm -f $file1
10215 }
10216 run_test 187a "Test data version change"
10217
10218 test_187b() {
10219         local dir0=$DIR/$tdir/$testnum
10220         mkdir -p $dir0 || error "creating dir $dir0"
10221
10222         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10223         [[ ${DV[0]} != ${DV[1]} ]] ||
10224                 error "data version did not change on write"\
10225                       " ${DV[0]} == ${DV[1]}"
10226
10227         # clean up
10228         rm -f $file1
10229 }
10230 run_test 187b "Test data version change on volatile file"
10231
10232 # OST pools tests
10233 check_file_in_pool()
10234 {
10235         local file=$1
10236         local pool=$2
10237         local tlist="$3"
10238         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10239         for i in $res
10240         do
10241                 for t in $tlist ; do
10242                         [ "$i" -eq "$t" ] && continue 2
10243                 done
10244
10245                 echo "pool list: $tlist"
10246                 echo "striping: $res"
10247                 error_noexit "$file not allocated in $pool"
10248                 return 1
10249         done
10250         return 0
10251 }
10252
10253 pool_add() {
10254         echo "Creating new pool"
10255         local pool=$1
10256
10257         create_pool $FSNAME.$pool ||
10258                 { error_noexit "No pool created, result code $?"; return 1; }
10259         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10260                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10261 }
10262
10263 pool_add_targets() {
10264         echo "Adding targets to pool"
10265         local pool=$1
10266         local first=$2
10267         local last=$3
10268         local step=${4:-1}
10269
10270         local list=$(seq $first $step $last)
10271
10272         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10273         do_facet mgs $LCTL pool_add \
10274                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10275         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10276                         | sort -u | tr '\n' ' ' " "$t" || { 
10277                 error_noexit "Add to pool failed"
10278                 return 1
10279         }
10280         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10281         local addcount=$(((last - first) / step + 1))
10282         [ $lfscount -eq $addcount ] || {
10283                 error_noexit "lfs pool_list bad ost count" \
10284                                                 "$lfscount != $addcount"
10285                 return 2
10286         }
10287 }
10288
10289 pool_set_dir() {
10290         local pool=$1
10291         local tdir=$2
10292         echo "Setting pool on directory $tdir"
10293
10294         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10295
10296         error_noexit "Cannot set pool $pool to $tdir"
10297         return 1
10298 }
10299
10300 pool_check_dir() {
10301         local pool=$1
10302         local tdir=$2
10303         echo "Checking pool on directory $tdir"
10304
10305         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10306         [ "$res" = "$pool" ] && return 0
10307
10308         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10309         return 1
10310 }
10311
10312 pool_dir_rel_path() {
10313         echo "Testing relative path works well"
10314         local pool=$1
10315         local tdir=$2
10316         local root=$3
10317
10318         mkdir -p $root/$tdir/$tdir
10319         cd $root/$tdir
10320         pool_set_dir $pool $tdir          || return 1
10321         pool_set_dir $pool ./$tdir        || return 2
10322         pool_set_dir $pool ../$tdir       || return 3
10323         pool_set_dir $pool ../$tdir/$tdir || return 4
10324         rm -rf $tdir; cd - > /dev/null
10325 }
10326
10327 pool_alloc_files() {
10328         echo "Checking files allocation from directory pool"
10329         local pool=$1
10330         local tdir=$2
10331         local count=$3
10332         local tlist="$4"
10333
10334         local failed=0
10335         for i in $(seq -w 1 $count)
10336         do
10337                 local file=$tdir/file-$i
10338                 touch $file
10339                 check_file_in_pool $file $pool "$tlist" || \
10340                         failed=$((failed + 1))
10341         done
10342         [ "$failed" = 0 ] && return 0
10343
10344         error_noexit "$failed files not allocated in $pool"
10345         return 1
10346 }
10347
10348 pool_create_files() {
10349         echo "Creating files in pool"
10350         local pool=$1
10351         local tdir=$2
10352         local count=$3
10353         local tlist="$4"
10354
10355         mkdir -p $tdir
10356         local failed=0
10357         for i in $(seq -w 1 $count)
10358         do
10359                 local file=$tdir/spoo-$i
10360                 $SETSTRIPE -p $pool $file
10361                 check_file_in_pool $file $pool "$tlist" || \
10362                         failed=$((failed + 1))
10363         done
10364         [ "$failed" = 0 ] && return 0
10365
10366         error_noexit "$failed files not allocated in $pool"
10367         return 1
10368 }
10369
10370 pool_lfs_df() {
10371         echo "Checking 'lfs df' output"
10372         local pool=$1
10373
10374         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10375                         tr '\n' ' ')
10376         local res=$($LFS df --pool $FSNAME.$pool |
10377                         awk '{print $1}' |
10378                         grep "$FSNAME-OST" |
10379                         tr '\n' ' ')
10380         [ "$res" = "$t" ] && return 0
10381
10382         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10383         return 1
10384 }
10385
10386 pool_file_rel_path() {
10387         echo "Creating files in a pool with relative pathname"
10388         local pool=$1
10389         local tdir=$2
10390
10391         mkdir -p $tdir ||
10392                 { error_noexit "unable to create $tdir"; return 1 ; }
10393         local file="/..$tdir/$tfile-1"
10394         $SETSTRIPE -p $pool $file ||
10395                 { error_noexit "unable to create $file" ; return 2 ; }
10396
10397         cd $tdir
10398         $SETSTRIPE -p $pool $tfile-2 || {
10399                 error_noexit "unable to create $tfile-2 in $tdir"
10400                 return 3
10401         }
10402 }
10403
10404 pool_remove_first_target() {
10405         echo "Removing first target from a pool"
10406         local pool=$1
10407
10408         local pname="lov.$FSNAME-*.pools.$pool"
10409         local t=$($LCTL get_param -n $pname | head -1)
10410         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10411         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10412                 error_noexit "$t not removed from $FSNAME.$pool"
10413                 return 1
10414         }
10415 }
10416
10417 pool_remove_all_targets() {
10418         echo "Removing all targets from pool"
10419         local pool=$1
10420         local file=$2
10421         local pname="lov.$FSNAME-*.pools.$pool"
10422         for t in $($LCTL get_param -n $pname | sort -u)
10423         do
10424                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10425         done
10426         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10427                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10428                 return 1
10429         }
10430         # striping on an empty/nonexistant pool should fall back 
10431         # to "pool of everything"
10432         touch $file || {
10433                 error_noexit "failed to use fallback striping for empty pool"
10434                 return 2
10435         }
10436         # setstripe on an empty pool should fail
10437         $SETSTRIPE -p $pool $file 2>/dev/null && {
10438                 error_noexit "expected failure when creating file" \
10439                                                         "with empty pool"
10440                 return 3
10441         }
10442         return 0
10443 }
10444
10445 pool_remove() {
10446         echo "Destroying pool"
10447         local pool=$1
10448         local file=$2
10449
10450         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10451
10452         sleep 2
10453         # striping on an empty/nonexistant pool should fall back 
10454         # to "pool of everything"
10455         touch $file || {
10456                 error_noexit "failed to use fallback striping for missing pool"
10457                 return 1
10458         }
10459         # setstripe on an empty pool should fail
10460         $SETSTRIPE -p $pool $file 2>/dev/null && {
10461                 error_noexit "expected failure when creating file" \
10462                                                         "with missing pool"
10463                 return 2
10464         }
10465
10466         # get param should return err once pool is gone
10467         if wait_update $HOSTNAME "lctl get_param -n \
10468                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10469         then
10470                 remove_pool_from_list $FSNAME.$pool
10471                 return 0
10472         fi
10473         error_noexit "Pool $FSNAME.$pool is not destroyed"
10474         return 3
10475 }
10476
10477 test_200() {
10478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10479         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10480
10481         local POOL=${POOL:-cea1}
10482         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10483         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10484         # Pool OST targets
10485         local first_ost=0
10486         local last_ost=$(($OSTCOUNT - 1))
10487         local ost_step=2
10488         local ost_list=$(seq $first_ost $ost_step $last_ost)
10489         local ost_range="$first_ost $last_ost $ost_step"
10490         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10491         local file_dir=$POOL_ROOT/file_tst
10492
10493         local rc=0
10494         while : ; do
10495                 # former test_200a test_200b
10496                 pool_add $POOL                          || { rc=$? ; break; }
10497                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10498                 # former test_200c test_200d
10499                 mkdir -p $test_path
10500                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10501                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10502                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10503                                                         || { rc=$? ; break; }
10504                 # former test_200e test_200f
10505                 local files=$((OSTCOUNT*3))
10506                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10507                                                         || { rc=$? ; break; }
10508                 pool_create_files $POOL $file_dir $files "$ost_list" \
10509                                                         || { rc=$? ; break; }
10510                 # former test_200g test_200h
10511                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10512                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10513
10514                 # former test_201a test_201b test_201c
10515                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10516
10517                 local f=$test_path/$tfile
10518                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10519                 pool_remove $POOL $f                    || { rc=$? ; break; }
10520                 break
10521         done
10522
10523         cleanup_pools
10524         return $rc
10525 }
10526 run_test 200 "OST pools"
10527
10528 # usage: default_attr <count | size | offset>
10529 default_attr() {
10530         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10531 }
10532
10533 # usage: check_default_stripe_attr
10534 check_default_stripe_attr() {
10535         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10536         case $1 in
10537         --stripe-count|--count)
10538                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10539         --stripe-size|--size)
10540                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10541         --stripe-index|--index)
10542                 EXPECTED=-1;;
10543         *)
10544                 error "unknown getstripe attr '$1'"
10545         esac
10546
10547         [ $ACTUAL != $EXPECTED ] &&
10548                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10549 }
10550
10551 test_204a() {
10552         test_mkdir -p $DIR/$tdir
10553         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10554
10555         check_default_stripe_attr --stripe-count
10556         check_default_stripe_attr --stripe-size
10557         check_default_stripe_attr --stripe-index
10558
10559         return 0
10560 }
10561 run_test 204a "Print default stripe attributes ================="
10562
10563 test_204b() {
10564         test_mkdir -p $DIR/$tdir
10565         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10566
10567         check_default_stripe_attr --stripe-size
10568         check_default_stripe_attr --stripe-index
10569
10570         return 0
10571 }
10572 run_test 204b "Print default stripe size and offset  ==========="
10573
10574 test_204c() {
10575         test_mkdir -p $DIR/$tdir
10576         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10577
10578         check_default_stripe_attr --stripe-count
10579         check_default_stripe_attr --stripe-index
10580
10581         return 0
10582 }
10583 run_test 204c "Print default stripe count and offset ==========="
10584
10585 test_204d() {
10586         test_mkdir -p $DIR/$tdir
10587         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10588
10589         check_default_stripe_attr --stripe-count
10590         check_default_stripe_attr --stripe-size
10591
10592         return 0
10593 }
10594 run_test 204d "Print default stripe count and size ============="
10595
10596 test_204e() {
10597         test_mkdir -p $DIR/$tdir
10598         $SETSTRIPE -d $DIR/$tdir
10599
10600         check_default_stripe_attr --stripe-count --raw
10601         check_default_stripe_attr --stripe-size --raw
10602         check_default_stripe_attr --stripe-index --raw
10603
10604         return 0
10605 }
10606 run_test 204e "Print raw stripe attributes ================="
10607
10608 test_204f() {
10609         test_mkdir -p $DIR/$tdir
10610         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10611
10612         check_default_stripe_attr --stripe-size --raw
10613         check_default_stripe_attr --stripe-index --raw
10614
10615         return 0
10616 }
10617 run_test 204f "Print raw stripe size and offset  ==========="
10618
10619 test_204g() {
10620         test_mkdir -p $DIR/$tdir
10621         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10622
10623         check_default_stripe_attr --stripe-count --raw
10624         check_default_stripe_attr --stripe-index --raw
10625
10626         return 0
10627 }
10628 run_test 204g "Print raw stripe count and offset ==========="
10629
10630 test_204h() {
10631         test_mkdir -p $DIR/$tdir
10632         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10633
10634         check_default_stripe_attr --stripe-count --raw
10635         check_default_stripe_attr --stripe-size --raw
10636
10637         return 0
10638 }
10639 run_test 204h "Print raw stripe count and size ============="
10640
10641 # Figure out which job scheduler is being used, if any,
10642 # or use a fake one
10643 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10644         JOBENV=SLURM_JOB_ID
10645 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10646         JOBENV=LSB_JOBID
10647 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10648         JOBENV=PBS_JOBID
10649 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10650         JOBENV=LOADL_STEP_ID
10651 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10652         JOBENV=JOB_ID
10653 else
10654         JOBENV=FAKE_JOBID
10655 fi
10656
10657 verify_jobstats() {
10658         local cmd=$1
10659         local target=$2
10660
10661         # clear old jobstats
10662         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10663         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10664
10665         # use a new JobID for this test, or we might see an old one
10666         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10667
10668         JOBVAL=${!JOBENV}
10669         log "Test: $cmd"
10670         log "Using JobID environment variable $JOBENV=$JOBVAL"
10671
10672         if [ $JOBENV = "FAKE_JOBID" ]; then
10673                 FAKE_JOBID=$JOBVAL $cmd
10674         else
10675                 $cmd
10676         fi
10677
10678         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10679                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10680                 do_facet $FACET lctl get_param mdt.*.job_stats |
10681                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10682         fi
10683         if [ "$target" = "ost" -o "$target" = "both" ]; then
10684                 FACET=ost1
10685                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10686                         grep $JOBVAL || error "No job stats found on OST $FACET"
10687         fi
10688 }
10689
10690 jobstats_set() {
10691         trap 0
10692         NEW_JOBENV=${1:-$OLD_JOBENV}
10693         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10694         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10695 }
10696
10697 test_205() { # Job stats
10698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10699         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10700                 skip "Server doesn't support jobstats" && return 0
10701
10702         local cmd
10703         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10704         if [ $OLD_JOBENV != $JOBENV ]; then
10705                 jobstats_set $JOBENV
10706                 trap jobstats_set EXIT
10707         fi
10708
10709         # mkdir
10710         cmd="mkdir $DIR/$tfile"
10711         verify_jobstats "$cmd" "mdt"
10712         # rmdir
10713         cmd="rm -fr $DIR/$tfile"
10714         verify_jobstats "$cmd" "mdt"
10715         # mknod
10716         cmd="mknod $DIR/$tfile c 1 3"
10717         verify_jobstats "$cmd" "mdt"
10718         # unlink
10719         cmd="rm -f $DIR/$tfile"
10720         verify_jobstats "$cmd" "mdt"
10721         # open & close
10722         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10723         verify_jobstats "$cmd" "mdt"
10724         # setattr
10725         cmd="touch $DIR/$tfile"
10726         verify_jobstats "$cmd" "both"
10727         # write
10728         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10729         verify_jobstats "$cmd" "ost"
10730         # read
10731         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10732         verify_jobstats "$cmd" "ost"
10733         # truncate
10734         cmd="$TRUNCATE $DIR/$tfile 0"
10735         verify_jobstats "$cmd" "both"
10736         # rename
10737         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10738         verify_jobstats "$cmd" "mdt"
10739
10740         # cleanup
10741         rm -f $DIR/jobstats_test_rename
10742
10743         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10744 }
10745 run_test 205 "Verify job stats"
10746
10747 # LU-1480, LU-1773 and LU-1657
10748 test_206() {
10749         mkdir -p $DIR/$tdir
10750         lfs setstripe -c -1 $DIR/$tdir
10751 #define OBD_FAIL_LOV_INIT 0x1403
10752         $LCTL set_param fail_loc=0xa0001403
10753         $LCTL set_param fail_val=1
10754         touch $DIR/$tdir/$tfile || true
10755 }
10756 run_test 206 "fail lov_init_raid0() doesn't lbug"
10757
10758 test_207a() {
10759         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10760         local fsz=`stat -c %s $DIR/$tfile`
10761         cancel_lru_locks mdc
10762
10763         # do not return layout in getattr intent
10764 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10765         $LCTL set_param fail_loc=0x170
10766         local sz=`stat -c %s $DIR/$tfile`
10767
10768         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10769
10770         rm -rf $DIR/$tfile
10771 }
10772 run_test 207a "can refresh layout at glimpse"
10773
10774 test_207b() {
10775         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10776         local cksum=`md5sum $DIR/$tfile`
10777         local fsz=`stat -c %s $DIR/$tfile`
10778         cancel_lru_locks mdc
10779         cancel_lru_locks osc
10780
10781         # do not return layout in getattr intent
10782 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10783         $LCTL set_param fail_loc=0x171
10784
10785         # it will refresh layout after the file is opened but before read issues
10786         echo checksum is "$cksum"
10787         echo "$cksum" |md5sum -c --quiet || error "file differs"
10788
10789         rm -rf $DIR/$tfile
10790 }
10791 run_test 207b "can refresh layout at open"
10792
10793 test_208() {
10794         # FIXME: in this test suite, only RD lease is used. This is okay
10795         # for now as only exclusive open is supported. After generic lease
10796         # is done, this test suite should be revised. - Jinshan
10797
10798         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10799                 { skip "Need MDS version at least 2.4.52"; return 0; }
10800
10801         echo "==== test 1: verify get lease work"
10802         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10803
10804         echo "==== test 2: verify lease can be broken by upcoming open"
10805         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10806         local PID=$!
10807         sleep 1
10808
10809         $MULTIOP $DIR/$tfile oO_RDONLY:c
10810         kill -USR1 $PID && wait $PID || error "break lease error"
10811
10812         echo "==== test 3: verify lease can't be granted if an open already exists"
10813         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10814         local PID=$!
10815         sleep 1
10816
10817         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10818         kill -USR1 $PID && wait $PID || error "open file error"
10819
10820         echo "==== test 4: lease can sustain over recovery"
10821         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10822         PID=$!
10823         sleep 1
10824
10825         fail mds1
10826
10827         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10828
10829         echo "==== test 5: lease broken can't be regained by replay"
10830         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10831         PID=$!
10832         sleep 1
10833
10834         # open file to break lease and then recovery
10835         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10836         fail mds1
10837
10838         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10839
10840         rm -f $DIR/$tfile
10841 }
10842 run_test 208 "Exclusive open"
10843
10844 test_209() {
10845         [[ $($LCTL get_param -n mdc.*.connect_flags) == ~disp_stripe ]] &&
10846                 skip_env "must have disp_stripe" && return
10847
10848         touch $DIR/$tfile
10849         sync; sleep 5; sync;
10850
10851         echo 3 > /proc/sys/vm/drop_caches
10852         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10853
10854         # open/close 500 times
10855         for i in $(seq 500); do
10856                 cat $DIR/$tfile
10857         done
10858
10859         echo 3 > /proc/sys/vm/drop_caches
10860         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10861
10862         echo "before: $req_before, after: $req_after"
10863         [ $((req_after - req_before)) -ge 300 ] &&
10864                 error "open/close requests are not freed"
10865         return 0
10866 }
10867 run_test 209 "read-only open/close requests should be freed promptly"
10868
10869 test_212() {
10870         size=`date +%s`
10871         size=$((size % 8192 + 1))
10872         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10873         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10874         rm -f $DIR/f212 $DIR/f212.xyz
10875 }
10876 run_test 212 "Sendfile test ============================================"
10877
10878 test_213() {
10879         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10880         cancel_lru_locks osc
10881         lctl set_param fail_loc=0x8000040f
10882         # generate a read lock
10883         cat $DIR/$tfile > /dev/null
10884         # write to the file, it will try to cancel the above read lock.
10885         cat /etc/hosts >> $DIR/$tfile
10886 }
10887 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10888
10889 test_214() { # for bug 20133
10890         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
10891         for (( i=0; i < 340; i++ )) ; do
10892                 touch $DIR/$tdir/d214c/a$i
10893         done
10894
10895         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
10896         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10897         ls $DIR/d214c || error "ls $DIR/d214c failed"
10898         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
10899         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10900 }
10901 run_test 214 "hash-indexed directory test - bug 20133"
10902
10903 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10904 create_lnet_proc_files() {
10905         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10906         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10907
10908         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10909         rm -f "$TMP/lnet_$1.sys_tmp"
10910 }
10911
10912 # counterpart of create_lnet_proc_files
10913 remove_lnet_proc_files() {
10914         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10915 }
10916
10917 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10918 # 3rd arg as regexp for body
10919 check_lnet_proc_stats() {
10920         local l=$(cat "$TMP/lnet_$1" |wc -l)
10921         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10922
10923         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10924 }
10925
10926 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10927 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10928 # optional and can be regexp for 2nd line (lnet.routes case)
10929 check_lnet_proc_entry() {
10930         local blp=2            # blp stands for 'position of 1st line of body'
10931         [ "$5" = "" ] || blp=3 # lnet.routes case
10932
10933         local l=$(cat "$TMP/lnet_$1" |wc -l)
10934         # subtracting one from $blp because the body can be empty
10935         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10936
10937         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10938                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10939
10940         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10941                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10942
10943         # bail out if any unexpected line happened
10944         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10945         [ "$?" != 0 ] || error "$2 misformatted"
10946 }
10947
10948 test_215() { # for bugs 18102, 21079, 21517
10949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10950         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10951         local P='[1-9][0-9]*'           # positive numeric
10952         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10953         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10954         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10955         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10956
10957         local L1 # regexp for 1st line
10958         local L2 # regexp for 2nd line (optional)
10959         local BR # regexp for the rest (body)
10960
10961         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10962         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10963         create_lnet_proc_files "stats"
10964         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10965         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10966         remove_lnet_proc_files "stats"
10967
10968         # /proc/sys/lnet/routes should look like this:
10969         # Routing disabled/enabled
10970         # net hops priority state router
10971         # where net is a string like tcp0, hops > 0, priority >= 0,
10972         # state is up/down,
10973         # router is a string like 192.168.1.1@tcp2
10974         L1="^Routing (disabled|enabled)$"
10975         L2="^net +hops +priority +state +router$"
10976         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
10977         create_lnet_proc_files "routes"
10978         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10979         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10980         remove_lnet_proc_files "routes"
10981
10982         # /proc/sys/lnet/routers should look like this:
10983         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10984         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10985         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10986         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10987         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10988         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10989         create_lnet_proc_files "routers"
10990         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10991         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10992         remove_lnet_proc_files "routers"
10993
10994         # /proc/sys/lnet/peers should look like this:
10995         # nid refs state last max rtr min tx min queue
10996         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10997         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10998         # numeric (0 or >0 or <0), queue >= 0.
10999         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11000         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11001         create_lnet_proc_files "peers"
11002         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11003         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11004         remove_lnet_proc_files "peers"
11005
11006         # /proc/sys/lnet/buffers  should look like this:
11007         # pages count credits min
11008         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11009         L1="^pages +count +credits +min$"
11010         BR="^ +$N +$N +$I +$I$"
11011         create_lnet_proc_files "buffers"
11012         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11013         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11014         remove_lnet_proc_files "buffers"
11015
11016         # /proc/sys/lnet/nis should look like this:
11017         # nid status alive refs peer rtr max tx min
11018         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11019         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11020         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11021         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11022         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11023         create_lnet_proc_files "nis"
11024         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11025         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11026         remove_lnet_proc_files "nis"
11027
11028         # can we successfully write to /proc/sys/lnet/stats?
11029         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11030         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11031 }
11032 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11033
11034 test_216() { # bug 20317
11035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11036         remote_ost_nodsh && skip "remote OST with nodsh" && return
11037
11038         local node
11039         local facets=$(get_facets OST)
11040         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11041
11042         save_lustre_params client "osc.*.contention_seconds" > $p
11043         save_lustre_params $facets \
11044                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11045         save_lustre_params $facets \
11046                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11047         save_lustre_params $facets \
11048                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11049         clear_osc_stats
11050
11051         # agressive lockless i/o settings
11052         for node in $(osts_nodes); do
11053                 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'
11054         done
11055         lctl set_param -n osc.*.contention_seconds 60
11056
11057         $DIRECTIO write $DIR/$tfile 0 10 4096
11058         $CHECKSTAT -s 40960 $DIR/$tfile
11059
11060         # disable lockless i/o
11061         for node in $(osts_nodes); do
11062                 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'
11063         done
11064         lctl set_param -n osc.*.contention_seconds 0
11065         clear_osc_stats
11066
11067         dd if=/dev/zero of=$DIR/$tfile count=0
11068         $CHECKSTAT -s 0 $DIR/$tfile
11069
11070         restore_lustre_params <$p
11071         rm -f $p
11072         rm $DIR/$tfile
11073 }
11074 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11075
11076 test_217() { # bug 22430
11077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11078         local node
11079         local nid
11080
11081         for node in $(nodes_list); do
11082                 nid=$(host_nids_address $node $NETTYPE)
11083                 if [[ $nid = *-* ]] ; then
11084                         echo "lctl ping $nid@$NETTYPE"
11085                         lctl ping $nid@$NETTYPE
11086                 else
11087                         echo "skipping $node (no hyphen detected)"
11088                 fi
11089         done
11090 }
11091 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11092
11093 test_218() {
11094        # do directio so as not to populate the page cache
11095        log "creating a 10 Mb file"
11096        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11097        log "starting reads"
11098        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11099        log "truncating the file"
11100        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11101        log "killing dd"
11102        kill %+ || true # reads might have finished
11103        echo "wait until dd is finished"
11104        wait
11105        log "removing the temporary file"
11106        rm -rf $DIR/$tfile || error "tmp file removal failed"
11107 }
11108 run_test 218 "parallel read and truncate should not deadlock ======================="
11109
11110 test_219() {
11111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11112         # write one partial page
11113         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11114         # set no grant so vvp_io_commit_write will do sync write
11115         $LCTL set_param fail_loc=0x411
11116         # write a full page at the end of file
11117         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11118
11119         $LCTL set_param fail_loc=0
11120         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11121         $LCTL set_param fail_loc=0x411
11122         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11123 }
11124 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11125
11126 test_220() { #LU-325
11127         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11128         remote_ost_nodsh && skip "remote OST with nodsh" && return
11129         local OSTIDX=0
11130
11131         test_mkdir -p $DIR/$tdir
11132         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11133                 awk '{print $2}' | sed -e 's/_UUID$//')
11134
11135         # on the mdt's osc
11136         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11137         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11138                         osc.$mdtosc_proc1.prealloc_last_id)
11139         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11140                         osc.$mdtosc_proc1.prealloc_next_id)
11141
11142         $LFS df -i
11143
11144         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11145         #define OBD_FAIL_OST_ENOINO              0x229
11146         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11147         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11148         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11149
11150         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11151
11152         MDSOBJS=$((last_id - next_id))
11153         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11154
11155         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11156         echo "OST still has $count kbytes free"
11157
11158         echo "create $MDSOBJS files @next_id..."
11159         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11160
11161         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11162                         osc.$mdtosc_proc1.prealloc_last_id)
11163         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11164                         osc.$mdtosc_proc1.prealloc_next_id)
11165
11166         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11167         $LFS df -i
11168
11169         echo "cleanup..."
11170
11171         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11172         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11173
11174         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11175         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11176         echo "unlink $MDSOBJS files @$next_id..."
11177         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11178 }
11179 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11180
11181 test_221() {
11182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11183         dd if=`which date` of=$MOUNT/date oflag=sync
11184         chmod +x $MOUNT/date
11185
11186         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11187         $LCTL set_param fail_loc=0x80001401
11188
11189         $MOUNT/date > /dev/null
11190         rm -f $MOUNT/date
11191 }
11192 run_test 221 "make sure fault and truncate race to not cause OOM"
11193
11194 test_222a () {
11195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11196        rm -rf $DIR/$tdir
11197        test_mkdir -p $DIR/$tdir
11198        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11199        createmany -o $DIR/$tdir/$tfile 10
11200        cancel_lru_locks mdc
11201        cancel_lru_locks osc
11202        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11203        $LCTL set_param fail_loc=0x31a
11204        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11205        $LCTL set_param fail_loc=0
11206        rm -r $DIR/$tdir
11207 }
11208 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11209
11210 test_222b () {
11211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11212        rm -rf $DIR/$tdir
11213        test_mkdir -p $DIR/$tdir
11214        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11215        createmany -o $DIR/$tdir/$tfile 10
11216        cancel_lru_locks mdc
11217        cancel_lru_locks osc
11218        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11219        $LCTL set_param fail_loc=0x31a
11220        rm -r $DIR/$tdir || "AGL for rmdir failed"
11221        $LCTL set_param fail_loc=0
11222 }
11223 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11224
11225 test_223 () {
11226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11227        rm -rf $DIR/$tdir
11228        test_mkdir -p $DIR/$tdir
11229        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11230        createmany -o $DIR/$tdir/$tfile 10
11231        cancel_lru_locks mdc
11232        cancel_lru_locks osc
11233        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11234        $LCTL set_param fail_loc=0x31b
11235        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11236        $LCTL set_param fail_loc=0
11237        rm -r $DIR/$tdir
11238 }
11239 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11240
11241 test_224a() { # LU-1039, MRP-303
11242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11243         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11244         $LCTL set_param fail_loc=0x508
11245         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11246         $LCTL set_param fail_loc=0
11247         df $DIR
11248 }
11249 run_test 224a "Don't panic on bulk IO failure"
11250
11251 test_224b() { # LU-1039, MRP-303
11252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11253         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11254         cancel_lru_locks osc
11255         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11256         $LCTL set_param fail_loc=0x515
11257         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11258         $LCTL set_param fail_loc=0
11259         df $DIR
11260 }
11261 run_test 224b "Don't panic on bulk IO failure"
11262
11263 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11264 test_225a () {
11265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11266         if [ -z ${MDSSURVEY} ]; then
11267               skip_env "mds-survey not found" && return
11268         fi
11269
11270         [ $MDSCOUNT -ge 2 ] &&
11271                 skip "skipping now for more than one MDT" && return
11272
11273        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11274             { skip "Need MDS version at least 2.2.51"; return; }
11275
11276        local mds=$(facet_host $SINGLEMDS)
11277        local target=$(do_nodes $mds 'lctl dl' | \
11278                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11279
11280        local cmd1="file_count=1000 thrhi=4"
11281        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11282        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11283        local cmd="$cmd1 $cmd2 $cmd3"
11284
11285        rm -f ${TMP}/mds_survey*
11286        echo + $cmd
11287        eval $cmd || error "mds-survey with zero-stripe failed"
11288        cat ${TMP}/mds_survey*
11289        rm -f ${TMP}/mds_survey*
11290 }
11291 run_test 225a "Metadata survey sanity with zero-stripe"
11292
11293 test_225b () {
11294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11295
11296         if [ -z ${MDSSURVEY} ]; then
11297               skip_env "mds-survey not found" && return
11298         fi
11299         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11300             { skip "Need MDS version at least 2.2.51"; return; }
11301
11302         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11303               skip_env "Need to mount OST to test" && return
11304         fi
11305
11306         [ $MDSCOUNT -ge 2 ] &&
11307                 skip "skipping now for more than one MDT" && return
11308        local mds=$(facet_host $SINGLEMDS)
11309        local target=$(do_nodes $mds 'lctl dl' | \
11310                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11311
11312        local cmd1="file_count=1000 thrhi=4"
11313        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11314        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11315        local cmd="$cmd1 $cmd2 $cmd3"
11316
11317        rm -f ${TMP}/mds_survey*
11318        echo + $cmd
11319        eval $cmd || error "mds-survey with stripe_count failed"
11320        cat ${TMP}/mds_survey*
11321        rm -f ${TMP}/mds_survey*
11322 }
11323 run_test 225b "Metadata survey sanity with stripe_count = 1"
11324
11325 mcreate_path2fid () {
11326         local mode=$1
11327         local major=$2
11328         local minor=$3
11329         local name=$4
11330         local desc=$5
11331         local path=$DIR/$tdir/$name
11332         local fid
11333         local rc
11334         local fid_path
11335
11336         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11337                 error "cannot create $desc"
11338
11339         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11340         rc=$?
11341         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11342
11343         fid_path=$($LFS fid2path $MOUNT $fid)
11344         rc=$?
11345         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11346
11347         [ "$path" == "$fid_path" ] ||
11348                 error "fid2path returned $fid_path, expected $path"
11349
11350         echo "pass with $path and $fid"
11351 }
11352
11353 test_226a () {
11354         rm -rf $DIR/$tdir
11355         mkdir -p $DIR/$tdir
11356
11357         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11358         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11359         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11360         mcreate_path2fid 0040666 0 0 dir "directory"
11361         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11362         mcreate_path2fid 0100666 0 0 file "regular file"
11363         mcreate_path2fid 0120666 0 0 link "symbolic link"
11364         mcreate_path2fid 0140666 0 0 sock "socket"
11365 }
11366 run_test 226a "call path2fid and fid2path on files of all type"
11367
11368 test_226b () {
11369         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11370         rm -rf $DIR/$tdir
11371         local MDTIDX=1
11372
11373         mkdir -p $DIR/$tdir
11374         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11375                 error "create remote directory failed"
11376         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11377         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11378                                 "character special file (null)"
11379         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11380                                 "character special file (no device)"
11381         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11382         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11383                                 "block special file (loop)"
11384         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11385         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11386         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11387 }
11388 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11389
11390 # LU-1299 Executing or running ldd on a truncated executable does not
11391 # cause an out-of-memory condition.
11392 test_227() {
11393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11394         dd if=`which date` of=$MOUNT/date bs=1k count=1
11395         chmod +x $MOUNT/date
11396
11397         $MOUNT/date > /dev/null
11398         ldd $MOUNT/date > /dev/null
11399         rm -f $MOUNT/date
11400 }
11401 run_test 227 "running truncated executable does not cause OOM"
11402
11403 # LU-1512 try to reuse idle OI blocks
11404 test_228a() {
11405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11406         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11407                 skip "non-ldiskfs backend" && return
11408
11409         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11410         local myDIR=$DIR/$tdir
11411
11412         mkdir -p $myDIR
11413         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11414         $LCTL set_param fail_loc=0x80001002
11415         createmany -o $myDIR/t- 10000
11416         $LCTL set_param fail_loc=0
11417         # The guard is current the largest FID holder
11418         touch $myDIR/guard
11419         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11420                     tr -d '[')
11421         local IDX=$(($SEQ % 64))
11422
11423         do_facet $SINGLEMDS sync
11424         # Make sure journal flushed.
11425         sleep 6
11426         local blk1=$(do_facet $SINGLEMDS \
11427                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11428                      grep Blockcount | awk '{print $4}')
11429
11430         # Remove old files, some OI blocks will become idle.
11431         unlinkmany $myDIR/t- 10000
11432         # Create new files, idle OI blocks should be reused.
11433         createmany -o $myDIR/t- 2000
11434         do_facet $SINGLEMDS sync
11435         # Make sure journal flushed.
11436         sleep 6
11437         local blk2=$(do_facet $SINGLEMDS \
11438                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11439                      grep Blockcount | awk '{print $4}')
11440
11441         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11442 }
11443 run_test 228a "try to reuse idle OI blocks"
11444
11445 test_228b() {
11446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11447         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11448                 skip "non-ldiskfs backend" && return
11449
11450         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11451         local myDIR=$DIR/$tdir
11452
11453         mkdir -p $myDIR
11454         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11455         $LCTL set_param fail_loc=0x80001002
11456         createmany -o $myDIR/t- 10000
11457         $LCTL set_param fail_loc=0
11458         # The guard is current the largest FID holder
11459         touch $myDIR/guard
11460         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11461                     tr -d '[')
11462         local IDX=$(($SEQ % 64))
11463
11464         do_facet $SINGLEMDS sync
11465         # Make sure journal flushed.
11466         sleep 6
11467         local blk1=$(do_facet $SINGLEMDS \
11468                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11469                      grep Blockcount | awk '{print $4}')
11470
11471         # Remove old files, some OI blocks will become idle.
11472         unlinkmany $myDIR/t- 10000
11473
11474         # stop the MDT
11475         stop $SINGLEMDS || error "Fail to stop MDT."
11476         # remount the MDT
11477         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11478
11479         df $MOUNT || error "Fail to df."
11480         # Create new files, idle OI blocks should be reused.
11481         createmany -o $myDIR/t- 2000
11482         do_facet $SINGLEMDS sync
11483         # Make sure journal flushed.
11484         sleep 6
11485         local blk2=$(do_facet $SINGLEMDS \
11486                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11487                      grep Blockcount | awk '{print $4}')
11488
11489         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11490 }
11491 run_test 228b "idle OI blocks can be reused after MDT restart"
11492
11493 #LU-1881
11494 test_228c() {
11495         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11496         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11497                 skip "non-ldiskfs backend" && return
11498
11499         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11500         local myDIR=$DIR/$tdir
11501
11502         mkdir -p $myDIR
11503         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11504         $LCTL set_param fail_loc=0x80001002
11505         # 20000 files can guarantee there are index nodes in the OI file
11506         createmany -o $myDIR/t- 20000
11507         $LCTL set_param fail_loc=0
11508         # The guard is current the largest FID holder
11509         touch $myDIR/guard
11510         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11511                     tr -d '[')
11512         local IDX=$(($SEQ % 64))
11513
11514         do_facet $SINGLEMDS sync
11515         # Make sure journal flushed.
11516         sleep 6
11517         local blk1=$(do_facet $SINGLEMDS \
11518                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11519                      grep Blockcount | awk '{print $4}')
11520
11521         # Remove old files, some OI blocks will become idle.
11522         unlinkmany $myDIR/t- 20000
11523         rm -f $myDIR/guard
11524         # The OI file should become empty now
11525
11526         # Create new files, idle OI blocks should be reused.
11527         createmany -o $myDIR/t- 2000
11528         do_facet $SINGLEMDS sync
11529         # Make sure journal flushed.
11530         sleep 6
11531         local blk2=$(do_facet $SINGLEMDS \
11532                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11533                      grep Blockcount | awk '{print $4}')
11534
11535         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11536 }
11537 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11538
11539 test_229() { # LU-2482, LU-3448
11540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11541         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11542
11543         rm -f $DIR/$tfile
11544
11545         # Create a file with a released layout and stripe count 2.
11546         $MULTIOP $DIR/$tfile H2c ||
11547                 error "failed to create file with released layout"
11548
11549         $GETSTRIPE -v $DIR/$tfile
11550
11551         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11552         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11553
11554         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11555         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11556         stat $DIR/$tfile || error "failed to stat released file"
11557
11558         chown $RUNAS_ID $DIR/$tfile ||
11559                 error "chown $RUNAS_ID $DIR/$tfile failed"
11560
11561         chgrp $RUNAS_ID $DIR/$tfile ||
11562                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11563
11564         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11565         rm $DIR/$tfile || error "failed to remove released file"
11566 }
11567 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11568
11569 test_230a() {
11570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11571         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11572         local MDTIDX=1
11573
11574         mkdir -p $DIR/$tdir/test_230_local
11575         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11576         [ $mdt_idx -ne 0 ] &&
11577                 error "create local directory on wrong MDT $mdt_idx"
11578
11579         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11580                         error "create remote directory failed"
11581         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11582         [ $mdt_idx -ne $MDTIDX ] &&
11583                 error "create remote directory on wrong MDT $mdt_idx"
11584
11585         createmany -o $DIR/$tdir/test_230/t- 10 ||
11586                 error "create files on remote directory failed"
11587         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11588         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11589         rm -r $DIR/$tdir || error "unlink remote directory failed"
11590 }
11591 run_test 230a "Create remote directory and files under the remote directory"
11592
11593 test_230b() {
11594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11595         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11596         local MDTIDX=1
11597         local remote_dir=$DIR/$tdir/remote_dir
11598         local rc=0
11599
11600         mkdir -p $DIR/$tdir
11601         $LFS mkdir -i $MDTIDX $remote_dir ||
11602                 error "create remote directory failed"
11603
11604         $LFS mkdir -i 0 $remote_dir/new_dir &&
11605                 error "nested remote directory create succeed!"
11606
11607         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11608         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11609         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11610
11611         [ $rc -ne 0 ] &&
11612            error "create remote directory failed after set enable_remote_dir"
11613
11614         rm -rf $remote_dir || error "first unlink remote directory failed"
11615
11616         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11617                                                         error "chown worked"
11618
11619         do_facet mds$MDTIDX lctl set_param \
11620                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11621         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11622         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11623
11624         [ $rc -ne 0 ] &&
11625            error "create remote dir failed after set enable_remote_dir_gid"
11626
11627         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11628 }
11629 run_test 230b "nested remote directory should be failed"
11630
11631 test_231a()
11632 {
11633         # For simplicity this test assumes that max_pages_per_rpc
11634         # is the same across all OSCs
11635         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11636         local bulk_size=$((max_pages * 4096))
11637
11638         mkdir -p $DIR/$tdir
11639
11640         # clear the OSC stats
11641         $LCTL set_param osc.*.stats=0 &>/dev/null
11642
11643         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11644         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11645                 oflag=direct &>/dev/null || error "dd failed"
11646
11647         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11648         if [ x$nrpcs != "x1" ]; then
11649                 error "found $nrpc ost_write RPCs, not 1 as expected"
11650         fi
11651
11652         # Drop the OSC cache, otherwise we will read from it
11653         cancel_lru_locks osc
11654
11655         # clear the OSC stats
11656         $LCTL set_param osc.*.stats=0 &>/dev/null
11657
11658         # Client reads $bulk_size.
11659         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11660                 iflag=direct &>/dev/null || error "dd failed"
11661
11662         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11663         if [ x$nrpcs != "x1" ]; then
11664                 error "found $nrpc ost_read RPCs, not 1 as expected"
11665         fi
11666 }
11667 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11668
11669 test_231b() {
11670         mkdir -p $DIR/$tdir
11671         local i
11672         for i in {0..1023}; do
11673                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11674                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11675                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11676         done
11677         sync
11678 }
11679 run_test 231b "must not assert on fully utilized OST request buffer"
11680
11681 test_232() {
11682         mkdir -p $DIR/$tdir
11683         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11684         $LCTL set_param fail_loc=0x31c
11685
11686         # ignore dd failure
11687         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11688
11689         $LCTL set_param fail_loc=0
11690         umount_client $MOUNT || error "umount failed"
11691         mount_client $MOUNT || error "mount failed"
11692 }
11693 run_test 232 "failed lock should not block umount"
11694
11695 test_233() {
11696         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11697         { skip "Need MDS version at least 2.3.64"; return; }
11698
11699         local fid=$($LFS path2fid $MOUNT)
11700         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11701                 error "cannot access $MOUNT using its FID '$fid'"
11702 }
11703 run_test 233 "checking that OBF of the FS root succeeds"
11704
11705 test_234() {
11706         local p="$TMP/sanityN-$TESTNAME.parameters"
11707         save_lustre_params client "llite.*.xattr_cache" > $p
11708         lctl set_param llite.*.xattr_cache 1 ||
11709                 { skip "xattr cache is not supported"; return 0; }
11710
11711         mkdir -p $DIR/$tdir || error "mkdir failed"
11712         touch $DIR/$tdir/$tfile || error "touch failed"
11713         # OBD_FAIL_LLITE_XATTR_ENOMEM
11714         $LCTL set_param fail_loc=0x1405
11715         if [ ! -f /etc/SuSE-release ]; then
11716                 # attr pre-2.4.44-7 had a bug with rc
11717                 # LU-3703 - SLES clients have older attr
11718                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11719                         error "getfattr should have failed with ENOMEM"
11720         fi
11721         $LCTL set_param fail_loc=0x0
11722         rm -rf $DIR/$tdir
11723
11724         restore_lustre_params < $p
11725         rm -f $p
11726 }
11727 run_test 234 "xattr cache should not crash on ENOMEM"
11728
11729 test_235() {
11730          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11731                 skip "Need MDS version at least 2.4.52" && return
11732         flock_deadlock $DIR/$tfile
11733         local RC=$?
11734         case $RC in
11735                 0)
11736                 ;;
11737                 124) error "process hangs on a deadlock"
11738                 ;;
11739                 *) error "error executing flock_deadlock $DIR/$tfile"
11740                 ;;
11741         esac
11742 }
11743 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11744
11745 #LU-2935
11746 test_236() {
11747         check_swap_layouts_support && return 0
11748         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11749
11750         local ref1=/etc/passwd
11751         local ref2=/etc/group
11752         local file1=$DIR/$tdir/f1
11753         local file2=$DIR/$tdir/f2
11754
11755         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11756         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11757         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11758         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11759         exec {FD}<>$file2
11760         rm $file2
11761         $LFS swap_layouts $file1 /proc/self/fd/${FD} ||
11762                 error "cannot swap layouts of '$file1' and /proc/self/fd/${FD}"
11763         exec {FD}>&-
11764         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11765
11766         #cleanup
11767         rm -rf $DIR/$tdir
11768 }
11769 run_test 236 "Layout swap on open unlinked file"
11770
11771 #
11772 # tests that do cleanup/setup should be run at the end
11773 #
11774
11775 test_900() {
11776         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11777         local ls
11778         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11779         $LCTL set_param fail_loc=0x903
11780         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11781         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11782                 echo "clear" > $ls
11783         done
11784         FAIL_ON_ERROR=true cleanup
11785         FAIL_ON_ERROR=true setup
11786 }
11787 run_test 900 "umount should not race with any mgc requeue thread"
11788
11789 complete $SECONDS
11790 check_and_cleanup_lustre
11791 if [ "$I_MOUNTED" != "yes" ]; then
11792         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11793 fi
11794 exit_status