Whamcloud - gitweb
LU-5132 tests: Add version check to sanity/160c
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; 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 is_sles11()                                             # LU-4351
20 {
21         if [ -r /etc/SuSE-release ]
22         then
23                 local vers=`grep VERSION /etc/SuSE-release | awk '{print $3}'`
24                 if [ $vers -eq 11 ]
25                 then
26                         return 0
27                 fi
28         fi
29         return 1
30 }
31
32 if is_sles11; then                                      # LU-4351
33         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 54c"
34 fi
35
36 SRCDIR=$(cd $(dirname $0); echo $PWD)
37 export PATH=$PATH:/sbin
38
39 TMP=${TMP:-/tmp}
40
41 CC=${CC:-cc}
42 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
43 CREATETEST=${CREATETEST:-createtest}
44 LFS=${LFS:-lfs}
45 LFIND=${LFIND:-"$LFS find"}
46 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
47 LCTL=${LCTL:-lctl}
48 MCREATE=${MCREATE:-mcreate}
49 OPENFILE=${OPENFILE:-openfile}
50 OPENUNLINK=${OPENUNLINK:-openunlink}
51 export MULTIOP=${MULTIOP:-multiop}
52 READS=${READS:-"reads"}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 UMOUNT=${UMOUNT:-"umount -d"}
60 STRIPES_PER_OBJ=-1
61 CHECK_GRANT=${CHECK_GRANT:-"yes"}
62 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
63 export PARALLEL=${PARALLEL:-"no"}
64
65 export NAME=${NAME:-local}
66
67 SAVE_PWD=$PWD
68
69 CLEANUP=${CLEANUP:-:}
70 SETUP=${SETUP:-:}
71 TRACE=${TRACE:-""}
72 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
73 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
74 . $LUSTRE/tests/test-framework.sh
75 init_test_env $@
76 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
77 init_logging
78
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b 230d"
80
81 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
82 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
84
85 FAIL_ON_ERROR=false
86
87 cleanup() {
88         echo -n "cln.."
89         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
90         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
91 }
92 setup() {
93         echo -n "mnt.."
94         load_modules
95         setupall || exit 10
96         echo "done"
97 }
98
99 check_kernel_version() {
100         WANT_VER=$1
101         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
102         case $GOT_VER in
103         patchless|patchless_client) return 0;;
104         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
105         esac
106         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
107         return 1
108 }
109
110 check_swap_layouts_support()
111 {
112         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
113                 { skip "Does not support layout lock."; return 0; }
114         return 1
115 }
116
117 if [ "$ONLY" == "cleanup" ]; then
118        sh llmountcleanup.sh
119        exit 0
120 fi
121
122 check_and_setup_lustre
123
124 DIR=${DIR:-$MOUNT}
125 assert_DIR
126
127 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
128         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
129 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
130 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
131 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
132 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
133 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
134 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
135
136 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
137 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
138 rm -rf $DIR/[Rdfs][0-9]*
139
140 # $RUNAS_ID may get set incorrectly somewhere else
141 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
142
143 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
144
145 build_test_filter
146
147 if [ "${ONLY}" = "MOUNT" ] ; then
148         echo "Lustre is up, please go on"
149         exit
150 fi
151
152 echo "preparing for tests involving mounts"
153 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
154 touch $EXT2_DEV
155 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
156 echo # add a newline after mke2fs.
157
158 umask 077
159
160 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
161 lctl set_param debug=-1 2> /dev/null || true
162 test_0a() {
163         touch $DIR/$tfile
164         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
165         rm $DIR/$tfile
166         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
167 }
168 run_test 0a "touch; rm ====================="
169
170 test_0b() {
171         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
172         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
173 }
174 run_test 0b "chmod 0755 $DIR ============================="
175
176 test_0c() {
177         $LCTL get_param mdc.*.import | grep "state: FULL" ||
178                 error "import not FULL"
179         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
180                 error "bad target"
181 }
182 run_test 0c "check import proc ============================="
183
184 test_1() {
185         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
186         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
187         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
188         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
189         rmdir $DIR/$tdir/d2
190         rmdir $DIR/$tdir
191         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
192 }
193 run_test 1 "mkdir; remkdir; rmdir =============================="
194
195 test_2() {
196         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
197         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
198         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
199         rm -r $DIR/$tdir
200         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
201 }
202 run_test 2 "mkdir; touch; rmdir; check file ===================="
203
204 test_3() {
205         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
206         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
207         touch $DIR/$tdir/$tfile
208         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
209         rm -r $DIR/$tdir
210         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
211 }
212 run_test 3 "mkdir; touch; rmdir; check dir ====================="
213
214 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
215 test_4() {
216         local MDTIDX=1
217
218         test_mkdir $DIR/$tdir ||
219                 error "Create remote directory failed"
220
221         touch $DIR/$tdir/$tfile ||
222                 error "Create file under remote directory failed"
223
224         rmdir $DIR/$tdir &&
225                 error "Expect error removing in-use dir $DIR/$tdir"
226
227         test -d $DIR/$tdir || error "Remote directory disappeared"
228
229         rm -rf $DIR/$tdir || error "remove remote dir error"
230 }
231 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
232
233 test_5() {
234         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
235         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
236         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
237         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
238         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
239 }
240 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
241
242 test_6a() {
243         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
244         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
245         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
246                 error "$tfile does not have perm 0666 or UID $UID"
247         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
248         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
249                 error "$tfile should be 0666 and owned by UID $UID"
250 }
251 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
252
253 test_6c() {
254         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
255         touch $DIR/$tfile
256         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
257         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
258                 error "$tfile should be owned by UID $RUNAS_ID"
259         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
260         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
261                 error "$tfile should be owned by UID $RUNAS_ID"
262 }
263 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
264
265 test_6e() {
266         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
267         touch $DIR/$tfile
268         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
269         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
270                 error "$tfile should be owned by GID $UID"
271         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
272         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
273                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
274 }
275 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
276
277 test_6g() {
278         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
279         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
280         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
281         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
282         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
283         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
284         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
285                 error "$tdir/d/subdir should be GID $RUNAS_GID"
286 }
287 run_test 6g "Is new dir in sgid dir inheriting group?"
288
289 test_6h() { # bug 7331
290         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
291         touch $DIR/$tfile || error "touch failed"
292         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
293         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
294                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
295         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
296                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
297 }
298 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
299
300 test_7a() {
301         test_mkdir $DIR/$tdir
302         $MCREATE $DIR/$tdir/$tfile
303         chmod 0666 $DIR/$tdir/$tfile
304         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
305                 error "$tdir/$tfile should be mode 0666"
306 }
307 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
308
309 test_7b() {
310         if [ ! -d $DIR/$tdir ]; then
311                 mkdir $DIR/$tdir
312         fi
313         $MCREATE $DIR/$tdir/$tfile
314         echo -n foo > $DIR/$tdir/$tfile
315         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
316         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
317 }
318 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
319
320 test_8() {
321         test_mkdir $DIR/$tdir
322         touch $DIR/$tdir/$tfile
323         chmod 0666 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
325                 error "$tfile mode not 0666"
326 }
327 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
328
329 test_9() {
330         test_mkdir $DIR/$tdir
331         test_mkdir $DIR/$tdir/d2
332         test_mkdir $DIR/$tdir/d2/d3
333         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
334 }
335 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
336
337 test_10() {
338         test_mkdir $DIR/$tdir
339         test_mkdir $DIR/$tdir/d2
340         touch $DIR/$tdir/d2/$tfile
341         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
342                 error "$tdir/d2/$tfile not a file"
343 }
344 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
345
346 test_11() {
347         test_mkdir $DIR/$tdir
348         test_mkdir $DIR/$tdir/d2
349         chmod 0666 $DIR/$tdir/d2
350         chmod 0705 $DIR/$tdir/d2
351         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
352                 error "$tdir/d2 mode not 0705"
353 }
354 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
355
356 test_12() {
357         test_mkdir $DIR/$tdir
358         touch $DIR/$tdir/$tfile
359         chmod 0666 $DIR/$tdir/$tfile
360         chmod 0654 $DIR/$tdir/$tfile
361         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
362                 error "$tdir/d2 mode not 0654"
363 }
364 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
365
366 test_13() {
367         test_mkdir $DIR/$tdir
368         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
369         >  $DIR/$tdir/$tfile
370         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
371                 error "$tdir/$tfile size not 0 after truncate"
372 }
373 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
374
375 test_14() {
376         test_mkdir $DIR/$tdir
377         touch $DIR/$tdir/$tfile
378         rm $DIR/$tdir/$tfile
379         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
380 }
381 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
382
383 test_15() {
384         test_mkdir $DIR/$tdir
385         touch $DIR/$tdir/$tfile
386         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
387         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
388                 error "$tdir/${tfile_2} not a file after rename"
389 }
390 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
391
392 test_16() {
393         test_mkdir $DIR/$tdir
394         touch $DIR/$tdir/$tfile
395         rm -rf $DIR/$tdir/$tfile
396         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
397 }
398 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
399
400 test_17a() {
401         test_mkdir -p $DIR/$tdir
402         touch $DIR/$tdir/$tfile
403         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
404         ls -l $DIR/$tdir
405         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
406                 error "$tdir/l-exist not a symlink"
407         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
408                 error "$tdir/l-exist not referencing a file"
409         rm -f $DIR/$tdir/l-exist
410         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
411 }
412 run_test 17a "symlinks: create, remove (real) =================="
413
414 test_17b() {
415         test_mkdir -p $DIR/$tdir
416         ln -s no-such-file $DIR/$tdir/l-dangle
417         ls -l $DIR/$tdir
418         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
419                 error "$tdir/l-dangle not referencing no-such-file"
420         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
421                 error "$tdir/l-dangle not referencing non-existent file"
422         rm -f $DIR/$tdir/l-dangle
423         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
424 }
425 run_test 17b "symlinks: create, remove (dangling) =============="
426
427 test_17c() { # bug 3440 - don't save failed open RPC for replay
428         test_mkdir -p $DIR/$tdir
429         ln -s foo $DIR/$tdir/$tfile
430         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
431 }
432 run_test 17c "symlinks: open dangling (should return error) ===="
433
434 test_17d() {
435         test_mkdir -p $DIR/$tdir
436         ln -s foo $DIR/$tdir/$tfile
437         touch $DIR/$tdir/$tfile || error "creating to new symlink"
438 }
439 run_test 17d "symlinks: create dangling ========================"
440
441 test_17e() {
442         test_mkdir -p $DIR/$tdir
443         local foo=$DIR/$tdir/$tfile
444         ln -s $foo $foo || error "create symlink failed"
445         ls -l $foo || error "ls -l failed"
446         ls $foo && error "ls not failed" || true
447 }
448 run_test 17e "symlinks: create recursive symlink (should return error) ===="
449
450 test_17f() {
451         test_mkdir -p $DIR/$tdir
452         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
454         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
455         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
456         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
457         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
458         ls -l  $DIR/$tdir
459 }
460 run_test 17f "symlinks: long and very long symlink name ========================"
461
462 # str_repeat(S, N) generate a string that is string S repeated N times
463 str_repeat() {
464         local s=$1
465         local n=$2
466         local ret=''
467         while [ $((n -= 1)) -ge 0 ]; do
468                 ret=$ret$s
469         done
470         echo $ret
471 }
472
473 # Long symlinks and LU-2241
474 test_17g() {
475         test_mkdir -p $DIR/$tdir
476         local TESTS="59 60 61 4094 4095"
477
478         # Fix for inode size boundary in 2.1.4
479         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
480                 TESTS="4094 4095"
481
482         # Patch not applied to 2.2 or 2.3 branches
483         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
484         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
485                 TESTS="4094 4095"
486
487         # skip long symlink name for rhel6.5.
488         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
489         grep -q '6.5' /etc/redhat-release &>/dev/null &&
490                 TESTS="59 60 61 4062 4063"
491
492         for i in $TESTS; do
493                 local SYMNAME=$(str_repeat 'x' $i)
494                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
495                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
496         done
497 }
498 run_test 17g "symlinks: really long symlink name and inode boundaries"
499
500 test_17h() { #bug 17378
501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
503         local mdt_idx
504         test_mkdir -p $DIR/$tdir
505         if [[ $MDSCOUNT -gt 1 ]]; then
506                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507         else
508                 mdt_idx=0
509         fi
510         $SETSTRIPE -c -1 $DIR/$tdir
511 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
512         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
513         touch $DIR/$tdir/$tfile || true
514 }
515 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
516
517 test_17i() { #bug 20018
518         remote_mds_nodsh && skip "remote MDS with nodsh" && return
519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
520         test_mkdir -c1 $DIR/$tdir
521         local foo=$DIR/$tdir/$tfile
522         local mdt_idx
523         if [[ $MDSCOUNT -gt 1 ]]; then
524                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
525         else
526                 mdt_idx=0
527         fi
528         ln -s $foo $foo || error "create symlink failed"
529 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
530         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
531         ls -l $foo && error "error not detected"
532         return 0
533 }
534 run_test 17i "don't panic on short symlink"
535
536 test_17k() { #bug 22301
537         [[ -z "$(which rsync 2>/dev/null)" ]] &&
538                 skip "no rsync command" && return 0
539         rsync --help | grep -q xattr ||
540                 skip_env "$(rsync --version | head -n1) does not support xattrs"
541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
542         test_mkdir -p $DIR/$tdir
543         test_mkdir -p $DIR/$tdir.new
544         touch $DIR/$tdir/$tfile
545         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
546         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
547                 error "rsync failed with xattrs enabled"
548 }
549 run_test 17k "symlinks: rsync with xattrs enabled ========================="
550
551 test_17l() { # LU-279
552         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
553                 skip "no getfattr command" && return 0
554         mkdir -p $DIR/$tdir
555         touch $DIR/$tdir/$tfile
556         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
557         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
558                 # -h to not follow symlinks. -m '' to list all the xattrs.
559                 # grep to remove first line: '# file: $path'.
560                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
561                 do
562                         lgetxattr_size_check $path $xattr ||
563                                 error "lgetxattr_size_check $path $xattr failed"
564                 done
565         done
566 }
567 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
568
569 # LU-1540
570 test_17m() {
571         local short_sym="0123456789"
572         local WDIR=$DIR/${tdir}m
573         local mds_index
574         local devname
575         local cmd
576         local i
577         local rc=0
578
579         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
580         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
581                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
582
583         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
584                 skip "only for ldiskfs MDT" && return 0
585
586         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
587
588         mkdir -p $WDIR
589         long_sym=$short_sym
590         # create a long symlink file
591         for ((i = 0; i < 4; ++i)); do
592                 long_sym=${long_sym}${long_sym}
593         done
594
595         echo "create 512 short and long symlink files under $WDIR"
596         for ((i = 0; i < 256; ++i)); do
597                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
598                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
599         done
600
601         echo "erase them"
602         rm -f $WDIR/*
603         sync
604         wait_delete_completed
605
606         echo "recreate the 512 symlink files with a shorter string"
607         for ((i = 0; i < 512; ++i)); do
608                 # rewrite the symlink file with a shorter string
609                 ln -sf ${long_sym} $WDIR/long-$i
610                 ln -sf ${short_sym} $WDIR/short-$i
611         done
612
613         mds_index=$($LFS getstripe -M $WDIR)
614         mds_index=$((mds_index+1))
615         devname=$(mdsdevname $mds_index)
616         cmd="$E2FSCK -fnvd $devname"
617
618         echo "stop and checking mds${mds_index}: $cmd"
619         # e2fsck should not return error
620         stop mds${mds_index}
621         do_facet mds${mds_index} $cmd || rc=$?
622
623         start mds${mds_index} $devname $MDS_MOUNT_OPTS
624         df $MOUNT > /dev/null 2>&1
625         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
626                 "short/long symlink MDT: rc=$rc"
627         return $rc
628 }
629 run_test 17m "run e2fsck against MDT which contains short/long symlink"
630
631 check_fs_consistency_17n() {
632         local mdt_index
633         local devname
634         local cmd
635         local rc=0
636
637         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
638         # so it only check MDT1/MDT2 instead of all of MDTs.
639         for mdt_index in $(seq 1 2); do
640                 devname=$(mdsdevname $mdt_index)
641                 cmd="$E2FSCK -fnvd $devname"
642
643                 echo "stop and checking mds${mdt_index}: $cmd"
644                 # e2fsck should not return error
645                 stop mds${mdt_index}
646                 do_facet mds${mdt_index} $cmd || rc=$?
647
648                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
649                 df $MOUNT > /dev/null 2>&1
650                 [ $rc -ne 0 ] && break
651         done
652         return $rc
653 }
654
655 test_17n() {
656         local i
657
658         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
659         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
660                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
661
662         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
663                 skip "only for ldiskfs MDT" && return 0
664
665         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
666
667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
668
669         mkdir $DIR/$tdir
670         for ((i=0; i<10; i++)); do
671                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
672                         error "create remote dir error $i"
673                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
674                         error "create files under remote dir failed $i"
675         done
676
677         check_fs_consistency_17n ||
678                 error "e2fsck report error after create files under remote dir"
679
680         for ((i=0;i<10;i++)); do
681                 rm -rf $DIR/$tdir/remote_dir_${i} ||
682                         error "destroy remote dir error $i"
683         done
684
685         check_fs_consistency_17n ||
686                 error "e2fsck report error after unlink files under remote dir"
687
688         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
689                 skip "lustre < 2.4.50 does not support migrate mv " && return
690
691         for ((i=0; i<10; i++)); do
692                 mkdir -p $DIR/$tdir/remote_dir_${i}
693                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
694                         error "create files under remote dir failed $i"
695                 $LFS mv -M 1 $DIR/$tdir/remote_dir_${i} ||
696                         error "migrate remote dir error $i"
697         done
698         check_fs_consistency_17n || error "e2fsck report error after migration"
699
700         for ((i=0;i<10;i++)); do
701                 rm -rf $DIR/$tdir/remote_dir_${i} ||
702                         error "destroy remote dir error $i"
703         done
704
705         check_fs_consistency_17n || error "e2fsck report error after unlink"
706 }
707 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
708
709 test_17o() {
710         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
711                 skip "Need MDS version at least 2.3.64" && return
712
713         local WDIR=$DIR/${tdir}o
714         local mdt_index
715         local mdtdevname
716         local rc=0
717
718         mkdir -p $WDIR
719         mdt_index=$($LFS getstripe -M $WDIR)
720         mdt_index=$((mdt_index+1))
721         mdtdevname=$(mdsdevname $mdt_index)
722
723         touch $WDIR/$tfile
724         stop mds${mdt_index}
725         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
726
727         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
728         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
729         ls -l $WDIR/$tfile && rc=1
730         do_facet mds${mdt_index} lctl set_param fail_loc=0
731         [[ $rc -ne 0 ]] && error "stat file should fail"
732         true
733 }
734 run_test 17o "stat file with incompat LMA feature"
735
736 test_18() {
737         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
738         ls $DIR || error "Failed to ls $DIR: $?"
739 }
740 run_test 18 "touch .../f ; ls ... =============================="
741
742 test_19a() {
743         touch $DIR/$tfile
744         ls -l $DIR
745         rm $DIR/$tfile
746         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
747 }
748 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
749
750 test_19b() {
751         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
752 }
753 run_test 19b "ls -l .../f19 (should return error) =============="
754
755 test_19c() {
756         [ $RUNAS_ID -eq $UID ] &&
757                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
758         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
759 }
760 run_test 19c "$RUNAS touch .../f19 (should return error) =="
761
762 test_19d() {
763         cat $DIR/f19 && error || true
764 }
765 run_test 19d "cat .../f19 (should return error) =============="
766
767 test_20() {
768         touch $DIR/$tfile
769         rm $DIR/$tfile
770         log "1 done"
771         touch $DIR/$tfile
772         rm $DIR/$tfile
773         log "2 done"
774         touch $DIR/$tfile
775         rm $DIR/$tfile
776         log "3 done"
777         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
778 }
779 run_test 20 "touch .../f ; ls -l ... ==========================="
780
781 test_21() {
782         test_mkdir -p $DIR/$tdir
783         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
784         ln -s dangle $DIR/$tdir/link
785         echo foo >> $DIR/$tdir/link
786         cat $DIR/$tdir/dangle
787         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
788         $CHECKSTAT -f -t file $DIR/$tdir/link ||
789                 error "$tdir/link not linked to a file"
790 }
791 run_test 21 "write to dangling link ============================"
792
793 test_22() {
794         WDIR=$DIR/$tdir
795         test_mkdir -p $DIR/$tdir
796         chown $RUNAS_ID:$RUNAS_GID $WDIR
797         (cd $WDIR || error "cd $WDIR failed";
798         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
799         $RUNAS tar xf -)
800         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
801         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
802         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
803 }
804 run_test 22 "unpack tar archive as non-root user ==============="
805
806 # was test_23
807 test_23a() {
808         test_mkdir -p $DIR/$tdir
809         local file=$DIR/$tdir/$tfile
810
811         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
812         openfile -f O_CREAT:O_EXCL $file &&
813                 error "$file recreate succeeded" || true
814 }
815 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
816
817 test_23b() { # bug 18988
818         test_mkdir -p $DIR/$tdir
819         local file=$DIR/$tdir/$tfile
820
821         rm -f $file
822         echo foo > $file || error "write filed"
823         echo bar >> $file || error "append filed"
824         $CHECKSTAT -s 8 $file || error "wrong size"
825         rm $file
826 }
827 run_test 23b "O_APPEND check =========================="
828
829 # rename sanity
830 test_24a() {
831         echo '-- same directory rename'
832         test_mkdir $DIR/$tdir
833         touch $DIR/$tdir/$tfile.1
834         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
835         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
836 }
837 run_test 24a "rename file to non-existent target"
838
839 test_24b() {
840         test_mkdir $DIR/$tdir
841         touch $DIR/$tdir/$tfile.{1,2}
842         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
843         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
844         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
845 }
846 run_test 24b "rename file to existing target"
847
848 test_24c() {
849         test_mkdir $DIR/$tdir
850         test_mkdir $DIR/$tdir/d$testnum.1
851         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
852         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
853         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
854 }
855 run_test 24c "rename directory to non-existent target"
856
857 test_24d() {
858         test_mkdir -c1 $DIR/$tdir
859         test_mkdir -c1 $DIR/$tdir/d$testnum.1
860         test_mkdir -c1 $DIR/$tdir/d$testnum.2
861         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
862         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
863         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
864 }
865 run_test 24d "rename directory to existing target"
866
867 test_24e() {
868         echo '-- cross directory renames --'
869         test_mkdir $DIR/R5a
870         test_mkdir $DIR/R5b
871         touch $DIR/R5a/f
872         mv $DIR/R5a/f $DIR/R5b/g
873         $CHECKSTAT -a $DIR/R5a/f || error
874         $CHECKSTAT -t file $DIR/R5b/g || error
875 }
876 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
877
878 test_24f() {
879         test_mkdir $DIR/R6a
880         test_mkdir $DIR/R6b
881         touch $DIR/R6a/f $DIR/R6b/g
882         mv $DIR/R6a/f $DIR/R6b/g
883         $CHECKSTAT -a $DIR/R6a/f || error
884         $CHECKSTAT -t file $DIR/R6b/g || error
885 }
886 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
887
888 test_24g() {
889         test_mkdir $DIR/R7a
890         test_mkdir $DIR/R7b
891         test_mkdir $DIR/R7a/d
892         mv $DIR/R7a/d $DIR/R7b/e
893         $CHECKSTAT -a $DIR/R7a/d || error
894         $CHECKSTAT -t dir $DIR/R7b/e || error
895 }
896 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
897
898 test_24h() {
899         test_mkdir -c1 $DIR/R8a
900         test_mkdir -c1 $DIR/R8b
901         test_mkdir -c1 $DIR/R8a/d
902         test_mkdir -c1 $DIR/R8b/e
903         mrename $DIR/R8a/d $DIR/R8b/e
904         $CHECKSTAT -a $DIR/R8a/d || error
905         $CHECKSTAT -t dir $DIR/R8b/e || error
906 }
907 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
908
909 test_24i() {
910         echo "-- rename error cases"
911         test_mkdir $DIR/R9
912         test_mkdir $DIR/R9/a
913         touch $DIR/R9/f
914         mrename $DIR/R9/f $DIR/R9/a
915         $CHECKSTAT -t file $DIR/R9/f || error
916         $CHECKSTAT -t dir  $DIR/R9/a || error
917         $CHECKSTAT -a $DIR/R9/a/f || error
918 }
919 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
920
921 test_24j() {
922         test_mkdir $DIR/R10
923         mrename $DIR/R10/f $DIR/R10/g
924         $CHECKSTAT -t dir $DIR/R10 || error
925         $CHECKSTAT -a $DIR/R10/f || error
926         $CHECKSTAT -a $DIR/R10/g || error
927 }
928 run_test 24j "source does not exist ============================"
929
930 test_24k() {
931         test_mkdir $DIR/R11a
932         test_mkdir $DIR/R11a/d
933         touch $DIR/R11a/f
934         mv $DIR/R11a/f $DIR/R11a/d
935         $CHECKSTAT -a $DIR/R11a/f || error
936         $CHECKSTAT -t file $DIR/R11a/d/f || error
937 }
938 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
939
940 # bug 2429 - rename foo foo foo creates invalid file
941 test_24l() {
942         f="$DIR/f24l"
943         $MULTIOP $f OcNs || error
944 }
945 run_test 24l "Renaming a file to itself ========================"
946
947 test_24m() {
948         f="$DIR/f24m"
949         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
950         # on ext3 this does not remove either the source or target files
951         # though the "expected" operation would be to remove the source
952         $CHECKSTAT -t file ${f} || error "${f} missing"
953         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
954 }
955 run_test 24m "Renaming a file to a hard link to itself ========="
956
957 test_24n() {
958     f="$DIR/f24n"
959     # this stats the old file after it was renamed, so it should fail
960     touch ${f}
961     $CHECKSTAT ${f}
962     mv ${f} ${f}.rename
963     $CHECKSTAT ${f}.rename
964     $CHECKSTAT -a ${f}
965 }
966 run_test 24n "Statting the old file after renaming (Posix rename 2)"
967
968 test_24o() {
969         check_kernel_version 37 || return 0
970         test_mkdir -p $DIR/d24o
971         rename_many -s random -v -n 10 $DIR/d24o
972 }
973 run_test 24o "rename of files during htree split ==============="
974
975 test_24p() {
976         test_mkdir $DIR/R12a
977         test_mkdir $DIR/R12b
978         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
979         mrename $DIR/R12a $DIR/R12b
980         $CHECKSTAT -a $DIR/R12a || error
981         $CHECKSTAT -t dir $DIR/R12b || error
982         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
983         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
984 }
985 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
986
987 cleanup_multiop_pause() {
988         trap 0
989         kill -USR1 $MULTIPID
990 }
991
992 test_24q() {
993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
994         test_mkdir $DIR/R13a
995         test_mkdir $DIR/R13b
996         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
997         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
998         MULTIPID=$!
999
1000         trap cleanup_multiop_pause EXIT
1001         mrename $DIR/R13a $DIR/R13b
1002         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1003         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1004         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1005         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1006         cleanup_multiop_pause
1007         wait $MULTIPID || error "multiop close failed"
1008 }
1009 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1010
1011 test_24r() { #bug 3789
1012         test_mkdir $DIR/R14a
1013         test_mkdir $DIR/R14a/b
1014         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1015         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1016         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1017 }
1018 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1019
1020 test_24s() {
1021         test_mkdir $DIR/R15a
1022         test_mkdir $DIR/R15a/b
1023         test_mkdir $DIR/R15a/b/c
1024         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1025         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1026         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1027 }
1028 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1029 test_24t() {
1030         test_mkdir $DIR/R16a
1031         test_mkdir $DIR/R16a/b
1032         test_mkdir $DIR/R16a/b/c
1033         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1034         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1035         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1036 }
1037 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1038
1039 test_24u() { # bug12192
1040         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1041         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1042 }
1043 run_test 24u "create stripe file"
1044
1045 page_size() {
1046         getconf PAGE_SIZE
1047 }
1048
1049 simple_cleanup_common() {
1050         trap 0
1051         rm -rf $DIR/$tdir
1052         wait_delete_completed
1053 }
1054
1055 max_pages_per_rpc() {
1056         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1057 }
1058
1059 test_24v() {
1060         local NRFILES=100000
1061         local FREE_INODES=$(mdt_free_inodes 0)
1062         [[ $FREE_INODES -lt $NRFILES ]] &&
1063                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1064                 return
1065
1066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1067         trap simple_cleanup_common EXIT
1068
1069         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1070         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1071
1072         mkdir -p $DIR/$tdir
1073         createmany -m $DIR/$tdir/$tfile $NRFILES
1074
1075         cancel_lru_locks mdc
1076         lctl set_param mdc.*.stats clear
1077
1078         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1079
1080         # LU-5 large readdir
1081         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1082         #               8 bytes for name(filename is mostly 5 in this test) +
1083         #               8 bytes for luda_type
1084         # take into account of overhead in lu_dirpage header and end mark in
1085         # each page, plus one in RPC_NUM calculation.
1086         DIRENT_SIZE=48
1087         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1088         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1089         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1090                                 awk '/^mds_readpage/ {print $2}')
1091         [[ $mds_readpage -gt $RPC_NUM ]] &&
1092                 error "large readdir doesn't take effect"
1093
1094         simple_cleanup_common
1095 }
1096 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1097
1098 test_24w() { # bug21506
1099         SZ1=234852
1100         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1101         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1102         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1103         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1104         [[ "$SZ1" -eq "$SZ2" ]] ||
1105                 error "Error reading at the end of the file $tfile"
1106 }
1107 run_test 24w "Reading a file larger than 4Gb"
1108
1109 test_24x() {
1110         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1112         local MDTIDX=1
1113         local remote_dir=$DIR/$tdir/remote_dir
1114
1115         mkdir -p $DIR/$tdir
1116         $LFS mkdir -i $MDTIDX $remote_dir ||
1117                 error "create remote directory failed"
1118
1119         mkdir -p $DIR/$tdir/src_dir
1120         touch $DIR/$tdir/src_file
1121         mkdir -p $remote_dir/tgt_dir
1122         touch $remote_dir/tgt_file
1123
1124         mrename $remote_dir $DIR/ &&
1125                 error "rename dir cross MDT works!"
1126
1127         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1128                 error "rename dir cross MDT works!"
1129
1130         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1131                 error "rename file cross MDT works!"
1132
1133         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1134                 error "ln file cross MDT should not work!"
1135
1136         rm -rf $DIR/$tdir || error "Can not delete directories"
1137 }
1138 run_test 24x "cross rename/link should be failed"
1139
1140 test_24y() {
1141         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1143         local MDTIDX=1
1144         local remote_dir=$DIR/$tdir/remote_dir
1145
1146         mkdir -p $DIR/$tdir
1147         $LFS mkdir -i $MDTIDX $remote_dir ||
1148                    error "create remote directory failed"
1149
1150         mkdir -p $remote_dir/src_dir
1151         touch $remote_dir/src_file
1152         mkdir -p $remote_dir/tgt_dir
1153         touch $remote_dir/tgt_file
1154
1155         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1156                 error "rename subdir in the same remote dir failed!"
1157
1158         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1159                 error "rename files in the same remote dir failed!"
1160
1161         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1162                 error "link files in the same remote dir failed!"
1163
1164         rm -rf $DIR/$tdir || error "Can not delete directories"
1165 }
1166 run_test 24y "rename/link on the same dir should succeed"
1167
1168 test_24z() {
1169         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1170         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1171         local MDTIDX=1
1172         local remote_src=$DIR/$tdir/remote_dir
1173         local remote_tgt=$DIR/$tdir/remote_tgt
1174
1175         mkdir -p $DIR/$tdir
1176         $LFS mkdir -i $MDTIDX $remote_src ||
1177                    error "create remote directory failed"
1178
1179         $LFS mkdir -i $MDTIDX $remote_tgt ||
1180                    error "create remote directory failed"
1181
1182         mrename $remote_src $remote_tgt &&
1183                 error "rename remote dirs should not work!"
1184
1185         # If target dir does not exists, it should succeed
1186         rm -rf $remote_tgt
1187         mrename $remote_src $remote_tgt ||
1188                 error "rename remote dirs(tgt dir does not exists) failed!"
1189
1190         rm -rf $DIR/$tdir || error "Can not delete directories"
1191 }
1192 run_test 24z "rename one remote dir to another remote dir should fail"
1193
1194 test_24A() { # LU-3182
1195         local NFILES=5000
1196
1197         rm -rf $DIR/$tdir
1198         mkdir -p $DIR/$tdir
1199         createmany -m $DIR/$tdir/$tfile $NFILES
1200         local t=$(ls $DIR/$tdir | wc -l)
1201         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1202         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1203         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1204                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1205         fi
1206
1207         rm -rf $DIR/$tdir || error "Can not delete directories"
1208 }
1209 run_test 24A "readdir() returns correct number of entries."
1210
1211 test_24B() { # LU-4805
1212         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1213         local count
1214
1215         mkdir $DIR/$tdir
1216         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1217                 error "create striped dir failed"
1218
1219         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1220         [ $count -eq 2 ] || error "Expected 2, got $count"
1221
1222         touch $DIR/$tdir/striped_dir/a
1223
1224         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1225         [ $count -eq 3 ] || error "Expected 3, got $count"
1226
1227         touch $DIR/$tdir/striped_dir/.f
1228
1229         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1230         [ $count -eq 4 ] || error "Expected 4, got $count"
1231
1232         rm -rf $DIR/$tdir || error "Can not delete directories"
1233 }
1234 run_test 24B "readdir for striped dir return correct number of entries"
1235
1236 test_24C() {
1237         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1238
1239         mkdir $DIR/$tdir
1240         mkdir $DIR/$tdir/d0
1241         mkdir $DIR/$tdir/d1
1242
1243         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1244                 error "create striped dir failed"
1245
1246         cd $DIR/$tdir/d0/striped_dir
1247
1248         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1249         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1250         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1251
1252         [ "$d0_ino" = "$parent_ino" ] ||
1253                 error ".. wrong, expect $d0_ino, get $parent_ino"
1254
1255         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1256                 error "mv striped dir failed"
1257
1258         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1259
1260         [ "$d1_ino" = "$parent_ino" ] ||
1261                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1262 }
1263 run_test 24C "check .. in striped dir"
1264
1265 test_25a() {
1266         echo '== symlink sanity ============================================='
1267
1268         test_mkdir $DIR/d25
1269         ln -s d25 $DIR/s25
1270         touch $DIR/s25/foo || error
1271 }
1272 run_test 25a "create file in symlinked directory ==============="
1273
1274 test_25b() {
1275         [ ! -d $DIR/d25 ] && test_25a
1276         $CHECKSTAT -t file $DIR/s25/foo || error
1277 }
1278 run_test 25b "lookup file in symlinked directory ==============="
1279
1280 test_26a() {
1281         test_mkdir $DIR/d26
1282         test_mkdir $DIR/d26/d26-2
1283         ln -s d26/d26-2 $DIR/s26
1284         touch $DIR/s26/foo || error
1285 }
1286 run_test 26a "multiple component symlink ======================="
1287
1288 test_26b() {
1289         test_mkdir -p $DIR/d26b/d26-2
1290         ln -s d26b/d26-2/foo $DIR/s26-2
1291         touch $DIR/s26-2 || error
1292 }
1293 run_test 26b "multiple component symlink at end of lookup ======"
1294
1295 test_26c() {
1296         test_mkdir $DIR/d26.2
1297         touch $DIR/d26.2/foo
1298         ln -s d26.2 $DIR/s26.2-1
1299         ln -s s26.2-1 $DIR/s26.2-2
1300         ln -s s26.2-2 $DIR/s26.2-3
1301         chmod 0666 $DIR/s26.2-3/foo
1302 }
1303 run_test 26c "chain of symlinks ================================"
1304
1305 # recursive symlinks (bug 439)
1306 test_26d() {
1307         ln -s d26-3/foo $DIR/d26-3
1308 }
1309 run_test 26d "create multiple component recursive symlink ======"
1310
1311 test_26e() {
1312         [ ! -h $DIR/d26-3 ] && test_26d
1313         rm $DIR/d26-3
1314 }
1315 run_test 26e "unlink multiple component recursive symlink ======"
1316
1317 # recursive symlinks (bug 7022)
1318 test_26f() {
1319         test_mkdir -p $DIR/$tdir
1320         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1321         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1322         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1323         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1324         cd $tfile                || error "cd $tfile failed"
1325         ln -s .. dotdot          || error "ln dotdot failed"
1326         ln -s dotdot/lndir lndir || error "ln lndir failed"
1327         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1328         output=`ls $tfile/$tfile/lndir/bar1`
1329         [ "$output" = bar1 ] && error "unexpected output"
1330         rm -r $tfile             || error "rm $tfile failed"
1331         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1332 }
1333 run_test 26f "rm -r of a directory which has recursive symlink ="
1334
1335 test_27a() {
1336         echo '== stripe sanity =============================================='
1337         test_mkdir -p $DIR/d27 || error "mkdir failed"
1338         $GETSTRIPE $DIR/d27
1339         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1340         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1341         log "== test_27a: write to one stripe file ========================="
1342         cp /etc/hosts $DIR/d27/f0 || error
1343 }
1344 run_test 27a "one stripe file =================================="
1345
1346 test_27b() {
1347         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1348         test_mkdir -p $DIR/d27
1349         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1350         $GETSTRIPE -c $DIR/d27/f01
1351         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1352                 error "two-stripe file doesn't have two stripes"
1353
1354         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1355 }
1356 run_test 27b "create and write to two stripe file"
1357
1358 test_27d() {
1359         test_mkdir -p $DIR/d27
1360         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1361         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1362         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1363 }
1364 run_test 27d "create file with default settings ================"
1365
1366 test_27e() {
1367         test_mkdir -p $DIR/d27
1368         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1369         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1370         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1371 }
1372 run_test 27e "setstripe existing file (should return error) ======"
1373
1374 test_27f() {
1375         test_mkdir -p $DIR/d27
1376         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1377         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1378         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1379 }
1380 run_test 27f "setstripe with bad stripe size (should return error)"
1381
1382 test_27g() {
1383         test_mkdir -p $DIR/d27
1384         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1385         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1386                 error "$DIR/d27/fnone has object"
1387 }
1388 run_test 27g "$GETSTRIPE with no objects"
1389
1390 test_27i() {
1391         touch $DIR/d27/fsome || error "touch failed"
1392         [[ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ]] || error "missing objects"
1393 }
1394 run_test 27i "$GETSTRIPE with some objects"
1395
1396 test_27j() {
1397         test_mkdir -p $DIR/d27
1398         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1399 }
1400 run_test 27j "setstripe with bad stripe offset (should return error)"
1401
1402 test_27k() { # bug 2844
1403         test_mkdir -p $DIR/d27
1404         FILE=$DIR/d27/f27k
1405         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1406         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1407         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1408         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1409         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1410         dd if=/dev/zero of=$FILE bs=4k count=1
1411         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1412         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1413 }
1414 run_test 27k "limit i_blksize for broken user apps ============="
1415
1416 test_27l() {
1417         test_mkdir -p $DIR/d27
1418         mcreate $DIR/f27l || error "creating file"
1419         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1420                 error "setstripe should have failed" || true
1421 }
1422 run_test 27l "check setstripe permissions (should return error)"
1423
1424 test_27m() {
1425         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1426                 return
1427         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1428                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1429                 return
1430         fi
1431         trap simple_cleanup_common EXIT
1432         test_mkdir -p $DIR/$tdir
1433         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1434         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1435                 error "dd should fill OST0"
1436         i=2
1437         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1438                 i=$((i + 1))
1439                 [ $i -gt 256 ] && break
1440         done
1441         i=$((i + 1))
1442         touch $DIR/$tdir/f27m_$i
1443         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1444                 error "OST0 was full but new created file still use it"
1445         i=$((i + 1))
1446         touch $DIR/$tdir/f27m_$i
1447         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1448                 error "OST0 was full but new created file still use it"
1449         simple_cleanup_common
1450 }
1451 run_test 27m "create file while OST0 was full =================="
1452
1453 sleep_maxage() {
1454         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1455         sleep $DELAY
1456 }
1457
1458 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1459 # if the OST isn't full anymore.
1460 reset_enospc() {
1461         local OSTIDX=${1:-""}
1462
1463         local list=$(comma_list $(osts_nodes))
1464         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1465
1466         do_nodes $list lctl set_param fail_loc=0
1467         sync    # initiate all OST_DESTROYs from MDS to OST
1468         sleep_maxage
1469 }
1470
1471 exhaust_precreations() {
1472         local OSTIDX=$1
1473         local FAILLOC=$2
1474         local FAILIDX=${3:-$OSTIDX}
1475
1476         test_mkdir -p $DIR/$tdir
1477         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1478         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1479
1480         local OST=$(ostname_from_index $OSTIDX)
1481         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1482                           sed -e 's/_UUID$//;s/^.*-//')
1483
1484         # on the mdt's osc
1485         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1486         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1487                         osc.$mdtosc_proc1.prealloc_last_id)
1488         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1489                         osc.$mdtosc_proc1.prealloc_next_id)
1490
1491         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1492         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1493
1494         test_mkdir -p $DIR/$tdir/${OST}
1495         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1496 #define OBD_FAIL_OST_ENOSPC              0x215
1497         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1498         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1499         echo "Creating to objid $last_id on ost $OST..."
1500         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1501         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1502         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1503         sleep_maxage
1504 }
1505
1506 exhaust_all_precreations() {
1507         local i
1508         for (( i=0; i < OSTCOUNT; i++ )) ; do
1509                 exhaust_precreations $i $1 -1
1510         done
1511 }
1512
1513 test_27n() {
1514         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1516         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1517         remote_ost_nodsh && skip "remote OST with nodsh" && return
1518
1519         reset_enospc
1520         rm -f $DIR/$tdir/$tfile
1521         exhaust_precreations 0 0x80000215
1522         $SETSTRIPE -c -1 $DIR/$tdir
1523         touch $DIR/$tdir/$tfile || error
1524         $GETSTRIPE $DIR/$tdir/$tfile
1525         reset_enospc
1526 }
1527 run_test 27n "create file with some full OSTs =================="
1528
1529 test_27o() {
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         reset_enospc
1536         rm -f $DIR/$tdir/$tfile
1537         exhaust_all_precreations 0x215
1538
1539         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1540
1541         reset_enospc
1542         rm -rf $DIR/$tdir/*
1543 }
1544 run_test 27o "create file with all full OSTs (should error) ===="
1545
1546 test_27p() {
1547         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1549         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1550         remote_ost_nodsh && skip "remote OST with nodsh" && return
1551
1552         reset_enospc
1553         rm -f $DIR/$tdir/$tfile
1554         test_mkdir -p $DIR/$tdir
1555
1556         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1557         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1558         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1559
1560         exhaust_precreations 0 0x80000215
1561         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1562         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1563         $GETSTRIPE $DIR/$tdir/$tfile
1564
1565         reset_enospc
1566 }
1567 run_test 27p "append to a truncated file with some full OSTs ==="
1568
1569 test_27q() {
1570         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1572         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1573         remote_ost_nodsh && skip "remote OST with nodsh" && return
1574
1575         reset_enospc
1576         rm -f $DIR/$tdir/$tfile
1577
1578         test_mkdir -p $DIR/$tdir
1579         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1580         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1581         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1582
1583         exhaust_all_precreations 0x215
1584
1585         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1586         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1587
1588         reset_enospc
1589 }
1590 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1591
1592 test_27r() {
1593         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1595         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1596         remote_ost_nodsh && skip "remote OST with nodsh" && return
1597
1598         reset_enospc
1599         rm -f $DIR/$tdir/$tfile
1600         exhaust_precreations 0 0x80000215
1601
1602         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1603
1604         reset_enospc
1605 }
1606 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1607
1608 test_27s() { # bug 10725
1609         test_mkdir -p $DIR/$tdir
1610         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1611         local stripe_count=0
1612         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1613         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1614                 error "stripe width >= 2^32 succeeded" || true
1615
1616 }
1617 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1618
1619 test_27t() { # bug 10864
1620         WDIR=$(pwd)
1621         WLFS=$(which lfs)
1622         cd $DIR
1623         touch $tfile
1624         $WLFS getstripe $tfile
1625         cd $WDIR
1626 }
1627 run_test 27t "check that utils parse path correctly"
1628
1629 test_27u() { # bug 4900
1630         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1632         local index
1633         local list=$(comma_list $(mdts_nodes))
1634
1635 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1636         do_nodes $list $LCTL set_param fail_loc=0x139
1637         test_mkdir -p $DIR/$tdir
1638         rm -rf $DIR/$tdir/*
1639         createmany -o $DIR/$tdir/t- 1000
1640         do_nodes $list $LCTL set_param fail_loc=0
1641
1642         TLOG=$DIR/$tfile.getstripe
1643         $GETSTRIPE $DIR/$tdir > $TLOG
1644         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1645         unlinkmany $DIR/$tdir/t- 1000
1646         [[ $OBJS -gt 0 ]] &&
1647                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1648 }
1649 run_test 27u "skip object creation on OSC w/o objects =========="
1650
1651 test_27v() { # bug 4900
1652         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1654         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1655         remote_ost_nodsh && skip "remote OST with nodsh" && return
1656
1657         exhaust_all_precreations 0x215
1658         reset_enospc
1659
1660         test_mkdir -p $DIR/$tdir
1661         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1662
1663         touch $DIR/$tdir/$tfile
1664         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1665         # all except ost1
1666         for (( i=1; i < OSTCOUNT; i++ )); do
1667                 do_facet ost$i lctl set_param fail_loc=0x705
1668         done
1669         local START=`date +%s`
1670         createmany -o $DIR/$tdir/$tfile 32
1671
1672         local FINISH=`date +%s`
1673         local TIMEOUT=`lctl get_param -n timeout`
1674         local PROCESS=$((FINISH - START))
1675         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1676                error "$FINISH - $START >= $TIMEOUT / 2"
1677         sleep $((TIMEOUT / 2 - PROCESS))
1678         reset_enospc
1679 }
1680 run_test 27v "skip object creation on slow OST ================="
1681
1682 test_27w() { # bug 10997
1683         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1684         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1685         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1686                 error "stripe size $size != 65536" || true
1687         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1688                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1689 }
1690 run_test 27w "check $SETSTRIPE -S option"
1691
1692 test_27wa() {
1693         [[ $OSTCOUNT -lt 2 ]] &&
1694                 skip_env "skipping multiple stripe count/offset test" && return
1695
1696         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1697         for i in $(seq 1 $OSTCOUNT); do
1698                 offset=$((i - 1))
1699                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1700                         error "setstripe -c $i -i $offset failed"
1701                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1702                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1703                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1704                 [ $index -ne $offset ] &&
1705                         error "stripe offset $index != $offset" || true
1706         done
1707 }
1708 run_test 27wa "check $SETSTRIPE -c -i options"
1709
1710 test_27x() {
1711         remote_ost_nodsh && skip "remote OST with nodsh" && return
1712         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1714         OFFSET=$(($OSTCOUNT - 1))
1715         OSTIDX=0
1716         local OST=$(ostname_from_index $OSTIDX)
1717
1718         test_mkdir -p $DIR/$tdir
1719         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1720         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1721         sleep_maxage
1722         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1723         for i in `seq 0 $OFFSET`; do
1724                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1725                 error "OST0 was degraded but new created file still use it"
1726         done
1727         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1728 }
1729 run_test 27x "create files while OST0 is degraded"
1730
1731 test_27y() {
1732         [[ $OSTCOUNT -lt 2 ]] &&
1733                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1734         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1735         remote_ost_nodsh && skip "remote OST with nodsh" && return
1736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1737
1738         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1739         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1740             osc.$mdtosc.prealloc_last_id)
1741         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1742             osc.$mdtosc.prealloc_next_id)
1743         local fcount=$((last_id - next_id))
1744         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1745         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1746
1747         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1748                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1749         local OST_DEACTIVE_IDX=-1
1750         local OSC
1751         local OSTIDX
1752         local OST
1753
1754         for OSC in $MDS_OSCS; do
1755                 OST=$(osc_to_ost $OSC)
1756                 OSTIDX=$(index_from_ostuuid $OST)
1757                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1758                         OST_DEACTIVE_IDX=$OSTIDX
1759                 fi
1760                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1761                         echo $OSC "is Deactivated:"
1762                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1763                 fi
1764         done
1765
1766         OSTIDX=$(index_from_ostuuid $OST)
1767         mkdir -p $DIR/$tdir
1768         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1769
1770         for OSC in $MDS_OSCS; do
1771                 OST=$(osc_to_ost $OSC)
1772                 OSTIDX=$(index_from_ostuuid $OST)
1773                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1774                         echo $OST "is degraded:"
1775                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1776                                                 obdfilter.$OST.degraded=1
1777                 fi
1778         done
1779
1780         sleep_maxage
1781         createmany -o $DIR/$tdir/$tfile $fcount
1782
1783         for OSC in $MDS_OSCS; do
1784                 OST=$(osc_to_ost $OSC)
1785                 OSTIDX=$(index_from_ostuuid $OST)
1786                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1787                         echo $OST "is recovered from degraded:"
1788                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1789                                                 obdfilter.$OST.degraded=0
1790                 else
1791                         do_facet $SINGLEMDS lctl --device %$OSC activate
1792                 fi
1793         done
1794
1795         # all osp devices get activated, hence -1 stripe count restored
1796         local stripecnt=0
1797
1798         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1799         # devices get activated.
1800         sleep_maxage
1801         $SETSTRIPE -c -1 $DIR/$tfile
1802         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1803         rm -f $DIR/$tfile
1804         [ $stripecnt -ne $OSTCOUNT ] &&
1805                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1806         return 0
1807 }
1808 run_test 27y "create files while OST0 is degraded and the rest inactive"
1809
1810 check_seq_oid()
1811 {
1812         log "check file $1"
1813
1814         lmm_count=$($GETSTRIPE -c $1)
1815         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1816         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1817
1818         local old_ifs="$IFS"
1819         IFS=$'[:]'
1820         fid=($($LFS path2fid $1))
1821         IFS="$old_ifs"
1822
1823         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1824         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1825
1826         # compare lmm_seq and lu_fid->f_seq
1827         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1828         # compare lmm_object_id and lu_fid->oid
1829         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1830
1831         # check the trusted.fid attribute of the OST objects of the file
1832         local have_obdidx=false
1833         local stripe_nr=0
1834         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1835                 # skip lines up to and including "obdidx"
1836                 [ -z "$obdidx" ] && break
1837                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1838                 $have_obdidx || continue
1839
1840                 local ost=$((obdidx + 1))
1841                 local dev=$(ostdevname $ost)
1842                 local oid_hex
1843
1844                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1845
1846                 seq=$(echo $seq | sed -e "s/^0x//g")
1847                 if [ $seq == 0 ]; then
1848                         oid_hex=$(echo $oid)
1849                 else
1850                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1851                 fi
1852                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1853
1854                 local ff
1855                 #
1856                 # Don't unmount/remount the OSTs if we don't need to do that.
1857                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1858                 # update too, until that use mount/ll_decode_filter_fid/mount.
1859                 # Re-enable when debugfs will understand new filter_fid.
1860                 #
1861                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1862                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1863                                 $dev 2>/dev/null" | grep "parent=")
1864                 else
1865                         stop ost$ost
1866                         mount_fstype ost$ost
1867                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1868                                 $(facet_mntpt ost$ost)/$obj_file)
1869                         unmount_fstype ost$ost
1870                         start ost$ost $dev $OST_MOUNT_OPTS
1871                 fi
1872
1873                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1874
1875                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1876
1877                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1878                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1879                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1880                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1881                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1882                 local ff_pstripe
1883                 if echo $ff_parent | grep -q 'stripe='; then
1884                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1885                 else
1886                         #
1887                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1888                         # into f_ver in this case.  See the comment on
1889                         # ff_parent.
1890                         #
1891                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1892                                 sed -e 's/\]//')
1893                 fi
1894
1895                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1896                 [ $ff_pseq = $lmm_seq ] ||
1897                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1898                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1899                 [ $ff_poid = $lmm_oid ] ||
1900                         error "FF parent OID $ff_poid != $lmm_oid"
1901                 (($ff_pstripe == $stripe_nr)) ||
1902                         error "FF stripe $ff_pstripe != $stripe_nr"
1903
1904                 stripe_nr=$((stripe_nr + 1))
1905         done
1906 }
1907
1908 test_27z() {
1909         remote_ost_nodsh && skip "remote OST with nodsh" && return
1910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1911         test_mkdir -p $DIR/$tdir
1912
1913         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1914                 { error "setstripe -c -1 failed"; return 1; }
1915         # We need to send a write to every object to get parent FID info set.
1916         # This _should_ also work for setattr, but does not currently.
1917         # touch $DIR/$tdir/$tfile-1 ||
1918         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1919                 { error "dd $tfile-1 failed"; return 2; }
1920         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1921                 { error "setstripe -c -1 failed"; return 3; }
1922         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1923                 { error "dd $tfile-2 failed"; return 4; }
1924
1925         # make sure write RPCs have been sent to OSTs
1926         sync; sleep 5; sync
1927
1928         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1929         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1930 }
1931 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1932
1933 test_27A() { # b=19102
1934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1935         local restore_size=$($GETSTRIPE -S $MOUNT)
1936         local restore_count=$($GETSTRIPE -c $MOUNT)
1937         local restore_offset=$($GETSTRIPE -i $MOUNT)
1938         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1939         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1940                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1941         local default_size=$($GETSTRIPE -S $MOUNT)
1942         local default_offset=$($GETSTRIPE -i $MOUNT)
1943         local dsize=$((1024 * 1024))
1944         [ $default_size -eq $dsize ] ||
1945                 error "stripe size $default_size != $dsize"
1946         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1947         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1948 }
1949 run_test 27A "check filesystem-wide default LOV EA values"
1950
1951 test_27B() { # LU-2523
1952         test_mkdir -p $DIR/$tdir
1953         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1954         touch $DIR/$tdir/f0
1955         # open f1 with O_LOV_DELAY_CREATE
1956         # rename f0 onto f1
1957         # call setstripe ioctl on open file descriptor for f1
1958         # close
1959         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1960                 $DIR/$tdir/f0
1961
1962         rm -f $DIR/$tdir/f1
1963         # open f1 with O_LOV_DELAY_CREATE
1964         # unlink f1
1965         # call setstripe ioctl on open file descriptor for f1
1966         # close
1967         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1968
1969         # Allow multiop to fail in imitation of NFS's busted semantics.
1970         true
1971 }
1972 run_test 27B "call setstripe on open unlinked file/rename victim"
1973
1974 test_27C() { #LU-2871
1975         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1976
1977         declare -a ost_idx
1978         local index
1979         local found
1980         local i
1981         local j
1982
1983         test_mkdir -p $DIR/$tdir
1984         cd $DIR/$tdir
1985         for i in $(seq 0 $((OSTCOUNT - 1))); do
1986                 # set stripe across all OSTs starting from OST$i
1987                 $SETSTRIPE -i $i -c -1 $tfile$i
1988                 # get striping information
1989                 ost_idx=($($GETSTRIPE $tfile$i |
1990                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1991                 echo ${ost_idx[@]}
1992
1993                 # check the layout
1994                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1995                         error "${#ost_idx[@]} != $OSTCOUNT"
1996
1997                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1998                         found=0
1999                         for j in $(echo ${ost_idx[@]}); do
2000                                 if [ $index -eq $j ]; then
2001                                         found=1
2002                                         break
2003                                 fi
2004                         done
2005                         [ $found = 1 ] ||
2006                                 error "Can not find $index in ${ost_idx[@]}"
2007                 done
2008         done
2009 }
2010 run_test 27C "check full striping across all OSTs"
2011
2012 # createtest also checks that device nodes are created and
2013 # then visible correctly (#2091)
2014 test_28() { # bug 2091
2015         test_mkdir $DIR/d28
2016         $CREATETEST $DIR/d28/ct || error
2017 }
2018 run_test 28 "create/mknod/mkdir with bad file types ============"
2019
2020 test_29() {
2021         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2022         cancel_lru_locks mdc
2023         test_mkdir $DIR/d29
2024         touch $DIR/d29/foo
2025         log 'first d29'
2026         ls -l $DIR/d29
2027
2028         declare -i LOCKCOUNTORIG=0
2029         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2030                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2031         done
2032         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
2033
2034         declare -i LOCKUNUSEDCOUNTORIG=0
2035         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2036                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2037         done
2038
2039         log 'second d29'
2040         ls -l $DIR/d29
2041         log 'done'
2042
2043         declare -i LOCKCOUNTCURRENT=0
2044         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2045                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2046         done
2047
2048         declare -i LOCKUNUSEDCOUNTCURRENT=0
2049         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2050                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2051         done
2052
2053         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2054                 $LCTL set_param -n ldlm.dump_namespaces ""
2055                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2056                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2057                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2058                 return 2
2059         fi
2060         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2061                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2062                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2063                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2064                 return 3
2065         fi
2066 }
2067 run_test 29 "IT_GETATTR regression  ============================"
2068
2069 test_30a() { # was test_30
2070         cp $(which ls) $DIR || cp /bin/ls $DIR
2071         $DIR/ls / || error
2072         rm $DIR/ls
2073 }
2074 run_test 30a "execute binary from Lustre (execve) =============="
2075
2076 test_30b() {
2077         cp `which ls` $DIR || cp /bin/ls $DIR
2078         chmod go+rx $DIR/ls
2079         $RUNAS $DIR/ls / || error
2080         rm $DIR/ls
2081 }
2082 run_test 30b "execute binary from Lustre as non-root ==========="
2083
2084 test_30c() { # b=22376
2085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2086         cp `which ls` $DIR || cp /bin/ls $DIR
2087         chmod a-rw $DIR/ls
2088         cancel_lru_locks mdc
2089         cancel_lru_locks osc
2090         $RUNAS $DIR/ls / || error
2091         rm -f $DIR/ls
2092 }
2093 run_test 30c "execute binary from Lustre without read perms ===="
2094
2095 test_31a() {
2096         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2097         $CHECKSTAT -a $DIR/f31 || error
2098 }
2099 run_test 31a "open-unlink file =================================="
2100
2101 test_31b() {
2102         touch $DIR/f31 || error
2103         ln $DIR/f31 $DIR/f31b || error
2104         $MULTIOP $DIR/f31b Ouc || error
2105         $CHECKSTAT -t file $DIR/f31 || error
2106 }
2107 run_test 31b "unlink file with multiple links while open ======="
2108
2109 test_31c() {
2110         touch $DIR/f31 || error
2111         ln $DIR/f31 $DIR/f31c || error
2112         multiop_bg_pause $DIR/f31 O_uc || return 1
2113         MULTIPID=$!
2114         $MULTIOP $DIR/f31c Ouc
2115         kill -USR1 $MULTIPID
2116         wait $MULTIPID
2117 }
2118 run_test 31c "open-unlink file with multiple links ============="
2119
2120 test_31d() {
2121         opendirunlink $DIR/d31d $DIR/d31d || error
2122         $CHECKSTAT -a $DIR/d31d || error
2123 }
2124 run_test 31d "remove of open directory ========================="
2125
2126 test_31e() { # bug 2904
2127         check_kernel_version 34 || return 0
2128         openfilleddirunlink $DIR/d31e || error
2129 }
2130 run_test 31e "remove of open non-empty directory ==============="
2131
2132 test_31f() { # bug 4554
2133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2134         set -vx
2135         test_mkdir $DIR/d31f
2136         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2137         cp /etc/hosts $DIR/d31f
2138         ls -l $DIR/d31f
2139         $GETSTRIPE $DIR/d31f/hosts
2140         multiop_bg_pause $DIR/d31f D_c || return 1
2141         MULTIPID=$!
2142
2143         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2144         test_mkdir $DIR/d31f
2145         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2146         cp /etc/hosts $DIR/d31f
2147         ls -l $DIR/d31f
2148         $GETSTRIPE $DIR/d31f/hosts
2149         multiop_bg_pause $DIR/d31f D_c || return 1
2150         MULTIPID2=$!
2151
2152         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2153         wait $MULTIPID || error "first opendir $MULTIPID failed"
2154
2155         sleep 6
2156
2157         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2158         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2159         set +vx
2160 }
2161 run_test 31f "remove of open directory with open-unlink file ==="
2162
2163 test_31g() {
2164         echo "-- cross directory link --"
2165         test_mkdir -c1 $DIR/${tdir}ga
2166         test_mkdir -c1 $DIR/${tdir}gb
2167         touch $DIR/${tdir}ga/f
2168         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2169         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2170         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2171         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2172         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2173 }
2174 run_test 31g "cross directory link==============="
2175
2176 test_31h() {
2177         echo "-- cross directory link --"
2178         test_mkdir -c1 $DIR/${tdir}
2179         test_mkdir -c1 $DIR/${tdir}/dir
2180         touch $DIR/${tdir}/f
2181         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2182         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2183         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2184         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2185         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2186 }
2187 run_test 31h "cross directory link under child==============="
2188
2189 test_31i() {
2190         echo "-- cross directory link --"
2191         test_mkdir -c1 $DIR/$tdir
2192         test_mkdir -c1 $DIR/$tdir/dir
2193         touch $DIR/$tdir/dir/f
2194         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2195         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2196         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2197         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2198         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2199 }
2200 run_test 31i "cross directory link under parent==============="
2201
2202 test_31j() {
2203         test_mkdir -c1 -p $DIR/$tdir
2204         test_mkdir -c1 -p $DIR/$tdir/dir1
2205         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2206         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2207         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2208         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2209         return 0
2210 }
2211 run_test 31j "link for directory==============="
2212
2213 test_31k() {
2214         test_mkdir -c1 -p $DIR/$tdir
2215         touch $DIR/$tdir/s
2216         touch $DIR/$tdir/exist
2217         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2218         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2219         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2220         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2221         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2222         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2223         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2224         return 0
2225 }
2226 run_test 31k "link to file: the same, non-existing, dir==============="
2227
2228 test_31m() {
2229         mkdir $DIR/d31m
2230         touch $DIR/d31m/s
2231         mkdir $DIR/d31m2
2232         touch $DIR/d31m2/exist
2233         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2234         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2235         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2236         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2237         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2238         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2239         return 0
2240 }
2241 run_test 31m "link to file: the same, non-existing, dir==============="
2242
2243 test_31n() {
2244         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2245         nlink=$(stat --format=%h $DIR/$tfile)
2246         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2247         local fd=$(free_fd)
2248         local cmd="exec $fd<$DIR/$tfile"
2249         eval $cmd
2250         cmd="exec $fd<&-"
2251         trap "eval $cmd" EXIT
2252         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2253         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2254         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2255         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2256         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2257         eval $cmd
2258 }
2259 run_test 31n "check link count of unlinked file"
2260
2261 link_one() {
2262         local TEMPNAME=$(mktemp $1_XXXXXX)
2263         mlink $TEMPNAME $1 2> /dev/null &&
2264                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2265         munlink $TEMPNAME
2266 }
2267
2268 test_31o() { # LU-2901
2269         mkdir -p $DIR/$tdir
2270         for LOOP in $(seq 100); do
2271                 rm -f $DIR/$tdir/$tfile*
2272                 for THREAD in $(seq 8); do
2273                         link_one $DIR/$tdir/$tfile.$LOOP &
2274                 done
2275                 wait
2276                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2277                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2278                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2279                         break || true
2280         done
2281 }
2282 run_test 31o "duplicate hard links with same filename"
2283
2284 test_31p() {
2285         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2286
2287         mkdir $DIR/$tdir
2288         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2289         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2290
2291         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2292                 error "open unlink test1 failed"
2293         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2294                 error "open unlink test2 failed"
2295
2296         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2297                 error "test1 still exists"
2298         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2299                 error "test2 still exists"
2300 }
2301 run_test 31p "remove of open striped directory"
2302
2303 cleanup_test32_mount() {
2304         trap 0
2305         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2306 }
2307
2308 test_32a() {
2309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2310         echo "== more mountpoints and symlinks ================="
2311         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2312         trap cleanup_test32_mount EXIT
2313         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2314         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2315         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2316         cleanup_test32_mount
2317 }
2318 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2319
2320 test_32b() {
2321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2322         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2323         trap cleanup_test32_mount EXIT
2324         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2325         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2326         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2327         cleanup_test32_mount
2328 }
2329 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2330
2331 test_32c() {
2332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2333         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2334         trap cleanup_test32_mount EXIT
2335         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2336         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2337         test_mkdir -p $DIR/$tdir/d2/test_dir
2338         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2339         cleanup_test32_mount
2340 }
2341 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2342
2343 test_32d() {
2344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2345         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2346         trap cleanup_test32_mount EXIT
2347         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2348         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2349         test_mkdir -p $DIR/$tdir/d2/test_dir
2350         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2351         cleanup_test32_mount
2352 }
2353 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2354
2355 test_32e() {
2356         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2357         test_mkdir -p $DIR/d32e/tmp
2358         TMP_DIR=$DIR/d32e/tmp
2359         ln -s $DIR/d32e $TMP_DIR/symlink11
2360         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2361         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2362         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2363 }
2364 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2365
2366 test_32f() {
2367         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2368         test_mkdir -p $DIR/d32f/tmp
2369         TMP_DIR=$DIR/d32f/tmp
2370         ln -s $DIR/d32f $TMP_DIR/symlink11
2371         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2372         ls $DIR/d32f/tmp/symlink11  || error
2373         ls $DIR/d32f/symlink01 || error
2374 }
2375 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2376
2377 test_32g() {
2378         TMP_DIR=$DIR/$tdir/tmp
2379         test_mkdir -p $DIR/$tdir/tmp
2380         test_mkdir $DIR/${tdir}2
2381         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2382         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2383         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2384         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2385         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2386         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2387 }
2388 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2389
2390 test_32h() {
2391         rm -fr $DIR/$tdir $DIR/${tdir}2
2392         TMP_DIR=$DIR/$tdir/tmp
2393         test_mkdir -p $DIR/$tdir/tmp
2394         test_mkdir $DIR/${tdir}2
2395         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2396         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2397         ls $TMP_DIR/symlink12 || error
2398         ls $DIR/$tdir/symlink02  || error
2399 }
2400 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2401
2402 test_32i() {
2403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2404         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2405         trap cleanup_test32_mount EXIT
2406         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2407         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2408         touch $DIR/$tdir/test_file
2409         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2410         cleanup_test32_mount
2411 }
2412 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2413
2414 test_32j() {
2415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2416         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2417         trap cleanup_test32_mount EXIT
2418         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2419         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2420         touch $DIR/$tdir/test_file
2421         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2422         cleanup_test32_mount
2423 }
2424 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2425
2426 test_32k() {
2427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2428         rm -fr $DIR/$tdir
2429         trap cleanup_test32_mount EXIT
2430         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2431         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2432         test_mkdir -p $DIR/$tdir/d2
2433         touch $DIR/$tdir/d2/test_file || error
2434         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2435         cleanup_test32_mount
2436 }
2437 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2438
2439 test_32l() {
2440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2441         rm -fr $DIR/$tdir
2442         trap cleanup_test32_mount EXIT
2443         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2444         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2445         test_mkdir -p $DIR/$tdir/d2
2446         touch $DIR/$tdir/d2/test_file
2447         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2448         cleanup_test32_mount
2449 }
2450 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2451
2452 test_32m() {
2453         rm -fr $DIR/d32m
2454         test_mkdir -p $DIR/d32m/tmp
2455         TMP_DIR=$DIR/d32m/tmp
2456         ln -s $DIR $TMP_DIR/symlink11
2457         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2458         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2459         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2460 }
2461 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2462
2463 test_32n() {
2464         rm -fr $DIR/d32n
2465         test_mkdir -p $DIR/d32n/tmp
2466         TMP_DIR=$DIR/d32n/tmp
2467         ln -s $DIR $TMP_DIR/symlink11
2468         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2469         ls -l $DIR/d32n/tmp/symlink11  || error
2470         ls -l $DIR/d32n/symlink01 || error
2471 }
2472 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2473
2474 test_32o() {
2475         touch $DIR/$tfile
2476         test_mkdir -p $DIR/d32o/tmp
2477         TMP_DIR=$DIR/d32o/tmp
2478         ln -s $DIR/$tfile $TMP_DIR/symlink12
2479         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2480         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2481         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2482         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2483         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2484 }
2485 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2486
2487 test_32p() {
2488     log 32p_1
2489         rm -fr $DIR/d32p
2490     log 32p_2
2491         rm -f $DIR/$tfile
2492     log 32p_3
2493         touch $DIR/$tfile
2494     log 32p_4
2495         test_mkdir -p $DIR/d32p/tmp
2496     log 32p_5
2497         TMP_DIR=$DIR/d32p/tmp
2498     log 32p_6
2499         ln -s $DIR/$tfile $TMP_DIR/symlink12
2500     log 32p_7
2501         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2502     log 32p_8
2503         cat $DIR/d32p/tmp/symlink12 || error
2504     log 32p_9
2505         cat $DIR/d32p/symlink02 || error
2506     log 32p_10
2507 }
2508 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2509
2510 cleanup_testdir_mount() {
2511         trap 0
2512         $UMOUNT -d $DIR/$tdir
2513 }
2514
2515 test_32q() {
2516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2517         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2518         trap cleanup_testdir_mount EXIT
2519         test_mkdir -p $DIR/$tdir
2520         touch $DIR/$tdir/under_the_mount
2521         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2522         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2523         cleanup_testdir_mount
2524 }
2525 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2526
2527 test_32r() {
2528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2529         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2530         trap cleanup_testdir_mount EXIT
2531         test_mkdir -p $DIR/$tdir
2532         touch $DIR/$tdir/under_the_mount
2533         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2534         ls $DIR/$tdir | grep -q under_the_mount && error || true
2535         cleanup_testdir_mount
2536 }
2537 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2538
2539 test_33aa() {
2540         rm -f $DIR/$tfile
2541         touch $DIR/$tfile
2542         chmod 444 $DIR/$tfile
2543         chown $RUNAS_ID $DIR/$tfile
2544         log 33_1
2545         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2546         log 33_2
2547 }
2548 run_test 33aa "write file with mode 444 (should return error) ===="
2549
2550 test_33a() {
2551         rm -fr $DIR/d33
2552         test_mkdir -p $DIR/d33
2553         chown $RUNAS_ID $DIR/d33
2554         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2555         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2556                 error "open RDWR" || true
2557 }
2558 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2559
2560 test_33b() {
2561         rm -fr $DIR/d33
2562         test_mkdir -p $DIR/d33
2563         chown $RUNAS_ID $DIR/d33
2564         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2565 }
2566 run_test 33b "test open file with malformed flags (No panic and return error)"
2567
2568 test_33c() {
2569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2570         local ostnum
2571         local ostname
2572         local write_bytes
2573         local all_zeros
2574
2575         remote_ost_nodsh && skip "remote OST with nodsh" && return
2576         all_zeros=:
2577         rm -fr $DIR/d33
2578         test_mkdir -p $DIR/d33
2579         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2580
2581         sync
2582         for ostnum in $(seq $OSTCOUNT); do
2583                 # test-framework's OST numbering is one-based, while Lustre's
2584                 # is zero-based
2585                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2586                 # Parsing llobdstat's output sucks; we could grep the /proc
2587                 # path, but that's likely to not be as portable as using the
2588                 # llobdstat utility.  So we parse lctl output instead.
2589                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2590                         obdfilter/$ostname/stats |
2591                         awk '/^write_bytes/ {print $7}' )
2592                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2593                 if (( ${write_bytes:-0} > 0 ))
2594                 then
2595                         all_zeros=false
2596                         break;
2597                 fi
2598         done
2599
2600         $all_zeros || return 0
2601
2602         # Write four bytes
2603         echo foo > $DIR/d33/bar
2604         # Really write them
2605         sync
2606
2607         # Total up write_bytes after writing.  We'd better find non-zeros.
2608         for ostnum in $(seq $OSTCOUNT); do
2609                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2610                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2611                         obdfilter/$ostname/stats |
2612                         awk '/^write_bytes/ {print $7}' )
2613                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2614                 if (( ${write_bytes:-0} > 0 ))
2615                 then
2616                         all_zeros=false
2617                         break;
2618                 fi
2619         done
2620
2621         if $all_zeros
2622         then
2623                 for ostnum in $(seq $OSTCOUNT); do
2624                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2625                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2626                         do_facet ost$ostnum lctl get_param -n \
2627                                 obdfilter/$ostname/stats
2628                 done
2629                 error "OST not keeping write_bytes stats (b22312)"
2630         fi
2631 }
2632 run_test 33c "test llobdstat and write_bytes"
2633
2634 test_33d() {
2635         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2637         local MDTIDX=1
2638         local remote_dir=$DIR/$tdir/remote_dir
2639
2640         mkdir -p $DIR/$tdir
2641         $LFS mkdir -i $MDTIDX $remote_dir ||
2642                 error "create remote directory failed"
2643
2644         touch $remote_dir/$tfile
2645         chmod 444 $remote_dir/$tfile
2646         chown $RUNAS_ID $remote_dir/$tfile
2647
2648         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2649
2650         chown $RUNAS_ID $remote_dir
2651         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2652                                         error "create" || true
2653         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2654                                     error "open RDWR" || true
2655         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2656                                     error "create" || true
2657 }
2658 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2659
2660 test_33e() {
2661         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2662
2663         mkdir $DIR/$tdir
2664
2665         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2666         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2667         mkdir $DIR/$tdir/local_dir
2668
2669         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2670         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2671         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2672
2673         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2674                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2675
2676         rmdir $DIR/$tdir/* || error "rmdir failed"
2677
2678         umask 777
2679         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2680         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2681         mkdir $DIR/$tdir/local_dir
2682
2683         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2684         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2685         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2686
2687         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2688                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2689
2690         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2691
2692         umask 000
2693         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2694         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2695         mkdir $DIR/$tdir/local_dir
2696
2697         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2698         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2699         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2700
2701         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2702                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2703 }
2704 run_test 33e "mkdir and striped directory should have same mode"
2705
2706 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2707 test_34a() {
2708         rm -f $DIR/f34
2709         $MCREATE $DIR/f34 || error
2710         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2711         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2712         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2713         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2714 }
2715 run_test 34a "truncate file that has not been opened ==========="
2716
2717 test_34b() {
2718         [ ! -f $DIR/f34 ] && test_34a
2719         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2720         $OPENFILE -f O_RDONLY $DIR/f34
2721         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2722         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2723 }
2724 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2725
2726 test_34c() {
2727         [ ! -f $DIR/f34 ] && test_34a
2728         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2729         $OPENFILE -f O_RDWR $DIR/f34
2730         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2731         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2732 }
2733 run_test 34c "O_RDWR opening file-with-size works =============="
2734
2735 test_34d() {
2736         [ ! -f $DIR/f34 ] && test_34a
2737         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2738         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2739         rm $DIR/f34
2740 }
2741 run_test 34d "write to sparse file ============================="
2742
2743 test_34e() {
2744         rm -f $DIR/f34e
2745         $MCREATE $DIR/f34e || error
2746         $TRUNCATE $DIR/f34e 1000 || error
2747         $CHECKSTAT -s 1000 $DIR/f34e || error
2748         $OPENFILE -f O_RDWR $DIR/f34e
2749         $CHECKSTAT -s 1000 $DIR/f34e || error
2750 }
2751 run_test 34e "create objects, some with size and some without =="
2752
2753 test_34f() { # bug 6242, 6243
2754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2755         SIZE34F=48000
2756         rm -f $DIR/f34f
2757         $MCREATE $DIR/f34f || error
2758         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2759         dd if=$DIR/f34f of=$TMP/f34f
2760         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2761         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2762         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2763         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2764         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2765 }
2766 run_test 34f "read from a file with no objects until EOF ======="
2767
2768 test_34g() {
2769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2770         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2771         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2772         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2773         cancel_lru_locks osc
2774         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2775                 error "wrong size after lock cancel"
2776
2777         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2778         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2779                 error "expanding truncate failed"
2780         cancel_lru_locks osc
2781         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2782                 error "wrong expanded size after lock cancel"
2783 }
2784 run_test 34g "truncate long file ==============================="
2785
2786 test_34h() {
2787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2788         local gid=10
2789         local sz=1000
2790
2791         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2792         sync # Flush the cache so that multiop below does not block on cache
2793              # flush when getting the group lock
2794         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2795         MULTIPID=$!
2796
2797         # Since just timed wait is not good enough, let's do a sync write
2798         # that way we are sure enough time for a roundtrip + processing
2799         # passed + 2 seconds of extra margin.
2800         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2801         rm $DIR/${tfile}-1
2802         sleep 2
2803
2804         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2805                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2806                 kill -9 $MULTIPID
2807         fi
2808         wait $MULTIPID
2809         local nsz=`stat -c %s $DIR/$tfile`
2810         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2811 }
2812 run_test 34h "ftruncate file under grouplock should not block"
2813
2814 test_35a() {
2815         cp /bin/sh $DIR/f35a
2816         chmod 444 $DIR/f35a
2817         chown $RUNAS_ID $DIR/f35a
2818         $RUNAS $DIR/f35a && error || true
2819         rm $DIR/f35a
2820 }
2821 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2822
2823 test_36a() {
2824         rm -f $DIR/f36
2825         utime $DIR/f36 || error
2826 }
2827 run_test 36a "MDS utime check (mknod, utime) ==================="
2828
2829 test_36b() {
2830         echo "" > $DIR/f36
2831         utime $DIR/f36 || error
2832 }
2833 run_test 36b "OST utime check (open, utime) ===================="
2834
2835 test_36c() {
2836         rm -f $DIR/d36/f36
2837         test_mkdir $DIR/d36
2838         chown $RUNAS_ID $DIR/d36
2839         $RUNAS utime $DIR/d36/f36 || error
2840 }
2841 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2842
2843 test_36d() {
2844         [ ! -d $DIR/d36 ] && test_36c
2845         echo "" > $DIR/d36/f36
2846         $RUNAS utime $DIR/d36/f36 || error
2847 }
2848 run_test 36d "non-root OST utime check (open, utime) ==========="
2849
2850 test_36e() {
2851         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2852         test_mkdir -p $DIR/$tdir
2853         touch $DIR/$tdir/$tfile
2854         $RUNAS utime $DIR/$tdir/$tfile && \
2855                 error "utime worked, expected failure" || true
2856 }
2857 run_test 36e "utime on non-owned file (should return error) ===="
2858
2859 subr_36fh() {
2860         local fl="$1"
2861         local LANG_SAVE=$LANG
2862         local LC_LANG_SAVE=$LC_LANG
2863         export LANG=C LC_LANG=C # for date language
2864
2865         DATESTR="Dec 20  2000"
2866         test_mkdir -p $DIR/$tdir
2867         lctl set_param fail_loc=$fl
2868         date; date +%s
2869         cp /etc/hosts $DIR/$tdir/$tfile
2870         sync & # write RPC generated with "current" inode timestamp, but delayed
2871         sleep 1
2872         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2873         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2874         cancel_lru_locks osc
2875         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2876         date; date +%s
2877         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2878                 echo "BEFORE: $LS_BEFORE" && \
2879                 echo "AFTER : $LS_AFTER" && \
2880                 echo "WANT  : $DATESTR" && \
2881                 error "$DIR/$tdir/$tfile timestamps changed" || true
2882
2883         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2884 }
2885
2886 test_36f() {
2887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2888         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2889         subr_36fh "0x80000214"
2890 }
2891 run_test 36f "utime on file racing with OST BRW write =========="
2892
2893 test_36g() {
2894         remote_ost_nodsh && skip "remote OST with nodsh" && return
2895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2896         local fmd_max_age
2897         local fmd_before
2898         local fmd_after
2899
2900         test_mkdir -p $DIR/$tdir
2901         fmd_max_age=$(do_facet ost1 \
2902                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2903                 head -n 1")
2904
2905         fmd_before=$(do_facet ost1 \
2906                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2907         touch $DIR/$tdir/$tfile
2908         sleep $((fmd_max_age + 12))
2909         fmd_after=$(do_facet ost1 \
2910                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2911
2912         echo "fmd_before: $fmd_before"
2913         echo "fmd_after: $fmd_after"
2914         [[ $fmd_after -gt $fmd_before ]] &&
2915                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
2916                 error "fmd didn't expire after ping" || true
2917 }
2918 run_test 36g "filter mod data cache expiry ====================="
2919
2920 test_36h() {
2921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2922         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2923         subr_36fh "0x80000227"
2924 }
2925 run_test 36h "utime on file racing with OST BRW write =========="
2926
2927 test_36i() {
2928         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2929
2930         mkdir $DIR/$tdir
2931         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
2932
2933         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
2934         local new_mtime=$((mtime + 200))
2935
2936         #change Modify time of striped dir
2937         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
2938                         error "change mtime failed"
2939
2940         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
2941
2942         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
2943 }
2944 run_test 36i "change mtime on striped directory"
2945
2946 # test_37 - duplicate with tests 32q 32r
2947
2948 test_38() {
2949         local file=$DIR/$tfile
2950         touch $file
2951         openfile -f O_DIRECTORY $file
2952         local RC=$?
2953         local ENOTDIR=20
2954         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2955         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2956 }
2957 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2958
2959 test_39() {
2960         touch $DIR/$tfile
2961         touch $DIR/${tfile}2
2962 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2963 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2964 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2965         sleep 2
2966         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2967         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2968                 echo "mtime"
2969                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2970                 echo "atime"
2971                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2972                 echo "ctime"
2973                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2974                 error "O_TRUNC didn't change timestamps"
2975         fi
2976 }
2977 run_test 39 "mtime changed on create ==========================="
2978
2979 test_39b() {
2980         test_mkdir -p -c1 $DIR/$tdir
2981         cp -p /etc/passwd $DIR/$tdir/fopen
2982         cp -p /etc/passwd $DIR/$tdir/flink
2983         cp -p /etc/passwd $DIR/$tdir/funlink
2984         cp -p /etc/passwd $DIR/$tdir/frename
2985         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2986
2987         sleep 1
2988         echo "aaaaaa" >> $DIR/$tdir/fopen
2989         echo "aaaaaa" >> $DIR/$tdir/flink
2990         echo "aaaaaa" >> $DIR/$tdir/funlink
2991         echo "aaaaaa" >> $DIR/$tdir/frename
2992
2993         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2994         local link_new=`stat -c %Y $DIR/$tdir/flink`
2995         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2996         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2997
2998         cat $DIR/$tdir/fopen > /dev/null
2999         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3000         rm -f $DIR/$tdir/funlink2
3001         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3002
3003         for (( i=0; i < 2; i++ )) ; do
3004                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3005                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3006                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3007                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3008
3009                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3010                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3011                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3012                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3013
3014                 cancel_lru_locks osc
3015                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3016         done
3017 }
3018 run_test 39b "mtime change on open, link, unlink, rename  ======"
3019
3020 # this should be set to past
3021 TEST_39_MTIME=`date -d "1 year ago" +%s`
3022
3023 # bug 11063
3024 test_39c() {
3025         touch $DIR1/$tfile
3026         sleep 2
3027         local mtime0=`stat -c %Y $DIR1/$tfile`
3028
3029         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3030         local mtime1=`stat -c %Y $DIR1/$tfile`
3031         [ "$mtime1" = $TEST_39_MTIME ] || \
3032                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3033
3034         local d1=`date +%s`
3035         echo hello >> $DIR1/$tfile
3036         local d2=`date +%s`
3037         local mtime2=`stat -c %Y $DIR1/$tfile`
3038         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3039                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3040
3041         mv $DIR1/$tfile $DIR1/$tfile-1
3042
3043         for (( i=0; i < 2; i++ )) ; do
3044                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3045                 [ "$mtime2" = "$mtime3" ] || \
3046                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3047
3048                 cancel_lru_locks osc
3049                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3050         done
3051 }
3052 run_test 39c "mtime change on rename ==========================="
3053
3054 # bug 21114
3055 test_39d() {
3056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3057         touch $DIR1/$tfile
3058
3059         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3060
3061         for (( i=0; i < 2; i++ )) ; do
3062                 local mtime=`stat -c %Y $DIR1/$tfile`
3063                 [ $mtime = $TEST_39_MTIME ] || \
3064                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3065
3066                 cancel_lru_locks osc
3067                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3068         done
3069 }
3070 run_test 39d "create, utime, stat =============================="
3071
3072 # bug 21114
3073 test_39e() {
3074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3075         touch $DIR1/$tfile
3076         local mtime1=`stat -c %Y $DIR1/$tfile`
3077
3078         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3079
3080         for (( i=0; i < 2; i++ )) ; do
3081                 local mtime2=`stat -c %Y $DIR1/$tfile`
3082                 [ $mtime2 = $TEST_39_MTIME ] || \
3083                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3084
3085                 cancel_lru_locks osc
3086                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3087         done
3088 }
3089 run_test 39e "create, stat, utime, stat ========================"
3090
3091 # bug 21114
3092 test_39f() {
3093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3094         touch $DIR1/$tfile
3095         mtime1=`stat -c %Y $DIR1/$tfile`
3096
3097         sleep 2
3098         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3099
3100         for (( i=0; i < 2; i++ )) ; do
3101                 local mtime2=`stat -c %Y $DIR1/$tfile`
3102                 [ $mtime2 = $TEST_39_MTIME ] || \
3103                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3104
3105                 cancel_lru_locks osc
3106                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3107         done
3108 }
3109 run_test 39f "create, stat, sleep, utime, stat ================="
3110
3111 # bug 11063
3112 test_39g() {
3113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3114         echo hello >> $DIR1/$tfile
3115         local mtime1=`stat -c %Y $DIR1/$tfile`
3116
3117         sleep 2
3118         chmod o+r $DIR1/$tfile
3119
3120         for (( i=0; i < 2; i++ )) ; do
3121                 local mtime2=`stat -c %Y $DIR1/$tfile`
3122                 [ "$mtime1" = "$mtime2" ] || \
3123                         error "lost mtime: $mtime2, should be $mtime1"
3124
3125                 cancel_lru_locks osc
3126                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3127         done
3128 }
3129 run_test 39g "write, chmod, stat ==============================="
3130
3131 # bug 11063
3132 test_39h() {
3133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3134         touch $DIR1/$tfile
3135         sleep 1
3136
3137         local d1=`date`
3138         echo hello >> $DIR1/$tfile
3139         local mtime1=`stat -c %Y $DIR1/$tfile`
3140
3141         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3142         local d2=`date`
3143         if [ "$d1" != "$d2" ]; then
3144                 echo "write and touch not within one second"
3145         else
3146                 for (( i=0; i < 2; i++ )) ; do
3147                         local mtime2=`stat -c %Y $DIR1/$tfile`
3148                         [ "$mtime2" = $TEST_39_MTIME ] || \
3149                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3150
3151                         cancel_lru_locks osc
3152                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3153                 done
3154         fi
3155 }
3156 run_test 39h "write, utime within one second, stat ============="
3157
3158 test_39i() {
3159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3160         touch $DIR1/$tfile
3161         sleep 1
3162
3163         echo hello >> $DIR1/$tfile
3164         local mtime1=`stat -c %Y $DIR1/$tfile`
3165
3166         mv $DIR1/$tfile $DIR1/$tfile-1
3167
3168         for (( i=0; i < 2; i++ )) ; do
3169                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3170
3171                 [ "$mtime1" = "$mtime2" ] || \
3172                         error "lost mtime: $mtime2, should be $mtime1"
3173
3174                 cancel_lru_locks osc
3175                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3176         done
3177 }
3178 run_test 39i "write, rename, stat =============================="
3179
3180 test_39j() {
3181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3182         start_full_debug_logging
3183         touch $DIR1/$tfile
3184         sleep 1
3185
3186         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3187         lctl set_param fail_loc=0x80000412
3188         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3189                 error "multiop failed"
3190         local multipid=$!
3191         local mtime1=`stat -c %Y $DIR1/$tfile`
3192
3193         mv $DIR1/$tfile $DIR1/$tfile-1
3194
3195         kill -USR1 $multipid
3196         wait $multipid || error "multiop close failed"
3197
3198         for (( i=0; i < 2; i++ )) ; do
3199                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3200                 [ "$mtime1" = "$mtime2" ] ||
3201                         error "mtime is lost on close: $mtime2, " \
3202                               "should be $mtime1"
3203
3204                 cancel_lru_locks osc
3205                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3206         done
3207         lctl set_param fail_loc=0
3208         stop_full_debug_logging
3209 }
3210 run_test 39j "write, rename, close, stat ======================="
3211
3212 test_39k() {
3213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3214         touch $DIR1/$tfile
3215         sleep 1
3216
3217         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3218         local multipid=$!
3219         local mtime1=`stat -c %Y $DIR1/$tfile`
3220
3221         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3222
3223         kill -USR1 $multipid
3224         wait $multipid || error "multiop close failed"
3225
3226         for (( i=0; i < 2; i++ )) ; do
3227                 local mtime2=`stat -c %Y $DIR1/$tfile`
3228
3229                 [ "$mtime2" = $TEST_39_MTIME ] || \
3230                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3231
3232                 cancel_lru_locks osc
3233                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3234         done
3235 }
3236 run_test 39k "write, utime, close, stat ========================"
3237
3238 # this should be set to future
3239 TEST_39_ATIME=`date -d "1 year" +%s`
3240
3241 test_39l() {
3242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3243         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3244         local atime_diff=$(do_facet $SINGLEMDS \
3245                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3246         rm -rf $DIR/$tdir
3247         mkdir -p $DIR/$tdir
3248
3249         # test setting directory atime to future
3250         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3251         local atime=$(stat -c %X $DIR/$tdir)
3252         [ "$atime" = $TEST_39_ATIME ] || \
3253                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3254
3255         # test setting directory atime from future to now
3256         local d1=$(date +%s)
3257         ls $DIR/$tdir
3258         local d2=$(date +%s)
3259
3260         cancel_lru_locks mdc
3261         atime=$(stat -c %X $DIR/$tdir)
3262         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3263                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3264
3265         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3266         sleep 3
3267
3268         # test setting directory atime when now > dir atime + atime_diff
3269         d1=$(date +%s)
3270         ls $DIR/$tdir
3271         d2=$(date +%s)
3272         cancel_lru_locks mdc
3273         atime=$(stat -c %X $DIR/$tdir)
3274         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3275                 error "atime is not updated  : $atime, should be $d2"
3276
3277         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3278         sleep 3
3279
3280         # test not setting directory atime when now < dir atime + atime_diff
3281         ls $DIR/$tdir
3282         cancel_lru_locks mdc
3283         atime=$(stat -c %X $DIR/$tdir)
3284         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3285                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3286
3287         do_facet $SINGLEMDS \
3288                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3289 }
3290 run_test 39l "directory atime update ==========================="
3291
3292 test_39m() {
3293         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3294         touch $DIR1/$tfile
3295         sleep 2
3296         local far_past_mtime=$(date -d "May 29 1953" +%s)
3297         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3298
3299         touch -m -d @$far_past_mtime $DIR1/$tfile
3300         touch -a -d @$far_past_atime $DIR1/$tfile
3301
3302         for (( i=0; i < 2; i++ )) ; do
3303                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3304                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3305                         error "atime or mtime set incorrectly"
3306
3307                 cancel_lru_locks osc
3308                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3309         done
3310 }
3311 run_test 39m "test atime and mtime before 1970"
3312
3313 test_39n() { # LU-3832
3314         local atime_diff=$(do_facet $SINGLEMDS \
3315                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3316         local atime0
3317         local atime1
3318         local atime2
3319
3320         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3321
3322         rm -rf $DIR/$tfile
3323         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3324         atime0=$(stat -c %X $DIR/$tfile)
3325
3326         sleep 5
3327         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3328         atime1=$(stat -c %X $DIR/$tfile)
3329
3330         sleep 5
3331         cancel_lru_locks mdc
3332         cancel_lru_locks osc
3333         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3334         atime2=$(stat -c %X $DIR/$tfile)
3335
3336         do_facet $SINGLEMDS \
3337                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3338
3339         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3340         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3341 }
3342 run_test 39n "check that O_NOATIME is honored"
3343
3344 test_39o() {
3345         TESTDIR=$DIR/$tdir/$tfile
3346         [ -e $TESTDIR ] && rm -rf $TESTDIR
3347         test_mkdir -p $TESTDIR
3348         cd $TESTDIR
3349         links1=2
3350         ls
3351         mkdir a b
3352         ls
3353         links2=$(stat -c %h .)
3354         [ $(($links1 + 2)) != $links2 ] &&
3355                 error "wrong links count $(($links1 + 2)) != $links2"
3356         rmdir b
3357         links3=$(stat -c %h .)
3358         [ $(($links1 + 1)) != $links3 ] &&
3359                 error "wrong links count $links1 != $links3"
3360         return 0
3361 }
3362 run_test 39o "directory cached attributes updated after create ========"
3363
3364 test_39p() {
3365         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3366         local MDTIDX=1
3367         TESTDIR=$DIR/$tdir/$tfile
3368         [ -e $TESTDIR ] && rm -rf $TESTDIR
3369         mkdir -p $TESTDIR
3370         cd $TESTDIR
3371         links1=2
3372         ls
3373         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3374         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3375         ls
3376         links2=$(stat -c %h .)
3377         [ $(($links1 + 2)) != $links2 ] &&
3378                 error "wrong links count $(($links1 + 2)) != $links2"
3379         rmdir remote_dir2
3380         links3=$(stat -c %h .)
3381         [ $(($links1 + 1)) != $links3 ] &&
3382                 error "wrong links count $links1 != $links3"
3383         return 0
3384 }
3385 run_test 39p "remote directory cached attributes updated after create ========"
3386
3387
3388 test_40() {
3389         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3390         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3391                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3392         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3393                 error "$tfile is not 4096 bytes in size"
3394 }
3395 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3396
3397 test_41() {
3398         # bug 1553
3399         small_write $DIR/f41 18
3400 }
3401 run_test 41 "test small file write + fstat ====================="
3402
3403 count_ost_writes() {
3404         lctl get_param -n osc.*.stats |
3405                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3406                         END { printf("%0.0f", writes) }'
3407 }
3408
3409 # decent default
3410 WRITEBACK_SAVE=500
3411 DIRTY_RATIO_SAVE=40
3412 MAX_DIRTY_RATIO=50
3413 BG_DIRTY_RATIO_SAVE=10
3414 MAX_BG_DIRTY_RATIO=25
3415
3416 start_writeback() {
3417         trap 0
3418         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3419         # dirty_ratio, dirty_background_ratio
3420         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3421                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3422                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3423                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3424         else
3425                 # if file not here, we are a 2.4 kernel
3426                 kill -CONT `pidof kupdated`
3427         fi
3428 }
3429
3430 stop_writeback() {
3431         # setup the trap first, so someone cannot exit the test at the
3432         # exact wrong time and mess up a machine
3433         trap start_writeback EXIT
3434         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3435         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3436                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3437                 sysctl -w vm.dirty_writeback_centisecs=0
3438                 sysctl -w vm.dirty_writeback_centisecs=0
3439                 # save and increase /proc/sys/vm/dirty_ratio
3440                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3441                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3442                 # save and increase /proc/sys/vm/dirty_background_ratio
3443                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3444                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3445         else
3446                 # if file not here, we are a 2.4 kernel
3447                 kill -STOP `pidof kupdated`
3448         fi
3449 }
3450
3451 # ensure that all stripes have some grant before we test client-side cache
3452 setup_test42() {
3453         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3454                 dd if=/dev/zero of=$i bs=4k count=1
3455                 rm $i
3456         done
3457 }
3458
3459 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3460 # file truncation, and file removal.
3461 test_42a() {
3462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3463         setup_test42
3464         cancel_lru_locks osc
3465         stop_writeback
3466         sync; sleep 1; sync # just to be safe
3467         BEFOREWRITES=`count_ost_writes`
3468         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3469         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3470         AFTERWRITES=`count_ost_writes`
3471         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3472                 error "$BEFOREWRITES < $AFTERWRITES"
3473         start_writeback
3474 }
3475 run_test 42a "ensure that we don't flush on close =============="
3476
3477 test_42b() {
3478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3479         setup_test42
3480         cancel_lru_locks osc
3481         stop_writeback
3482         sync
3483         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3484         BEFOREWRITES=$(count_ost_writes)
3485         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3486         AFTERWRITES=$(count_ost_writes)
3487         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3488                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3489         fi
3490         BEFOREWRITES=$(count_ost_writes)
3491         sync || error "sync: $?"
3492         AFTERWRITES=$(count_ost_writes)
3493         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3494                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3495         fi
3496         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3497         start_writeback
3498         return 0
3499 }
3500 run_test 42b "test destroy of file with cached dirty data ======"
3501
3502 # if these tests just want to test the effect of truncation,
3503 # they have to be very careful.  consider:
3504 # - the first open gets a {0,EOF}PR lock
3505 # - the first write conflicts and gets a {0, count-1}PW
3506 # - the rest of the writes are under {count,EOF}PW
3507 # - the open for truncate tries to match a {0,EOF}PR
3508 #   for the filesize and cancels the PWs.
3509 # any number of fixes (don't get {0,EOF} on open, match
3510 # composite locks, do smarter file size management) fix
3511 # this, but for now we want these tests to verify that
3512 # the cancellation with truncate intent works, so we
3513 # start the file with a full-file pw lock to match against
3514 # until the truncate.
3515 trunc_test() {
3516         test=$1
3517         file=$DIR/$test
3518         offset=$2
3519         cancel_lru_locks osc
3520         stop_writeback
3521         # prime the file with 0,EOF PW to match
3522         touch $file
3523         $TRUNCATE $file 0
3524         sync; sync
3525         # now the real test..
3526         dd if=/dev/zero of=$file bs=1024 count=100
3527         BEFOREWRITES=`count_ost_writes`
3528         $TRUNCATE $file $offset
3529         cancel_lru_locks osc
3530         AFTERWRITES=`count_ost_writes`
3531         start_writeback
3532 }
3533
3534 test_42c() {
3535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3536         trunc_test 42c 1024
3537         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3538             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3539         rm $file
3540 }
3541 run_test 42c "test partial truncate of file with cached dirty data"
3542
3543 test_42d() {
3544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3545         trunc_test 42d 0
3546         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3547             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3548         rm $file
3549 }
3550 run_test 42d "test complete truncate of file with cached dirty data"
3551
3552 test_42e() { # bug22074
3553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3554         local TDIR=$DIR/${tdir}e
3555         local pagesz=$(page_size)
3556         local pages=16 # hardcoded 16 pages, don't change it.
3557         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3558         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3559         local max_dirty_mb
3560         local warmup_files
3561
3562         test_mkdir -p $DIR/${tdir}e
3563         $SETSTRIPE -c 1 $TDIR
3564         createmany -o $TDIR/f $files
3565
3566         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3567
3568         # we assume that with $OSTCOUNT files, at least one of them will
3569         # be allocated on OST0.
3570         warmup_files=$((OSTCOUNT * max_dirty_mb))
3571         createmany -o $TDIR/w $warmup_files
3572
3573         # write a large amount of data into one file and sync, to get good
3574         # avail_grant number from OST.
3575         for ((i=0; i<$warmup_files; i++)); do
3576                 idx=$($GETSTRIPE -i $TDIR/w$i)
3577                 [ $idx -ne 0 ] && continue
3578                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3579                 break
3580         done
3581         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3582         sync
3583         $LCTL get_param $proc_osc0/cur_dirty_bytes
3584         $LCTL get_param $proc_osc0/cur_grant_bytes
3585
3586         # create as much dirty pages as we can while not to trigger the actual
3587         # RPCs directly. but depends on the env, VFS may trigger flush during this
3588         # period, hopefully we are good.
3589         for ((i=0; i<$warmup_files; i++)); do
3590                 idx=$($GETSTRIPE -i $TDIR/w$i)
3591                 [ $idx -ne 0 ] && continue
3592                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3593         done
3594         $LCTL get_param $proc_osc0/cur_dirty_bytes
3595         $LCTL get_param $proc_osc0/cur_grant_bytes
3596
3597         # perform the real test
3598         $LCTL set_param $proc_osc0/rpc_stats 0
3599         for ((;i<$files; i++)); do
3600                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3601                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3602         done
3603         sync
3604         $LCTL get_param $proc_osc0/rpc_stats
3605
3606         local percent=0
3607         local have_ppr=false
3608         $LCTL get_param $proc_osc0/rpc_stats |
3609                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3610                         # skip lines until we are at the RPC histogram data
3611                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3612                         $have_ppr || continue
3613
3614                         # we only want the percent stat for < 16 pages
3615                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3616
3617                         percent=$((percent + WPCT))
3618                         if [[ $percent -gt 15 ]]; then
3619                                 error "less than 16-pages write RPCs" \
3620                                       "$percent% > 15%"
3621                                 break
3622                         fi
3623                 done
3624         rm -rf $TDIR
3625 }
3626 run_test 42e "verify sub-RPC writes are not done synchronously"
3627
3628 test_43() {
3629         test_mkdir -p $DIR/$tdir
3630         cp -p /bin/ls $DIR/$tdir/$tfile
3631         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3632         pid=$!
3633         # give multiop a chance to open
3634         sleep 1
3635
3636         $DIR/$tdir/$tfile && error || true
3637         kill -USR1 $pid
3638 }
3639 run_test 43 "execution of file opened for write should return -ETXTBSY"
3640
3641 test_43a() {
3642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3643         test_mkdir -p $DIR/$tdir
3644         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3645                         cp -p multiop $DIR/$tdir/multiop
3646         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3647                         return 1
3648         MULTIOP_PID=$!
3649         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3650         kill -USR1 $MULTIOP_PID || return 2
3651         wait $MULTIOP_PID || return 3
3652         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3653 }
3654 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3655
3656 test_43b() {
3657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3658         test_mkdir -p $DIR/$tdir
3659         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3660                         cp -p multiop $DIR/$tdir/multiop
3661         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3662                         return 1
3663         MULTIOP_PID=$!
3664         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3665         kill -USR1 $MULTIOP_PID || return 2
3666         wait $MULTIOP_PID || return 3
3667         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3668 }
3669 run_test 43b "truncate of file being executed should return -ETXTBSY"
3670
3671 test_43c() {
3672         local testdir="$DIR/$tdir"
3673         test_mkdir -p $DIR/$tdir
3674         cp $SHELL $testdir/
3675         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3676                 ( cd $testdir && md5sum -c)
3677 }
3678 run_test 43c "md5sum of copy into lustre========================"
3679
3680 test_44() {
3681         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3682         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3683         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3684 }
3685 run_test 44 "zero length read from a sparse stripe ============="
3686
3687 test_44a() {
3688         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3689                 awk '{ print $2 }')
3690         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3691         [[ $nstripe -gt $OSTCOUNT ]] &&
3692             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3693             return
3694         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3695                 awk '{ print $2 }')
3696         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3697                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3698                         awk '{ print $2 }')
3699         fi
3700
3701         OFFSETS="0 $((stride/2)) $((stride-1))"
3702         for offset in $OFFSETS; do
3703                 for i in $(seq 0 $((nstripe-1))); do
3704                         local GLOBALOFFSETS=""
3705                         # size in Bytes
3706                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3707                         local myfn=$DIR/d44a-$size
3708                         echo "--------writing $myfn at $size"
3709                         ll_sparseness_write $myfn $size ||
3710                                 error "ll_sparseness_write"
3711                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3712                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3713                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3714
3715                         for j in $(seq 0 $((nstripe-1))); do
3716                                 # size in Bytes
3717                                 size=$((((j + $nstripe )*$stride + $offset)))
3718                                 ll_sparseness_write $myfn $size ||
3719                                         error "ll_sparseness_write"
3720                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3721                         done
3722                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3723                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3724                         rm -f $myfn
3725                 done
3726         done
3727 }
3728 run_test 44a "test sparse pwrite ==============================="
3729
3730 dirty_osc_total() {
3731         tot=0
3732         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3733                 tot=$(($tot + $d))
3734         done
3735         echo $tot
3736 }
3737 do_dirty_record() {
3738         before=`dirty_osc_total`
3739         echo executing "\"$*\""
3740         eval $*
3741         after=`dirty_osc_total`
3742         echo before $before, after $after
3743 }
3744 test_45() {
3745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3746         f="$DIR/f45"
3747         # Obtain grants from OST if it supports it
3748         echo blah > ${f}_grant
3749         stop_writeback
3750         sync
3751         do_dirty_record "echo blah > $f"
3752         [[ $before -eq $after ]] && error "write wasn't cached"
3753         do_dirty_record "> $f"
3754         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3755         do_dirty_record "echo blah > $f"
3756         [[ $before -eq $after ]] && error "write wasn't cached"
3757         do_dirty_record "sync"
3758         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3759         do_dirty_record "echo blah > $f"
3760         [[ $before -eq $after ]] && error "write wasn't cached"
3761         do_dirty_record "cancel_lru_locks osc"
3762         [[ $before -gt $after ]] ||
3763                 error "lock cancellation didn't lower dirty count"
3764         start_writeback
3765 }
3766 run_test 45 "osc io page accounting ============================"
3767
3768 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3769 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3770 # objects offset and an assert hit when an rpc was built with 1023's mapped
3771 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3772 test_46() {
3773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3774         f="$DIR/f46"
3775         stop_writeback
3776         sync
3777         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3778         sync
3779         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3780         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3781         sync
3782         start_writeback
3783 }
3784 run_test 46 "dirtying a previously written page ================"
3785
3786 # test_47 is removed "Device nodes check" is moved to test_28
3787
3788 test_48a() { # bug 2399
3789         check_kernel_version 34 || return 0
3790         test_mkdir -p $DIR/$tdir
3791         cd $DIR/$tdir
3792         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3793         test_mkdir $DIR/$tdir || error "recreate directory failed"
3794         touch foo || error "'touch foo' failed after recreating cwd"
3795         test_mkdir $DIR/$tdir/bar ||
3796                      error "'mkdir foo' failed after recreating cwd"
3797         if check_kernel_version 44; then
3798                 touch .foo || error "'touch .foo' failed after recreating cwd"
3799                 test_mkdir $DIR/$tdir/.bar ||
3800                               error "'mkdir .foo' failed after recreating cwd"
3801         fi
3802         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3803         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3804         cd . || error "'cd .' failed after recreating cwd"
3805         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3806         rmdir . && error "'rmdir .' worked after recreating cwd"
3807         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3808         cd .. || error "'cd ..' failed after recreating cwd"
3809 }
3810 run_test 48a "Access renamed working dir (should return errors)="
3811
3812 test_48b() { # bug 2399
3813         check_kernel_version 34 || return 0
3814         rm -rf $DIR/$tdir
3815         test_mkdir -p $DIR/$tdir
3816         cd $DIR/$tdir
3817         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3818         touch foo && error "'touch foo' worked after removing cwd"
3819         test_mkdir $DIR/$tdir/foo &&
3820                      error "'mkdir foo' worked after removing cwd"
3821         if check_kernel_version 44; then
3822                 touch .foo && error "'touch .foo' worked after removing cwd"
3823                 test_mkdir $DIR/$tdir/.foo &&
3824                               error "'mkdir .foo' worked after removing cwd"
3825         fi
3826         ls . > /dev/null && error "'ls .' worked after removing cwd"
3827         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3828         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3829         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3830         rmdir . && error "'rmdir .' worked after removing cwd"
3831         ln -s . foo && error "'ln -s .' worked after removing cwd"
3832         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3833 }
3834 run_test 48b "Access removed working dir (should return errors)="
3835
3836 test_48c() { # bug 2350
3837         check_kernel_version 36 || return 0
3838         #lctl set_param debug=-1
3839         #set -vx
3840         rm -rf $DIR/$tdir
3841         test_mkdir -p $DIR/$tdir/dir
3842         cd $DIR/$tdir/dir
3843         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3844         $TRACE touch foo && error "touch foo worked after removing cwd"
3845         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3846         if check_kernel_version 44; then
3847                 touch .foo && error "touch .foo worked after removing cwd"
3848                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3849         fi
3850         $TRACE ls . && error "'ls .' worked after removing cwd"
3851         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3852         is_patchless || ( $TRACE cd . &&
3853                         error "'cd .' worked after removing cwd" )
3854         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3855         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3856         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3857         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3858 }
3859 run_test 48c "Access removed working subdir (should return errors)"
3860
3861 test_48d() { # bug 2350
3862         check_kernel_version 36 || return 0
3863         #lctl set_param debug=-1
3864         #set -vx
3865         rm -rf $DIR/$tdir
3866         test_mkdir -p $DIR/$tdir/dir
3867         cd $DIR/$tdir/dir
3868         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3869         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3870         $TRACE touch foo && error "'touch foo' worked after removing parent"
3871         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3872         if check_kernel_version 44; then
3873                 touch .foo && error "'touch .foo' worked after removing parent"
3874                 test_mkdir .foo &&
3875                               error "mkdir .foo worked after removing parent"
3876         fi
3877         $TRACE ls . && error "'ls .' worked after removing parent"
3878         $TRACE ls .. && error "'ls ..' worked after removing parent"
3879         is_patchless || ( $TRACE cd . &&
3880                         error "'cd .' worked after recreate parent" )
3881         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3882         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3883         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3884         is_patchless || ( $TRACE cd .. &&
3885                         error "'cd ..' worked after removing parent" || true )
3886 }
3887 run_test 48d "Access removed parent subdir (should return errors)"
3888
3889 test_48e() { # bug 4134
3890         check_kernel_version 41 || return 0
3891         #lctl set_param debug=-1
3892         #set -vx
3893         rm -rf $DIR/$tdir
3894         test_mkdir -p $DIR/$tdir/dir
3895         cd $DIR/$tdir/dir
3896         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3897         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3898         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3899         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3900         # On a buggy kernel addition of "touch foo" after cd .. will
3901         # produce kernel oops in lookup_hash_it
3902         touch ../foo && error "'cd ..' worked after recreate parent"
3903         cd $DIR
3904         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3905 }
3906 run_test 48e "Access to recreated parent subdir (should return errors)"
3907
3908 test_49() { # LU-1030
3909         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3910         # get ost1 size - lustre-OST0000
3911         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
3912                 awk '{ print $4 }')
3913         # write 800M at maximum
3914         [[ $ost1_size -lt 2 ]] && ost1_size=2
3915         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
3916
3917         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
3918         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3919         local dd_pid=$!
3920
3921         # change max_pages_per_rpc while writing the file
3922         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3923         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
3924         # loop until dd process exits
3925         while ps ax -opid | grep -wq $dd_pid; do
3926                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3927                 sleep $((RANDOM % 5 + 1))
3928         done
3929         # restore original max_pages_per_rpc
3930         $LCTL set_param $osc1_mppc=$orig_mppc
3931         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3932 }
3933 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3934
3935 test_50() {
3936         # bug 1485
3937         test_mkdir $DIR/$tdir
3938         cd $DIR/$tdir
3939         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3940 }
3941 run_test 50 "special situations: /proc symlinks  ==============="
3942
3943 test_51a() {    # was test_51
3944         # bug 1516 - create an empty entry right after ".." then split dir
3945         test_mkdir -c1 $DIR/$tdir
3946         touch $DIR/$tdir/foo
3947         $MCREATE $DIR/$tdir/bar
3948         rm $DIR/$tdir/foo
3949         createmany -m $DIR/$tdir/longfile 201
3950         FNUM=202
3951         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
3952                 $MCREATE $DIR/$tdir/longfile$FNUM
3953                 FNUM=$(($FNUM + 1))
3954                 echo -n "+"
3955         done
3956         echo
3957         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3958 }
3959 run_test 51a "special situations: split htree with empty entry =="
3960
3961 export NUMTEST=70000
3962 test_51b() {
3963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3964         local BASE=$DIR/d${base}.${TESTSUITE}
3965
3966         # cleanup the directory
3967         rm -fr $BASE
3968
3969         test_mkdir -p -c1 $BASE
3970
3971         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3972         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3973         [[ $numfree -lt 21000 ]] && skip "not enough free inodes ($numfree)" &&
3974                 return
3975
3976         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
3977                 echo "reduced count to $NUMTEST due to inodes"
3978
3979         # need to check free space for the directories as well
3980         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3981         numfree=$((blkfree / 4))
3982         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
3983                 echo "reduced count to $NUMTEST due to blocks"
3984
3985         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3986                 echo "failed" > $BASE/fnum
3987 }
3988 run_test 51b "exceed 64k subdirectory nlink limit"
3989
3990 test_51ba() { # LU-993
3991         local BASE=$DIR/d${base}.${TESTSUITE}
3992         # unlink all but 100 subdirectories, then check it still works
3993         local LEFT=100
3994         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3995
3996         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3997         local DELETE=$((NUMTEST - LEFT))
3998
3999         # continue on to run this test even if 51b didn't finish,
4000         # just to delete the many subdirectories created.
4001         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
4002
4003         # for ldiskfs the nlink count should be 1, but this is OSD specific
4004         # and so this is listed for informational purposes only
4005         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
4006         unlinkmany -d $BASE/d $DELETE
4007         RC=$?
4008
4009         if [ $RC -ne 0 ]; then
4010                 if [ "$NUMPREV" == "failed" ]; then
4011                         skip "previous setup failed"
4012                         return 0
4013                 else
4014                         error "unlink of first $DELETE subdirs failed"
4015                         return $RC
4016                 fi
4017         fi
4018
4019         echo "nlink between: $(stat -c %h $BASE)"
4020         # trim the first line of ls output
4021         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
4022         [ $FOUND -ne $LEFT ] &&
4023                 error "can't find subdirs: found only $FOUND/$LEFT"
4024
4025         unlinkmany -d $BASE/d $DELETE $LEFT ||
4026                 error "unlink of second $LEFT subdirs failed"
4027         # regardless of whether the backing filesystem tracks nlink accurately
4028         # or not, the nlink count shouldn't be more than "." and ".." here
4029         local AFTER=$(stat -c %h $BASE)
4030         [[ $AFTER -gt 2 ]] && error "nlink after: $AFTER > 2" ||
4031                 echo "nlink after: $AFTER"
4032 }
4033 run_test 51ba "verify nlink for many subdirectory cleanup"
4034
4035 test_51d() {
4036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4037         [[ $OSTCOUNT -lt 3 ]] &&
4038                 skip_env "skipping test with few OSTs" && return
4039         test_mkdir -p $DIR/$tdir
4040         createmany -o $DIR/$tdir/t- 1000
4041         $GETSTRIPE $DIR/$tdir > $TMP/files
4042         for N in $(seq 0 $((OSTCOUNT - 1))); do
4043                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4044                         END { printf("%0.0f", objs) }' $TMP/files)
4045                 OBJS0[$N]=$(grep -A 1 idx $TMP/files | awk -vobjs=0 \
4046                         '($1 == '$N') { objs += 1 } \
4047                         END { printf("%0.0f", objs) }')
4048                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4049         done
4050         unlinkmany $DIR/$tdir/t- 1000
4051
4052         NLAST=0
4053         for N in $(seq 1 $((OSTCOUNT - 1))); do
4054                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4055                         error "OST $N has less objects vs OST $NLAST" \
4056                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4057                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4058                         error "OST $N has less objects vs OST $NLAST" \
4059                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4060
4061                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4062                         error "OST $N has less #0 objects vs OST $NLAST" \
4063                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4064                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4065                         error "OST $N has less #0 objects vs OST $NLAST" \
4066                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4067                 NLAST=$N
4068         done
4069 }
4070 run_test 51d "check object distribution ===================="
4071
4072 test_52a() {
4073         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4074         test_mkdir -p $DIR/$tdir
4075         touch $DIR/$tdir/foo
4076         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4077         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4078         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4079         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4080         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4081                                         error "link worked"
4082         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4083         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4084         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4085                                                      error "lsattr"
4086         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4087         cp -r $DIR/$tdir /tmp/
4088         rm -fr $DIR/$tdir || error "cleanup rm failed"
4089 }
4090 run_test 52a "append-only flag test (should return errors) ====="
4091
4092 test_52b() {
4093         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4094         test_mkdir -p $DIR/$tdir
4095         touch $DIR/$tdir/foo
4096         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4097         cat test > $DIR/$tdir/foo && error "cat test worked"
4098         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4099         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4100         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4101                                         error "link worked"
4102         echo foo >> $DIR/$tdir/foo && error "echo worked"
4103         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4104         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4105         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4106         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4107                                                         error "lsattr"
4108         chattr -i $DIR/$tdir/foo || error "chattr failed"
4109
4110         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4111 }
4112 run_test 52b "immutable flag test (should return errors) ======="
4113
4114 test_53() {
4115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4116         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4117         remote_ost_nodsh && skip "remote OST with nodsh" && return
4118
4119         local param
4120         local param_seq
4121         local ostname
4122         local mds_last
4123         local mds_last_seq
4124         local ost_last
4125         local ost_last_seq
4126         local ost_last_id
4127         local ostnum
4128         local node
4129         local found=false
4130         local support_last_seq=true
4131
4132         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4133                 support_last_seq=false
4134
4135         # only test MDT0000
4136         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4137         local value
4138         for value in $(do_facet $SINGLEMDS \
4139                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4140                 param=$(echo ${value[0]} | cut -d "=" -f1)
4141                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4142
4143                 if $support_last_seq; then
4144                         param_seq=$(echo $param |
4145                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4146                         mds_last_seq=$(do_facet $SINGLEMDS \
4147                                        $LCTL get_param -n $param_seq)
4148                 fi
4149                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4150
4151                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4152                 node=$(facet_active_host ost$((ostnum+1)))
4153                 param="obdfilter.$ostname.last_id"
4154                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4155                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4156                         ost_last_id=$ost_last
4157
4158                         if $support_last_seq; then
4159                                 ost_last_id=$(echo $ost_last |
4160                                               awk -F':' '{print $2}' |
4161                                               sed -e "s/^0x//g")
4162                                 ost_last_seq=$(echo $ost_last |
4163                                                awk -F':' '{print $1}')
4164                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4165                         fi
4166
4167                         if [[ $ost_last_id != $mds_last ]]; then
4168                                 error "$ost_last_id != $mds_last"
4169                         else
4170                                 found=true
4171                                 break
4172                         fi
4173                 done
4174         done
4175         $found || error "can not match last_seq/last_id for $mdtosc"
4176         return 0
4177 }
4178 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4179
4180 test_54a() {
4181         $SOCKETSERVER $DIR/socket ||
4182                 error "$SOCKETSERVER $DIR/socket failed: $?"
4183         $SOCKETCLIENT $DIR/socket ||
4184                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4185         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4186 }
4187 run_test 54a "unix domain socket test =========================="
4188
4189 test_54b() {
4190         f="$DIR/f54b"
4191         mknod $f c 1 3
4192         chmod 0666 $f
4193         dd if=/dev/zero of=$f bs=$(page_size) count=1
4194 }
4195 run_test 54b "char device works in lustre ======================"
4196
4197 find_loop_dev() {
4198         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4199         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4200         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4201
4202         for i in $(seq 3 7); do
4203                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4204                 LOOPDEV=$LOOPBASE$i
4205                 LOOPNUM=$i
4206                 break
4207         done
4208 }
4209
4210 cleanup_54c() {
4211         loopdev="$DIR/loop54c"
4212
4213         trap 0
4214         $UMOUNT -d $DIR/$tdir || rc=$?
4215         losetup -d $loopdev || true
4216         losetup -d $LOOPDEV || true
4217         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4218         return $rc
4219 }
4220
4221 test_54c() {
4222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4223         loopdev="$DIR/loop54c"
4224
4225         find_loop_dev
4226         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4227         trap cleanup_54c EXIT
4228         mknod $loopdev b 7 $LOOPNUM
4229         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4230         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4231         losetup $loopdev $DIR/$tfile ||
4232                 error "can't set up $loopdev for $DIR/$tfile"
4233         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4234         test_mkdir -p $DIR/$tdir
4235         mount -t ext2 $loopdev $DIR/$tdir ||
4236                 error "error mounting $loopdev on $DIR/$tdir"
4237         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4238                 error "dd write"
4239         df $DIR/$tdir
4240         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4241                 error "dd read"
4242         cleanup_54c
4243 }
4244 run_test 54c "block device works in lustre ====================="
4245
4246 test_54d() {
4247         f="$DIR/f54d"
4248         string="aaaaaa"
4249         mknod $f p
4250         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4251 }
4252 run_test 54d "fifo device works in lustre ======================"
4253
4254 test_54e() {
4255         check_kernel_version 46 || return 0
4256         f="$DIR/f54e"
4257         string="aaaaaa"
4258         cp -aL /dev/console $f
4259         echo $string > $f || error "echo $string to $f failed"
4260 }
4261 run_test 54e "console/tty device works in lustre ======================"
4262
4263 #The test_55 used to be iopen test and it was removed by bz#24037.
4264 #run_test 55 "check iopen_connect_dentry() ======================"
4265
4266 test_56a() {    # was test_56
4267         rm -rf $DIR/$tdir
4268         $SETSTRIPE -d $DIR
4269         test_mkdir -p $DIR/$tdir/dir
4270         NUMFILES=3
4271         NUMFILESx2=$(($NUMFILES * 2))
4272         for i in $(seq 1 $NUMFILES); do
4273                 touch $DIR/$tdir/file$i
4274                 touch $DIR/$tdir/dir/file$i
4275         done
4276
4277         # test lfs getstripe with --recursive
4278         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4279         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4280                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4281         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4282         [[ $FILENUM -eq $NUMFILES ]] ||
4283                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4284         echo "$GETSTRIPE --recursive passed."
4285
4286         # test lfs getstripe with file instead of dir
4287         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4288         [[ $FILENUM -eq 1 ]] ||
4289                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4290         echo "$GETSTRIPE file1 passed."
4291
4292         #test lfs getstripe with --verbose
4293         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4294                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4295                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4296         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4297                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4298         echo "$GETSTRIPE --verbose passed."
4299
4300         #test lfs getstripe with --obd
4301         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4302                 grep -q "unknown obduuid" ||
4303                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4304
4305         [[ $OSTCOUNT -lt 2 ]] &&
4306                 skip_env "skipping other $GETSTRIPE --obd test" && return
4307
4308         OSTIDX=1
4309         OBDUUID=$(ostuuid_from_index $OSTIDX)
4310         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4311         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4312         [[ $FOUND -eq $FILENUM ]] ||
4313                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4314         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4315                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4316                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4317                 error "$GETSTRIPE --obd: should not show file on other obd"
4318         echo "$GETSTRIPE --obd passed"
4319 }
4320 run_test 56a "check $GETSTRIPE"
4321
4322 NUMFILES=3
4323 NUMDIRS=3
4324 setup_56() {
4325         local LOCAL_NUMFILES="$1"
4326         local LOCAL_NUMDIRS="$2"
4327         local MKDIR_PARAMS="$3"
4328         local DIR_STRIPE_PARAMS="$4"
4329
4330         if [ ! -d "$TDIR" ] ; then
4331                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4332                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4333                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4334                         touch $TDIR/file$i
4335                 done
4336                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4337                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4338                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4339                                 touch $TDIR/dir$i/file$j
4340                         done
4341                 done
4342         fi
4343 }
4344
4345 setup_56_special() {
4346         LOCAL_NUMFILES=$1
4347         LOCAL_NUMDIRS=$2
4348         setup_56 $1 $2
4349         if [ ! -e "$TDIR/loop1b" ] ; then
4350                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4351                         mknod $TDIR/loop${i}b b 7 $i
4352                         mknod $TDIR/null${i}c c 1 3
4353                         ln -s $TDIR/file1 $TDIR/link${i}l
4354                 done
4355                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4356                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4357                         mknod $TDIR/dir$i/null${i}c c 1 3
4358                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4359                 done
4360         fi
4361 }
4362
4363 test_56g() {
4364         $SETSTRIPE -d $DIR
4365
4366         TDIR=$DIR/${tdir}g
4367         setup_56 $NUMFILES $NUMDIRS
4368
4369         EXPECTED=$(($NUMDIRS + 2))
4370         # test lfs find with -name
4371         for i in $(seq 1 $NUMFILES) ; do
4372                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4373                 [ $NUMS -eq $EXPECTED ] ||
4374                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4375                               "found $NUMS, expected $EXPECTED"
4376         done
4377 }
4378 run_test 56g "check lfs find -name ============================="
4379
4380 test_56h() {
4381         $SETSTRIPE -d $DIR
4382
4383         TDIR=$DIR/${tdir}g
4384         setup_56 $NUMFILES $NUMDIRS
4385
4386         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4387         # test lfs find with ! -name
4388         for i in $(seq 1 $NUMFILES) ; do
4389                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4390                 [ $NUMS -eq $EXPECTED ] ||
4391                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4392                               "found $NUMS, expected $EXPECTED"
4393         done
4394 }
4395 run_test 56h "check lfs find ! -name ============================="
4396
4397 test_56i() {
4398        tdir=${tdir}i
4399        test_mkdir -p $DIR/$tdir
4400        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4401        CMD="$LFIND -ost $UUID $DIR/$tdir"
4402        OUT=$($CMD)
4403        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4404 }
4405 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4406
4407 test_56j() {
4408         TDIR=$DIR/${tdir}g
4409         setup_56_special $NUMFILES $NUMDIRS
4410
4411         EXPECTED=$((NUMDIRS + 1))
4412         CMD="$LFIND -type d $TDIR"
4413         NUMS=$($CMD | wc -l)
4414         [ $NUMS -eq $EXPECTED ] ||
4415                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4416 }
4417 run_test 56j "check lfs find -type d ============================="
4418
4419 test_56k() {
4420         TDIR=$DIR/${tdir}g
4421         setup_56_special $NUMFILES $NUMDIRS
4422
4423         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4424         CMD="$LFIND -type f $TDIR"
4425         NUMS=$($CMD | wc -l)
4426         [ $NUMS -eq $EXPECTED ] ||
4427                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4428 }
4429 run_test 56k "check lfs find -type f ============================="
4430
4431 test_56l() {
4432         TDIR=$DIR/${tdir}g
4433         setup_56_special $NUMFILES $NUMDIRS
4434
4435         EXPECTED=$((NUMDIRS + NUMFILES))
4436         CMD="$LFIND -type b $TDIR"
4437         NUMS=$($CMD | wc -l)
4438         [ $NUMS -eq $EXPECTED ] ||
4439                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4440 }
4441 run_test 56l "check lfs find -type b ============================="
4442
4443 test_56m() {
4444         TDIR=$DIR/${tdir}g
4445         setup_56_special $NUMFILES $NUMDIRS
4446
4447         EXPECTED=$((NUMDIRS + NUMFILES))
4448         CMD="$LFIND -type c $TDIR"
4449         NUMS=$($CMD | wc -l)
4450         [ $NUMS -eq $EXPECTED ] ||
4451                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4452 }
4453 run_test 56m "check lfs find -type c ============================="
4454
4455 test_56n() {
4456         TDIR=$DIR/${tdir}g
4457         setup_56_special $NUMFILES $NUMDIRS
4458
4459         EXPECTED=$((NUMDIRS + NUMFILES))
4460         CMD="$LFIND -type l $TDIR"
4461         NUMS=$($CMD | wc -l)
4462         [ $NUMS -eq $EXPECTED ] ||
4463                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4464 }
4465 run_test 56n "check lfs find -type l ============================="
4466
4467 test_56o() {
4468         TDIR=$DIR/${tdir}o
4469         setup_56 $NUMFILES $NUMDIRS
4470         utime $TDIR/file1 > /dev/null || error "utime (1)"
4471         utime $TDIR/file2 > /dev/null || error "utime (2)"
4472         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4473         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4474         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4475         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4476
4477         EXPECTED=4
4478         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4479         [ $NUMS -eq $EXPECTED ] || \
4480                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4481
4482         EXPECTED=12
4483         CMD="$LFIND -mtime 0 $TDIR"
4484         NUMS=$($CMD | wc -l)
4485         [ $NUMS -eq $EXPECTED ] ||
4486                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4487 }
4488 run_test 56o "check lfs find -mtime for old files =========================="
4489
4490 test_56p() {
4491         [ $RUNAS_ID -eq $UID ] &&
4492                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4493
4494         TDIR=$DIR/${tdir}p
4495         setup_56 $NUMFILES $NUMDIRS
4496
4497         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4498         EXPECTED=$NUMFILES
4499         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4500         NUMS=$($CMD | wc -l)
4501         [ $NUMS -eq $EXPECTED ] || \
4502                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4503
4504         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4505         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4506         NUMS=$($CMD | wc -l)
4507         [ $NUMS -eq $EXPECTED ] || \
4508                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4509 }
4510 run_test 56p "check lfs find -uid and ! -uid ==============================="
4511
4512 test_56q() {
4513         [ $RUNAS_ID -eq $UID ] &&
4514                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4515
4516         TDIR=$DIR/${tdir}q
4517         setup_56 $NUMFILES $NUMDIRS
4518
4519         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4520
4521         EXPECTED=$NUMFILES
4522         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4523         NUMS=$($CMD | wc -l)
4524         [ $NUMS -eq $EXPECTED ] ||
4525                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4526
4527         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4528         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4529         NUMS=$($CMD | wc -l)
4530         [ $NUMS -eq $EXPECTED ] ||
4531                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4532 }
4533 run_test 56q "check lfs find -gid and ! -gid ==============================="
4534
4535 test_56r() {
4536         TDIR=$DIR/${tdir}r
4537         setup_56 $NUMFILES $NUMDIRS
4538
4539         EXPECTED=12
4540         CMD="$LFIND -size 0 -type f $TDIR"
4541         NUMS=$($CMD | wc -l)
4542         [ $NUMS -eq $EXPECTED ] ||
4543                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4544         EXPECTED=0
4545         CMD="$LFIND ! -size 0 -type f $TDIR"
4546         NUMS=$($CMD | wc -l)
4547         [ $NUMS -eq $EXPECTED ] ||
4548                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4549         echo "test" > $TDIR/$tfile
4550         echo "test2" > $TDIR/$tfile.2 && sync
4551         EXPECTED=1
4552         CMD="$LFIND -size 5 -type f $TDIR"
4553         NUMS=$($CMD | wc -l)
4554         [ $NUMS -eq $EXPECTED ] ||
4555                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4556         EXPECTED=1
4557         CMD="$LFIND -size +5 -type f $TDIR"
4558         NUMS=$($CMD | wc -l)
4559         [ $NUMS -eq $EXPECTED ] ||
4560                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4561         EXPECTED=2
4562         CMD="$LFIND -size +0 -type f $TDIR"
4563         NUMS=$($CMD | wc -l)
4564         [ $NUMS -eq $EXPECTED ] ||
4565                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4566         EXPECTED=2
4567         CMD="$LFIND ! -size -5 -type f $TDIR"
4568         NUMS=$($CMD | wc -l)
4569         [ $NUMS -eq $EXPECTED ] ||
4570                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4571         EXPECTED=12
4572         CMD="$LFIND -size -5 -type f $TDIR"
4573         NUMS=$($CMD | wc -l)
4574         [ $NUMS -eq $EXPECTED ] ||
4575                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4576 }
4577 run_test 56r "check lfs find -size works =========================="
4578
4579 test_56s() { # LU-611
4580         TDIR=$DIR/${tdir}s
4581         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4582
4583         if [[ $OSTCOUNT -gt 1 ]]; then
4584                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4585                 ONESTRIPE=4
4586                 EXTRA=4
4587         else
4588                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4589                 EXTRA=0
4590         fi
4591
4592         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4593         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4594         NUMS=$($CMD | wc -l)
4595         [ $NUMS -eq $EXPECTED ] || {
4596                 $GETSTRIPE -R $TDIR
4597                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4598         }
4599
4600         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4601         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4602         NUMS=$($CMD | wc -l)
4603         [ $NUMS -eq $EXPECTED ] || {
4604                 $GETSTRIPE -R $TDIR
4605                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4606         }
4607
4608         EXPECTED=$ONESTRIPE
4609         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4610         NUMS=$($CMD | wc -l)
4611         [ $NUMS -eq $EXPECTED ] || {
4612                 $GETSTRIPE -R $TDIR
4613                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4614         }
4615
4616         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4617         NUMS=$($CMD | wc -l)
4618         [ $NUMS -eq $EXPECTED ] || {
4619                 $GETSTRIPE -R $TDIR
4620                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4621         }
4622
4623         EXPECTED=0
4624         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4625         NUMS=$($CMD | wc -l)
4626         [ $NUMS -eq $EXPECTED ] || {
4627                 $GETSTRIPE -R $TDIR
4628                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4629         }
4630 }
4631 run_test 56s "check lfs find -stripe-count works"
4632
4633 test_56t() { # LU-611
4634         TDIR=$DIR/${tdir}t
4635         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4636
4637         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4638
4639         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4640         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4641         NUMS=$($CMD | wc -l)
4642         [ $NUMS -eq $EXPECTED ] ||
4643                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4644
4645         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4646         NUMS=$($CMD | wc -l)
4647         [ $NUMS -eq $EXPECTED ] ||
4648                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4649
4650         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4651         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4652         NUMS=$($CMD | wc -l)
4653         [ $NUMS -eq $EXPECTED ] ||
4654                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4655
4656         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4657         NUMS=$($CMD | wc -l)
4658         [ $NUMS -eq $EXPECTED ] ||
4659                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4660
4661         EXPECTED=4
4662         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4663         NUMS=$($CMD | wc -l)
4664         [ $NUMS -eq $EXPECTED ] ||
4665                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4666
4667         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4668         NUMS=$($CMD | wc -l)
4669         [ $NUMS -eq $EXPECTED ] ||
4670                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4671
4672         EXPECTED=0
4673         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4674         NUMS=$($CMD | wc -l)
4675         [ $NUMS -eq $EXPECTED ] ||
4676                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4677 }
4678 run_test 56t "check lfs find -stripe-size works"
4679
4680 test_56u() { # LU-611
4681         TDIR=$DIR/${tdir}u
4682         setup_56 $NUMFILES $NUMDIRS "-i 0"
4683
4684         if [[ $OSTCOUNT -gt 1 ]]; then
4685                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4686                 ONESTRIPE=4
4687         else
4688                 ONESTRIPE=0
4689         fi
4690
4691         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4692         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4693         NUMS=$($CMD | wc -l)
4694         [ $NUMS -eq $EXPECTED ] ||
4695                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4696
4697         EXPECTED=$ONESTRIPE
4698         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4699         NUMS=$($CMD | wc -l)
4700         [ $NUMS -eq $EXPECTED ] ||
4701                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4702
4703         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4704         NUMS=$($CMD | wc -l)
4705         [ $NUMS -eq $EXPECTED ] ||
4706                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4707
4708         EXPECTED=0
4709         # This should produce an error and not return any files
4710         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4711         NUMS=$($CMD 2>/dev/null | wc -l)
4712         [ $NUMS -eq $EXPECTED ] ||
4713                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4714
4715         if [[ $OSTCOUNT -gt 1 ]]; then
4716                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4717                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4718                 NUMS=$($CMD | wc -l)
4719                 [ $NUMS -eq $EXPECTED ] ||
4720                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4721         fi
4722 }
4723 run_test 56u "check lfs find -stripe-index works"
4724
4725 test_56v() {
4726     local MDT_IDX=0
4727
4728     TDIR=$DIR/${tdir}v
4729     rm -rf $TDIR
4730     setup_56 $NUMFILES $NUMDIRS
4731
4732     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4733     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4734
4735     for file in $($LFIND -mdt $UUID $TDIR); do
4736         file_mdt_idx=$($GETSTRIPE -M $file)
4737         [ $file_mdt_idx -eq $MDT_IDX ] ||
4738             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4739     done
4740 }
4741 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4742
4743 # Get and check the actual stripe count of one file.
4744 # Usage: check_stripe_count <file> <expected_stripe_count>
4745 check_stripe_count() {
4746     local file=$1
4747     local expected=$2
4748     local actual
4749
4750     [[ -z "$file" || -z "$expected" ]] &&
4751         error "check_stripe_count: invalid argument!"
4752
4753     local cmd="$GETSTRIPE -c $file"
4754     actual=$($cmd) || error "$cmd failed"
4755     actual=${actual%% *}
4756
4757     if [[ $actual -ne $expected ]]; then
4758         [[ $expected -eq -1 ]] ||
4759             error "$cmd wrong: found $actual, expected $expected"
4760         [[ $actual -eq $OSTCOUNT ]] ||
4761             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4762     fi
4763 }
4764
4765 test_56w() {
4766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4767         TDIR=$DIR/${tdir}w
4768
4769     rm -rf $TDIR || error "remove $TDIR failed"
4770     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4771
4772     local stripe_size
4773     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4774         error "$GETSTRIPE -S -d $TDIR failed"
4775     stripe_size=${stripe_size%% *}
4776
4777     local file_size=$((stripe_size * OSTCOUNT))
4778     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4779     local required_space=$((file_num * file_size))
4780     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4781     [[ $free_space -le $((required_space / 1024)) ]] &&
4782         skip_env "need at least $required_space bytes free space," \
4783                  "have $free_space kbytes" && return
4784
4785     local dd_bs=65536
4786     local dd_count=$((file_size / dd_bs))
4787
4788     # write data into the files
4789     local i
4790     local j
4791     local file
4792     for i in $(seq 1 $NUMFILES); do
4793         file=$TDIR/file$i
4794         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4795             error "write data into $file failed"
4796     done
4797     for i in $(seq 1 $NUMDIRS); do
4798         for j in $(seq 1 $NUMFILES); do
4799             file=$TDIR/dir$i/file$j
4800             yes | dd bs=$dd_bs count=$dd_count of=$file \
4801                 >/dev/null 2>&1 ||
4802                 error "write data into $file failed"
4803         done
4804     done
4805
4806     local expected=-1
4807     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4808
4809     # lfs_migrate file
4810     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4811     echo "$cmd"
4812     eval $cmd || error "$cmd failed"
4813
4814     check_stripe_count $TDIR/file1 $expected
4815
4816     # lfs_migrate dir
4817     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4818     echo "$cmd"
4819     eval $cmd || error "$cmd failed"
4820
4821     for j in $(seq 1 $NUMFILES); do
4822         check_stripe_count $TDIR/dir1/file$j $expected
4823     done
4824
4825     # lfs_migrate works with lfs find
4826     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4827          $LFS_MIGRATE -y -c $expected"
4828     echo "$cmd"
4829     eval $cmd || error "$cmd failed"
4830
4831     for i in $(seq 2 $NUMFILES); do
4832         check_stripe_count $TDIR/file$i $expected
4833     done
4834     for i in $(seq 2 $NUMDIRS); do
4835         for j in $(seq 1 $NUMFILES); do
4836             check_stripe_count $TDIR/dir$i/file$j $expected
4837         done
4838     done
4839 }
4840 run_test 56w "check lfs_migrate -c stripe_count works"
4841
4842 test_56x() {
4843         check_swap_layouts_support && return 0
4844         [[ $OSTCOUNT -lt 2 ]] &&
4845                 skip_env "need 2 OST, skipping test" && return
4846
4847         local dir0=$DIR/$tdir/$testnum
4848         mkdir -p $dir0 || error "creating dir $dir0"
4849
4850         local ref1=/etc/passwd
4851         local file1=$dir0/file1
4852
4853         $SETSTRIPE -c 2 $file1
4854         cp $ref1 $file1
4855         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4856         stripe=$($GETSTRIPE -c $file1)
4857         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4858         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4859
4860         # clean up
4861         rm -f $file1
4862 }
4863 run_test 56x "lfs migration support"
4864
4865 test_56y() {
4866         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4867                 skip "No HSM support on MDS of $(get_lustre_version)," \
4868                          "need 2.4.53 at least" && return
4869         local res=""
4870
4871         local dir0=$DIR/$tdir/$testnum
4872         mkdir -p $dir0 || error "creating dir $dir0"
4873         local f1=$dir0/file1
4874         local f2=$dir0/file2
4875
4876         touch $f1 || error "creating std file $f1"
4877         $MULTIOP $f2 H2c || error "creating released file $f2"
4878
4879         # a directory can be raid0, so ask only for files
4880         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4881         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4882
4883         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4884         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4885
4886         # only files can be released, so no need to force file search
4887         res=$($LFIND $dir0 -L released)
4888         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4889
4890         res=$($LFIND $dir0 \! -L released)
4891         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4892
4893 }
4894 run_test 56y "lfs find -L raid0|released"
4895
4896 test_57a() {
4897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4898         # note test will not do anything if MDS is not local
4899         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4900                 skip "Only applicable to ldiskfs-based MDTs"
4901                 return
4902         fi
4903
4904         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4905         local MNTDEV="osd*.*MDT*.mntdev"
4906         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4907         [ -z "$DEV" ] && error "can't access $MNTDEV"
4908         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4909                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4910                         error "can't access $DEV"
4911                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
4912                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
4913                 rm $TMP/t57a.dump
4914         done
4915 }
4916 run_test 57a "verify MDS filesystem created with large inodes =="
4917
4918 test_57b() {
4919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4920         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4921                 skip "Only applicable to ldiskfs-based MDTs"
4922                 return
4923         fi
4924
4925         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4926         local dir=$DIR/d57b
4927
4928         local FILECOUNT=100
4929         local FILE1=$dir/f1
4930         local FILEN=$dir/f$FILECOUNT
4931
4932         rm -rf $dir || error "removing $dir"
4933         test_mkdir -p $dir || error "creating $dir"
4934         local num=$(get_mds_dir $dir)
4935         local mymds=mds$num
4936
4937         echo "mcreating $FILECOUNT files"
4938         createmany -m $dir/f 1 $FILECOUNT || \
4939                 error "creating files in $dir"
4940
4941         # verify that files do not have EAs yet
4942         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4943         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4944
4945         sync
4946         sleep 1
4947         df $dir  #make sure we get new statfs data
4948         local MDSFREE=$(do_facet $mymds \
4949                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4950         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4951         echo "opening files to create objects/EAs"
4952         local FILE
4953         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4954                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4955         done
4956
4957         # verify that files have EAs now
4958         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4959         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4960
4961         sleep 1  #make sure we get new statfs data
4962         df $dir
4963         local MDSFREE2=$(do_facet $mymds \
4964                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4965         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4966         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
4967                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4968                         error "MDC before $MDCFREE != after $MDCFREE2"
4969                 else
4970                         echo "MDC before $MDCFREE != after $MDCFREE2"
4971                         echo "unable to confirm if MDS has large inodes"
4972                 fi
4973         fi
4974         rm -rf $dir
4975 }
4976 run_test 57b "default LOV EAs are stored inside large inodes ==="
4977
4978 test_58() {
4979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4980         [ -z "$(which wiretest 2>/dev/null)" ] &&
4981                         skip_env "could not find wiretest" && return
4982         wiretest
4983 }
4984 run_test 58 "verify cross-platform wire constants =============="
4985
4986 test_59() {
4987         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4988         echo "touch 130 files"
4989         createmany -o $DIR/f59- 130
4990         echo "rm 130 files"
4991         unlinkmany $DIR/f59- 130
4992         sync
4993         # wait for commitment of removal
4994         wait_delete_completed
4995 }
4996 run_test 59 "verify cancellation of llog records async ========="
4997
4998 TEST60_HEAD="test_60 run $RANDOM"
4999 test_60a() {
5000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5001         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5002         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5003                 skip_env "missing subtest run-llog.sh" && return
5004         log "$TEST60_HEAD - from kernel mode"
5005         do_facet mgs sh run-llog.sh
5006 }
5007 run_test 60a "llog sanity tests run from kernel module =========="
5008
5009 test_60b() { # bug 6411
5010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5011         dmesg > $DIR/$tfile
5012         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
5013                                  /llog.test/ {
5014                                          if (marker)
5015                                                  from_marker++
5016                                          from_begin++
5017                                  }
5018                                  END {
5019                                          if (marker)
5020                                                  print from_marker
5021                                          else
5022                                                  print from_begin
5023                                  }"`
5024         [[ $LLOG_COUNT -gt 50 ]] &&
5025                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5026 }
5027 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5028
5029 test_60c() {
5030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5031         echo "create 5000 files"
5032         createmany -o $DIR/f60c- 5000
5033 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5034         lctl set_param fail_loc=0x80000137
5035         unlinkmany $DIR/f60c- 5000
5036         lctl set_param fail_loc=0
5037 }
5038 run_test 60c "unlink file when mds full"
5039
5040 test_60d() {
5041         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5042         SAVEPRINTK=$(lctl get_param -n printk)
5043
5044         # verify "lctl mark" is even working"
5045         MESSAGE="test message ID $RANDOM $$"
5046         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5047         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5048
5049         lctl set_param printk=0 || error "set lnet.printk failed"
5050         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5051         MESSAGE="new test message ID $RANDOM $$"
5052         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5053         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5054         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5055
5056         lctl set_param -n printk="$SAVEPRINTK"
5057 }
5058 run_test 60d "test printk console message masking"
5059
5060 test_61() {
5061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5062         f="$DIR/f61"
5063         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5064         cancel_lru_locks osc
5065         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5066         sync
5067 }
5068 run_test 61 "mmap() writes don't make sync hang ================"
5069
5070 # bug 2330 - insufficient obd_match error checking causes LBUG
5071 test_62() {
5072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5073         f="$DIR/f62"
5074         echo foo > $f
5075         cancel_lru_locks osc
5076         lctl set_param fail_loc=0x405
5077         cat $f && error "cat succeeded, expect -EIO"
5078         lctl set_param fail_loc=0
5079 }
5080 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5081 # match every page all of the time.
5082 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5083
5084 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5085 # Though this test is irrelevant anymore, it helped to reveal some
5086 # other grant bugs (LU-4482), let's keep it.
5087 test_63a() {   # was test_63
5088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5089         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5090         for i in `seq 10` ; do
5091                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5092                 sleep 5
5093                 kill $!
5094                 sleep 1
5095         done
5096
5097         rm -f $DIR/f63 || true
5098 }
5099 run_test 63a "Verify oig_wait interruption does not crash ======="
5100
5101 # bug 2248 - async write errors didn't return to application on sync
5102 # bug 3677 - async write errors left page locked
5103 test_63b() {
5104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5105         debugsave
5106         lctl set_param debug=-1
5107
5108         # ensure we have a grant to do async writes
5109         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5110         rm $DIR/$tfile
5111
5112         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5113         lctl set_param fail_loc=0x80000406
5114         $MULTIOP $DIR/$tfile Owy && \
5115                 error "sync didn't return ENOMEM"
5116         sync; sleep 2; sync     # do a real sync this time to flush page
5117         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5118                 error "locked page left in cache after async error" || true
5119         debugrestore
5120 }
5121 run_test 63b "async write errors should be returned to fsync ==="
5122
5123 test_64a () {
5124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5125         df $DIR
5126         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5127 }
5128 run_test 64a "verify filter grant calculations (in kernel) ====="
5129
5130 test_64b () {
5131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5132         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5133 }
5134 run_test 64b "check out-of-space detection on client ==========="
5135
5136 test_64c() {
5137         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5138 }
5139 run_test 64c "verify grant shrink ========================------"
5140
5141 # bug 1414 - set/get directories' stripe info
5142 test_65a() {
5143         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5144         test_mkdir -p $DIR/$tdir
5145         touch $DIR/$tdir/f1
5146         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5147 }
5148 run_test 65a "directory with no stripe info ===================="
5149
5150 test_65b() {
5151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5152         test_mkdir -p $DIR/$tdir
5153         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5154                                                 error "setstripe"
5155         touch $DIR/$tdir/f2
5156         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5157 }
5158 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
5159
5160 test_65c() {
5161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5162         if [[ $OSTCOUNT -gt 1 ]]; then
5163                 test_mkdir -p $DIR/$tdir
5164                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5165                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5166                 touch $DIR/$tdir/f3
5167                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5168         fi
5169 }
5170 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
5171
5172 test_65d() {
5173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5174         test_mkdir -p $DIR/$tdir
5175         if [[ $STRIPECOUNT -le 0 ]]; then
5176                 sc=1
5177         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5178 #LOV_MAX_STRIPE_COUNT is 2000
5179                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5180         else
5181                 sc=$(($STRIPECOUNT - 1))
5182         fi
5183         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5184         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5185         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5186                 error "lverify failed"
5187 }
5188 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
5189
5190 test_65e() {
5191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5192         test_mkdir -p $DIR/$tdir
5193
5194         $SETSTRIPE $DIR/$tdir || error "setstripe"
5195         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5196                                         error "no stripe info failed"
5197         touch $DIR/$tdir/f6
5198         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5199 }
5200 run_test 65e "directory setstripe defaults ======================="
5201
5202 test_65f() {
5203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5204         test_mkdir -p $DIR/${tdir}f
5205         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5206 }
5207 run_test 65f "dir setstripe permission (should return error) ==="
5208
5209 test_65g() {
5210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5211         test_mkdir -p $DIR/$tdir
5212         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5213                                                         error "setstripe"
5214         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5215         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5216                 error "delete default stripe failed"
5217 }
5218 run_test 65g "directory setstripe -d ==========================="
5219
5220 test_65h() {
5221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5222         test_mkdir -p $DIR/$tdir
5223         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5224                                                         error "setstripe"
5225         test_mkdir -p $DIR/$tdir/dd1
5226         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5227                 error "stripe info inherit failed"
5228 }
5229 run_test 65h "directory stripe info inherit ===================="
5230
5231 test_65i() { # bug6367
5232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5233         $SETSTRIPE -S 65536 -c -1 $MOUNT
5234 }
5235 run_test 65i "set non-default striping on root directory (bug 6367)="
5236
5237 test_65ia() { # bug12836
5238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5239         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5240 }
5241 run_test 65ia "getstripe on -1 default directory striping"
5242
5243 test_65ib() { # bug12836
5244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5245         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5246 }
5247 run_test 65ib "getstripe -v on -1 default directory striping"
5248
5249 test_65ic() { # bug12836
5250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5251         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5252 }
5253 run_test 65ic "new find on -1 default directory striping"
5254
5255 test_65j() { # bug6367
5256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5257         sync; sleep 1
5258         # if we aren't already remounting for each test, do so for this test
5259         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5260                 cleanup || error "failed to unmount"
5261                 setup
5262         fi
5263         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5264 }
5265 run_test 65j "set default striping on root directory (bug 6367)="
5266
5267 test_65k() { # bug11679
5268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5269         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5270         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5271
5272     echo "Check OST status: "
5273     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5274               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5275
5276     for OSC in $MDS_OSCS; do
5277         echo $OSC "is activate"
5278         do_facet $SINGLEMDS lctl --device %$OSC activate
5279     done
5280
5281     mkdir -p $DIR/$tdir
5282     for INACTIVE_OSC in $MDS_OSCS; do
5283         echo "Deactivate: " $INACTIVE_OSC
5284         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5285         for STRIPE_OSC in $MDS_OSCS; do
5286             OST=`osc_to_ost $STRIPE_OSC`
5287             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5288                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5289
5290             [ -f $DIR/$tdir/$IDX ] && continue
5291             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5292             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5293             RC=$?
5294             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5295         done
5296         rm -f $DIR/$tdir/*
5297         echo $INACTIVE_OSC "is Activate."
5298         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5299     done
5300 }
5301 run_test 65k "validate manual striping works properly with deactivated OSCs"
5302
5303 test_65l() { # bug 12836
5304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5305         test_mkdir -p $DIR/$tdir/test_dir
5306         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5307         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5308 }
5309 run_test 65l "lfs find on -1 stripe dir ========================"
5310
5311 # bug 2543 - update blocks count on client
5312 test_66() {
5313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5314         COUNT=${COUNT:-8}
5315         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5316         sync; sync_all_data; sync; sync_all_data
5317         cancel_lru_locks osc
5318         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5319         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5320 }
5321 run_test 66 "update inode blocks count on client ==============="
5322
5323 LLOOP=
5324 LLITELOOPLOAD=
5325 cleanup_68() {
5326         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5327         trap 0
5328         if [ ! -z "$LLOOP" ]; then
5329                 if swapon -s | grep -q $LLOOP; then
5330                         swapoff $LLOOP || error "swapoff failed"
5331                 fi
5332
5333                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5334                 rm -f $LLOOP
5335                 unset LLOOP
5336         fi
5337         if [ ! -z "$LLITELOOPLOAD" ]; then
5338                 rmmod llite_lloop
5339                 unset LLITELOOPLOAD
5340         fi
5341         rm -f $DIR/f68*
5342 }
5343
5344 meminfo() {
5345         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5346 }
5347
5348 swap_used() {
5349         swapon -s | awk '($1 == "'$1'") { print $4 }'
5350 }
5351
5352 # test case for lloop driver, basic function
5353 test_68a() {
5354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5355         [ "$UID" != 0 ] && skip_env "must run as root" && return
5356         llite_lloop_enabled || \
5357                 { skip_env "llite_lloop module disabled" && return; }
5358
5359         trap cleanup_68 EXIT
5360
5361         if ! module_loaded llite_lloop; then
5362                 if load_module llite/llite_lloop; then
5363                         LLITELOOPLOAD=yes
5364                 else
5365                         skip_env "can't find module llite_lloop"
5366                         return
5367                 fi
5368         fi
5369
5370         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5371         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5372         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5373
5374         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5375         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5376
5377         cleanup_68
5378 }
5379 run_test 68a "lloop driver - basic test ========================"
5380
5381 # excercise swapping to lustre by adding a high priority swapfile entry
5382 # and then consuming memory until it is used.
5383 test_68b() {  # was test_68
5384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5385         [ "$UID" != 0 ] && skip_env "must run as root" && return
5386         lctl get_param -n devices | grep -q obdfilter && \
5387                 skip "local OST" && return
5388
5389         grep -q llite_lloop /proc/modules
5390         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5391
5392         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5393                 skip "can't reliably test swap with TCP" && return
5394
5395         MEMTOTAL=`meminfo MemTotal`
5396         NR_BLOCKS=$((MEMTOTAL>>8))
5397         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5398
5399         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5400         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5401         mkswap $DIR/f68b
5402
5403         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5404
5405         trap cleanup_68 EXIT
5406
5407         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5408
5409         echo "before: `swapon -s | grep $LLOOP`"
5410         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5411         echo "after: `swapon -s | grep $LLOOP`"
5412         SWAPUSED=`swap_used $LLOOP`
5413
5414         cleanup_68
5415
5416         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5417 }
5418 run_test 68b "support swapping to Lustre ========================"
5419
5420 # bug5265, obdfilter oa2dentry return -ENOENT
5421 # #define OBD_FAIL_OST_ENOENT 0x217
5422 test_69() {
5423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5424         remote_ost_nodsh && skip "remote OST with nodsh" && return
5425
5426         f="$DIR/$tfile"
5427         $SETSTRIPE -c 1 -i 0 $f
5428
5429         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5430
5431         do_facet ost1 lctl set_param fail_loc=0x217
5432         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5433         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5434
5435         do_facet ost1 lctl set_param fail_loc=0
5436         $DIRECTIO write $f 0 2 || error "write error"
5437
5438         cancel_lru_locks osc
5439         $DIRECTIO read $f 0 1 || error "read error"
5440
5441         do_facet ost1 lctl set_param fail_loc=0x217
5442         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5443
5444         do_facet ost1 lctl set_param fail_loc=0
5445         rm -f $f
5446 }
5447 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5448
5449 test_71() {
5450     test_mkdir -p $DIR/$tdir
5451     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5452 }
5453 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5454
5455 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5457         [ "$RUNAS_ID" = "$UID" ] &&
5458                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5459
5460         # Check that testing environment is properly set up. Skip if not
5461         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5462                 skip_env "User $RUNAS_ID does not exist - skipping"
5463                 return 0
5464         }
5465         touch $DIR/$tfile
5466         chmod 777 $DIR/$tfile
5467         chmod ug+s $DIR/$tfile
5468         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5469                 error "$RUNAS dd $DIR/$tfile failed"
5470         # See if we are still setuid/sgid
5471         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5472                 error "S/gid is not dropped on write"
5473         # Now test that MDS is updated too
5474         cancel_lru_locks mdc
5475         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5476                 error "S/gid is not dropped on MDS"
5477         rm -f $DIR/$tfile
5478 }
5479 run_test 72a "Test that remove suid works properly (bug5695) ===="
5480
5481 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5482         local perm
5483
5484         [ "$RUNAS_ID" = "$UID" ] && \
5485                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5486         [ "$RUNAS_ID" -eq 0 ] && \
5487                 skip_env "RUNAS_ID = 0 -- skipping" && return
5488
5489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5490         # Check that testing environment is properly set up. Skip if not
5491         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5492                 skip_env "User $RUNAS_ID does not exist - skipping"
5493                 return 0
5494         }
5495         touch $DIR/${tfile}-f{g,u}
5496         test_mkdir $DIR/${tfile}-dg
5497         test_mkdir $DIR/${tfile}-du
5498         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5499         chmod g+s $DIR/${tfile}-{f,d}g
5500         chmod u+s $DIR/${tfile}-{f,d}u
5501         for perm in 777 2777 4777; do
5502                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5503                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5504                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5505                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5506         done
5507         true
5508 }
5509 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5510
5511 # bug 3462 - multiple simultaneous MDC requests
5512 test_73() {
5513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5514         test_mkdir $DIR/d73-1
5515         test_mkdir $DIR/d73-2
5516         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5517         pid1=$!
5518
5519         lctl set_param fail_loc=0x80000129
5520         $MULTIOP $DIR/d73-1/f73-2 Oc &
5521         sleep 1
5522         lctl set_param fail_loc=0
5523
5524         $MULTIOP $DIR/d73-2/f73-3 Oc &
5525         pid3=$!
5526
5527         kill -USR1 $pid1
5528         wait $pid1 || return 1
5529
5530         sleep 25
5531
5532         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5533         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5534         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5535
5536         rm -rf $DIR/d73-*
5537 }
5538 run_test 73 "multiple MDC requests (should not deadlock)"
5539
5540 test_74a() { # bug 6149, 6184
5541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5542         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5543         #
5544         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5545         # will spin in a tight reconnection loop
5546         touch $DIR/f74a
5547         $LCTL set_param fail_loc=0x8000030e
5548         # get any lock that won't be difficult - lookup works.
5549         ls $DIR/f74a
5550         $LCTL set_param fail_loc=0
5551         rm -f $DIR/f74a
5552         true
5553 }
5554 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5555
5556 test_74b() { # bug 13310
5557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5558         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5559         #
5560         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5561         # will spin in a tight reconnection loop
5562         $LCTL set_param fail_loc=0x8000030e
5563         # get a "difficult" lock
5564         touch $DIR/f74b
5565         $LCTL set_param fail_loc=0
5566         rm -f $DIR/f74b
5567         true
5568 }
5569 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5570
5571 test_74c() {
5572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5573         #define OBD_FAIL_LDLM_NEW_LOCK
5574         $LCTL set_param fail_loc=0x319
5575         touch $DIR/$tfile && error "touch successful"
5576         $LCTL set_param fail_loc=0
5577         true
5578 }
5579 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5580
5581 num_inodes() {
5582         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5583 }
5584
5585 get_inode_slab_tunables() {
5586         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5587 }
5588
5589 set_inode_slab_tunables() {
5590         echo "lustre_inode_cache $1" > /proc/slabinfo
5591 }
5592
5593 test_76() { # Now for bug 20433, added originally in bug 1443
5594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5595         local SLAB_SETTINGS=`get_inode_slab_tunables`
5596         local CPUS=`getconf _NPROCESSORS_ONLN`
5597         # we cannot set limit below 1 which means 1 inode in each
5598         # per-cpu cache is still allowed
5599         set_inode_slab_tunables "1 1 0"
5600         cancel_lru_locks osc
5601         BEFORE_INODES=$(num_inodes)
5602         echo "before inodes: $BEFORE_INODES"
5603         local COUNT=1000
5604         [ "$SLOW" = "no" ] && COUNT=100
5605         for i in $(seq $COUNT); do
5606                 touch $DIR/$tfile
5607                 rm -f $DIR/$tfile
5608         done
5609         cancel_lru_locks osc
5610         AFTER_INODES=$(num_inodes)
5611         echo "after inodes: $AFTER_INODES"
5612         local wait=0
5613         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5614                 sleep 2
5615                 AFTER_INODES=$(num_inodes)
5616                 wait=$((wait+2))
5617                 echo "wait $wait seconds inodes: $AFTER_INODES"
5618                 if [ $wait -gt 30 ]; then
5619                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5620                 fi
5621         done
5622         set_inode_slab_tunables "$SLAB_SETTINGS"
5623 }
5624 run_test 76 "confirm clients recycle inodes properly ===="
5625
5626
5627 export ORIG_CSUM=""
5628 set_checksums()
5629 {
5630         # Note: in sptlrpc modes which enable its own bulk checksum, the
5631         # original crc32_le bulk checksum will be automatically disabled,
5632         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5633         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5634         # In this case set_checksums() will not be no-op, because sptlrpc
5635         # bulk checksum will be enabled all through the test.
5636
5637         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5638         lctl set_param -n osc.*.checksums $1
5639         return 0
5640 }
5641
5642 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5643                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5644 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5645 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5646 set_checksum_type()
5647 {
5648         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5649         log "set checksum type to $1"
5650         return 0
5651 }
5652 F77_TMP=$TMP/f77-temp
5653 F77SZ=8
5654 setup_f77() {
5655         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5656                 error "error writing to $F77_TMP"
5657 }
5658
5659 test_77a() { # bug 10889
5660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5661         $GSS && skip "could not run with gss" && return
5662         [ ! -f $F77_TMP ] && setup_f77
5663         set_checksums 1
5664         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5665         set_checksums 0
5666         rm -f $DIR/$tfile
5667 }
5668 run_test 77a "normal checksum read/write operation"
5669
5670 test_77b() { # bug 10889
5671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5672         $GSS && skip "could not run with gss" && return
5673         [ ! -f $F77_TMP ] && setup_f77
5674         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5675         $LCTL set_param fail_loc=0x80000409
5676         set_checksums 1
5677
5678         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5679                 error "dd error: $?"
5680         $LCTL set_param fail_loc=0
5681
5682         for algo in $CKSUM_TYPES; do
5683                 cancel_lru_locks osc
5684                 set_checksum_type $algo
5685                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5686                 $LCTL set_param fail_loc=0x80000408
5687                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5688                 $LCTL set_param fail_loc=0
5689         done
5690         set_checksums 0
5691         set_checksum_type $ORIG_CSUM_TYPE
5692         rm -f $DIR/$tfile
5693 }
5694 run_test 77b "checksum error on client write, read"
5695
5696 test_77d() { # bug 10889
5697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5698         $GSS && skip "could not run with gss" && return
5699         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5700         $LCTL set_param fail_loc=0x80000409
5701         set_checksums 1
5702         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5703                 error "direct write: rc=$?"
5704         $LCTL set_param fail_loc=0
5705         set_checksums 0
5706
5707         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5708         $LCTL set_param fail_loc=0x80000408
5709         set_checksums 1
5710         cancel_lru_locks osc
5711         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5712                 error "direct read: rc=$?"
5713         $LCTL set_param fail_loc=0
5714         set_checksums 0
5715 }
5716 run_test 77d "checksum error on OST direct write, read"
5717
5718 test_77f() { # bug 10889
5719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5720         $GSS && skip "could not run with gss" && return
5721         set_checksums 1
5722         for algo in $CKSUM_TYPES; do
5723                 cancel_lru_locks osc
5724                 set_checksum_type $algo
5725                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5726                 $LCTL set_param fail_loc=0x409
5727                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5728                         error "direct write succeeded"
5729                 $LCTL set_param fail_loc=0
5730         done
5731         set_checksum_type $ORIG_CSUM_TYPE
5732         set_checksums 0
5733 }
5734 run_test 77f "repeat checksum error on write (expect error)"
5735
5736 test_77g() { # bug 10889
5737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5738         $GSS && skip "could not run with gss" && return
5739         remote_ost_nodsh && skip "remote OST with nodsh" && return
5740
5741         [ ! -f $F77_TMP ] && setup_f77
5742
5743         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5744         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5745         do_facet ost1 lctl set_param fail_loc=0x8000021a
5746         set_checksums 1
5747         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5748                 error "write error: rc=$?"
5749         do_facet ost1 lctl set_param fail_loc=0
5750         set_checksums 0
5751
5752         cancel_lru_locks osc
5753         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5754         do_facet ost1 lctl set_param fail_loc=0x8000021b
5755         set_checksums 1
5756         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5757         do_facet ost1 lctl set_param fail_loc=0
5758         set_checksums 0
5759 }
5760 run_test 77g "checksum error on OST write, read"
5761
5762 test_77i() { # bug 13805
5763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5764         $GSS && skip "could not run with gss" && return
5765         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5766         lctl set_param fail_loc=0x40b
5767         remount_client $MOUNT
5768         lctl set_param fail_loc=0
5769         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5770                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5771                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5772                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5773         done
5774         remount_client $MOUNT
5775 }
5776 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5777
5778 test_77j() { # bug 13805
5779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5780         $GSS && skip "could not run with gss" && return
5781         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5782         lctl set_param fail_loc=0x40c
5783         remount_client $MOUNT
5784         lctl set_param fail_loc=0
5785         sleep 2 # wait async osc connect to finish
5786         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5787                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5788                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5789                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5790         done
5791         remount_client $MOUNT
5792 }
5793 run_test 77j "client only supporting ADLER32"
5794
5795 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5796 rm -f $F77_TMP
5797 unset F77_TMP
5798
5799 test_78() { # bug 10901
5800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5801         remote_ost || { skip_env "local OST" && return; }
5802
5803         NSEQ=5
5804         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5805         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5806         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5807         echo "MemTotal: $MEMTOTAL"
5808
5809         # reserve 256MB of memory for the kernel and other running processes,
5810         # and then take 1/2 of the remaining memory for the read/write buffers.
5811         if [ $MEMTOTAL -gt 512 ] ;then
5812                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5813         else
5814                 # for those poor memory-starved high-end clusters...
5815                 MEMTOTAL=$((MEMTOTAL / 2))
5816         fi
5817         echo "Mem to use for directio: $MEMTOTAL"
5818
5819         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
5820         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
5821         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
5822         SMALLESTOST=$(lfs df $DIR | grep OST | awk '{ print $4 }' | sort -n |
5823                 head -n1)
5824         echo "Smallest OST: $SMALLESTOST"
5825         [[ $SMALLESTOST -lt 10240 ]] &&
5826                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5827
5828         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
5829                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5830
5831         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5832         echo "File size: $F78SIZE"
5833         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5834         for i in $(seq 1 $NSEQ); do
5835                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5836                 echo directIO rdwr round $i of $NSEQ
5837                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5838         done
5839
5840         rm -f $DIR/$tfile
5841 }
5842 run_test 78 "handle large O_DIRECT writes correctly ============"
5843
5844 test_79() { # bug 12743
5845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5846         wait_delete_completed
5847
5848         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5849         BKFREE=$(calc_osc_kbytes kbytesfree)
5850         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5851
5852         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5853         DFTOTAL=`echo $STRING | cut -d, -f1`
5854         DFUSED=`echo $STRING  | cut -d, -f2`
5855         DFAVAIL=`echo $STRING | cut -d, -f3`
5856         DFFREE=$(($DFTOTAL - $DFUSED))
5857
5858         ALLOWANCE=$((64 * $OSTCOUNT))
5859
5860         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5861            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5862                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5863         fi
5864         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5865            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5866                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5867         fi
5868         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5869            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5870                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5871         fi
5872 }
5873 run_test 79 "df report consistency check ======================="
5874
5875 test_80() { # bug 10718
5876         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5877         # relax strong synchronous semantics for slow backends like ZFS
5878         local soc="obdfilter.*.sync_on_lock_cancel"
5879         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5880         local hosts=
5881         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5882                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5883                           facet_active_host $host; done | sort -u)
5884                 do_nodes $hosts lctl set_param $soc=never
5885         fi
5886
5887         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5888         sync; sleep 1; sync
5889         local BEFORE=`date +%s`
5890         cancel_lru_locks osc
5891         local AFTER=`date +%s`
5892         local DIFF=$((AFTER-BEFORE))
5893         if [ $DIFF -gt 1 ] ; then
5894                 error "elapsed for 1M@1T = $DIFF"
5895         fi
5896
5897         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5898
5899         rm -f $DIR/$tfile
5900 }
5901 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5902
5903 test_81a() { # LU-456
5904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5905         remote_ost_nodsh && skip "remote OST with nodsh" && return
5906         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5907         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5908         do_facet ost1 lctl set_param fail_loc=0x80000228
5909
5910         # write should trigger a retry and success
5911         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5912         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5913         RC=$?
5914         if [ $RC -ne 0 ] ; then
5915                 error "write should success, but failed for $RC"
5916         fi
5917 }
5918 run_test 81a "OST should retry write when get -ENOSPC ==============="
5919
5920 test_81b() { # LU-456
5921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5922         remote_ost_nodsh && skip "remote OST with nodsh" && return
5923         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5924         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5925         do_facet ost1 lctl set_param fail_loc=0x228
5926
5927         # write should retry several times and return -ENOSPC finally
5928         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5929         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5930         RC=$?
5931         ENOSPC=28
5932         if [ $RC -ne $ENOSPC ] ; then
5933                 error "dd should fail for -ENOSPC, but succeed."
5934         fi
5935 }
5936 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5937
5938 test_82() { # LU-1031
5939         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5940         local gid1=14091995
5941         local gid2=16022000
5942
5943         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5944         local MULTIPID1=$!
5945         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5946         local MULTIPID2=$!
5947         kill -USR1 $MULTIPID2
5948         sleep 2
5949         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5950                 error "First grouplock does not block second one"
5951         else
5952                 echo "Second grouplock blocks first one"
5953         fi
5954         kill -USR1 $MULTIPID1
5955         wait $MULTIPID1
5956         wait $MULTIPID2
5957 }
5958 run_test 82 "Basic grouplock test ==============================="
5959
5960 test_99a() {
5961         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5962                 return
5963         test_mkdir -p $DIR/d99cvsroot
5964         chown $RUNAS_ID $DIR/d99cvsroot
5965         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5966         cd $TMP
5967
5968         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5969         cd $oldPWD
5970 }
5971 run_test 99a "cvs init ========================================="
5972
5973 test_99b() {
5974         [ -z "$(which cvs 2>/dev/null)" ] &&
5975                 skip_env "could not find cvs" && return
5976         [ ! -d $DIR/d99cvsroot ] && test_99a
5977         cd /etc/init.d
5978         # some versions of cvs import exit(1) when asked to import links or
5979         # files they can't read.  ignore those files.
5980         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5981                         ! -perm +4 -printf '-I %f\n')
5982         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5983                 d99reposname vtag rtag
5984 }
5985 run_test 99b "cvs import ======================================="
5986
5987 test_99c() {
5988         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5989         [ ! -d $DIR/d99cvsroot ] && test_99b
5990         cd $DIR
5991         test_mkdir -p $DIR/d99reposname
5992         chown $RUNAS_ID $DIR/d99reposname
5993         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5994 }
5995 run_test 99c "cvs checkout ====================================="
5996
5997 test_99d() {
5998         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5999         [ ! -d $DIR/d99cvsroot ] && test_99c
6000         cd $DIR/d99reposname
6001         $RUNAS touch foo99
6002         $RUNAS cvs add -m 'addmsg' foo99
6003 }
6004 run_test 99d "cvs add =========================================="
6005
6006 test_99e() {
6007         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6008         [ ! -d $DIR/d99cvsroot ] && test_99c
6009         cd $DIR/d99reposname
6010         $RUNAS cvs update
6011 }
6012 run_test 99e "cvs update ======================================="
6013
6014 test_99f() {
6015         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6016         [ ! -d $DIR/d99cvsroot ] && test_99d
6017         cd $DIR/d99reposname
6018         $RUNAS cvs commit -m 'nomsg' foo99
6019     rm -fr $DIR/d99cvsroot
6020 }
6021 run_test 99f "cvs commit ======================================="
6022
6023 test_100() {
6024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6025         [ "$NETTYPE" = tcp ] || \
6026                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6027                         return ; }
6028
6029         remote_ost_nodsh && skip "remote OST with nodsh" && return
6030         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6031         remote_servers || \
6032                 { skip "useless for local single node setup" && return; }
6033
6034         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6035                 [ "$PROT" != "tcp" ] && continue
6036                 RPORT=$(echo $REMOTE | cut -d: -f2)
6037                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6038
6039                 rc=0
6040                 LPORT=`echo $LOCAL | cut -d: -f2`
6041                 if [ $LPORT -ge 1024 ]; then
6042                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6043                         netstat -tna
6044                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6045                 fi
6046         done
6047         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6048 }
6049 run_test 100 "check local port using privileged port ==========="
6050
6051 function get_named_value()
6052 {
6053     local tag
6054
6055     tag=$1
6056     while read ;do
6057         line=$REPLY
6058         case $line in
6059         $tag*)
6060             echo $line | sed "s/^$tag[ ]*//"
6061             break
6062             ;;
6063         esac
6064     done
6065 }
6066
6067 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6068                    awk '/^max_cached_mb/ { print $2 }')
6069
6070 cleanup_101a() {
6071         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6072         trap 0
6073 }
6074
6075 test_101a() {
6076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6077         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6078         local s
6079         local discard
6080         local nreads=10000
6081         local cache_limit=32
6082
6083         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6084         trap cleanup_101a EXIT
6085         $LCTL set_param -n llite.*.read_ahead_stats 0
6086         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6087
6088         #
6089         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6090         #
6091         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6092         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6093
6094         discard=0
6095         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6096                 get_named_value 'read but discarded' | cut -d" " -f1); do
6097                         discard=$(($discard + $s))
6098         done
6099         cleanup_101a
6100
6101         if [[ $(($discard * 10)) -gt $nreads ]]; then
6102                 $LCTL get_param osc.*-osc*.rpc_stats
6103                 $LCTL get_param llite.*.read_ahead_stats
6104                 error "too many ($discard) discarded pages"
6105         fi
6106         rm -f $DIR/$tfile || true
6107 }
6108 run_test 101a "check read-ahead for random reads ================"
6109
6110 setup_test101bc() {
6111         test_mkdir -p $DIR/$tdir
6112         local STRIPE_SIZE=$1
6113         local FILE_LENGTH=$2
6114         STRIPE_OFFSET=0
6115
6116         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6117
6118         local list=$(comma_list $(osts_nodes))
6119         set_osd_param $list '' read_cache_enable 0
6120         set_osd_param $list '' writethrough_cache_enable 0
6121
6122         trap cleanup_test101bc EXIT
6123         # prepare the read-ahead file
6124         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6125
6126         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6127                                 count=$FILE_SIZE_MB 2> /dev/null
6128
6129 }
6130
6131 cleanup_test101bc() {
6132         trap 0
6133         rm -rf $DIR/$tdir
6134         rm -f $DIR/$tfile
6135
6136         local list=$(comma_list $(osts_nodes))
6137         set_osd_param $list '' read_cache_enable 1
6138         set_osd_param $list '' writethrough_cache_enable 1
6139 }
6140
6141 calc_total() {
6142         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6143 }
6144
6145 ra_check_101() {
6146         local READ_SIZE=$1
6147         local STRIPE_SIZE=$2
6148         local FILE_LENGTH=$3
6149         local RA_INC=1048576
6150         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6151         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6152                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6153         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6154                         get_named_value 'read but discarded' |
6155                         cut -d" " -f1 | calc_total)
6156         if [[ $DISCARD -gt $discard_limit ]]; then
6157                 $LCTL get_param llite.*.read_ahead_stats
6158                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6159         else
6160                 echo "Read-ahead success for size ${READ_SIZE}"
6161         fi
6162 }
6163
6164 test_101b() {
6165         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6166         [[ $OSTCOUNT -lt 2 ]] &&
6167                 skip_env "skipping stride IO stride-ahead test" && return
6168         local STRIPE_SIZE=1048576
6169         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6170         if [ $SLOW == "yes" ]; then
6171                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6172         else
6173                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6174         fi
6175
6176         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6177
6178         # prepare the read-ahead file
6179         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6180         cancel_lru_locks osc
6181         for BIDX in 2 4 8 16 32 64 128 256
6182         do
6183                 local BSIZE=$((BIDX*4096))
6184                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6185                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6186                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6187                 $LCTL set_param -n llite.*.read_ahead_stats 0
6188                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6189                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6190                 cancel_lru_locks osc
6191                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6192         done
6193         cleanup_test101bc
6194         true
6195 }
6196 run_test 101b "check stride-io mode read-ahead ================="
6197
6198 test_101c() {
6199         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6200         local STRIPE_SIZE=1048576
6201         local FILE_LENGTH=$((STRIPE_SIZE*100))
6202         local nreads=10000
6203         local osc_rpc_stats
6204
6205         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6206
6207         cancel_lru_locks osc
6208         $LCTL set_param osc.*.rpc_stats 0
6209         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6210         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6211                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6212                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6213                 local size
6214
6215                 if [ $lines -le 20 ]; then
6216                         continue
6217                 fi
6218                 for size in 1 2 4 8; do
6219                         local rpc=$(echo "$stats" |
6220                                     awk '($1 == "'$size':") {print $2; exit; }')
6221                         [ $rpc != 0 ] &&
6222                                 error "Small $((size*4))k read IO $rpc !"
6223                 done
6224                 echo "$osc_rpc_stats check passed!"
6225         done
6226         cleanup_test101bc
6227         true
6228 }
6229 run_test 101c "check stripe_size aligned read-ahead ================="
6230
6231 set_read_ahead() {
6232         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6233         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6234 }
6235
6236 test_101d() {
6237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6238         local file=$DIR/$tfile
6239         local sz_MB=${FILESIZE_101d:-500}
6240         local ra_MB=${READAHEAD_MB:-40}
6241
6242         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6243         [ $free_MB -lt $sz_MB ] &&
6244                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6245
6246         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6247         $SETSTRIPE -c -1 $file || error "setstripe failed"
6248
6249         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6250         echo Cancel LRU locks on lustre client to flush the client cache
6251         cancel_lru_locks osc
6252
6253         echo Disable read-ahead
6254         local old_READAHEAD=$(set_read_ahead 0)
6255
6256         echo Reading the test file $file with read-ahead disabled
6257         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6258
6259         echo Cancel LRU locks on lustre client to flush the client cache
6260         cancel_lru_locks osc
6261         echo Enable read-ahead with ${ra_MB}MB
6262         set_read_ahead $ra_MB
6263
6264         echo Reading the test file $file with read-ahead enabled
6265         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6266
6267         echo "read-ahead disabled time read $raOFF"
6268         echo "read-ahead enabled  time read $raON"
6269
6270         set_read_ahead $old_READAHEAD
6271         rm -f $file
6272         wait_delete_completed
6273
6274         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6275                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6276 }
6277 run_test 101d "file read with and without read-ahead enabled"
6278
6279 test_101e() {
6280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6281         local file=$DIR/$tfile
6282         local size_KB=500  #KB
6283         local count=100
6284         local bsize=1024
6285
6286         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6287         local need_KB=$((count * size_KB))
6288         [[ $free_KB -le $need_KB ]] &&
6289                 skip_env "Need free space $need_KB, have $free_KB" && return
6290
6291         echo "Creating $count ${size_KB}K test files"
6292         for ((i = 0; i < $count; i++)); do
6293                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6294         done
6295
6296         echo "Cancel LRU locks on lustre client to flush the client cache"
6297         cancel_lru_locks osc
6298
6299         echo "Reset readahead stats"
6300         $LCTL set_param -n llite.*.read_ahead_stats 0
6301
6302         for ((i = 0; i < $count; i++)); do
6303                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6304         done
6305
6306         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6307                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6308
6309         for ((i = 0; i < $count; i++)); do
6310                 rm -rf $file.$i 2>/dev/null
6311         done
6312
6313         #10000 means 20% reads are missing in readahead
6314         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6315 }
6316 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6317
6318 cleanup_test101f() {
6319     trap 0
6320     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6321     rm -rf $DIR/$tfile 2>/dev/null
6322 }
6323
6324 test_101f() {
6325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6326     local file=$DIR/$tfile
6327     local nreads=1000
6328
6329     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6330     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6331     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6332     trap cleanup_test101f EXIT
6333
6334     echo Cancel LRU locks on lustre client to flush the client cache
6335     cancel_lru_locks osc
6336
6337     echo Reset readahead stats
6338     $LCTL set_param -n llite.*.read_ahead_stats 0
6339     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6340     # readahead should read in 2M file on second read, so only miss
6341     # 2 pages.
6342     echo Random 4K reads on 2M file for 1000 times
6343     $READS -f $file -s 2097152 -b 4096 -n $nreads
6344
6345     echo checking missing pages
6346     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6347           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6348
6349     [ $miss -lt 3 ] || error "misses too much pages!"
6350     cleanup_test101f
6351 }
6352 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6353
6354 setup_test102() {
6355         test_mkdir -p $DIR/$tdir
6356         chown $RUNAS_ID $DIR/$tdir
6357         STRIPE_SIZE=65536
6358         STRIPE_OFFSET=1
6359         STRIPE_COUNT=$OSTCOUNT
6360         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6361
6362         trap cleanup_test102 EXIT
6363         cd $DIR
6364         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6365         cd $DIR/$tdir
6366         for num in 1 2 3 4; do
6367                 for count in $(seq 1 $STRIPE_COUNT); do
6368                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6369                                 local size=`expr $STRIPE_SIZE \* $num`
6370                                 local file=file"$num-$idx-$count"
6371                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6372                         done
6373                 done
6374         done
6375
6376         cd $DIR
6377         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6378 }
6379
6380 cleanup_test102() {
6381         trap 0
6382         rm -f $TMP/f102.tar
6383         rm -rf $DIR/d0.sanity/d102
6384 }
6385
6386 test_102a() {
6387         local testfile=$DIR/$tfile
6388
6389         touch $testfile
6390
6391         [ "$UID" != 0 ] && skip_env "must run as root" && return
6392         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6393                 skip_env "must have user_xattr" && return
6394
6395         [ -z "$(which setfattr 2>/dev/null)" ] &&
6396                 skip_env "could not find setfattr" && return
6397
6398         echo "set/get xattr..."
6399         setfattr -n trusted.name1 -v value1 $testfile ||
6400                 error "setfattr -n trusted.name1=value1 $testfile failed"
6401         getfattr -n trusted.name1 $testfile 2> /dev/null |
6402           grep "trusted.name1=.value1" ||
6403                 error "$testfile missing trusted.name1=value1"
6404
6405         setfattr -n user.author1 -v author1 $testfile ||
6406                 error "setfattr -n user.author1=author1 $testfile failed"
6407         getfattr -n user.author1 $testfile 2> /dev/null |
6408           grep "user.author1=.author1" ||
6409                 error "$testfile missing trusted.author1=author1"
6410
6411         echo "listxattr..."
6412         setfattr -n trusted.name2 -v value2 $testfile ||
6413                 error "$testfile unable to set trusted.name2"
6414         setfattr -n trusted.name3 -v value3 $testfile ||
6415                 error "$testfile unable to set trusted.name3"
6416         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6417             grep "trusted.name" | wc -l) -eq 3 ] ||
6418                 error "$testfile missing 3 trusted.name xattrs"
6419
6420         setfattr -n user.author2 -v author2 $testfile ||
6421                 error "$testfile unable to set user.author2"
6422         setfattr -n user.author3 -v author3 $testfile ||
6423                 error "$testfile unable to set user.author3"
6424         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6425             grep "user.author" | wc -l) -eq 3 ] ||
6426                 error "$testfile missing 3 user.author xattrs"
6427
6428         echo "remove xattr..."
6429         setfattr -x trusted.name1 $testfile ||
6430                 error "$testfile error deleting trusted.name1"
6431         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6432                 error "$testfile did not delete trusted.name1 xattr"
6433
6434         setfattr -x user.author1 $testfile ||
6435                 error "$testfile error deleting user.author1"
6436         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6437                 error "$testfile did not delete trusted.name1 xattr"
6438
6439         # b10667: setting lustre special xattr be silently discarded
6440         echo "set lustre special xattr ..."
6441         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6442                 error "$testfile allowed setting trusted.lov"
6443 }
6444 run_test 102a "user xattr test =================================="
6445
6446 test_102b() {
6447         [ -z "$(which setfattr 2>/dev/null)" ] &&
6448                 skip_env "could not find setfattr" && return
6449
6450         # b10930: get/set/list trusted.lov xattr
6451         echo "get/set/list trusted.lov xattr ..."
6452         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6453         local testfile=$DIR/$tfile
6454         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6455                 error "setstripe failed"
6456         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6457                 error "getstripe failed"
6458         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6459                 error "can't get trusted.lov from $testfile"
6460
6461         local testfile2=${testfile}2
6462         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6463                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6464
6465         $MCREATE $testfile2
6466         setfattr -n trusted.lov -v $value $testfile2
6467         local stripe_size=$($GETSTRIPE -S $testfile2)
6468         local stripe_count=$($GETSTRIPE -c $testfile2)
6469         [[ $stripe_size -eq 65536 ]] ||
6470                 error "stripe size $stripe_size != 65536"
6471         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6472                 error "stripe count $stripe_count != $STRIPECOUNT"
6473         rm -f $DIR/$tfile
6474 }
6475 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6476
6477 test_102c() {
6478         [ -z "$(which setfattr 2>/dev/null)" ] &&
6479                 skip_env "could not find setfattr" && return
6480
6481         # b10930: get/set/list lustre.lov xattr
6482         echo "get/set/list lustre.lov xattr ..."
6483         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6484         test_mkdir -p $DIR/$tdir
6485         chown $RUNAS_ID $DIR/$tdir
6486         local testfile=$DIR/$tdir/$tfile
6487         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6488                 error "setstripe failed"
6489         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6490                 error "getstripe failed"
6491         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6492         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6493
6494         local testfile2=${testfile}2
6495         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6496                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6497
6498         $RUNAS $MCREATE $testfile2
6499         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6500         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6501         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6502         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6503         [ $stripe_count -eq $STRIPECOUNT ] ||
6504                 error "stripe count $stripe_count != $STRIPECOUNT"
6505 }
6506 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6507
6508 compare_stripe_info1() {
6509         local stripe_index_all_zero=true
6510
6511         for num in 1 2 3 4; do
6512                 for count in $(seq 1 $STRIPE_COUNT); do
6513                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6514                                 local size=$((STRIPE_SIZE * num))
6515                                 local file=file"$num-$offset-$count"
6516                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6517                                 [[ $stripe_size -ne $size ]] &&
6518                                     error "$file: size $stripe_size != $size"
6519                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6520                                 # allow fewer stripes to be created, ORI-601
6521                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6522                                     error "$file: count $stripe_count != $count"
6523                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6524                                 [[ $stripe_index -ne 0 ]] &&
6525                                         stripe_index_all_zero=false
6526                         done
6527                 done
6528         done
6529         $stripe_index_all_zero &&
6530                 error "all files are being extracted starting from OST index 0"
6531         return 0
6532 }
6533
6534 find_lustre_tar() {
6535         [ -n "$(which tar 2>/dev/null)" ] &&
6536                 strings $(which tar) | grep -q "lustre" && echo tar
6537 }
6538
6539 test_102d() {
6540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6541         # b10930: tar test for trusted.lov xattr
6542         TAR=$(find_lustre_tar)
6543         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6544         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6545         setup_test102
6546         test_mkdir -p $DIR/d102d
6547         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6548         cd $DIR/d102d/$tdir
6549         compare_stripe_info1
6550 }
6551 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6552
6553 test_102f() {
6554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6555         # b10930: tar test for trusted.lov xattr
6556         TAR=$(find_lustre_tar)
6557         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6558         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6559         setup_test102
6560         test_mkdir -p $DIR/d102f
6561         cd $DIR
6562         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6563         cd $DIR/d102f/$tdir
6564         compare_stripe_info1
6565 }
6566 run_test 102f "tar copy files, not keep osts ==========="
6567
6568 grow_xattr() {
6569         local xsize=${1:-1024}  # in bytes
6570         local file=$DIR/$tfile
6571
6572         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6573                 skip "must have user_xattr" && return 0
6574         [ -z "$(which setfattr 2>/dev/null)" ] &&
6575                 skip_env "could not find setfattr" && return 0
6576         [ -z "$(which getfattr 2>/dev/null)" ] &&
6577                 skip_env "could not find getfattr" && return 0
6578
6579         touch $file
6580
6581         local value="$(generate_string $xsize)"
6582
6583         local xbig=trusted.big
6584         log "save $xbig on $file"
6585         setfattr -n $xbig -v $value $file ||
6586                 error "saving $xbig on $file failed"
6587
6588         local orig=$(get_xattr_value $xbig $file)
6589         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6590
6591         local xsml=trusted.sml
6592         log "save $xsml on $file"
6593         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6594
6595         local new=$(get_xattr_value $xbig $file)
6596         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6597
6598         log "grow $xsml on $file"
6599         setfattr -n $xsml -v "$value" $file ||
6600                 error "growing $xsml on $file failed"
6601
6602         new=$(get_xattr_value $xbig $file)
6603         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6604         log "$xbig still valid after growing $xsml"
6605
6606         rm -f $file
6607 }
6608
6609 test_102h() { # bug 15777
6610         grow_xattr 1024
6611 }
6612 run_test 102h "grow xattr from inside inode to external block"
6613
6614 test_102ha() {
6615         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6616         grow_xattr $(max_xattr_size)
6617 }
6618 run_test 102ha "grow xattr from inside inode to external inode"
6619
6620 test_102i() { # bug 17038
6621         [ -z "$(which getfattr 2>/dev/null)" ] &&
6622                 skip "could not find getfattr" && return
6623         touch $DIR/$tfile
6624         ln -s $DIR/$tfile $DIR/${tfile}link
6625         getfattr -n trusted.lov $DIR/$tfile ||
6626                 error "lgetxattr on $DIR/$tfile failed"
6627         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6628                 grep -i "no such attr" ||
6629                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6630         rm -f $DIR/$tfile $DIR/${tfile}link
6631 }
6632 run_test 102i "lgetxattr test on symbolic link ============"
6633
6634 test_102j() {
6635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6636         TAR=$(find_lustre_tar)
6637         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6638         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6639         setup_test102 "$RUNAS"
6640         test_mkdir -p $DIR/d102j
6641         chown $RUNAS_ID $DIR/d102j
6642         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6643         cd $DIR/d102j/$tdir
6644         compare_stripe_info1 "$RUNAS"
6645 }
6646 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6647
6648 test_102k() {
6649         [ -z "$(which setfattr 2>/dev/null)" ] &&
6650                 skip "could not find setfattr" && return
6651         touch $DIR/$tfile
6652         # b22187 just check that does not crash for regular file.
6653         setfattr -n trusted.lov $DIR/$tfile
6654         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6655         local test_kdir=$DIR/d102k
6656         test_mkdir $test_kdir
6657         local default_size=`$GETSTRIPE -S $test_kdir`
6658         local default_count=`$GETSTRIPE -c $test_kdir`
6659         local default_offset=`$GETSTRIPE -i $test_kdir`
6660         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6661                 error 'dir setstripe failed'
6662         setfattr -n trusted.lov $test_kdir
6663         local stripe_size=`$GETSTRIPE -S $test_kdir`
6664         local stripe_count=`$GETSTRIPE -c $test_kdir`
6665         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6666         [ $stripe_size -eq $default_size ] ||
6667                 error "stripe size $stripe_size != $default_size"
6668         [ $stripe_count -eq $default_count ] ||
6669                 error "stripe count $stripe_count != $default_count"
6670         [ $stripe_offset -eq $default_offset ] ||
6671                 error "stripe offset $stripe_offset != $default_offset"
6672         rm -rf $DIR/$tfile $test_kdir
6673 }
6674 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6675
6676 test_102l() {
6677         [ -z "$(which getfattr 2>/dev/null)" ] &&
6678                 skip "could not find getfattr" && return
6679
6680         # LU-532 trusted. xattr is invisible to non-root
6681         local testfile=$DIR/$tfile
6682
6683         touch $testfile
6684
6685         echo "listxattr as user..."
6686         chown $RUNAS_ID $testfile
6687         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6688             grep -q "trusted" &&
6689                 error "$testfile trusted xattrs are user visible"
6690
6691         return 0;
6692 }
6693 run_test 102l "listxattr size test =================================="
6694
6695 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6696         local path=$DIR/$tfile
6697         touch $path
6698
6699         listxattr_size_check $path || error "listattr_size_check $path failed"
6700 }
6701 run_test 102m "Ensure listxattr fails on small bufffer ========"
6702
6703 cleanup_test102
6704
6705 getxattr() { # getxattr path name
6706         # Return the base64 encoding of the value of xattr name on path.
6707         local path=$1
6708         local name=$2
6709
6710         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6711         # file: $path
6712         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6713         #
6714         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6715
6716         getfattr --absolute-names --encoding=base64 --name=$name $path |
6717                 awk -F= -v name=$name '$1 == name {
6718                         print substr($0, index($0, "=") + 1);
6719         }'
6720 }
6721
6722 test_102n() { # LU-4101 mdt: protect internal xattrs
6723         local file0=$DIR/$tfile.0
6724         local file1=$DIR/$tfile.1
6725         local xattr0=$TMP/$tfile.0
6726         local xattr1=$TMP/$tfile.1
6727         local name
6728         local value
6729
6730         [ -z "$(which setfattr 2>/dev/null)" ] &&
6731                 skip "could not find setfattr" && return
6732
6733         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6734         then
6735                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6736                 return
6737         fi
6738
6739         rm -rf $file0 $file1 $xattr0 $xattr1
6740         touch $file0 $file1
6741
6742         # Get 'before' xattrs of $file1.
6743         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6744
6745         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6746                 # Try to copy xattr from $file0 to $file1.
6747                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6748
6749                 setfattr --name=trusted.$name --value="$value" $file1 ||
6750                         error "setxattr 'trusted.$name' failed"
6751
6752                 # Try to set a garbage xattr.
6753                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6754
6755                 setfattr --name=trusted.$name --value="$value" $file1 ||
6756                         error "setxattr 'trusted.$name' failed"
6757
6758                 # Try to remove the xattr from $file1. We don't care if this
6759                 # appears to succeed or fail, we just don't want there to be
6760                 # any changes or crashes.
6761                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6762         done
6763
6764         # Get 'after' xattrs of file1.
6765         getfattr --absolute-names --dump --match=- $file1 > $xattr1
6766
6767         if ! diff $xattr0 $xattr1; then
6768                 error "before and after xattrs of '$file1' differ"
6769         fi
6770
6771         rm -rf $file0 $file1 $xattr0 $xattr1
6772
6773         return 0
6774 }
6775 run_test 102n "silently ignore setxattr on internal trusted xattrs"
6776
6777 test_102p() { # LU-4703 setxattr did not check ownership
6778         local testfile=$DIR/$tfile
6779
6780         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
6781                 skip "MDS needs to be at least 2.5.56" && return
6782
6783         touch $testfile
6784
6785         echo "setfacl as user..."
6786         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
6787         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
6788
6789         echo "setfattr as user..."
6790         setfacl -m "u:$RUNAS_ID:---" $testfile
6791         $RUNAS setfattr -x system.posix_acl_access $testfile
6792         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
6793 }
6794 run_test 102p "check setxattr(2) correctly fails without permission"
6795
6796 run_acl_subtest()
6797 {
6798     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6799     return $?
6800 }
6801
6802 test_103 () {
6803         [ "$UID" != 0 ] && skip_env "must run as root" && return
6804         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6805                 skip "must have acl enabled" && return
6806         [ -z "$(which setfacl 2>/dev/null)" ] &&
6807                 skip_env "could not find setfacl" && return
6808         $GSS && skip "could not run under gss" && return
6809
6810         declare -a identity_old
6811
6812         for num in $(seq $MDSCOUNT); do
6813                 switch_identity $num true || identity_old[$num]=$?
6814         done
6815
6816         SAVE_UMASK=$(umask)
6817         umask 0022
6818         cd $DIR
6819
6820         echo "performing cp ..."
6821         run_acl_subtest cp || error "run_acl_subtest cp failed"
6822         echo "performing getfacl-noacl..."
6823         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6824         echo "performing misc..."
6825         run_acl_subtest misc || error  "misc test failed"
6826         echo "performing permissions..."
6827         run_acl_subtest permissions || error "permissions failed"
6828         echo "performing setfacl..."
6829         run_acl_subtest setfacl || error  "setfacl test failed"
6830
6831         # inheritance test got from HP
6832         echo "performing inheritance..."
6833         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6834         chmod +x make-tree || error "chmod +x failed"
6835         run_acl_subtest inheritance || error "inheritance test failed"
6836         rm -f make-tree
6837
6838         echo "LU-974 ignore umask when acl is enabled..."
6839         run_acl_subtest 974 || error "LU-974 umask test failed"
6840         if [ $MDSCOUNT -ge 2 ]; then
6841                 run_acl_subtest 974_remote ||
6842                         error "LU-974 umask test failed under remote dir"
6843         fi
6844
6845         echo "LU-2561 newly created file is same size as directory..."
6846         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
6847                 run_acl_subtest 2561 || error "LU-2561 test failed"
6848         else
6849                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
6850         fi
6851
6852         run_acl_subtest 4924 || error "LU-4924 test failed"
6853
6854         cd $SAVE_PWD
6855         umask $SAVE_UMASK
6856
6857         for num in $(seq $MDSCOUNT); do
6858                 if [ "${identity_old[$num]}" = 1 ]; then
6859                         switch_identity $num false || identity_old[$num]=$?
6860                 fi
6861         done
6862 }
6863 run_test 103 "acl test ========================================="
6864
6865 test_104a() {
6866         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6867         touch $DIR/$tfile
6868         lfs df || error "lfs df failed"
6869         lfs df -ih || error "lfs df -ih failed"
6870         lfs df -h $DIR || error "lfs df -h $DIR failed"
6871         lfs df -i $DIR || error "lfs df -i $DIR failed"
6872         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6873         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6874
6875         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6876         lctl --device %$OSC deactivate
6877         lfs df || error "lfs df with deactivated OSC failed"
6878         lctl --device %$OSC activate
6879         # wait the osc back to normal
6880         wait_osc_import_state client ost FULL
6881
6882         lfs df || error "lfs df with reactivated OSC failed"
6883         rm -f $DIR/$tfile
6884 }
6885 run_test 104a "lfs df [-ih] [path] test ========================="
6886
6887 test_104b() {
6888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6889         [ $RUNAS_ID -eq $UID ] &&
6890                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6891         chmod 666 /dev/obd
6892         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6893                         grep "Permission denied" | wc -l)))
6894         if [ $denied_cnt -ne 0 ]; then
6895                 error "lfs check servers test failed"
6896         fi
6897 }
6898 run_test 104b "$RUNAS lfs check servers test ===================="
6899
6900 test_105a() {
6901         # doesn't work on 2.4 kernels
6902         touch $DIR/$tfile
6903         if $(flock_is_enabled); then
6904                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6905         else
6906                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6907         fi
6908         rm -f $DIR/$tfile
6909 }
6910 run_test 105a "flock when mounted without -o flock test ========"
6911
6912 test_105b() {
6913         touch $DIR/$tfile
6914         if $(flock_is_enabled); then
6915                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6916         else
6917                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6918         fi
6919         rm -f $DIR/$tfile
6920 }
6921 run_test 105b "fcntl when mounted without -o flock test ========"
6922
6923 test_105c() {
6924         touch $DIR/$tfile
6925         if $(flock_is_enabled); then
6926                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6927         else
6928                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6929         fi
6930         rm -f $DIR/$tfile
6931 }
6932 run_test 105c "lockf when mounted without -o flock test ========"
6933
6934 test_105d() { # bug 15924
6935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6936         test_mkdir -p $DIR/$tdir
6937         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
6938         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6939         $LCTL set_param fail_loc=0x80000315
6940         flocks_test 2 $DIR/$tdir
6941 }
6942 run_test 105d "flock race (should not freeze) ========"
6943
6944 test_105e() { # bug 22660 && 22040
6945         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
6946         touch $DIR/$tfile
6947         flocks_test 3 $DIR/$tfile
6948 }
6949 run_test 105e "Two conflicting flocks from same process ======="
6950
6951 test_106() { #bug 10921
6952         test_mkdir -p $DIR/$tdir
6953         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6954         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6955 }
6956 run_test 106 "attempt exec of dir followed by chown of that dir"
6957
6958 test_107() {
6959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6960         CDIR=`pwd`
6961         cd $DIR
6962
6963         local file=core
6964         rm -f $file
6965
6966         local save_pattern=$(sysctl -n kernel.core_pattern)
6967         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6968         sysctl -w kernel.core_pattern=$file
6969         sysctl -w kernel.core_uses_pid=0
6970
6971         ulimit -c unlimited
6972         sleep 60 &
6973         SLEEPPID=$!
6974
6975         sleep 1
6976
6977         kill -s 11 $SLEEPPID
6978         wait $SLEEPPID
6979         if [ -e $file ]; then
6980                 size=`stat -c%s $file`
6981                 [ $size -eq 0 ] && error "Fail to create core file $file"
6982         else
6983                 error "Fail to create core file $file"
6984         fi
6985         rm -f $file
6986         sysctl -w kernel.core_pattern=$save_pattern
6987         sysctl -w kernel.core_uses_pid=$save_uses_pid
6988         cd $CDIR
6989 }
6990 run_test 107 "Coredump on SIG"
6991
6992 test_110() {
6993         test_mkdir -p $DIR/$tdir
6994         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6995                 error "mkdir with 255 char failed"
6996         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6997                 error "mkdir with 256 char should fail, but did not"
6998         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6999                 error "create with 255 char failed"
7000         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7001                 error "create with 256 char should fail, but did not"
7002
7003         ls -l $DIR/$tdir
7004         rm -rf $DIR/$tdir
7005 }
7006 run_test 110 "filename length checking"
7007
7008 test_115() {
7009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7010         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7011                 tail -1 | cut -c11-20)
7012         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7013         echo "Starting with $OSTIO_pre threads"
7014
7015         NUMTEST=20000
7016         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7017         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7018         echo "$NUMTEST creates/unlinks"
7019         test_mkdir -p $DIR/$tdir
7020         createmany -o $DIR/$tdir/$tfile $NUMTEST
7021         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7022
7023         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7024                 tail -1 | cut -c11-20)
7025
7026         # don't return an error
7027         [ $OSTIO_post == $OSTIO_pre ] && echo \
7028             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7029             echo "This may be fine, depending on what ran before this test" &&
7030             echo "and how fast this system is." && return
7031
7032         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7033 }
7034 run_test 115 "verify dynamic thread creation===================="
7035
7036 free_min_max () {
7037         wait_delete_completed
7038         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7039         echo OST kbytes available: ${AVAIL[@]}
7040         MAXI=0; MAXV=${AVAIL[0]}
7041         MINI=0; MINV=${AVAIL[0]}
7042         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7043                 #echo OST $i: ${AVAIL[i]}kb
7044                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7045                         MAXV=${AVAIL[i]}; MAXI=$i
7046                 fi
7047                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7048                         MINV=${AVAIL[i]}; MINI=$i
7049                 fi
7050         done
7051         echo Min free space: OST $MINI: $MINV
7052         echo Max free space: OST $MAXI: $MAXV
7053 }
7054
7055 test_116a() { # was previously test_116()
7056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7057         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7058
7059         echo -n "Free space priority "
7060         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7061                 head -n1
7062         declare -a AVAIL
7063         free_min_max
7064
7065         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7066         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7067                 && return
7068         trap simple_cleanup_common EXIT
7069
7070
7071         # Check if we need to generate uneven OSTs
7072         test_mkdir -p $DIR/$tdir/OST${MINI}
7073         local FILL=$(($MINV / 4))
7074         local DIFF=$(($MAXV - $MINV))
7075         local DIFF2=$(($DIFF * 100 / $MINV))
7076
7077         local threshold=$(do_facet $SINGLEMDS \
7078                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7079         threshold=${threshold%%%}
7080         echo -n "Check for uneven OSTs: "
7081         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7082
7083         if [[ $DIFF2 -gt $threshold ]]; then
7084                 echo "ok"
7085                 echo "Don't need to fill OST$MINI"
7086         else
7087                 # generate uneven OSTs. Write 2% over the QOS threshold value
7088                 echo "no"
7089                 DIFF=$(($threshold - $DIFF2 + 2))
7090                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7091                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7092                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7093                         error "setstripe failed"
7094                 DIFF=$(($DIFF2 / 2048))
7095                 i=0
7096                 while [ $i -lt $DIFF ]; do
7097                         i=$(($i + 1))
7098                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7099                                 bs=2M count=1 2>/dev/null
7100                         echo -n .
7101                 done
7102                 echo .
7103                 sync
7104                 sleep_maxage
7105                 free_min_max
7106         fi
7107
7108         DIFF=$(($MAXV - $MINV))
7109         DIFF2=$(($DIFF * 100 / $MINV))
7110         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7111         if [[ $DIFF2 -gt $threshold ]]; then
7112                 echo "ok"
7113         else
7114                 echo "failed - QOS mode won't be used"
7115                 skip "QOS imbalance criteria not met"
7116                 simple_cleanup_common
7117                 return
7118         fi
7119
7120         MINI1=$MINI; MINV1=$MINV
7121         MAXI1=$MAXI; MAXV1=$MAXV
7122
7123         # now fill using QOS
7124         $SETSTRIPE -c 1 $DIR/$tdir
7125         FILL=$(($FILL / 200))
7126         if [ $FILL -gt 600 ]; then
7127                 FILL=600
7128         fi
7129         echo "writing $FILL files to QOS-assigned OSTs"
7130         i=0
7131         while [ $i -lt $FILL ]; do
7132                 i=$((i + 1))
7133                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7134                         count=1 2>/dev/null
7135                 echo -n .
7136         done
7137         echo "wrote $i 200k files"
7138         sync
7139         sleep_maxage
7140
7141         echo "Note: free space may not be updated, so measurements might be off"
7142         free_min_max
7143         DIFF2=$(($MAXV - $MINV))
7144         echo "free space delta: orig $DIFF final $DIFF2"
7145         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7146         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7147         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7148         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7149         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7150         FILL=$(($DIFF2 * 100 / $DIFF - 100))
7151         [ $DIFF -gt 0 ] &&
7152                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7153
7154         # Figure out which files were written where
7155         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7156                   awk '/'$MINI1': / {print $2; exit}')
7157         echo $UUID
7158         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7159         echo "$MINC files created on smaller OST $MINI1"
7160         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7161                   awk '/'$MAXI1': / {print $2; exit}')
7162         echo $UUID
7163         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7164         echo "$MAXC files created on larger OST $MAXI1"
7165         FILL=$(($MAXC * 100 / $MINC - 100))
7166         [[ $MINC -gt 0 ]] &&
7167                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7168         [[ $MAXC -gt $MINC ]] ||
7169                 error_ignore LU-9 "stripe QOS didn't balance free space"
7170         simple_cleanup_common
7171 }
7172 run_test 116a "stripe QOS: free space balance ==================="
7173
7174 test_116b() { # LU-2093
7175         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7176         [ -z "$($LCTL get_param -n lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr |
7177                 head -1 2>/dev/null)" ] && skip "no QOS" && return
7178 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7179         local old_rr
7180         old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7181                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7182         do_facet $SINGLEMDS lctl set_param \
7183                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7184         mkdir -p $DIR/$tdir
7185         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7186         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7187         do_facet $SINGLEMDS lctl set_param fail_loc=0
7188         rm -rf $DIR/$tdir
7189         do_facet $SINGLEMDS lctl set_param \
7190                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7191 }
7192 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7193
7194 test_117() # bug 10891
7195 {
7196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7197         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7198         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7199         lctl set_param fail_loc=0x21e
7200         > $DIR/$tfile || error "truncate failed"
7201         lctl set_param fail_loc=0
7202         echo "Truncate succeeded."
7203         rm -f $DIR/$tfile
7204 }
7205 run_test 117 "verify osd extend =========="
7206
7207 NO_SLOW_RESENDCOUNT=4
7208 export OLD_RESENDCOUNT=""
7209 set_resend_count () {
7210         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7211         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7212         lctl set_param -n $PROC_RESENDCOUNT $1
7213         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7214 }
7215
7216 # for reduce test_118* time (b=14842)
7217 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7218
7219 # Reset async IO behavior after error case
7220 reset_async() {
7221         FILE=$DIR/reset_async
7222
7223         # Ensure all OSCs are cleared
7224         $SETSTRIPE -c -1 $FILE
7225         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7226         sync
7227         rm $FILE
7228 }
7229
7230 test_118a() #bug 11710
7231 {
7232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7233         reset_async
7234
7235         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7236         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7237         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7238
7239         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7240                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7241                 return 1;
7242         fi
7243         rm -f $DIR/$tfile
7244 }
7245 run_test 118a "verify O_SYNC works =========="
7246
7247 test_118b()
7248 {
7249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7250         remote_ost_nodsh && skip "remote OST with nodsh" && return
7251
7252         reset_async
7253
7254         #define OBD_FAIL_OST_ENOENT 0x217
7255         set_nodes_failloc "$(osts_nodes)" 0x217
7256         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7257         RC=$?
7258         set_nodes_failloc "$(osts_nodes)" 0
7259         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7260         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7261                     grep -c writeback)
7262
7263         if [[ $RC -eq 0 ]]; then
7264                 error "Must return error due to dropped pages, rc=$RC"
7265                 return 1;
7266         fi
7267
7268         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7269                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7270                 return 1;
7271         fi
7272
7273         echo "Dirty pages not leaked on ENOENT"
7274
7275         # Due to the above error the OSC will issue all RPCs syncronously
7276         # until a subsequent RPC completes successfully without error.
7277         $MULTIOP $DIR/$tfile Ow4096yc
7278         rm -f $DIR/$tfile
7279
7280         return 0
7281 }
7282 run_test 118b "Reclaim dirty pages on fatal error =========="
7283
7284 test_118c()
7285 {
7286         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7287
7288         # for 118c, restore the original resend count, LU-1940
7289         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7290                                 set_resend_count $OLD_RESENDCOUNT
7291         remote_ost_nodsh && skip "remote OST with nodsh" && return
7292
7293         reset_async
7294
7295         #define OBD_FAIL_OST_EROFS               0x216
7296         set_nodes_failloc "$(osts_nodes)" 0x216
7297
7298         # multiop should block due to fsync until pages are written
7299         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7300         MULTIPID=$!
7301         sleep 1
7302
7303         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7304                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7305         fi
7306
7307         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7308                     grep -c writeback)
7309         if [[ $WRITEBACK -eq 0 ]]; then
7310                 error "No page in writeback, writeback=$WRITEBACK"
7311         fi
7312
7313         set_nodes_failloc "$(osts_nodes)" 0
7314         wait $MULTIPID
7315         RC=$?
7316         if [[ $RC -ne 0 ]]; then
7317                 error "Multiop fsync failed, rc=$RC"
7318         fi
7319
7320         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7321         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7322                     grep -c writeback)
7323         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7324                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7325         fi
7326
7327         rm -f $DIR/$tfile
7328         echo "Dirty pages flushed via fsync on EROFS"
7329         return 0
7330 }
7331 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7332
7333 # continue to use small resend count to reduce test_118* time (b=14842)
7334 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7335
7336 test_118d()
7337 {
7338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7339         remote_ost_nodsh && skip "remote OST with nodsh" && return
7340
7341         reset_async
7342
7343         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7344         set_nodes_failloc "$(osts_nodes)" 0x214
7345         # multiop should block due to fsync until pages are written
7346         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7347         MULTIPID=$!
7348         sleep 1
7349
7350         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7351                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7352         fi
7353
7354         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7355                     grep -c writeback)
7356         if [[ $WRITEBACK -eq 0 ]]; then
7357                 error "No page in writeback, writeback=$WRITEBACK"
7358         fi
7359
7360         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7361         set_nodes_failloc "$(osts_nodes)" 0
7362
7363         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7364         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7365                     grep -c writeback)
7366         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7367                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7368         fi
7369
7370         rm -f $DIR/$tfile
7371         echo "Dirty pages gaurenteed flushed via fsync"
7372         return 0
7373 }
7374 run_test 118d "Fsync validation inject a delay of the bulk =========="
7375
7376 test_118f() {
7377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7378         reset_async
7379
7380         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7381         lctl set_param fail_loc=0x8000040a
7382
7383         # Should simulate EINVAL error which is fatal
7384         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7385         RC=$?
7386         if [[ $RC -eq 0 ]]; then
7387                 error "Must return error due to dropped pages, rc=$RC"
7388         fi
7389
7390         lctl set_param fail_loc=0x0
7391
7392         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7393         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7394         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7395                     grep -c writeback)
7396         if [[ $LOCKED -ne 0 ]]; then
7397                 error "Locked pages remain in cache, locked=$LOCKED"
7398         fi
7399
7400         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7401                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7402         fi
7403
7404         rm -f $DIR/$tfile
7405         echo "No pages locked after fsync"
7406
7407         reset_async
7408         return 0
7409 }
7410 run_test 118f "Simulate unrecoverable OSC side error =========="
7411
7412 test_118g() {
7413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7414         reset_async
7415
7416         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7417         lctl set_param fail_loc=0x406
7418
7419         # simulate local -ENOMEM
7420         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7421         RC=$?
7422
7423         lctl set_param fail_loc=0
7424         if [[ $RC -eq 0 ]]; then
7425                 error "Must return error due to dropped pages, rc=$RC"
7426         fi
7427
7428         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7429         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7430         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7431                         grep -c writeback)
7432         if [[ $LOCKED -ne 0 ]]; then
7433                 error "Locked pages remain in cache, locked=$LOCKED"
7434         fi
7435
7436         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7437                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7438         fi
7439
7440         rm -f $DIR/$tfile
7441         echo "No pages locked after fsync"
7442
7443         reset_async
7444         return 0
7445 }
7446 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7447
7448 test_118h() {
7449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7450         remote_ost_nodsh && skip "remote OST with nodsh" && return
7451
7452         reset_async
7453
7454         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7455         set_nodes_failloc "$(osts_nodes)" 0x20e
7456         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7457         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7458         RC=$?
7459
7460         set_nodes_failloc "$(osts_nodes)" 0
7461         if [[ $RC -eq 0 ]]; then
7462                 error "Must return error due to dropped pages, rc=$RC"
7463         fi
7464
7465         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7466         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7467         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7468                     grep -c writeback)
7469         if [[ $LOCKED -ne 0 ]]; then
7470                 error "Locked pages remain in cache, locked=$LOCKED"
7471         fi
7472
7473         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7474                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7475         fi
7476
7477         rm -f $DIR/$tfile
7478         echo "No pages locked after fsync"
7479
7480         return 0
7481 }
7482 run_test 118h "Verify timeout in handling recoverables errors  =========="
7483
7484 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7485
7486 test_118i() {
7487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7488         remote_ost_nodsh && skip "remote OST with nodsh" && return
7489
7490         reset_async
7491
7492         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7493         set_nodes_failloc "$(osts_nodes)" 0x20e
7494
7495         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7496         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7497         PID=$!
7498         sleep 5
7499         set_nodes_failloc "$(osts_nodes)" 0
7500
7501         wait $PID
7502         RC=$?
7503         if [[ $RC -ne 0 ]]; then
7504                 error "got error, but should be not, rc=$RC"
7505         fi
7506
7507         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7508         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7509         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7510         if [[ $LOCKED -ne 0 ]]; then
7511                 error "Locked pages remain in cache, locked=$LOCKED"
7512         fi
7513
7514         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7515                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7516         fi
7517
7518         rm -f $DIR/$tfile
7519         echo "No pages locked after fsync"
7520
7521         return 0
7522 }
7523 run_test 118i "Fix error before timeout in recoverable error  =========="
7524
7525 [ "$SLOW" = "no" ] && set_resend_count 4
7526
7527 test_118j() {
7528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7529         remote_ost_nodsh && skip "remote OST with nodsh" && return
7530
7531         reset_async
7532
7533         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7534         set_nodes_failloc "$(osts_nodes)" 0x220
7535
7536         # return -EIO from OST
7537         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7538         RC=$?
7539         set_nodes_failloc "$(osts_nodes)" 0x0
7540         if [[ $RC -eq 0 ]]; then
7541                 error "Must return error due to dropped pages, rc=$RC"
7542         fi
7543
7544         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7545         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7546         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7547         if [[ $LOCKED -ne 0 ]]; then
7548                 error "Locked pages remain in cache, locked=$LOCKED"
7549         fi
7550
7551         # in recoverable error on OST we want resend and stay until it finished
7552         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7553                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7554         fi
7555
7556         rm -f $DIR/$tfile
7557         echo "No pages locked after fsync"
7558
7559         return 0
7560 }
7561 run_test 118j "Simulate unrecoverable OST side error =========="
7562
7563 test_118k()
7564 {
7565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7566         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7567
7568         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7569         set_nodes_failloc "$(osts_nodes)" 0x20e
7570         test_mkdir -p $DIR/$tdir
7571
7572         for ((i=0;i<10;i++)); do
7573                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7574                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7575                 SLEEPPID=$!
7576                 sleep 0.500s
7577                 kill $SLEEPPID
7578                 wait $SLEEPPID
7579         done
7580
7581         set_nodes_failloc "$(osts_nodes)" 0
7582         rm -rf $DIR/$tdir
7583 }
7584 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7585
7586 test_118l()
7587 {
7588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7589         # LU-646
7590         test_mkdir -p $DIR/$tdir
7591         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7592         rm -rf $DIR/$tdir
7593 }
7594 run_test 118l "fsync dir ========="
7595
7596 test_118m() # LU-3066
7597 {
7598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7599         test_mkdir -p $DIR/$tdir
7600         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7601         rm -rf $DIR/$tdir
7602 }
7603 run_test 118m "fdatasync dir ========="
7604
7605 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7606
7607 test_119a() # bug 11737
7608 {
7609         BSIZE=$((512 * 1024))
7610         directio write $DIR/$tfile 0 1 $BSIZE
7611         # We ask to read two blocks, which is more than a file size.
7612         # directio will indicate an error when requested and actual
7613         # sizes aren't equeal (a normal situation in this case) and
7614         # print actual read amount.
7615         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7616         if [ "$NOB" != "$BSIZE" ]; then
7617                 error "read $NOB bytes instead of $BSIZE"
7618         fi
7619         rm -f $DIR/$tfile
7620 }
7621 run_test 119a "Short directIO read must return actual read amount"
7622
7623 test_119b() # bug 11737
7624 {
7625         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7626
7627         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7628         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7629         sync
7630         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7631                 error "direct read failed"
7632         rm -f $DIR/$tfile
7633 }
7634 run_test 119b "Sparse directIO read must return actual read amount"
7635
7636 test_119c() # bug 13099
7637 {
7638         BSIZE=1048576
7639         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7640         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7641         rm -f $DIR/$tfile
7642 }
7643 run_test 119c "Testing for direct read hitting hole"
7644
7645 test_119d() # bug 15950
7646 {
7647         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7648         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7649         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7650         BSIZE=1048576
7651         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7652         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7653         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7654         lctl set_param fail_loc=0x40d
7655         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7656         pid_dio=$!
7657         sleep 1
7658         cat $DIR/$tfile > /dev/null &
7659         lctl set_param fail_loc=0
7660         pid_reads=$!
7661         wait $pid_dio
7662         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7663         sleep 2
7664         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7665         error "the read rpcs have not completed in 2s"
7666         rm -f $DIR/$tfile
7667         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7668 }
7669 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7670
7671 test_120a() {
7672         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7673         test_mkdir -p $DIR/$tdir
7674         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7675                skip "no early lock cancel on server" && return 0
7676
7677         lru_resize_disable mdc
7678         lru_resize_disable osc
7679         cancel_lru_locks mdc
7680         # asynchronous object destroy at MDT could cause bl ast to client
7681         cancel_lru_locks osc
7682
7683         stat $DIR/$tdir > /dev/null
7684         can1=$(do_facet $SINGLEMDS \
7685                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7686                awk '/ldlm_cancel/ {print $2}')
7687         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7688                awk '/ldlm_bl_callback/ {print $2}')
7689         test_mkdir -c1 $DIR/$tdir/d1
7690         can2=$(do_facet $SINGLEMDS \
7691                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7692                awk '/ldlm_cancel/ {print $2}')
7693         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7694                awk '/ldlm_bl_callback/ {print $2}')
7695         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7696         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7697         lru_resize_enable mdc
7698         lru_resize_enable osc
7699 }
7700 run_test 120a "Early Lock Cancel: mkdir test"
7701
7702 test_120b() {
7703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7704         test_mkdir $DIR/$tdir
7705         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7706                skip "no early lock cancel on server" && return 0
7707         lru_resize_disable mdc
7708         lru_resize_disable osc
7709         cancel_lru_locks mdc
7710         stat $DIR/$tdir > /dev/null
7711         can1=$(do_facet $SINGLEMDS \
7712                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7713                awk '/ldlm_cancel/ {print $2}')
7714         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7715                awk '/ldlm_bl_callback/ {print $2}')
7716         touch $DIR/$tdir/f1
7717         can2=$(do_facet $SINGLEMDS \
7718                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7719                awk '/ldlm_cancel/ {print $2}')
7720         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7721                awk '/ldlm_bl_callback/ {print $2}')
7722         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7723         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7724         lru_resize_enable mdc
7725         lru_resize_enable osc
7726 }
7727 run_test 120b "Early Lock Cancel: create test"
7728
7729 test_120c() {
7730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7731         test_mkdir -c1 $DIR/$tdir
7732         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7733                skip "no early lock cancel on server" && return 0
7734         lru_resize_disable mdc
7735         lru_resize_disable osc
7736         test_mkdir -p -c1 $DIR/$tdir/d1
7737         test_mkdir -p -c1 $DIR/$tdir/d2
7738         touch $DIR/$tdir/d1/f1
7739         cancel_lru_locks mdc
7740         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7741         can1=$(do_facet $SINGLEMDS \
7742                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7743                awk '/ldlm_cancel/ {print $2}')
7744         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7745                awk '/ldlm_bl_callback/ {print $2}')
7746         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7747         can2=$(do_facet $SINGLEMDS \
7748                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7749                awk '/ldlm_cancel/ {print $2}')
7750         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7751                awk '/ldlm_bl_callback/ {print $2}')
7752         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7753         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7754         lru_resize_enable mdc
7755         lru_resize_enable osc
7756 }
7757 run_test 120c "Early Lock Cancel: link test"
7758
7759 test_120d() {
7760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7761         test_mkdir -p -c1 $DIR/$tdir
7762         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7763                skip "no early lock cancel on server" && return 0
7764         lru_resize_disable mdc
7765         lru_resize_disable osc
7766         touch $DIR/$tdir
7767         cancel_lru_locks mdc
7768         stat $DIR/$tdir > /dev/null
7769         can1=$(do_facet $SINGLEMDS \
7770                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7771                awk '/ldlm_cancel/ {print $2}')
7772         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7773                awk '/ldlm_bl_callback/ {print $2}')
7774         chmod a+x $DIR/$tdir
7775         can2=$(do_facet $SINGLEMDS \
7776                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7777                awk '/ldlm_cancel/ {print $2}')
7778         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7779                awk '/ldlm_bl_callback/ {print $2}')
7780         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7781         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7782         lru_resize_enable mdc
7783         lru_resize_enable osc
7784 }
7785 run_test 120d "Early Lock Cancel: setattr test"
7786
7787 test_120e() {
7788         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7789         test_mkdir -p -c1 $DIR/$tdir
7790         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7791                skip "no early lock cancel on server" && return 0
7792         lru_resize_disable mdc
7793         lru_resize_disable osc
7794         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7795         cancel_lru_locks mdc
7796         cancel_lru_locks osc
7797         dd if=$DIR/$tdir/f1 of=/dev/null
7798         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7799         # XXX client can not do early lock cancel of OST lock
7800         # during unlink (LU-4206), so cancel osc lock now.
7801         cancel_lru_locks osc
7802         can1=$(do_facet $SINGLEMDS \
7803                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7804                awk '/ldlm_cancel/ {print $2}')
7805         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7806                awk '/ldlm_bl_callback/ {print $2}')
7807         unlink $DIR/$tdir/f1
7808         sleep 5
7809         can2=$(do_facet $SINGLEMDS \
7810                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7811                awk '/ldlm_cancel/ {print $2}')
7812         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7813                awk '/ldlm_bl_callback/ {print $2}')
7814         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7815         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7816         lru_resize_enable mdc
7817         lru_resize_enable osc
7818 }
7819 run_test 120e "Early Lock Cancel: unlink test"
7820
7821 test_120f() {
7822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7823         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7824                skip "no early lock cancel on server" && return 0
7825         test_mkdir -p -c1 $DIR/$tdir
7826         lru_resize_disable mdc
7827         lru_resize_disable osc
7828         test_mkdir -p -c1 $DIR/$tdir/d1
7829         test_mkdir -p -c1 $DIR/$tdir/d2
7830         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7831         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7832         cancel_lru_locks mdc
7833         cancel_lru_locks osc
7834         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7835         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7836         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7837         # XXX client can not do early lock cancel of OST lock
7838         # during rename (LU-4206), so cancel osc lock now.
7839         cancel_lru_locks osc
7840         can1=$(do_facet $SINGLEMDS \
7841                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7842                awk '/ldlm_cancel/ {print $2}')
7843         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7844                awk '/ldlm_bl_callback/ {print $2}')
7845         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7846         sleep 5
7847         can2=$(do_facet $SINGLEMDS \
7848                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7849                awk '/ldlm_cancel/ {print $2}')
7850         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7851                awk '/ldlm_bl_callback/ {print $2}')
7852         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7853         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7854         lru_resize_enable mdc
7855         lru_resize_enable osc
7856 }
7857 run_test 120f "Early Lock Cancel: rename test"
7858
7859 test_120g() {
7860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7861         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7862                skip "no early lock cancel on server" && return 0
7863         lru_resize_disable mdc
7864         lru_resize_disable osc
7865         count=10000
7866         echo create $count files
7867         test_mkdir -p $DIR/$tdir
7868         cancel_lru_locks mdc
7869         cancel_lru_locks osc
7870         t0=`date +%s`
7871
7872         can0=$(do_facet $SINGLEMDS \
7873                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7874                awk '/ldlm_cancel/ {print $2}')
7875         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7876                awk '/ldlm_bl_callback/ {print $2}')
7877         createmany -o $DIR/$tdir/f $count
7878         sync
7879         can1=$(do_facet $SINGLEMDS \
7880                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7881                awk '/ldlm_cancel/ {print $2}')
7882         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7883                awk '/ldlm_bl_callback/ {print $2}')
7884         t1=$(date +%s)
7885         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7886         echo rm $count files
7887         rm -r $DIR/$tdir
7888         sync
7889         can2=$(do_facet $SINGLEMDS \
7890                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7891                awk '/ldlm_cancel/ {print $2}')
7892         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7893                awk '/ldlm_bl_callback/ {print $2}')
7894         t2=$(date +%s)
7895         echo total: $count removes in $((t2-t1))
7896         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7897         sleep 2
7898         # wait for commitment of removal
7899         lru_resize_enable mdc
7900         lru_resize_enable osc
7901 }
7902 run_test 120g "Early Lock Cancel: performance test"
7903
7904 test_121() { #bug #10589
7905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7906         rm -rf $DIR/$tfile
7907         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7908 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7909         lctl set_param fail_loc=0x310
7910         cancel_lru_locks osc > /dev/null
7911         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7912         lctl set_param fail_loc=0
7913         [[ $reads -eq $writes ]] ||
7914                 error "read $reads blocks, must be $writes blocks"
7915 }
7916 run_test 121 "read cancel race ========="
7917
7918 test_123a() { # was test 123, statahead(bug 11401)
7919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7920         SLOWOK=0
7921         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7922             log "testing on UP system. Performance may be not as good as expected."
7923                         SLOWOK=1
7924         fi
7925
7926         rm -rf $DIR/$tdir
7927         test_mkdir -p $DIR/$tdir
7928         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7929         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7930         MULT=10
7931         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7932                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7933
7934                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7935                 lctl set_param -n llite.*.statahead_max 0
7936                 lctl get_param llite.*.statahead_max
7937                 cancel_lru_locks mdc
7938                 cancel_lru_locks osc
7939                 stime=`date +%s`
7940                 time ls -l $DIR/$tdir | wc -l
7941                 etime=`date +%s`
7942                 delta=$((etime - stime))
7943                 log "ls $i files without statahead: $delta sec"
7944                 lctl set_param llite.*.statahead_max=$max
7945
7946                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7947                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7948                 cancel_lru_locks mdc
7949                 cancel_lru_locks osc
7950                 stime=`date +%s`
7951                 time ls -l $DIR/$tdir | wc -l
7952                 etime=`date +%s`
7953                 delta_sa=$((etime - stime))
7954                 log "ls $i files with statahead: $delta_sa sec"
7955                 lctl get_param -n llite.*.statahead_stats
7956                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7957
7958                 [[ $swrong -lt $ewrong ]] &&
7959                         log "statahead was stopped, maybe too many locks held!"
7960                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
7961
7962                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7963                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7964                     lctl set_param -n llite.*.statahead_max 0
7965                     lctl get_param llite.*.statahead_max
7966                     cancel_lru_locks mdc
7967                     cancel_lru_locks osc
7968                     stime=`date +%s`
7969                     time ls -l $DIR/$tdir | wc -l
7970                     etime=`date +%s`
7971                     delta=$((etime - stime))
7972                     log "ls $i files again without statahead: $delta sec"
7973                     lctl set_param llite.*.statahead_max=$max
7974                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7975                         if [  $SLOWOK -eq 0 ]; then
7976                                 error "ls $i files is slower with statahead!"
7977                         else
7978                                 log "ls $i files is slower with statahead!"
7979                         fi
7980                         break
7981                     fi
7982                 fi
7983
7984                 [ $delta -gt 20 ] && break
7985                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7986                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7987         done
7988         log "ls done"
7989
7990         stime=`date +%s`
7991         rm -r $DIR/$tdir
7992         sync
7993         etime=`date +%s`
7994         delta=$((etime - stime))
7995         log "rm -r $DIR/$tdir/: $delta seconds"
7996         log "rm done"
7997         lctl get_param -n llite.*.statahead_stats
7998 }
7999 run_test 123a "verify statahead work"
8000
8001 test_123b () { # statahead(bug 15027)
8002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8003         test_mkdir -p $DIR/$tdir
8004         createmany -o $DIR/$tdir/$tfile-%d 1000
8005
8006         cancel_lru_locks mdc
8007         cancel_lru_locks osc
8008
8009 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8010         lctl set_param fail_loc=0x80000803
8011         ls -lR $DIR/$tdir > /dev/null
8012         log "ls done"
8013         lctl set_param fail_loc=0x0
8014         lctl get_param -n llite.*.statahead_stats
8015         rm -r $DIR/$tdir
8016         sync
8017
8018 }
8019 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8020
8021 test_124a() {
8022         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8023         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8024                 skip "no lru resize on server" && return 0
8025         local NR=2000
8026         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8027
8028         log "create $NR files at $DIR/$tdir"
8029         createmany -o $DIR/$tdir/f $NR ||
8030                 error "failed to create $NR files in $DIR/$tdir"
8031
8032         cancel_lru_locks mdc
8033         ls -l $DIR/$tdir > /dev/null
8034
8035         local NSDIR=""
8036         local LRU_SIZE=0
8037         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8038                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8039                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8040                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8041                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8042                         log "NSDIR=$NSDIR"
8043                         log "NS=$(basename $NSDIR)"
8044                         break
8045                 fi
8046         done
8047
8048         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8049                 skip "Not enough cached locks created!"
8050                 return 0
8051         fi
8052         log "LRU=$LRU_SIZE"
8053
8054         local SLEEP=30
8055
8056         # We know that lru resize allows one client to hold $LIMIT locks
8057         # for 10h. After that locks begin to be killed by client.
8058         local MAX_HRS=10
8059         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8060         log "LIMIT=$LIMIT"
8061
8062         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8063         # killing locks. Some time was spent for creating locks. This means
8064         # that up to the moment of sleep finish we must have killed some of
8065         # them (10-100 locks). This depends on how fast ther were created.
8066         # Many of them were touched in almost the same moment and thus will
8067         # be killed in groups.
8068         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8069
8070         # Use $LRU_SIZE_B here to take into account real number of locks
8071         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8072         local LRU_SIZE_B=$LRU_SIZE
8073         log "LVF=$LVF"
8074         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8075         log "OLD_LVF=$OLD_LVF"
8076         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8077
8078         # Let's make sure that we really have some margin. Client checks
8079         # cached locks every 10 sec.
8080         SLEEP=$((SLEEP+20))
8081         log "Sleep ${SLEEP} sec"
8082         local SEC=0
8083         while ((SEC<$SLEEP)); do
8084                 echo -n "..."
8085                 sleep 5
8086                 SEC=$((SEC+5))
8087                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8088                 echo -n "$LRU_SIZE"
8089         done
8090         echo ""
8091         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8092         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8093
8094         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8095                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8096                 unlinkmany $DIR/$tdir/f $NR
8097                 return
8098         }
8099
8100         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8101         log "unlink $NR files at $DIR/$tdir"
8102         unlinkmany $DIR/$tdir/f $NR
8103 }
8104 run_test 124a "lru resize ======================================="
8105
8106 get_max_pool_limit()
8107 {
8108         local limit=$($LCTL get_param \
8109                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8110         local max=0
8111         for l in $limit; do
8112                 if [[ $l -gt $max ]]; then
8113                         max=$l
8114                 fi
8115         done
8116         echo $max
8117 }
8118
8119 test_124b() {
8120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8121         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8122                 skip "no lru resize on server" && return 0
8123
8124         LIMIT=$(get_max_pool_limit)
8125
8126         NR=$(($(default_lru_size)*20))
8127         if [[ $NR -gt $LIMIT ]]; then
8128                 log "Limit lock number by $LIMIT locks"
8129                 NR=$LIMIT
8130         fi
8131         lru_resize_disable mdc
8132         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8133                 error "failed to create $DIR/$tdir/disable_lru_resize"
8134
8135         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8136         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8137         cancel_lru_locks mdc
8138         stime=`date +%s`
8139         PID=""
8140         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8141         PID="$PID $!"
8142         sleep 2
8143         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8144         PID="$PID $!"
8145         sleep 2
8146         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8147         PID="$PID $!"
8148         wait $PID
8149         etime=`date +%s`
8150         nolruresize_delta=$((etime-stime))
8151         log "ls -la time: $nolruresize_delta seconds"
8152         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8153         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8154
8155         lru_resize_enable mdc
8156         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8157                 error "failed to create $DIR/$tdir/enable_lru_resize"
8158
8159         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8160         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8161         cancel_lru_locks mdc
8162         stime=`date +%s`
8163         PID=""
8164         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8165         PID="$PID $!"
8166         sleep 2
8167         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8168         PID="$PID $!"
8169         sleep 2
8170         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8171         PID="$PID $!"
8172         wait $PID
8173         etime=`date +%s`
8174         lruresize_delta=$((etime-stime))
8175         log "ls -la time: $lruresize_delta seconds"
8176         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8177
8178         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8179                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8180         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8181                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8182         else
8183                 log "lru resize performs the same with no lru resize"
8184         fi
8185         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8186 }
8187 run_test 124b "lru resize (performance test) ======================="
8188
8189 test_125() { # 13358
8190         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8191         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8192         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8193         test_mkdir -p $DIR/d125 || error "mkdir failed"
8194         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8195         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8196         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8197 }
8198 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8199
8200 test_126() { # bug 12829/13455
8201         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8202         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8203         $GSS && skip "must run as gss disabled" && return
8204
8205         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8206         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8207         rm -f $DIR/$tfile
8208         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8209 }
8210 run_test 126 "check that the fsgid provided by the client is taken into account"
8211
8212 test_127a() { # bug 15521
8213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8214         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8215         $LCTL set_param osc.*.stats=0
8216         FSIZE=$((2048 * 1024))
8217         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8218         cancel_lru_locks osc
8219         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8220
8221         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8222         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8223                 echo "got $COUNT $NAME"
8224                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8225                 eval $NAME=$COUNT || error "Wrong proc format"
8226
8227                 case $NAME in
8228                         read_bytes|write_bytes)
8229                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8230                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8231                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8232                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8233                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8234                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8235                                 error "sumsquare is too small: $SUMSQ"
8236                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8237                                 error "sumsquare is too big: $SUMSQ"
8238                         ;;
8239                         *) ;;
8240                 esac
8241         done < $DIR/${tfile}.tmp
8242
8243         #check that we actually got some stats
8244         [ "$read_bytes" ] || error "Missing read_bytes stats"
8245         [ "$write_bytes" ] || error "Missing write_bytes stats"
8246         [ "$read_bytes" != 0 ] || error "no read done"
8247         [ "$write_bytes" != 0 ] || error "no write done"
8248 }
8249 run_test 127a "verify the client stats are sane"
8250
8251 test_127b() { # bug LU-333
8252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8253         $LCTL set_param llite.*.stats=0
8254         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8255         # perform 2 reads and writes so MAX is different from SUM.
8256         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8257         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8258         cancel_lru_locks osc
8259         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8260         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8261
8262         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8263         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8264                 echo "got $COUNT $NAME"
8265                 eval $NAME=$COUNT || error "Wrong proc format"
8266
8267         case $NAME in
8268                 read_bytes)
8269                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8270                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8271                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8272                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8273                         ;;
8274                 write_bytes)
8275                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8276                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8277                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8278                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8279                         ;;
8280                         *) ;;
8281                 esac
8282         done < $TMP/${tfile}.tmp
8283
8284         #check that we actually got some stats
8285         [ "$read_bytes" ] || error "Missing read_bytes stats"
8286         [ "$write_bytes" ] || error "Missing write_bytes stats"
8287         [ "$read_bytes" != 0 ] || error "no read done"
8288         [ "$write_bytes" != 0 ] || error "no write done"
8289 }
8290 run_test 127b "verify the llite client stats are sane"
8291
8292 test_128() { # bug 15212
8293         touch $DIR/$tfile
8294         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8295                 find $DIR/$tfile
8296                 find $DIR/$tfile
8297         EOF
8298
8299         result=$(grep error $TMP/$tfile.log)
8300         rm -f $DIR/$tfile
8301         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
8302 }
8303 run_test 128 "interactive lfs for 2 consecutive find's"
8304
8305 set_dir_limits () {
8306         local mntdev
8307         local canondev
8308         local node
8309
8310         local LDPROC=/proc/fs/ldiskfs
8311         local facets=$(get_facets MDS)
8312
8313         for facet in ${facets//,/ }; do
8314                 canondev=$(ldiskfs_canon \
8315                            *.$(convert_facet2label $facet).mntdev $facet)
8316                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8317                                                 LDPROC=/sys/fs/ldiskfs
8318                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8319         done
8320 }
8321
8322 test_129() {
8323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8324         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8325                 skip "Only applicable to ldiskfs-based MDTs"
8326                 return
8327         fi
8328         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8329         ENOSPC=28
8330         EFBIG=27
8331
8332         rm -rf $DIR/$tdir
8333         test_mkdir -p $DIR/$tdir
8334
8335         # block size of mds1
8336         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8337         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8338         local MAX=$((MDSBLOCKSIZE * 3))
8339         set_dir_limits $MAX
8340         local I=$(stat -c%s "$DIR/$tdir")
8341         local J=0
8342         local STRIPE_COUNT=1
8343         [[ $MDSCOUNT -ge 2 ]] && STRIPE_COUNT=$($LFS getdirstripe -c $DIR/$tdir)
8344         MAX=$((MAX*STRIPE_COUNT))
8345         while [[ $I -le $MAX ]]; do
8346                 $MULTIOP $DIR/$tdir/$J Oc
8347                 rc=$?
8348                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8349                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8350                 #and EFBIG for previous versions
8351                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8352                         set_dir_limits 0
8353                         echo "return code $rc received as expected"
8354                         multiop $DIR/$tdir/$J Oc ||
8355                                 error_exit "multiop failed w/o dir size limit"
8356
8357                         I=$(stat -c%s "$DIR/$tdir")
8358
8359                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8360                                         $(version_code 2.4.51) ]
8361                         then
8362                                 [[ $I -eq $MAX ]] && return 0
8363                         else
8364                                 [[ $I -gt $MAX ]] && return 0
8365                         fi
8366                         error_exit "current dir size $I, previous limit $MAX"
8367                 elif [ $rc -ne 0 ]; then
8368                         set_dir_limits 0
8369                         error_exit "return code $rc received instead of expected " \
8370                                    "$EFBIG or $ENOSPC, files in dir $I"
8371                 fi
8372                 J=$((J+1))
8373                 I=$(stat -c%s "$DIR/$tdir")
8374         done
8375
8376         set_dir_limits 0
8377         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8378 }
8379 run_test 129 "test directory size limit ========================"
8380
8381 OLDIFS="$IFS"
8382 cleanup_130() {
8383         trap 0
8384         IFS="$OLDIFS"
8385 }
8386
8387 test_130a() {
8388         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8389         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8390                 return
8391
8392         trap cleanup_130 EXIT RETURN
8393
8394         local fm_file=$DIR/$tfile
8395         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8396         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8397                 error "dd failed for $fm_file"
8398
8399         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8400         filefrag -ves $fm_file
8401         RC=$?
8402         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8403                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8404         [ $RC != 0 ] && error "filefrag $fm_file failed"
8405
8406         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8407                       grep -v "ext:" | grep -v "found")
8408         lun=$($GETSTRIPE -i $fm_file)
8409
8410         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8411         IFS=$'\n'
8412         tot_len=0
8413         for line in $filefrag_op
8414         do
8415                 frag_lun=`echo $line | cut -d: -f5`
8416                 ext_len=`echo $line | cut -d: -f4`
8417                 if (( $frag_lun != $lun )); then
8418                         cleanup_130
8419                         error "FIEMAP on 1-stripe file($fm_file) failed"
8420                         return
8421                 fi
8422                 (( tot_len += ext_len ))
8423         done
8424
8425         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8426                 cleanup_130
8427                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8428                 return
8429         fi
8430
8431         cleanup_130
8432
8433         echo "FIEMAP on single striped file succeeded"
8434 }
8435 run_test 130a "FIEMAP (1-stripe file)"
8436
8437 test_130b() {
8438         [ "$OSTCOUNT" -lt "2" ] &&
8439                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8440
8441         [ "$OSTCOUNT" -ge "10" ] &&
8442                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8443
8444         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8445         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8446                 return
8447
8448         trap cleanup_130 EXIT RETURN
8449
8450         local fm_file=$DIR/$tfile
8451         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8452         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8453                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8454
8455         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8456                 error "dd failed on $fm_file"
8457
8458         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8459         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8460                       grep -v "ext:" | grep -v "found")
8461
8462         last_lun=$(echo $filefrag_op | cut -d: -f5)
8463
8464         IFS=$'\n'
8465         tot_len=0
8466         num_luns=1
8467         for line in $filefrag_op
8468         do
8469                 frag_lun=`echo $line | cut -d: -f5`
8470                 ext_len=`echo $line | cut -d: -f4`
8471                 if (( $frag_lun != $last_lun )); then
8472                         if (( tot_len != 1024 )); then
8473                                 cleanup_130
8474                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8475                                 return
8476                         else
8477                                 (( num_luns += 1 ))
8478                                 tot_len=0
8479                         fi
8480                 fi
8481                 (( tot_len += ext_len ))
8482                 last_lun=$frag_lun
8483         done
8484         if (( num_luns != 2 || tot_len != 1024 )); then
8485                 cleanup_130
8486                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8487                 return
8488         fi
8489
8490         cleanup_130
8491
8492         echo "FIEMAP on 2-stripe file succeeded"
8493 }
8494 run_test 130b "FIEMAP (2-stripe file)"
8495
8496 test_130c() {
8497         [ "$OSTCOUNT" -lt "2" ] &&
8498                 skip_env "skipping FIEMAP on 2-stripe file" && return
8499
8500         [ "$OSTCOUNT" -ge "10" ] &&
8501                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8502
8503         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8504         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8505                 return
8506
8507         trap cleanup_130 EXIT RETURN
8508
8509         local fm_file=$DIR/$tfile
8510         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8511         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8512                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8513
8514         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8515
8516         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8517         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8518
8519         last_lun=`echo $filefrag_op | cut -d: -f5`
8520
8521         IFS=$'\n'
8522         tot_len=0
8523         num_luns=1
8524         for line in $filefrag_op
8525         do
8526                 frag_lun=`echo $line | cut -d: -f5`
8527                 ext_len=`echo $line | cut -d: -f4`
8528                 if (( $frag_lun != $last_lun )); then
8529                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8530                         if (( logical != 512 )); then
8531                                 cleanup_130
8532                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8533                                 return
8534                         fi
8535                         if (( tot_len != 512 )); then
8536                                 cleanup_130
8537                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8538                                 return
8539                         else
8540                                 (( num_luns += 1 ))
8541                                 tot_len=0
8542                         fi
8543                 fi
8544                 (( tot_len += ext_len ))
8545                 last_lun=$frag_lun
8546         done
8547         if (( num_luns != 2 || tot_len != 512 )); then
8548                 cleanup_130
8549                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8550                 return
8551         fi
8552
8553         cleanup_130
8554
8555         echo "FIEMAP on 2-stripe file with hole succeeded"
8556 }
8557 run_test 130c "FIEMAP (2-stripe file with hole)"
8558
8559 test_130d() {
8560         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8561
8562         [ "$OSTCOUNT" -ge "10" ] &&
8563                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8564
8565         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8566         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8567
8568         trap cleanup_130 EXIT RETURN
8569
8570         local fm_file=$DIR/$tfile
8571         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8572         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8573                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8574
8575         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8576         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8577                 error "dd failed on $fm_file"
8578
8579         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8580         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8581                 grep -v "ext:" | grep -v "found"`
8582
8583         last_lun=`echo $filefrag_op | cut -d: -f5`
8584
8585         IFS=$'\n'
8586         tot_len=0
8587         num_luns=1
8588         for line in $filefrag_op
8589         do
8590                 frag_lun=`echo $line | cut -d: -f5`
8591                 ext_len=`echo $line | cut -d: -f4`
8592                 if (( $frag_lun != $last_lun )); then
8593                         if (( tot_len != 1024 )); then
8594                                 cleanup_130
8595                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8596                                 return
8597                         else
8598                                 (( num_luns += 1 ))
8599                                 tot_len=0
8600                         fi
8601                 fi
8602                 (( tot_len += ext_len ))
8603                 last_lun=$frag_lun
8604         done
8605         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8606                 cleanup_130
8607                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8608                 return
8609         fi
8610
8611         cleanup_130
8612
8613         echo "FIEMAP on N-stripe file succeeded"
8614 }
8615 run_test 130d "FIEMAP (N-stripe file)"
8616
8617 test_130e() {
8618         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8619
8620         [ "$OSTCOUNT" -ge "10" ] &&
8621                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8622
8623         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8624         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8625
8626         trap cleanup_130 EXIT RETURN
8627
8628         local fm_file=$DIR/$tfile
8629         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8630         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8631                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8632
8633         NUM_BLKS=512
8634         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8635         for ((i = 0; i < $NUM_BLKS; i++))
8636         do
8637                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8638         done
8639
8640         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8641         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8642
8643         last_lun=`echo $filefrag_op | cut -d: -f5`
8644
8645         IFS=$'\n'
8646         tot_len=0
8647         num_luns=1
8648         for line in $filefrag_op
8649         do
8650                 frag_lun=`echo $line | cut -d: -f5`
8651                 ext_len=`echo $line | cut -d: -f4`
8652                 if (( $frag_lun != $last_lun )); then
8653                         if (( tot_len != $EXPECTED_LEN )); then
8654                                 cleanup_130
8655                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8656                                 return
8657                         else
8658                                 (( num_luns += 1 ))
8659                                 tot_len=0
8660                         fi
8661                 fi
8662                 (( tot_len += ext_len ))
8663                 last_lun=$frag_lun
8664         done
8665         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8666                 cleanup_130
8667                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8668                 return
8669         fi
8670
8671         cleanup_130
8672
8673         echo "FIEMAP with continuation calls succeeded"
8674 }
8675 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8676
8677 # Test for writev/readv
8678 test_131a() {
8679         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8680         error "writev test failed"
8681         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8682         error "readv failed"
8683         rm -f $DIR/$tfile
8684 }
8685 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8686
8687 test_131b() {
8688         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8689         error "append writev test failed"
8690         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8691         error "append writev test failed"
8692         rm -f $DIR/$tfile
8693 }
8694 run_test 131b "test append writev"
8695
8696 test_131c() {
8697         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8698         error "NOT PASS"
8699 }
8700 run_test 131c "test read/write on file w/o objects"
8701
8702 test_131d() {
8703         rwv -f $DIR/$tfile -w -n 1 1572864
8704         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8705         if [ "$NOB" != 1572864 ]; then
8706                 error "Short read filed: read $NOB bytes instead of 1572864"
8707         fi
8708         rm -f $DIR/$tfile
8709 }
8710 run_test 131d "test short read"
8711
8712 test_131e() {
8713         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8714         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8715         error "read hitting hole failed"
8716         rm -f $DIR/$tfile
8717 }
8718 run_test 131e "test read hitting hole"
8719
8720 get_ost_param() {
8721         local token=$1
8722         local gl_sum=0
8723         for node in $(osts_nodes); do
8724                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8725                 [ x$gl = x"" ] && gl=0
8726                 gl_sum=$((gl_sum + gl))
8727         done
8728         echo $gl_sum
8729 }
8730
8731 som_mode_switch() {
8732         local som=$1
8733         local gl1=$2
8734         local gl2=$3
8735
8736         if [ x$som = x"enabled" ]; then
8737                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8738                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8739                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8740         else
8741                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8742                 MOUNTOPT="$MOUNTOPT,som_preview"
8743                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8744         fi
8745
8746         # do remount to make new mount-conf parameters actual
8747         echo remounting...
8748         sync
8749         stopall
8750         setupall
8751 }
8752
8753 test_132() { #1028, SOM
8754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8755         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8756         local num=$(get_mds_dir $DIR)
8757         local mymds=mds${num}
8758         local MOUNTOPT_SAVE=$MOUNTOPT
8759
8760         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8761         cancel_lru_locks osc
8762
8763         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8764
8765         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8766         stat $DIR/$tfile >/dev/null
8767         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8768         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8769         rm $DIR/$tfile
8770         som_mode_switch $som1 $gl1 $gl2
8771
8772         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8773         cancel_lru_locks osc
8774
8775         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8776         if [ $som1 == $som2 ]; then
8777             error "som is still "$som2
8778             if [ x$som2 = x"enabled" ]; then
8779                 som2="disabled"
8780             else
8781                 som2="enabled"
8782             fi
8783         fi
8784
8785         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8786         stat $DIR/$tfile >/dev/null
8787         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8788         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8789         som_mode_switch $som2 $gl1 $gl2
8790         MOUNTOPT=$MOUNTOPT_SAVE
8791 }
8792 run_test 132 "som avoids glimpse rpc"
8793
8794 check_stats() {
8795         local res
8796         local count
8797         case $1 in
8798         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8799                  ;;
8800         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8801                  ;;
8802         *) error "Wrong argument $1" ;;
8803         esac
8804         echo $res
8805         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8806         # if the argument $3 is zero, it means any stat increment is ok.
8807         if [[ $3 -gt 0 ]]; then
8808                 count=$(echo $res | awk '{ print $2 }')
8809                 [[ $count -ne $3 ]] &&
8810                         error "The $2 counter on $1 is wrong - expected $3"
8811         fi
8812 }
8813
8814 test_133a() {
8815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8816         remote_ost_nodsh && skip "remote OST with nodsh" && return
8817         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8818
8819         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8820                 { skip "MDS doesn't support rename stats"; return; }
8821         local testdir=$DIR/${tdir}/stats_testdir
8822         mkdir -p $DIR/${tdir}
8823
8824         # clear stats.
8825         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8826         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8827
8828         # verify mdt stats first.
8829         mkdir ${testdir} || error "mkdir failed"
8830         check_stats $SINGLEMDS "mkdir" 1
8831         touch ${testdir}/${tfile} || "touch failed"
8832         check_stats $SINGLEMDS "open" 1
8833         check_stats $SINGLEMDS "close" 1
8834         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8835         check_stats $SINGLEMDS "mknod" 1
8836         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8837         check_stats $SINGLEMDS "unlink" 1
8838         rm -f ${testdir}/${tfile} || error "file remove failed"
8839         check_stats $SINGLEMDS "unlink" 2
8840
8841         # remove working dir and check mdt stats again.
8842         rmdir ${testdir} || error "rmdir failed"
8843         check_stats $SINGLEMDS "rmdir" 1
8844
8845         local testdir1=$DIR/${tdir}/stats_testdir1
8846         mkdir -p ${testdir}
8847         mkdir -p ${testdir1}
8848         touch ${testdir1}/test1
8849         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8850         check_stats $SINGLEMDS "crossdir_rename" 1
8851
8852         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8853         check_stats $SINGLEMDS "samedir_rename" 1
8854
8855         rm -rf $DIR/${tdir}
8856 }
8857 run_test 133a "Verifying MDT stats ========================================"
8858
8859 test_133b() {
8860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8861         remote_ost_nodsh && skip "remote OST with nodsh" && return
8862         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8863         local testdir=$DIR/${tdir}/stats_testdir
8864         mkdir -p ${testdir} || error "mkdir failed"
8865         touch ${testdir}/${tfile} || "touch failed"
8866         cancel_lru_locks mdc
8867
8868         # clear stats.
8869         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8870         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8871
8872         # extra mdt stats verification.
8873         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8874         check_stats $SINGLEMDS "setattr" 1
8875         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8876         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8877         then            # LU-1740
8878                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8879                 check_stats $SINGLEMDS "getattr" 1
8880         fi
8881         $LFS df || error "lfs failed"
8882         check_stats $SINGLEMDS "statfs" 1
8883
8884         rm -rf $DIR/${tdir}
8885 }
8886 run_test 133b "Verifying extra MDT stats =================================="
8887
8888 test_133c() {
8889         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8890         remote_ost_nodsh && skip "remote OST with nodsh" && return
8891         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8892         local testdir=$DIR/${tdir}/stats_testdir
8893         test_mkdir -p ${testdir} || error "mkdir failed"
8894
8895         # verify obdfilter stats.
8896         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8897         sync
8898         cancel_lru_locks osc
8899         wait_delete_completed
8900
8901         # clear stats.
8902         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8903         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8904
8905         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8906         sync
8907         cancel_lru_locks osc
8908         check_stats ost "write" 1
8909
8910         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8911         check_stats ost "read" 1
8912
8913         > ${testdir}/${tfile} || error "truncate failed"
8914         check_stats ost "punch" 1
8915
8916         rm -f ${testdir}/${tfile} || error "file remove failed"
8917         wait_delete_completed
8918         check_stats ost "destroy" 1
8919
8920         rm -rf $DIR/${tdir}
8921 }
8922 run_test 133c "Verifying OST stats ========================================"
8923
8924 order_2() {
8925         local value=$1
8926         local orig=$value
8927         local order=1
8928
8929         while [ $value -ge 2 ]; do
8930                 order=$((order*2))
8931                 value=$((value/2))
8932         done
8933
8934         if [ $orig -gt $order ]; then
8935                 order=$((order*2))
8936         fi
8937         echo $order
8938 }
8939
8940 size_in_KMGT() {
8941     local value=$1
8942     local size=('K' 'M' 'G' 'T');
8943     local i=0
8944     local size_string=$value
8945
8946     while [ $value -ge 1024 ]; do
8947         if [ $i -gt 3 ]; then
8948             #T is the biggest unit we get here, if that is bigger,
8949             #just return XXXT
8950             size_string=${value}T
8951             break
8952         fi
8953         value=$((value >> 10))
8954         if [ $value -lt 1024 ]; then
8955             size_string=${value}${size[$i]}
8956             break
8957         fi
8958         i=$((i + 1))
8959     done
8960
8961     echo $size_string
8962 }
8963
8964 get_rename_size() {
8965     local size=$1
8966     local context=${2:-.}
8967     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8968                 grep -A1 $context |
8969                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8970     echo $sample
8971 }
8972
8973 test_133d() {
8974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8975         remote_ost_nodsh && skip "remote OST with nodsh" && return
8976         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8977         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8978         { skip "MDS doesn't support rename stats"; return; }
8979
8980         local testdir1=$DIR/${tdir}/stats_testdir1
8981         local testdir2=$DIR/${tdir}/stats_testdir2
8982
8983         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8984
8985         mkdir -p ${testdir1} || error "mkdir failed"
8986         mkdir -p ${testdir2} || error "mkdir failed"
8987
8988         createmany -o $testdir1/test 512 || error "createmany failed"
8989
8990         # check samedir rename size
8991         mv ${testdir1}/test0 ${testdir1}/test_0
8992
8993         local testdir1_size=$(ls -l $DIR/${tdir} |
8994                 awk '/stats_testdir1/ {print $5}')
8995         local testdir2_size=$(ls -l $DIR/${tdir} |
8996                 awk '/stats_testdir2/ {print $5}')
8997
8998         testdir1_size=$(order_2 $testdir1_size)
8999         testdir2_size=$(order_2 $testdir2_size)
9000
9001         testdir1_size=$(size_in_KMGT $testdir1_size)
9002         testdir2_size=$(size_in_KMGT $testdir2_size)
9003
9004         echo "source rename dir size: ${testdir1_size}"
9005         echo "target rename dir size: ${testdir2_size}"
9006
9007         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9008         eval $cmd || error "$cmd failed"
9009         local samedir=$($cmd | grep 'same_dir')
9010         local same_sample=$(get_rename_size $testdir1_size)
9011         [ -z "$samedir" ] && error "samedir_rename_size count error"
9012         [[ $same_sample -eq 1 ]] ||
9013                 error "samedir_rename_size error $same_sample"
9014         echo "Check same dir rename stats success"
9015
9016         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9017
9018         # check crossdir rename size
9019         mv ${testdir1}/test_0 ${testdir2}/test_0
9020
9021         testdir1_size=$(ls -l $DIR/${tdir} |
9022                 awk '/stats_testdir1/ {print $5}')
9023         testdir2_size=$(ls -l $DIR/${tdir} |
9024                 awk '/stats_testdir2/ {print $5}')
9025
9026         testdir1_size=$(order_2 $testdir1_size)
9027         testdir2_size=$(order_2 $testdir2_size)
9028
9029         testdir1_size=$(size_in_KMGT $testdir1_size)
9030         testdir2_size=$(size_in_KMGT $testdir2_size)
9031
9032         echo "source rename dir size: ${testdir1_size}"
9033         echo "target rename dir size: ${testdir2_size}"
9034
9035         eval $cmd || error "$cmd failed"
9036         local crossdir=$($cmd | grep 'crossdir')
9037         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9038         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9039         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9040         [[ $src_sample -eq 1 ]] ||
9041                 error "crossdir_rename_size error $src_sample"
9042         [[ $tgt_sample -eq 1 ]] ||
9043                 error "crossdir_rename_size error $tgt_sample"
9044         echo "Check cross dir rename stats success"
9045         rm -rf $DIR/${tdir}
9046 }
9047 run_test 133d "Verifying rename_stats ========================================"
9048
9049 test_133e() {
9050         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9051         local testdir=$DIR/${tdir}/stats_testdir
9052         local ctr f0 f1 bs=32768 count=42 sum
9053
9054         remote_ost_nodsh && skip "remote OST with nodsh" && return
9055         mkdir -p ${testdir} || error "mkdir failed"
9056
9057         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9058
9059         for ctr in {write,read}_bytes; do
9060                 sync
9061                 cancel_lru_locks osc
9062
9063                 do_facet ost1 $LCTL set_param -n \
9064                         "obdfilter.*.exports.clear=clear"
9065
9066                 if [ $ctr = write_bytes ]; then
9067                         f0=/dev/zero
9068                         f1=${testdir}/${tfile}
9069                 else
9070                         f0=${testdir}/${tfile}
9071                         f1=/dev/null
9072                 fi
9073
9074                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9075                         error "dd failed"
9076                 sync
9077                 cancel_lru_locks osc
9078
9079                 sum=$(do_facet ost1 $LCTL get_param \
9080                         "obdfilter.*.exports.*.stats" |
9081                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9082                                 $1 == ctr { sum += $7 }
9083                                 END { printf("%0.0f", sum) }')
9084
9085                 if ((sum != bs * count)); then
9086                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9087                 fi
9088         done
9089
9090         rm -rf $DIR/${tdir}
9091 }
9092 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9093
9094 test_133f() {
9095         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
9096         local facet
9097
9098         # First without trusting modes.
9099         find $proc_dirs -exec cat '{}' \; &> /dev/null
9100
9101         # Second verifying readability.
9102         find $proc_dirs \
9103                 -type f \
9104                 -exec cat '{}' \; &> /dev/null ||
9105                         error "proc file read failed"
9106
9107         for facet in $SINGLEMDS ost1; do
9108                 do_facet $facet find $proc_dirs \
9109                         ! -name req_history \
9110                         -exec cat '{}' \\\; &> /dev/null
9111
9112                 do_facet $facet find $proc_dirs \
9113                         ! -name req_history \
9114                         -type f \
9115                         -exec cat '{}' \\\; &> /dev/null ||
9116                                 error "proc file read failed"
9117         done
9118 }
9119 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9120
9121 test_133g() {
9122         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
9123         local facet
9124
9125         # Second verifying readability.
9126         find $proc_dirs \
9127                 -type f \
9128                 -not -name force_lbug \
9129                 -not -name changelog_mask \
9130                 -exec badarea_io '{}' \; &> /dev/null ||
9131                 error "find $proc_dirs failed"
9132
9133         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9134                 skip "Too old lustre on MDS"
9135
9136         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9137                 skip "Too old lustre on ost1"
9138
9139         for facet in $SINGLEMDS ost1; do
9140                 do_facet $facet find $proc_dirs \
9141                         -type f \
9142                         -not -name force_lbug \
9143                         -not -name changelog_mask \
9144                         -exec badarea_io '{}' \\\; &> /dev/null ||
9145                 error "$facet find $proc_dirs failed"
9146
9147         done
9148
9149         # remount the FS in case writes/reads /proc break the FS
9150         cleanup || error "failed to unmount"
9151         setup || error "failed to setup"
9152         true
9153 }
9154 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9155
9156 test_140() { #bug-17379
9157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9158         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9159         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9160         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9161
9162         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9163         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9164         local i=0
9165         while i=`expr $i + 1`; do
9166                 test_mkdir -p $i || error "Creating dir $i"
9167                 cd $i || error "Changing to $i"
9168                 ln -s ../stat stat || error "Creating stat symlink"
9169                 # Read the symlink until ELOOP present,
9170                 # not LBUGing the system is considered success,
9171                 # we didn't overrun the stack.
9172                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9173                 [ $ret -ne 0 ] && {
9174                         if [ $ret -eq 40 ]; then
9175                                 break  # -ELOOP
9176                         else
9177                                 error "Open stat symlink"
9178                                 return
9179                         fi
9180                 }
9181         done
9182         i=`expr $i - 1`
9183         echo "The symlink depth = $i"
9184         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9185                                         error "Invalid symlink depth"
9186
9187         # Test recursive symlink
9188         ln -s symlink_self symlink_self
9189         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9190         echo "open symlink_self returns $ret"
9191         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9192 }
9193 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9194
9195 test_150() {
9196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9197         local TF="$TMP/$tfile"
9198
9199         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9200         cp $TF $DIR/$tfile
9201         cancel_lru_locks osc
9202         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9203         remount_client $MOUNT
9204         df -P $MOUNT
9205         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9206
9207         $TRUNCATE $TF 6000
9208         $TRUNCATE $DIR/$tfile 6000
9209         cancel_lru_locks osc
9210         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9211
9212         echo "12345" >>$TF
9213         echo "12345" >>$DIR/$tfile
9214         cancel_lru_locks osc
9215         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9216
9217         echo "12345" >>$TF
9218         echo "12345" >>$DIR/$tfile
9219         cancel_lru_locks osc
9220         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9221
9222         rm -f $TF
9223         true
9224 }
9225 run_test 150 "truncate/append tests"
9226
9227 #LU-2902 roc_hit was not able to read all values from lproc
9228 function roc_hit_init() {
9229         local list=$(comma_list $(osts_nodes))
9230         local dir=$DIR/$tdir-check
9231         local file=$dir/file
9232         local BEFORE
9233         local AFTER
9234         local idx
9235
9236         test_mkdir -p $dir
9237         #use setstripe to do a write to every ost
9238         for i in $(seq 0 $((OSTCOUNT-1))); do
9239                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9240                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9241                 idx=$(printf %04x $i)
9242                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9243                         awk '$1 == "cache_access" {sum += $2}
9244                                 END { printf("%0.0f", sum) }')
9245
9246                 cancel_lru_locks osc
9247                 cat $file >/dev/null
9248
9249                 AFTER=$(get_osd_param $list *OST*$idx stats |
9250                         awk '$1 == "cache_access" {sum += $2}
9251                                 END { printf("%0.0f", sum) }')
9252
9253                 echo BEFORE:$BEFORE AFTER:$AFTER
9254                 if ! let "AFTER - BEFORE == 4"; then
9255                         rm -rf $dir
9256                         error "roc_hit is not safe to use"
9257                 fi
9258                 rm $file
9259         done
9260
9261         rm -rf $dir
9262 }
9263
9264 function roc_hit() {
9265         local list=$(comma_list $(osts_nodes))
9266         echo $(get_osd_param $list '' stats |
9267                 awk '$1 == "cache_hit" {sum += $2}
9268                         END { printf("%0.0f", sum) }')
9269 }
9270
9271 function set_cache() {
9272         local on=1
9273
9274         if [ "$2" == "off" ]; then
9275                 on=0;
9276         fi
9277         local list=$(comma_list $(osts_nodes))
9278         set_osd_param $list '' $1_cache_enable $on
9279
9280         cancel_lru_locks osc
9281 }
9282
9283 test_151() {
9284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9285         remote_ost_nodsh && skip "remote OST with nodsh" && return
9286
9287         local CPAGES=3
9288         local list=$(comma_list $(osts_nodes))
9289
9290         # check whether obdfilter is cache capable at all
9291         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9292                 echo "not cache-capable obdfilter"
9293                 return 0
9294         fi
9295
9296         # check cache is enabled on all obdfilters
9297         if get_osd_param $list '' read_cache_enable | grep 0; then
9298                 echo "oss cache is disabled"
9299                 return 0
9300         fi
9301
9302         set_osd_param $list '' writethrough_cache_enable 1
9303
9304         # check write cache is enabled on all obdfilters
9305         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9306                 echo "oss write cache is NOT enabled"
9307                 return 0
9308         fi
9309
9310         roc_hit_init
9311
9312         #define OBD_FAIL_OBD_NO_LRU  0x609
9313         do_nodes $list $LCTL set_param fail_loc=0x609
9314
9315         # pages should be in the case right after write
9316         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9317                 error "dd failed"
9318
9319         local BEFORE=$(roc_hit)
9320         cancel_lru_locks osc
9321         cat $DIR/$tfile >/dev/null
9322         local AFTER=$(roc_hit)
9323
9324         do_nodes $list $LCTL set_param fail_loc=0
9325
9326         if ! let "AFTER - BEFORE == CPAGES"; then
9327                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9328         fi
9329
9330         # the following read invalidates the cache
9331         cancel_lru_locks osc
9332         set_osd_param $list '' read_cache_enable 0
9333         cat $DIR/$tfile >/dev/null
9334
9335         # now data shouldn't be found in the cache
9336         BEFORE=$(roc_hit)
9337         cancel_lru_locks osc
9338         cat $DIR/$tfile >/dev/null
9339         AFTER=$(roc_hit)
9340         if let "AFTER - BEFORE != 0"; then
9341                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9342         fi
9343
9344         set_osd_param $list '' read_cache_enable 1
9345         rm -f $DIR/$tfile
9346 }
9347 run_test 151 "test cache on oss and controls ==============================="
9348
9349 test_152() {
9350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9351         local TF="$TMP/$tfile"
9352
9353         # simulate ENOMEM during write
9354 #define OBD_FAIL_OST_NOMEM      0x226
9355         lctl set_param fail_loc=0x80000226
9356         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9357         cp $TF $DIR/$tfile
9358         sync || error "sync failed"
9359         lctl set_param fail_loc=0
9360
9361         # discard client's cache
9362         cancel_lru_locks osc
9363
9364         # simulate ENOMEM during read
9365         lctl set_param fail_loc=0x80000226
9366         cmp $TF $DIR/$tfile || error "cmp failed"
9367         lctl set_param fail_loc=0
9368
9369         rm -f $TF
9370 }
9371 run_test 152 "test read/write with enomem ============================"
9372
9373 test_153() {
9374         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9375 }
9376 run_test 153 "test if fdatasync does not crash ======================="
9377
9378 dot_lustre_fid_permission_check() {
9379         local fid=$1
9380         local ffid=$MOUNT/.lustre/fid/$fid
9381         local test_dir=$2
9382
9383         echo "stat fid $fid"
9384         stat $ffid > /dev/null || error "stat $ffid failed."
9385         echo "touch fid $fid"
9386         touch $ffid || error "touch $ffid failed."
9387         echo "write to fid $fid"
9388         cat /etc/hosts > $ffid || error "write $ffid failed."
9389         echo "read fid $fid"
9390         diff /etc/hosts $ffid || error "read $ffid failed."
9391         echo "append write to fid $fid"
9392         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9393         echo "rename fid $fid"
9394         mv $ffid $test_dir/$tfile.1 &&
9395                 error "rename $ffid to $tfile.1 should fail."
9396         touch $test_dir/$tfile.1
9397         mv $test_dir/$tfile.1 $ffid &&
9398                 error "rename $tfile.1 to $ffid should fail."
9399         rm -f $test_dir/$tfile.1
9400         echo "truncate fid $fid"
9401         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9402         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9403                 echo "link fid $fid"
9404                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9405         fi
9406         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9407                 echo "setfacl fid $fid"
9408                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9409                 echo "getfacl fid $fid"
9410                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9411         fi
9412         echo "unlink fid $fid"
9413         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9414         echo "mknod fid $fid"
9415         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9416
9417         fid=[0xf00000400:0x1:0x0]
9418         ffid=$MOUNT/.lustre/fid/$fid
9419
9420         echo "stat non-exist fid $fid"
9421         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9422         echo "write to non-exist fid $fid"
9423         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9424         echo "link new fid $fid"
9425         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9426
9427         mkdir -p $test_dir/$tdir
9428         touch $test_dir/$tdir/$tfile
9429         fid=$($LFS path2fid $test_dir/$tdir)
9430         rc=$?
9431         [ $rc -ne 0 ] &&
9432                 error "error: could not get fid for $test_dir/$dir/$tfile."
9433
9434         ffid=$MOUNT/.lustre/fid/$fid
9435
9436         echo "ls $fid"
9437         ls $ffid > /dev/null || error "ls $ffid failed."
9438         echo "touch $fid/$tfile.1"
9439         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9440
9441         echo "touch $MOUNT/.lustre/fid/$tfile"
9442         touch $MOUNT/.lustre/fid/$tfile && \
9443                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9444
9445         echo "setxattr to $MOUNT/.lustre/fid"
9446         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9447
9448         echo "listxattr for $MOUNT/.lustre/fid"
9449         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9450
9451         echo "delxattr from $MOUNT/.lustre/fid"
9452         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9453
9454         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9455         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9456                 error "touch invalid fid should fail."
9457
9458         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9459         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9460                 error "touch non-normal fid should fail."
9461
9462         echo "rename $tdir to $MOUNT/.lustre/fid"
9463         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9464                 error "rename to $MOUNT/.lustre/fid should fail."
9465
9466         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9467         then            # LU-3547
9468                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9469                 local new_obf_mode=777
9470
9471                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9472                 chmod $new_obf_mode $DIR/.lustre/fid ||
9473                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9474
9475                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9476                 [ $obf_mode -eq $new_obf_mode ] ||
9477                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9478
9479                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9480                 chmod $old_obf_mode $DIR/.lustre/fid ||
9481                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9482         fi
9483
9484         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9485         fid=$($LFS path2fid $test_dir/$tfile-2)
9486         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9487         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
9488                 error "create lov data thru .lustre should fail."
9489         echo "cp /etc/passwd $test_dir/$tfile-2"
9490         cp /etc/passwd $test_dir/$tfile-2 ||
9491                 error "copy to $test_dir/$tfile-2 failed."
9492         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9493         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9494                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9495
9496         rm -rf $test_dir/tfile.lnk
9497         rm -rf $test_dir/$tfile-2
9498 }
9499
9500 test_154A() {
9501         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9502                 skip "Need MDS version at least 2.4.1" && return
9503
9504         touch $DIR/$tfile
9505         local FID=$($LFS path2fid $DIR/$tfile)
9506         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9507
9508         # check that we get the same pathname back
9509         local FOUND=$($LFS fid2path $MOUNT $FID)
9510         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9511         [ "$FOUND" != "$DIR/$tfile" ] &&
9512                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9513
9514         rm -rf $DIR/$tfile
9515 }
9516 run_test 154A "lfs path2fid and fid2path basic checks"
9517
9518 test_154a() {
9519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9520         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9521                 { skip "Need MDS version at least 2.2.51"; return 0; }
9522         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9523
9524         cp /etc/hosts $DIR/$tfile
9525
9526         fid=$($LFS path2fid $DIR/$tfile)
9527         rc=$?
9528         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9529
9530         dot_lustre_fid_permission_check "$fid" $DIR ||
9531                 error "dot lustre permission check $fid failed"
9532
9533         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9534
9535         touch $MOUNT/.lustre/file &&
9536                 error "creation is not allowed under .lustre"
9537
9538         mkdir $MOUNT/.lustre/dir &&
9539                 error "mkdir is not allowed under .lustre"
9540
9541         rm -rf $DIR/$tfile
9542 }
9543 run_test 154a "Open-by-FID"
9544
9545 test_154b() {
9546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9547         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9548                 { skip "Need MDS version at least 2.2.51"; return 0; }
9549
9550         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9551
9552         local remote_dir=$DIR/$tdir/remote_dir
9553         local MDTIDX=1
9554         local rc=0
9555
9556         mkdir -p $DIR/$tdir
9557         $LFS mkdir -i $MDTIDX -c $MDSCOUNT $remote_dir ||
9558                 error "create remote directory failed"
9559
9560         cp /etc/hosts $remote_dir/$tfile
9561
9562         fid=$($LFS path2fid $remote_dir/$tfile)
9563         rc=$?
9564         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9565
9566         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9567                 error "dot lustre permission check $fid failed"
9568         rm -rf $DIR/$tdir
9569 }
9570 run_test 154b "Open-by-FID for remote directory"
9571
9572 test_154c() {
9573         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9574                 skip "Need MDS version at least 2.4.1" && return
9575
9576         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9577         local FID1=$($LFS path2fid $DIR/$tfile.1)
9578         local FID2=$($LFS path2fid $DIR/$tfile.2)
9579         local FID3=$($LFS path2fid $DIR/$tfile.3)
9580
9581         local N=1
9582         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9583                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9584                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9585                 local want=FID$N
9586                 [ "$FID" = "${!want}" ] ||
9587                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9588                 N=$((N + 1))
9589         done
9590
9591         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9592                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9593                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9594                 N=$((N + 1))
9595         done
9596 }
9597 run_test 154c "lfs path2fid and fid2path multiple arguments"
9598
9599 test_154d() {
9600         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
9601                 skip "Need MDS version at least 2.5.53" && return
9602
9603         if remote_mds; then
9604                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
9605         else
9606                 nid="0@lo"
9607         fi
9608         local proc_ofile="mdt.*.exports.'$nid'.open_files"
9609         local fd
9610         local cmd
9611
9612         rm -f $DIR/$tfile
9613         touch $DIR/$tfile
9614
9615         fid=$($LFS path2fid $DIR/$tfile)
9616         # Open the file
9617         fd=$(free_fd)
9618         cmd="exec $fd<$DIR/$tfile"
9619         eval $cmd
9620         fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
9621         echo $fid_list | grep $fid
9622         rc=$?
9623
9624         cmd="exec $fd>/dev/null"
9625         eval $cmd
9626         if [ $rc -ne 0 ]; then
9627                 error "FID $fid not found in open files list $fid_list"
9628         fi
9629 }
9630 run_test 154d "Verify open file fid"
9631
9632 test_155_small_load() {
9633     local temp=$TMP/$tfile
9634     local file=$DIR/$tfile
9635
9636     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9637         error "dd of=$temp bs=6096 count=1 failed"
9638     cp $temp $file
9639     cancel_lru_locks osc
9640     cmp $temp $file || error "$temp $file differ"
9641
9642     $TRUNCATE $temp 6000
9643     $TRUNCATE $file 6000
9644     cmp $temp $file || error "$temp $file differ (truncate1)"
9645
9646     echo "12345" >>$temp
9647     echo "12345" >>$file
9648     cmp $temp $file || error "$temp $file differ (append1)"
9649
9650     echo "12345" >>$temp
9651     echo "12345" >>$file
9652     cmp $temp $file || error "$temp $file differ (append2)"
9653
9654     rm -f $temp $file
9655     true
9656 }
9657
9658 test_155_big_load() {
9659     remote_ost_nodsh && skip "remote OST with nodsh" && return
9660     local temp=$TMP/$tfile
9661     local file=$DIR/$tfile
9662
9663     free_min_max
9664     local cache_size=$(do_facet ost$((MAXI+1)) \
9665         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9666     local large_file_size=$((cache_size * 2))
9667
9668     echo "OSS cache size: $cache_size KB"
9669     echo "Large file size: $large_file_size KB"
9670
9671     [ $MAXV -le $large_file_size ] && \
9672         skip_env "max available OST size needs > $large_file_size KB" && \
9673         return 0
9674
9675     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9676
9677     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9678         error "dd of=$temp bs=$large_file_size count=1k failed"
9679     cp $temp $file
9680     ls -lh $temp $file
9681     cancel_lru_locks osc
9682     cmp $temp $file || error "$temp $file differ"
9683
9684     rm -f $temp $file
9685     true
9686 }
9687
9688 test_155a() {
9689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9690         set_cache read on
9691         set_cache writethrough on
9692         test_155_small_load
9693 }
9694 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9695
9696 test_155b() {
9697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9698         set_cache read on
9699         set_cache writethrough off
9700         test_155_small_load
9701 }
9702 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9703
9704 test_155c() {
9705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9706         set_cache read off
9707         set_cache writethrough on
9708         test_155_small_load
9709 }
9710 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9711
9712 test_155d() {
9713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9714         set_cache read off
9715         set_cache writethrough off
9716         test_155_small_load
9717 }
9718 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9719
9720 test_155e() {
9721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9722         set_cache read on
9723         set_cache writethrough on
9724         test_155_big_load
9725 }
9726 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9727
9728 test_155f() {
9729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9730         set_cache read on
9731         set_cache writethrough off
9732         test_155_big_load
9733 }
9734 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9735
9736 test_155g() {
9737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9738         set_cache read off
9739         set_cache writethrough on
9740         test_155_big_load
9741 }
9742 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9743
9744 test_155h() {
9745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9746         set_cache read off
9747         set_cache writethrough off
9748         test_155_big_load
9749 }
9750 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9751
9752 test_156() {
9753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9754         local CPAGES=3
9755         local BEFORE
9756         local AFTER
9757         local file="$DIR/$tfile"
9758
9759         [ "$(facet_fstype ost1)" = "zfs" ] &&
9760                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9761                 return
9762
9763         roc_hit_init
9764
9765     log "Turn on read and write cache"
9766     set_cache read on
9767     set_cache writethrough on
9768
9769     log "Write data and read it back."
9770     log "Read should be satisfied from the cache."
9771     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9772     BEFORE=`roc_hit`
9773     cancel_lru_locks osc
9774     cat $file >/dev/null
9775     AFTER=`roc_hit`
9776     if ! let "AFTER - BEFORE == CPAGES"; then
9777         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9778     else
9779         log "cache hits:: before: $BEFORE, after: $AFTER"
9780     fi
9781
9782     log "Read again; it should be satisfied from the cache."
9783     BEFORE=$AFTER
9784     cancel_lru_locks osc
9785     cat $file >/dev/null
9786     AFTER=`roc_hit`
9787     if ! let "AFTER - BEFORE == CPAGES"; then
9788         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9789     else
9790         log "cache hits:: before: $BEFORE, after: $AFTER"
9791     fi
9792
9793
9794     log "Turn off the read cache and turn on the write cache"
9795     set_cache read off
9796     set_cache writethrough on
9797
9798     log "Read again; it should be satisfied from the cache."
9799     BEFORE=`roc_hit`
9800     cancel_lru_locks osc
9801     cat $file >/dev/null
9802     AFTER=`roc_hit`
9803     if ! let "AFTER - BEFORE == CPAGES"; then
9804         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9805     else
9806         log "cache hits:: before: $BEFORE, after: $AFTER"
9807     fi
9808
9809     log "Read again; it should not be satisfied from the cache."
9810     BEFORE=$AFTER
9811     cancel_lru_locks osc
9812     cat $file >/dev/null
9813     AFTER=`roc_hit`
9814     if ! let "AFTER - BEFORE == 0"; then
9815         error "IN CACHE: before: $BEFORE, after: $AFTER"
9816     else
9817         log "cache hits:: before: $BEFORE, after: $AFTER"
9818     fi
9819
9820     log "Write data and read it back."
9821     log "Read should be satisfied from the cache."
9822     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9823     BEFORE=`roc_hit`
9824     cancel_lru_locks osc
9825     cat $file >/dev/null
9826     AFTER=`roc_hit`
9827     if ! let "AFTER - BEFORE == CPAGES"; then
9828         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9829     else
9830         log "cache hits:: before: $BEFORE, after: $AFTER"
9831     fi
9832
9833     log "Read again; it should not be satisfied from the cache."
9834     BEFORE=$AFTER
9835     cancel_lru_locks osc
9836     cat $file >/dev/null
9837     AFTER=`roc_hit`
9838     if ! let "AFTER - BEFORE == 0"; then
9839         error "IN CACHE: before: $BEFORE, after: $AFTER"
9840     else
9841         log "cache hits:: before: $BEFORE, after: $AFTER"
9842     fi
9843
9844
9845     log "Turn off read and write cache"
9846     set_cache read off
9847     set_cache writethrough off
9848
9849     log "Write data and read it back"
9850     log "It should not be satisfied from the cache."
9851     rm -f $file
9852     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9853     cancel_lru_locks osc
9854     BEFORE=`roc_hit`
9855     cat $file >/dev/null
9856     AFTER=`roc_hit`
9857         if ! let "AFTER - BEFORE == 0"; then
9858                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9859         else
9860                 log "cache hits:: before: $BEFORE, after: $AFTER"
9861         fi
9862
9863     log "Turn on the read cache and turn off the write cache"
9864     set_cache read on
9865     set_cache writethrough off
9866
9867     log "Write data and read it back"
9868     log "It should not be satisfied from the cache."
9869     rm -f $file
9870     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9871     BEFORE=`roc_hit`
9872     cancel_lru_locks osc
9873     cat $file >/dev/null
9874     AFTER=`roc_hit`
9875         if ! let "AFTER - BEFORE == 0"; then
9876                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9877         else
9878                 log "cache hits:: before: $BEFORE, after: $AFTER"
9879         fi
9880
9881     log "Read again; it should be satisfied from the cache."
9882     BEFORE=`roc_hit`
9883     cancel_lru_locks osc
9884     cat $file >/dev/null
9885     AFTER=`roc_hit`
9886     if ! let "AFTER - BEFORE == CPAGES"; then
9887         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9888     else
9889         log "cache hits:: before: $BEFORE, after: $AFTER"
9890     fi
9891
9892     rm -f $file
9893 }
9894 run_test 156 "Verification of tunables ============================"
9895
9896 #Changelogs
9897 err17935 () {
9898         if [[ $MDSCOUNT -gt 1 ]]; then
9899                 error_ignore bz17935 $*
9900         else
9901                 error $*
9902         fi
9903 }
9904
9905 changelog_chmask()
9906 {
9907         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9908
9909         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9910
9911         if [ $MASK -eq 1 ]; then
9912                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9913         else
9914                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9915         fi
9916 }
9917
9918 changelog_extract_field() {
9919         local mdt=$1
9920         local cltype=$2
9921         local file=$3
9922         local identifier=$4
9923
9924         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9925                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9926                 tail -1
9927 }
9928
9929 test_160a() {
9930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9931         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9932         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9933                 { skip "Need MDS version at least 2.2.0"; return; }
9934
9935         local CL_USERS="mdd.$MDT0.changelog_users"
9936         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9937         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9938         echo "Registered as changelog user $USER"
9939         $GET_CL_USERS | grep -q $USER ||
9940                 error "User $USER not found in changelog_users"
9941
9942         # change something
9943         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9944         touch $DIR/$tdir/pics/2008/zachy/timestamp
9945         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9946         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9947         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9948         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9949         rm $DIR/$tdir/pics/desktop.jpg
9950
9951         $LFS changelog $MDT0 | tail -5
9952
9953         echo "verifying changelog mask"
9954         changelog_chmask "MKDIR"
9955         changelog_chmask "CLOSE"
9956
9957         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9958         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9959
9960         changelog_chmask "MKDIR"
9961         changelog_chmask "CLOSE"
9962
9963         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9964         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9965
9966         $LFS changelog $MDT0
9967         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9968         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9969         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9970         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9971
9972         # verify contents
9973         echo "verifying target fid"
9974         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9975         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9976         [ "$fidc" == "$fidf" ] ||
9977                 err17935 "fid in changelog $fidc != file fid $fidf"
9978         echo "verifying parent fid"
9979         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9980         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9981         [ "$fidc" == "$fidf" ] ||
9982                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9983
9984         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9985         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9986         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9987         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9988         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9989                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9990
9991         MIN_REC=$($GET_CL_USERS |
9992                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9993         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
9994         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9995         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9996                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9997
9998         # LU-3446 changelog index reset on MDT restart
9999         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10000         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10001         $LFS changelog_clear $MDT0 $USER 0
10002         stop $SINGLEMDS || error "Fail to stop MDT."
10003         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10004         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10005         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10006         [ $CUR_REC1 == $CUR_REC2 ] ||
10007                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10008
10009         echo "verifying user deregister"
10010         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10011         $GET_CL_USERS | grep -q $USER &&
10012                 error "User $USER still in changelog_users"
10013
10014         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10015         if [ $USERS -eq 0 ]; then
10016                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10017                 touch $DIR/$tdir/chloe
10018                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10019                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10020                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10021         else
10022                 echo "$USERS other changelog users; can't verify off"
10023         fi
10024 }
10025 run_test 160a "changelog sanity"
10026
10027 test_160b() { # LU-3587
10028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10029         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10030         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10031                 { skip "Need MDS version at least 2.2.0"; return; }
10032
10033         local CL_USERS="mdd.$MDT0.changelog_users"
10034         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10035         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10036         echo "Registered as changelog user $USER"
10037         $GET_CL_USERS | grep -q $USER ||
10038                 error "User $USER not found in changelog_users"
10039
10040         local LONGNAME1=$(str_repeat a 255)
10041         local LONGNAME2=$(str_repeat b 255)
10042
10043         cd $DIR
10044         echo "creating very long named file"
10045         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10046         echo "moving very long named file"
10047         mv $LONGNAME1 $LONGNAME2
10048
10049         $LFS changelog $MDT0 | grep RENME
10050
10051         echo "deregistering $USER"
10052         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10053
10054         rm -f $LONGNAME2
10055 }
10056 run_test 160b "Verify that very long rename doesn't crash in changelog"
10057
10058 test_160c() {
10059         local rc=0
10060         local server_version=$(lustre_version_code $SINGLEMDS)
10061
10062         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10063                 [[ $server_version -gt $(version_code 2.5.1) &&
10064                    $server_version -lt $(version_code 2.5.50) ]] ||
10065                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10067
10068         # Registration step
10069         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10070                 changelog_register -n)
10071
10072         rm -rf $DIR/$tdir
10073         mkdir -p $DIR/$tdir
10074         $MCREATE $DIR/$tdir/foo_160c
10075         changelog_chmask "TRUNC"
10076         $TRUNCATE $DIR/$tdir/foo_160c 200
10077         changelog_chmask "TRUNC"
10078         $TRUNCATE $DIR/$tdir/foo_160c 199
10079         $LFS changelog $MDT0
10080         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10081         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10082         $LFS changelog_clear $MDT0 $USER 0
10083
10084         # Deregistration step
10085         echo "deregistering $USER"
10086         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10087 }
10088 run_test 160c "verify that changelog log catch the truncate event"
10089
10090 test_161a() {
10091         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10092         test_mkdir -p -c1 $DIR/$tdir
10093         cp /etc/hosts $DIR/$tdir/$tfile
10094         test_mkdir -c1 $DIR/$tdir/foo1
10095         test_mkdir -c1 $DIR/$tdir/foo2
10096         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10097         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10098         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10099         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10100         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10101         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10102                 $LFS fid2path $DIR $FID
10103                 err17935 "bad link ea"
10104         fi
10105     # middle
10106     rm $DIR/$tdir/foo2/zachary
10107     # last
10108     rm $DIR/$tdir/foo2/thor
10109     # first
10110     rm $DIR/$tdir/$tfile
10111     # rename
10112     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10113     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10114         then
10115         $LFS fid2path $DIR $FID
10116         err17935 "bad link rename"
10117     fi
10118     rm $DIR/$tdir/foo2/maggie
10119
10120         # overflow the EA
10121         local longname=filename_avg_len_is_thirty_two_
10122         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10123                 error "failed to hardlink many files"
10124         links=$($LFS fid2path $DIR $FID | wc -l)
10125         echo -n "${links}/1000 links in link EA"
10126         [[ $links -gt 60 ]] ||
10127                 err17935 "expected at least 60 links in link EA"
10128         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10129                 error "failed to unlink many hardlinks"
10130 }
10131 run_test 161a "link ea sanity"
10132
10133 test_161b() {
10134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10135         [ $MDSCOUNT -lt 2 ] &&
10136                 skip "skipping remote directory test" && return
10137         local MDTIDX=1
10138         local remote_dir=$DIR/$tdir/remote_dir
10139
10140         mkdir -p $DIR/$tdir
10141         $LFS mkdir -i $MDTIDX $remote_dir ||
10142                 error "create remote directory failed"
10143
10144         cp /etc/hosts $remote_dir/$tfile
10145         mkdir -p $remote_dir/foo1
10146         mkdir -p $remote_dir/foo2
10147         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10148         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10149         ln $remote_dir/$tfile $remote_dir/foo1/luna
10150         ln $remote_dir/$tfile $remote_dir/foo2/thor
10151
10152         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10153                      tr -d ']')
10154         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10155                 $LFS fid2path $DIR $FID
10156                 err17935 "bad link ea"
10157         fi
10158         # middle
10159         rm $remote_dir/foo2/zachary
10160         # last
10161         rm $remote_dir/foo2/thor
10162         # first
10163         rm $remote_dir/$tfile
10164         # rename
10165         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10166         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10167         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10168                 $LFS fid2path $DIR $FID
10169                 err17935 "bad link rename"
10170         fi
10171         rm $remote_dir/foo2/maggie
10172
10173         # overflow the EA
10174         local longname=filename_avg_len_is_thirty_two_
10175         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10176                 error "failed to hardlink many files"
10177         links=$($LFS fid2path $DIR $FID | wc -l)
10178         echo -n "${links}/1000 links in link EA"
10179         [[ ${links} -gt 60 ]] ||
10180                 err17935 "expected at least 60 links in link EA"
10181         unlinkmany $remote_dir/foo2/$longname 1000 ||
10182         error "failed to unlink many hardlinks"
10183 }
10184 run_test 161b "link ea sanity under remote directory"
10185
10186 test_161c() {
10187         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10188         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10189                 skip "Need MDS version at least 2.1.5" && return
10190
10191         # define CLF_RENAME_LAST 0x0001
10192         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10193         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10194                 changelog_register -n)
10195         rm -rf $DIR/$tdir
10196         mkdir -p $DIR/$tdir
10197         touch $DIR/$tdir/foo_161c
10198         touch $DIR/$tdir/bar_161c
10199         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10200         $LFS changelog $MDT0 | grep RENME
10201         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10202                 cut -f5 -d' ')
10203         $LFS changelog_clear $MDT0 $USER 0
10204         if [ x$flags != "x0x1" ]; then
10205                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10206                         $USER
10207                 error "flag $flags is not 0x1"
10208         fi
10209         echo "rename overwrite a target having nlink = 1," \
10210                 "changelog record has flags of $flags"
10211
10212         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10213         touch $DIR/$tdir/foo_161c
10214         touch $DIR/$tdir/bar_161c
10215         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10216         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10217         $LFS changelog $MDT0 | grep RENME
10218         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10219         $LFS changelog_clear $MDT0 $USER 0
10220         if [ x$flags != "x0x0" ]; then
10221                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10222                         $USER
10223                 error "flag $flags is not 0x0"
10224         fi
10225         echo "rename overwrite a target having nlink > 1," \
10226                 "changelog record has flags of $flags"
10227
10228         # rename doesn't overwrite a target (changelog flag 0x0)
10229         touch $DIR/$tdir/foo_161c
10230         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10231         $LFS changelog $MDT0 | grep RENME
10232         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10233         $LFS changelog_clear $MDT0 $USER 0
10234         if [ x$flags != "x0x0" ]; then
10235                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10236                         $USER
10237                 error "flag $flags is not 0x0"
10238         fi
10239         echo "rename doesn't overwrite a target," \
10240                 "changelog record has flags of $flags"
10241
10242         # define CLF_UNLINK_LAST 0x0001
10243         # unlink a file having nlink = 1 (changelog flag 0x1)
10244         rm -f $DIR/$tdir/foo2_161c
10245         $LFS changelog $MDT0 | grep UNLNK
10246         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10247         $LFS changelog_clear $MDT0 $USER 0
10248         if [ x$flags != "x0x1" ]; then
10249                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10250                         $USER
10251                 error "flag $flags is not 0x1"
10252         fi
10253         echo "unlink a file having nlink = 1," \
10254                 "changelog record has flags of $flags"
10255
10256         # unlink a file having nlink > 1 (changelog flag 0x0)
10257         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10258         rm -f $DIR/$tdir/foobar_161c
10259         $LFS changelog $MDT0 | grep UNLNK
10260         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10261         $LFS changelog_clear $MDT0 $USER 0
10262         if [ x$flags != "x0x0" ]; then
10263                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10264                         $USER
10265                 error "flag $flags is not 0x0"
10266         fi
10267         echo "unlink a file having nlink > 1," \
10268                 "changelog record has flags of $flags"
10269         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10270 }
10271 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10272
10273 check_path() {
10274     local expected=$1
10275     shift
10276     local fid=$2
10277
10278     local path=$(${LFS} fid2path $*)
10279     RC=$?
10280
10281     if [ $RC -ne 0 ]; then
10282         err17935 "path looked up of $expected failed. Error $RC"
10283         return $RC
10284     elif [ "${path}" != "${expected}" ]; then
10285         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10286         return 2
10287     fi
10288     echo "fid $fid resolves to path $path (expected $expected)"
10289 }
10290
10291 test_162() {
10292         # Make changes to filesystem
10293         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10294         test_mkdir -p -c1 $DIR/$tdir/d2
10295         touch $DIR/$tdir/d2/$tfile
10296         touch $DIR/$tdir/d2/x1
10297         touch $DIR/$tdir/d2/x2
10298         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10299         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10300         # regular file
10301         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10302         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
10303
10304         # softlink
10305         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10306         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10307         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
10308
10309         # softlink to wrong file
10310         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10311         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10312         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
10313
10314         # hardlink
10315         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10316         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10317         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10318         # fid2path dir/fsname should both work
10319         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
10320         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
10321
10322         # hardlink count: check that there are 2 links
10323         # Doesnt work with CMD yet: 17935
10324         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10325                 err17935 "expected 2 links"
10326
10327         # hardlink indexing: remove the first link
10328         rm $DIR/$tdir/d2/p/q/r/hlink
10329         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
10330
10331         return 0
10332 }
10333 run_test 162 "path lookup sanity"
10334
10335 test_162b() {
10336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10337         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10338
10339         mkdir $DIR/$tdir
10340         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
10341                                 error "create striped dir failed"
10342
10343         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
10344                                         tail -n 1 | awk '{print $2}')
10345         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
10346
10347         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
10348         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
10349
10350         # regular file
10351         for ((i=0;i<5;i++)); do
10352                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
10353                         error "get fid for f$i failed"
10354                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
10355
10356                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
10357                         error "get fid for d$i failed"
10358                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
10359         done
10360
10361         return 0
10362 }
10363 run_test 162b "striped directory path lookup sanity"
10364
10365 test_169() {
10366         # do directio so as not to populate the page cache
10367         log "creating a 10 Mb file"
10368         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10369         log "starting reads"
10370         dd if=$DIR/$tfile of=/dev/null bs=4096 &
10371         log "truncating the file"
10372         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10373         log "killing dd"
10374         kill %+ || true # reads might have finished
10375         echo "wait until dd is finished"
10376         wait
10377         log "removing the temporary file"
10378         rm -rf $DIR/$tfile || error "tmp file removal failed"
10379 }
10380 run_test 169 "parallel read and truncate should not deadlock"
10381
10382 test_170() {
10383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10384         $LCTL clear     # bug 18514
10385         $LCTL debug_daemon start $TMP/${tfile}_log_good
10386         touch $DIR/$tfile
10387         $LCTL debug_daemon stop
10388         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
10389                error "sed failed to read log_good"
10390
10391         $LCTL debug_daemon start $TMP/${tfile}_log_good
10392         rm -rf $DIR/$tfile
10393         $LCTL debug_daemon stop
10394
10395         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
10396                error "lctl df log_bad failed"
10397
10398         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10399         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10400
10401         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
10402         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
10403
10404         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
10405                 error "bad_line good_line1 good_line2 are empty"
10406
10407         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10408         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
10409         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10410
10411         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
10412         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10413         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10414
10415         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
10416                 error "bad_line_new good_line_new are empty"
10417
10418         local expected_good=$((good_line1 + good_line2*2))
10419
10420         rm -f $TMP/${tfile}*
10421         # LU-231, short malformed line may not be counted into bad lines
10422         if [ $bad_line -ne $bad_line_new ] &&
10423                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
10424                 error "expected $bad_line bad lines, but got $bad_line_new"
10425                 return 1
10426         fi
10427
10428         if [ $expected_good -ne $good_line_new ]; then
10429                 error "expected $expected_good good lines, but got $good_line_new"
10430                 return 2
10431         fi
10432         true
10433 }
10434 run_test 170 "test lctl df to handle corrupted log ====================="
10435
10436 test_171() { # bug20592
10437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10438 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
10439         $LCTL set_param fail_loc=0x50e
10440         $LCTL set_param fail_val=3000
10441         multiop_bg_pause $DIR/$tfile O_s || true
10442         local MULTIPID=$!
10443         kill -USR1 $MULTIPID
10444         # cause log dump
10445         sleep 3
10446         wait $MULTIPID
10447         if dmesg | grep "recursive fault"; then
10448                 error "caught a recursive fault"
10449         fi
10450         $LCTL set_param fail_loc=0
10451         true
10452 }
10453 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
10454
10455 # it would be good to share it with obdfilter-survey/libecho code
10456 setup_obdecho_osc () {
10457         local rc=0
10458         local ost_nid=$1
10459         local obdfilter_name=$2
10460         echo "Creating new osc for $obdfilter_name on $ost_nid"
10461         # make sure we can find loopback nid
10462         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
10463
10464         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
10465                            ${obdfilter_name}_osc_UUID || rc=2; }
10466         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
10467                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
10468         return $rc
10469 }
10470
10471 cleanup_obdecho_osc () {
10472         local obdfilter_name=$1
10473         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
10474         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
10475         return 0
10476 }
10477
10478 obdecho_test() {
10479         local OBD=$1
10480         local node=$2
10481         local pages=${3:-64}
10482         local rc=0
10483         local id
10484
10485         local count=10
10486         local obd_size=$(get_obd_size $node $OBD)
10487         local page_size=$(get_page_size $node)
10488         if [[ -n "$obd_size" ]]; then
10489                 local new_count=$((obd_size / (pages * page_size / 1024)))
10490                 [[ $new_count -ge $count ]] || count=$new_count
10491         fi
10492
10493         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
10494         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
10495                            rc=2; }
10496         if [ $rc -eq 0 ]; then
10497             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
10498             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
10499         fi
10500         echo "New object id is $id"
10501         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
10502                            rc=4; }
10503         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
10504                            "test_brw $count w v $pages $id" || rc=4; }
10505         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
10506                            rc=4; }
10507         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
10508                                         "cleanup" || rc=5; }
10509         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
10510                                         "detach" || rc=6; }
10511         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10512         return $rc
10513 }
10514
10515 test_180a() {
10516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10517         remote_ost_nodsh && skip "remote OST with nodsh" && return
10518         local rc=0
10519         local rmmod_local=0
10520
10521         if ! module_loaded obdecho; then
10522             load_module obdecho/obdecho
10523             rmmod_local=1
10524         fi
10525
10526         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10527         local host=$(lctl get_param -n osc.$osc.import |
10528                              awk '/current_connection:/ {print $2}' )
10529         local target=$(lctl get_param -n osc.$osc.import |
10530                              awk '/target:/ {print $2}' )
10531         target=${target%_UUID}
10532
10533         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10534         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10535         [[ -n $target ]] && cleanup_obdecho_osc $target
10536         [ $rmmod_local -eq 1 ] && rmmod obdecho
10537         return $rc
10538 }
10539 run_test 180a "test obdecho on osc"
10540
10541 test_180b() {
10542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10543         remote_ost_nodsh && skip "remote OST with nodsh" && return
10544         local rc=0
10545         local rmmod_remote=0
10546
10547         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10548                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10549                       "modprobe obdecho; }" && rmmod_remote=1
10550         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10551         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10552         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10553         return $rc
10554 }
10555 run_test 180b "test obdecho directly on obdfilter"
10556
10557 test_180c() { # LU-2598
10558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10559         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
10560                 skip "Need MDS version at least 2.4.0" && return
10561
10562         local rc=0
10563         local rmmod_remote=false
10564         local pages=16384 # 64MB bulk I/O RPC size
10565         local target
10566
10567         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
10568                 rmmod_remote=true || error "failed to load module obdecho"
10569
10570         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
10571                 head -n1)
10572         if [ -n "$target" ]; then
10573                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
10574         else
10575                 echo "there is no obdfilter target on ost1"
10576                 rc=2
10577         fi
10578         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
10579         return $rc
10580 }
10581 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
10582
10583 test_181() { # bug 22177
10584         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10585         # create enough files to index the directory
10586         createmany -o $DIR/$tdir/foobar 4000
10587         # print attributes for debug purpose
10588         lsattr -d .
10589         # open dir
10590         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10591         MULTIPID=$!
10592         # remove the files & current working dir
10593         unlinkmany $DIR/$tdir/foobar 4000
10594         rmdir $DIR/$tdir
10595         kill -USR1 $MULTIPID
10596         wait $MULTIPID
10597         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10598         return 0
10599 }
10600 run_test 181 "Test open-unlinked dir ========================"
10601
10602 test_182() {
10603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10604         # disable MDC RPC lock wouldn't crash client
10605         local fcount=1000
10606         local tcount=4
10607
10608         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10609 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10610         $LCTL set_param fail_loc=0x804
10611
10612         for (( i=0; i < $tcount; i++ )) ; do
10613                 mkdir $DIR/$tdir/$i
10614                 createmany -o $DIR/$tdir/$i/f- $fcount &
10615         done
10616         wait
10617
10618         for (( i=0; i < $tcount; i++ )) ; do
10619                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10620         done
10621         wait
10622
10623         rm -rf $DIR/$tdir
10624
10625         $LCTL set_param fail_loc=0
10626 }
10627 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10628
10629 test_183() { # LU-2275
10630         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10631                 skip "Need MDS version at least 2.3.56" && return
10632
10633         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10634         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10635         echo aaa > $DIR/$tdir/$tfile
10636
10637 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10638         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10639
10640         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10641         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10642
10643         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10644
10645         # Flush negative dentry cache
10646         touch $DIR/$tdir/$tfile
10647
10648         # We are not checking for any leaked references here, they'll
10649         # become evident next time we do cleanup with module unload.
10650         rm -rf $DIR/$tdir
10651 }
10652 run_test 183 "No crash or request leak in case of strange dispositions ========"
10653
10654 # test suite 184 is for LU-2016, LU-2017
10655 test_184a() {
10656         check_swap_layouts_support && return 0
10657
10658         dir0=$DIR/$tdir/$testnum
10659         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
10660         ref1=/etc/passwd
10661         ref2=/etc/group
10662         file1=$dir0/f1
10663         file2=$dir0/f2
10664         $SETSTRIPE -c1 $file1
10665         cp $ref1 $file1
10666         $SETSTRIPE -c2 $file2
10667         cp $ref2 $file2
10668         gen1=$($GETSTRIPE -g $file1)
10669         gen2=$($GETSTRIPE -g $file2)
10670
10671         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10672         gen=$($GETSTRIPE -g $file1)
10673         [[ $gen1 != $gen ]] ||
10674                 "Layout generation on $file1 does not change"
10675         gen=$($GETSTRIPE -g $file2)
10676         [[ $gen2 != $gen ]] ||
10677                 "Layout generation on $file2 does not change"
10678
10679         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10680         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10681 }
10682 run_test 184a "Basic layout swap"
10683
10684 test_184b() {
10685         check_swap_layouts_support && return 0
10686
10687         dir0=$DIR/$tdir/$testnum
10688         mkdir -p $dir0 || error "creating dir $dir0"
10689         file1=$dir0/f1
10690         file2=$dir0/f2
10691         file3=$dir0/f3
10692         dir1=$dir0/d1
10693         dir2=$dir0/d2
10694         mkdir $dir1 $dir2
10695         $SETSTRIPE -c1 $file1
10696         $SETSTRIPE -c2 $file2
10697         $SETSTRIPE -c1 $file3
10698         chown $RUNAS_ID $file3
10699         gen1=$($GETSTRIPE -g $file1)
10700         gen2=$($GETSTRIPE -g $file2)
10701
10702         $LFS swap_layouts $dir1 $dir2 &&
10703                 error "swap of directories layouts should fail"
10704         $LFS swap_layouts $dir1 $file1 &&
10705                 error "swap of directory and file layouts should fail"
10706         $RUNAS $LFS swap_layouts $file1 $file2 &&
10707                 error "swap of file we cannot write should fail"
10708         $LFS swap_layouts $file1 $file3 &&
10709                 error "swap of file with different owner should fail"
10710         /bin/true # to clear error code
10711 }
10712 run_test 184b "Forbidden layout swap (will generate errors)"
10713
10714 test_184c() {
10715         check_swap_layouts_support && return 0
10716
10717         local dir0=$DIR/$tdir/$testnum
10718         mkdir -p $dir0 || error "creating dir $dir0"
10719
10720         local ref1=$dir0/ref1
10721         local ref2=$dir0/ref2
10722         local file1=$dir0/file1
10723         local file2=$dir0/file2
10724         # create a file large enough for the concurent test
10725         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10726         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10727         echo "ref file size: ref1($(stat -c %s $ref1))," \
10728              "ref2($(stat -c %s $ref2))"
10729
10730         cp $ref2 $file2
10731         dd if=$ref1 of=$file1 bs=16k &
10732         local DD_PID=$!
10733
10734         # Make sure dd starts to copy file
10735         while [ ! -f $file1 ]; do sleep 0.1; done
10736
10737         $LFS swap_layouts $file1 $file2
10738         local rc=$?
10739         wait $DD_PID
10740         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10741         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10742
10743         # how many bytes copied before swapping layout
10744         local copied=$(stat -c %s $file2)
10745         local remaining=$(stat -c %s $ref1)
10746         remaining=$((remaining - copied))
10747         echo "Copied $copied bytes before swapping layout..."
10748
10749         cmp -n $copied $file1 $ref2 | grep differ &&
10750                 error "Content mismatch [0, $copied) of ref2 and file1"
10751         cmp -n $copied $file2 $ref1 ||
10752                 error "Content mismatch [0, $copied) of ref1 and file2"
10753         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10754                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10755
10756         # clean up
10757         rm -f $ref1 $ref2 $file1 $file2
10758 }
10759 run_test 184c "Concurrent write and layout swap"
10760
10761 test_184d() {
10762         check_swap_layouts_support && return 0
10763         [ -z "$(which getfattr 2>/dev/null)" ] &&
10764                 skip "no getfattr command" && return 0
10765
10766         local file1=$DIR/$tdir/$tfile-1
10767         local file2=$DIR/$tdir/$tfile-2
10768         local file3=$DIR/$tdir/$tfile-3
10769         local lovea1
10770         local lovea2
10771
10772         mkdir -p $DIR/$tdir
10773         touch $file1 || error "create $file1 failed"
10774         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10775                 error "create $file2 failed"
10776         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10777                 error "create $file3 failed"
10778         lovea1=$($LFS getstripe $file1 | sed 1d)
10779
10780         $LFS swap_layouts $file2 $file3 ||
10781                 error "swap $file2 $file3 layouts failed"
10782         $LFS swap_layouts $file1 $file2 ||
10783                 error "swap $file1 $file2 layouts failed"
10784
10785         lovea2=$($LFS getstripe $file2 | sed 1d)
10786         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10787
10788         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10789         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
10790 }
10791 run_test 184d "allow stripeless layouts swap"
10792
10793
10794 test_185() { # LU-2441
10795         # LU-3553 - no volatile file support in old servers
10796         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10797                 { skip "Need MDS version at least 2.3.60"; return 0; }
10798
10799         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10800         touch $DIR/$tdir/spoo
10801         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10802         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10803                 error "cannot create/write a volatile file"
10804         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10805                 error "FID is still valid after close"
10806
10807         multiop_bg_pause $DIR/$tdir vVw4096_c
10808         local multi_pid=$!
10809
10810         local OLD_IFS=$IFS
10811         IFS=":"
10812         local fidv=($fid)
10813         IFS=$OLD_IFS
10814         # assume that the next FID for this client is sequential, since stdout
10815         # is unfortunately eaten by multiop_bg_pause
10816         local n=$((${fidv[1]} + 1))
10817         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10818         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10819                 error "FID is missing before close"
10820         kill -USR1 $multi_pid
10821         # 1 second delay, so if mtime change we will see it
10822         sleep 1
10823         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10824         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10825 }
10826 run_test 185 "Volatile file support"
10827
10828 test_187a() {
10829         local dir0=$DIR/$tdir/$testnum
10830         mkdir -p $dir0 || error "creating dir $dir0"
10831
10832         local file=$dir0/file1
10833         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10834         local dv1=$($LFS data_version $file)
10835         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10836         local dv2=$($LFS data_version $file)
10837         [[ $dv1 != $dv2 ]] ||
10838                 error "data version did not change on write $dv1 == $dv2"
10839
10840         # clean up
10841         rm -f $file1
10842 }
10843 run_test 187a "Test data version change"
10844
10845 test_187b() {
10846         local dir0=$DIR/$tdir/$testnum
10847         mkdir -p $dir0 || error "creating dir $dir0"
10848
10849         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10850         [[ ${DV[0]} != ${DV[1]} ]] ||
10851                 error "data version did not change on write"\
10852                       " ${DV[0]} == ${DV[1]}"
10853
10854         # clean up
10855         rm -f $file1
10856 }
10857 run_test 187b "Test data version change on volatile file"
10858
10859 # OST pools tests
10860 check_file_in_pool()
10861 {
10862         local file=$1
10863         local pool=$2
10864         local tlist="$3"
10865         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10866         for i in $res
10867         do
10868                 for t in $tlist ; do
10869                         [ "$i" -eq "$t" ] && continue 2
10870                 done
10871
10872                 echo "pool list: $tlist"
10873                 echo "striping: $res"
10874                 error_noexit "$file not allocated in $pool"
10875                 return 1
10876         done
10877         return 0
10878 }
10879
10880 pool_add() {
10881         echo "Creating new pool"
10882         local pool=$1
10883
10884         create_pool $FSNAME.$pool ||
10885                 { error_noexit "No pool created, result code $?"; return 1; }
10886         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10887                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10888 }
10889
10890 pool_add_targets() {
10891         echo "Adding targets to pool"
10892         local pool=$1
10893         local first=$2
10894         local last=$3
10895         local step=${4:-1}
10896
10897         local list=$(seq $first $step $last)
10898
10899         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10900         do_facet mgs $LCTL pool_add \
10901                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10902         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10903                         | sort -u | tr '\n' ' ' " "$t" || { 
10904                 error_noexit "Add to pool failed"
10905                 return 1
10906         }
10907         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10908         local addcount=$(((last - first) / step + 1))
10909         [ $lfscount -eq $addcount ] || {
10910                 error_noexit "lfs pool_list bad ost count" \
10911                                                 "$lfscount != $addcount"
10912                 return 2
10913         }
10914 }
10915
10916 pool_set_dir() {
10917         local pool=$1
10918         local tdir=$2
10919         echo "Setting pool on directory $tdir"
10920
10921         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10922
10923         error_noexit "Cannot set pool $pool to $tdir"
10924         return 1
10925 }
10926
10927 pool_check_dir() {
10928         local pool=$1
10929         local tdir=$2
10930         echo "Checking pool on directory $tdir"
10931
10932         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10933         [ "$res" = "$pool" ] && return 0
10934
10935         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10936         return 1
10937 }
10938
10939 pool_dir_rel_path() {
10940         echo "Testing relative path works well"
10941         local pool=$1
10942         local tdir=$2
10943         local root=$3
10944
10945         mkdir -p $root/$tdir/$tdir
10946         cd $root/$tdir
10947         pool_set_dir $pool $tdir          || return 1
10948         pool_set_dir $pool ./$tdir        || return 2
10949         pool_set_dir $pool ../$tdir       || return 3
10950         pool_set_dir $pool ../$tdir/$tdir || return 4
10951         rm -rf $tdir; cd - > /dev/null
10952 }
10953
10954 pool_alloc_files() {
10955         echo "Checking files allocation from directory pool"
10956         local pool=$1
10957         local tdir=$2
10958         local count=$3
10959         local tlist="$4"
10960
10961         local failed=0
10962         for i in $(seq -w 1 $count)
10963         do
10964                 local file=$tdir/file-$i
10965                 touch $file
10966                 check_file_in_pool $file $pool "$tlist" || \
10967                         failed=$((failed + 1))
10968         done
10969         [ "$failed" = 0 ] && return 0
10970
10971         error_noexit "$failed files not allocated in $pool"
10972         return 1
10973 }
10974
10975 pool_create_files() {
10976         echo "Creating files in pool"
10977         local pool=$1
10978         local tdir=$2
10979         local count=$3
10980         local tlist="$4"
10981
10982         mkdir -p $tdir
10983         local failed=0
10984         for i in $(seq -w 1 $count)
10985         do
10986                 local file=$tdir/spoo-$i
10987                 $SETSTRIPE -p $pool $file
10988                 check_file_in_pool $file $pool "$tlist" || \
10989                         failed=$((failed + 1))
10990         done
10991         [ "$failed" = 0 ] && return 0
10992
10993         error_noexit "$failed files not allocated in $pool"
10994         return 1
10995 }
10996
10997 pool_lfs_df() {
10998         echo "Checking 'lfs df' output"
10999         local pool=$1
11000
11001         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
11002                         tr '\n' ' ')
11003         local res=$($LFS df --pool $FSNAME.$pool |
11004                         awk '{print $1}' |
11005                         grep "$FSNAME-OST" |
11006                         tr '\n' ' ')
11007         [ "$res" = "$t" ] && return 0
11008
11009         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
11010         return 1
11011 }
11012
11013 pool_file_rel_path() {
11014         echo "Creating files in a pool with relative pathname"
11015         local pool=$1
11016         local tdir=$2
11017
11018         mkdir -p $tdir ||
11019                 { error_noexit "unable to create $tdir"; return 1 ; }
11020         local file="/..$tdir/$tfile-1"
11021         $SETSTRIPE -p $pool $file ||
11022                 { error_noexit "unable to create $file" ; return 2 ; }
11023
11024         cd $tdir
11025         $SETSTRIPE -p $pool $tfile-2 || {
11026                 error_noexit "unable to create $tfile-2 in $tdir"
11027                 return 3
11028         }
11029 }
11030
11031 pool_remove_first_target() {
11032         echo "Removing first target from a pool"
11033         local pool=$1
11034
11035         local pname="lov.$FSNAME-*.pools.$pool"
11036         local t=$($LCTL get_param -n $pname | head -n1)
11037         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
11038         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
11039                 error_noexit "$t not removed from $FSNAME.$pool"
11040                 return 1
11041         }
11042 }
11043
11044 pool_remove_all_targets() {
11045         echo "Removing all targets from pool"
11046         local pool=$1
11047         local file=$2
11048         local pname="lov.$FSNAME-*.pools.$pool"
11049         for t in $($LCTL get_param -n $pname | sort -u)
11050         do
11051                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
11052         done
11053         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
11054                 error_noexit "Pool $FSNAME.$pool cannot be drained"
11055                 return 1
11056         }
11057         # striping on an empty/nonexistant pool should fall back
11058         # to "pool of everything"
11059         touch $file || {
11060                 error_noexit "failed to use fallback striping for empty pool"
11061                 return 2
11062         }
11063         # setstripe on an empty pool should fail
11064         $SETSTRIPE -p $pool $file 2>/dev/null && {
11065                 error_noexit "expected failure when creating file" \
11066                                                         "with empty pool"
11067                 return 3
11068         }
11069         return 0
11070 }
11071
11072 pool_remove() {
11073         echo "Destroying pool"
11074         local pool=$1
11075         local file=$2
11076
11077         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
11078
11079         sleep 2
11080         # striping on an empty/nonexistant pool should fall back 
11081         # to "pool of everything"
11082         touch $file || {
11083                 error_noexit "failed to use fallback striping for missing pool"
11084                 return 1
11085         }
11086         # setstripe on an empty pool should fail
11087         $SETSTRIPE -p $pool $file 2>/dev/null && {
11088                 error_noexit "expected failure when creating file" \
11089                                                         "with missing pool"
11090                 return 2
11091         }
11092
11093         # get param should return err once pool is gone
11094         if wait_update $HOSTNAME "lctl get_param -n \
11095                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
11096         then
11097                 remove_pool_from_list $FSNAME.$pool
11098                 return 0
11099         fi
11100         error_noexit "Pool $FSNAME.$pool is not destroyed"
11101         return 3
11102 }
11103
11104 test_200() {
11105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11106         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11107
11108         local POOL=${POOL:-cea1}
11109         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11110         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11111         # Pool OST targets
11112         local first_ost=0
11113         local last_ost=$(($OSTCOUNT - 1))
11114         local ost_step=2
11115         local ost_list=$(seq $first_ost $ost_step $last_ost)
11116         local ost_range="$first_ost $last_ost $ost_step"
11117         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11118         local file_dir=$POOL_ROOT/file_tst
11119
11120         local rc=0
11121         while : ; do
11122                 # former test_200a test_200b
11123                 pool_add $POOL                          || { rc=$? ; break; }
11124                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11125                 # former test_200c test_200d
11126                 mkdir -p $test_path
11127                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11128                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11129                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11130                                                         || { rc=$? ; break; }
11131                 # former test_200e test_200f
11132                 local files=$((OSTCOUNT*3))
11133                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11134                                                         || { rc=$? ; break; }
11135                 pool_create_files $POOL $file_dir $files "$ost_list" \
11136                                                         || { rc=$? ; break; }
11137                 # former test_200g test_200h
11138                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11139                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11140
11141                 # former test_201a test_201b test_201c
11142                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11143
11144                 local f=$test_path/$tfile
11145                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11146                 pool_remove $POOL $f                    || { rc=$? ; break; }
11147                 break
11148         done
11149
11150         cleanup_pools
11151         return $rc
11152 }
11153 run_test 200 "OST pools"
11154
11155 # usage: default_attr <count | size | offset>
11156 default_attr() {
11157         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11158 }
11159
11160 # usage: check_default_stripe_attr
11161 check_default_stripe_attr() {
11162         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11163         case $1 in
11164         --stripe-count|--count)
11165                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11166         --stripe-size|--size)
11167                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11168         --stripe-index|--index)
11169                 EXPECTED=-1;;
11170         *)
11171                 error "unknown getstripe attr '$1'"
11172         esac
11173
11174         [ $ACTUAL != $EXPECTED ] &&
11175                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11176 }
11177
11178 test_204a() {
11179         test_mkdir -p $DIR/$tdir
11180         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11181
11182         check_default_stripe_attr --stripe-count
11183         check_default_stripe_attr --stripe-size
11184         check_default_stripe_attr --stripe-index
11185
11186         return 0
11187 }
11188 run_test 204a "Print default stripe attributes ================="
11189
11190 test_204b() {
11191         test_mkdir -p $DIR/$tdir
11192         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11193
11194         check_default_stripe_attr --stripe-size
11195         check_default_stripe_attr --stripe-index
11196
11197         return 0
11198 }
11199 run_test 204b "Print default stripe size and offset  ==========="
11200
11201 test_204c() {
11202         test_mkdir -p $DIR/$tdir
11203         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11204
11205         check_default_stripe_attr --stripe-count
11206         check_default_stripe_attr --stripe-index
11207
11208         return 0
11209 }
11210 run_test 204c "Print default stripe count and offset ==========="
11211
11212 test_204d() {
11213         test_mkdir -p $DIR/$tdir
11214         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11215
11216         check_default_stripe_attr --stripe-count
11217         check_default_stripe_attr --stripe-size
11218
11219         return 0
11220 }
11221 run_test 204d "Print default stripe count and size ============="
11222
11223 test_204e() {
11224         test_mkdir -p $DIR/$tdir
11225         $SETSTRIPE -d $DIR/$tdir
11226
11227         check_default_stripe_attr --stripe-count --raw
11228         check_default_stripe_attr --stripe-size --raw
11229         check_default_stripe_attr --stripe-index --raw
11230
11231         return 0
11232 }
11233 run_test 204e "Print raw stripe attributes ================="
11234
11235 test_204f() {
11236         test_mkdir -p $DIR/$tdir
11237         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11238
11239         check_default_stripe_attr --stripe-size --raw
11240         check_default_stripe_attr --stripe-index --raw
11241
11242         return 0
11243 }
11244 run_test 204f "Print raw stripe size and offset  ==========="
11245
11246 test_204g() {
11247         test_mkdir -p $DIR/$tdir
11248         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11249
11250         check_default_stripe_attr --stripe-count --raw
11251         check_default_stripe_attr --stripe-index --raw
11252
11253         return 0
11254 }
11255 run_test 204g "Print raw stripe count and offset ==========="
11256
11257 test_204h() {
11258         test_mkdir -p $DIR/$tdir
11259         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11260
11261         check_default_stripe_attr --stripe-count --raw
11262         check_default_stripe_attr --stripe-size --raw
11263
11264         return 0
11265 }
11266 run_test 204h "Print raw stripe count and size ============="
11267
11268 # Figure out which job scheduler is being used, if any,
11269 # or use a fake one
11270 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11271         JOBENV=SLURM_JOB_ID
11272 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11273         JOBENV=LSB_JOBID
11274 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11275         JOBENV=PBS_JOBID
11276 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11277         JOBENV=LOADL_STEP_ID
11278 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11279         JOBENV=JOB_ID
11280 else
11281         JOBENV=FAKE_JOBID
11282 fi
11283
11284 verify_jobstats() {
11285         local cmd=$1
11286         local target=$2
11287
11288         # clear old jobstats
11289         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
11290         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
11291
11292         # use a new JobID for this test, or we might see an old one
11293         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
11294
11295         JOBVAL=${!JOBENV}
11296         log "Test: $cmd"
11297         log "Using JobID environment variable $JOBENV=$JOBVAL"
11298
11299         if [ $JOBENV = "FAKE_JOBID" ]; then
11300                 FAKE_JOBID=$JOBVAL $cmd
11301         else
11302                 $cmd
11303         fi
11304
11305         if [ "$target" = "mdt" -o "$target" = "both" ]; then
11306                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
11307                 do_facet $FACET lctl get_param mdt.*.job_stats |
11308                         grep $JOBVAL || error "No job stats found on MDT $FACET"
11309         fi
11310         if [ "$target" = "ost" -o "$target" = "both" ]; then
11311                 FACET=ost1
11312                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
11313                         grep $JOBVAL || error "No job stats found on OST $FACET"
11314         fi
11315 }
11316
11317 jobstats_set() {
11318         trap 0
11319         NEW_JOBENV=${1:-$OLD_JOBENV}
11320         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11321         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11322 }
11323
11324 test_205() { # Job stats
11325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11326         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11327                 skip "Server doesn't support jobstats" && return 0
11328         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11329
11330         local cmd
11331         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11332         if [ $OLD_JOBENV != $JOBENV ]; then
11333                 jobstats_set $JOBENV
11334                 trap jobstats_set EXIT
11335         fi
11336
11337         # mkdir
11338         cmd="mkdir $DIR/$tfile"
11339         verify_jobstats "$cmd" "mdt"
11340         # rmdir
11341         cmd="rm -fr $DIR/$tfile"
11342         verify_jobstats "$cmd" "mdt"
11343         # mknod
11344         cmd="mknod $DIR/$tfile c 1 3"
11345         verify_jobstats "$cmd" "mdt"
11346         # unlink
11347         cmd="rm -f $DIR/$tfile"
11348         verify_jobstats "$cmd" "mdt"
11349         # open & close
11350         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11351         verify_jobstats "$cmd" "mdt"
11352         # setattr
11353         cmd="touch $DIR/$tfile"
11354         verify_jobstats "$cmd" "both"
11355         # write
11356         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11357         verify_jobstats "$cmd" "ost"
11358         # read
11359         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11360         verify_jobstats "$cmd" "ost"
11361         # truncate
11362         cmd="$TRUNCATE $DIR/$tfile 0"
11363         verify_jobstats "$cmd" "both"
11364         # rename
11365         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
11366         verify_jobstats "$cmd" "mdt"
11367
11368         # cleanup
11369         rm -f $DIR/jobstats_test_rename
11370
11371         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11372 }
11373 run_test 205 "Verify job stats"
11374
11375 # LU-1480, LU-1773 and LU-1657
11376 test_206() {
11377         mkdir -p $DIR/$tdir
11378         $SETSTRIPE -c -1 $DIR/$tdir
11379 #define OBD_FAIL_LOV_INIT 0x1403
11380         $LCTL set_param fail_loc=0xa0001403
11381         $LCTL set_param fail_val=1
11382         touch $DIR/$tdir/$tfile || true
11383 }
11384 run_test 206 "fail lov_init_raid0() doesn't lbug"
11385
11386 test_207a() {
11387         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11388         local fsz=`stat -c %s $DIR/$tfile`
11389         cancel_lru_locks mdc
11390
11391         # do not return layout in getattr intent
11392 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11393         $LCTL set_param fail_loc=0x170
11394         local sz=`stat -c %s $DIR/$tfile`
11395
11396         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11397
11398         rm -rf $DIR/$tfile
11399 }
11400 run_test 207a "can refresh layout at glimpse"
11401
11402 test_207b() {
11403         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11404         local cksum=`md5sum $DIR/$tfile`
11405         local fsz=`stat -c %s $DIR/$tfile`
11406         cancel_lru_locks mdc
11407         cancel_lru_locks osc
11408
11409         # do not return layout in getattr intent
11410 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11411         $LCTL set_param fail_loc=0x171
11412
11413         # it will refresh layout after the file is opened but before read issues
11414         echo checksum is "$cksum"
11415         echo "$cksum" |md5sum -c --quiet || error "file differs"
11416
11417         rm -rf $DIR/$tfile
11418 }
11419 run_test 207b "can refresh layout at open"
11420
11421 test_208() {
11422         # FIXME: in this test suite, only RD lease is used. This is okay
11423         # for now as only exclusive open is supported. After generic lease
11424         # is done, this test suite should be revised. - Jinshan
11425
11426         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11427                 { skip "Need MDS version at least 2.4.52"; return 0; }
11428
11429         echo "==== test 1: verify get lease work"
11430         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
11431
11432         echo "==== test 2: verify lease can be broken by upcoming open"
11433         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11434         local PID=$!
11435         sleep 1
11436
11437         $MULTIOP $DIR/$tfile oO_RDONLY:c
11438         kill -USR1 $PID && wait $PID || error "break lease error"
11439
11440         echo "==== test 3: verify lease can't be granted if an open already exists"
11441         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
11442         local PID=$!
11443         sleep 1
11444
11445         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
11446         kill -USR1 $PID && wait $PID || error "open file error"
11447
11448         echo "==== test 4: lease can sustain over recovery"
11449         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
11450         PID=$!
11451         sleep 1
11452
11453         fail mds1
11454
11455         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
11456
11457         echo "==== test 5: lease broken can't be regained by replay"
11458         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11459         PID=$!
11460         sleep 1
11461
11462         # open file to break lease and then recovery
11463         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
11464         fail mds1
11465
11466         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
11467
11468         rm -f $DIR/$tfile
11469 }
11470 run_test 208 "Exclusive open"
11471
11472 test_209() {
11473         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
11474                 skip_env "must have disp_stripe" && return
11475
11476         touch $DIR/$tfile
11477         sync; sleep 5; sync;
11478
11479         echo 3 > /proc/sys/vm/drop_caches
11480         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11481
11482         # open/close 500 times
11483         for i in $(seq 500); do
11484                 cat $DIR/$tfile
11485         done
11486
11487         echo 3 > /proc/sys/vm/drop_caches
11488         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11489
11490         echo "before: $req_before, after: $req_after"
11491         [ $((req_after - req_before)) -ge 300 ] &&
11492                 error "open/close requests are not freed"
11493         return 0
11494 }
11495 run_test 209 "read-only open/close requests should be freed promptly"
11496
11497 test_212() {
11498         size=`date +%s`
11499         size=$((size % 8192 + 1))
11500         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11501         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11502         rm -f $DIR/f212 $DIR/f212.xyz
11503 }
11504 run_test 212 "Sendfile test ============================================"
11505
11506 test_213() {
11507         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11508         cancel_lru_locks osc
11509         lctl set_param fail_loc=0x8000040f
11510         # generate a read lock
11511         cat $DIR/$tfile > /dev/null
11512         # write to the file, it will try to cancel the above read lock.
11513         cat /etc/hosts >> $DIR/$tfile
11514 }
11515 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11516
11517 test_214() { # for bug 20133
11518         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11519         for (( i=0; i < 340; i++ )) ; do
11520                 touch $DIR/$tdir/d214c/a$i
11521         done
11522
11523         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11524         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11525         ls $DIR/d214c || error "ls $DIR/d214c failed"
11526         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11527         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11528 }
11529 run_test 214 "hash-indexed directory test - bug 20133"
11530
11531 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11532 create_lnet_proc_files() {
11533         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
11534         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11535
11536         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11537         rm -f "$TMP/lnet_$1.sys_tmp"
11538 }
11539
11540 # counterpart of create_lnet_proc_files
11541 remove_lnet_proc_files() {
11542         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11543 }
11544
11545 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11546 # 3rd arg as regexp for body
11547 check_lnet_proc_stats() {
11548         local l=$(cat "$TMP/lnet_$1" |wc -l)
11549         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11550
11551         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11552 }
11553
11554 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11555 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11556 # optional and can be regexp for 2nd line (lnet.routes case)
11557 check_lnet_proc_entry() {
11558         local blp=2          # blp stands for 'position of 1st line of body'
11559         [ -z "$5" ] || blp=3 # lnet.routes case
11560
11561         local l=$(cat "$TMP/lnet_$1" |wc -l)
11562         # subtracting one from $blp because the body can be empty
11563         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11564
11565         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11566                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11567
11568         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11569                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11570
11571         # bail out if any unexpected line happened
11572         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
11573         [ "$?" != 0 ] || error "$2 misformatted"
11574 }
11575
11576 test_215() { # for bugs 18102, 21079, 21517
11577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11578         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11579         local P='[1-9][0-9]*'           # positive numeric
11580         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11581         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11582         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11583         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11584
11585         local L1 # regexp for 1st line
11586         local L2 # regexp for 2nd line (optional)
11587         local BR # regexp for the rest (body)
11588
11589         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
11590         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11591         create_lnet_proc_files "stats"
11592         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
11593         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11594         remove_lnet_proc_files "stats"
11595
11596         # /proc/sys/lnet/routes should look like this:
11597         # Routing disabled/enabled
11598         # net hops priority state router
11599         # where net is a string like tcp0, hops > 0, priority >= 0,
11600         # state is up/down,
11601         # router is a string like 192.168.1.1@tcp2
11602         L1="^Routing (disabled|enabled)$"
11603         L2="^net +hops +priority +state +router$"
11604         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11605         create_lnet_proc_files "routes"
11606         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
11607         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11608         remove_lnet_proc_files "routes"
11609
11610         # /proc/sys/lnet/routers should look like this:
11611         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11612         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11613         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11614         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11615         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11616         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11617         create_lnet_proc_files "routers"
11618         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
11619         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11620         remove_lnet_proc_files "routers"
11621
11622         # /proc/sys/lnet/peers should look like this:
11623         # nid refs state last max rtr min tx min queue
11624         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11625         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11626         # numeric (0 or >0 or <0), queue >= 0.
11627         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11628         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11629         create_lnet_proc_files "peers"
11630         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11631         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11632         remove_lnet_proc_files "peers"
11633
11634         # /proc/sys/lnet/buffers  should look like this:
11635         # pages count credits min
11636         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11637         L1="^pages +count +credits +min$"
11638         BR="^ +$N +$N +$I +$I$"
11639         create_lnet_proc_files "buffers"
11640         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11641         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11642         remove_lnet_proc_files "buffers"
11643
11644         # /proc/sys/lnet/nis should look like this:
11645         # nid status alive refs peer rtr max tx min
11646         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11647         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11648         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11649         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11650         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11651         create_lnet_proc_files "nis"
11652         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11653         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11654         remove_lnet_proc_files "nis"
11655
11656         # can we successfully write to /proc/sys/lnet/stats?
11657         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11658         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11659 }
11660 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11661
11662 test_216() { # bug 20317
11663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11664         remote_ost_nodsh && skip "remote OST with nodsh" && return
11665
11666         local node
11667         local facets=$(get_facets OST)
11668         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11669
11670         save_lustre_params client "osc.*.contention_seconds" > $p
11671         save_lustre_params $facets \
11672                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11673         save_lustre_params $facets \
11674                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11675         save_lustre_params $facets \
11676                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11677         clear_osc_stats
11678
11679         # agressive lockless i/o settings
11680         for node in $(osts_nodes); do
11681                 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'
11682         done
11683         lctl set_param -n osc.*.contention_seconds 60
11684
11685         $DIRECTIO write $DIR/$tfile 0 10 4096
11686         $CHECKSTAT -s 40960 $DIR/$tfile
11687
11688         # disable lockless i/o
11689         for node in $(osts_nodes); do
11690                 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'
11691         done
11692         lctl set_param -n osc.*.contention_seconds 0
11693         clear_osc_stats
11694
11695         dd if=/dev/zero of=$DIR/$tfile count=0
11696         $CHECKSTAT -s 0 $DIR/$tfile
11697
11698         restore_lustre_params <$p
11699         rm -f $p
11700         rm $DIR/$tfile
11701 }
11702 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11703
11704 test_217() { # bug 22430
11705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11706         local node
11707         local nid
11708
11709         for node in $(nodes_list); do
11710                 nid=$(host_nids_address $node $NETTYPE)
11711                 if [[ $nid = *-* ]] ; then
11712                         echo "lctl ping $nid@$NETTYPE"
11713                         lctl ping $nid@$NETTYPE
11714                 else
11715                         echo "skipping $node (no hyphen detected)"
11716                 fi
11717         done
11718 }
11719 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11720
11721 test_218() {
11722        # do directio so as not to populate the page cache
11723        log "creating a 10 Mb file"
11724        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11725        log "starting reads"
11726        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11727        log "truncating the file"
11728        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11729        log "killing dd"
11730        kill %+ || true # reads might have finished
11731        echo "wait until dd is finished"
11732        wait
11733        log "removing the temporary file"
11734        rm -rf $DIR/$tfile || error "tmp file removal failed"
11735 }
11736 run_test 218 "parallel read and truncate should not deadlock ======================="
11737
11738 test_219() {
11739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11740         # write one partial page
11741         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11742         # set no grant so vvp_io_commit_write will do sync write
11743         $LCTL set_param fail_loc=0x411
11744         # write a full page at the end of file
11745         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11746
11747         $LCTL set_param fail_loc=0
11748         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11749         $LCTL set_param fail_loc=0x411
11750         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11751
11752         # LU-4201
11753         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
11754         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
11755 }
11756 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11757
11758 test_220() { #LU-325
11759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11760         remote_ost_nodsh && skip "remote OST with nodsh" && return
11761         local OSTIDX=0
11762
11763         test_mkdir -p $DIR/$tdir
11764         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11765                 awk '{print $2}' | sed -e 's/_UUID$//')
11766
11767         # on the mdt's osc
11768         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11769         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11770                         osc.$mdtosc_proc1.prealloc_last_id)
11771         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11772                         osc.$mdtosc_proc1.prealloc_next_id)
11773
11774         $LFS df -i
11775
11776         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11777         #define OBD_FAIL_OST_ENOINO              0x229
11778         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11779         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11780         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11781
11782         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11783
11784         MDSOBJS=$((last_id - next_id))
11785         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11786
11787         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11788         echo "OST still has $count kbytes free"
11789
11790         echo "create $MDSOBJS files @next_id..."
11791         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11792
11793         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11794                         osc.$mdtosc_proc1.prealloc_last_id)
11795         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11796                         osc.$mdtosc_proc1.prealloc_next_id)
11797
11798         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11799         $LFS df -i
11800
11801         echo "cleanup..."
11802
11803         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11804         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11805
11806         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11807         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11808         echo "unlink $MDSOBJS files @$next_id..."
11809         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11810 }
11811 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11812
11813 test_221() {
11814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11815         dd if=`which date` of=$MOUNT/date oflag=sync
11816         chmod +x $MOUNT/date
11817
11818         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11819         $LCTL set_param fail_loc=0x80001401
11820
11821         $MOUNT/date > /dev/null
11822         rm -f $MOUNT/date
11823 }
11824 run_test 221 "make sure fault and truncate race to not cause OOM"
11825
11826 test_222a () {
11827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11828        rm -rf $DIR/$tdir
11829        test_mkdir -p $DIR/$tdir
11830        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11831        createmany -o $DIR/$tdir/$tfile 10
11832        cancel_lru_locks mdc
11833        cancel_lru_locks osc
11834        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11835        $LCTL set_param fail_loc=0x31a
11836        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11837        $LCTL set_param fail_loc=0
11838        rm -r $DIR/$tdir
11839 }
11840 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11841
11842 test_222b () {
11843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11844        rm -rf $DIR/$tdir
11845        test_mkdir -p $DIR/$tdir
11846        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11847        createmany -o $DIR/$tdir/$tfile 10
11848        cancel_lru_locks mdc
11849        cancel_lru_locks osc
11850        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11851        $LCTL set_param fail_loc=0x31a
11852        rm -r $DIR/$tdir || "AGL for rmdir failed"
11853        $LCTL set_param fail_loc=0
11854 }
11855 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11856
11857 test_223 () {
11858         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11859        rm -rf $DIR/$tdir
11860        test_mkdir -p $DIR/$tdir
11861        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11862        createmany -o $DIR/$tdir/$tfile 10
11863        cancel_lru_locks mdc
11864        cancel_lru_locks osc
11865        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11866        $LCTL set_param fail_loc=0x31b
11867        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11868        $LCTL set_param fail_loc=0
11869        rm -r $DIR/$tdir
11870 }
11871 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11872
11873 test_224a() { # LU-1039, MRP-303
11874         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11875         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11876         $LCTL set_param fail_loc=0x508
11877         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11878         $LCTL set_param fail_loc=0
11879         df $DIR
11880 }
11881 run_test 224a "Don't panic on bulk IO failure"
11882
11883 test_224b() { # LU-1039, MRP-303
11884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11885         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11886         cancel_lru_locks osc
11887         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11888         $LCTL set_param fail_loc=0x515
11889         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11890         $LCTL set_param fail_loc=0
11891         df $DIR
11892 }
11893 run_test 224b "Don't panic on bulk IO failure"
11894
11895 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11896 test_225a () {
11897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11898         if [ -z ${MDSSURVEY} ]; then
11899               skip_env "mds-survey not found" && return
11900         fi
11901
11902         [ $MDSCOUNT -ge 2 ] &&
11903                 skip "skipping now for more than one MDT" && return
11904
11905        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11906             { skip "Need MDS version at least 2.2.51"; return; }
11907
11908        local mds=$(facet_host $SINGLEMDS)
11909        local target=$(do_nodes $mds 'lctl dl' | \
11910                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11911
11912        local cmd1="file_count=1000 thrhi=4"
11913        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11914        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11915        local cmd="$cmd1 $cmd2 $cmd3"
11916
11917        rm -f ${TMP}/mds_survey*
11918        echo + $cmd
11919        eval $cmd || error "mds-survey with zero-stripe failed"
11920        cat ${TMP}/mds_survey*
11921        rm -f ${TMP}/mds_survey*
11922 }
11923 run_test 225a "Metadata survey sanity with zero-stripe"
11924
11925 test_225b () {
11926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11927
11928         if [ -z ${MDSSURVEY} ]; then
11929               skip_env "mds-survey not found" && return
11930         fi
11931         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11932             { skip "Need MDS version at least 2.2.51"; return; }
11933
11934         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11935               skip_env "Need to mount OST to test" && return
11936         fi
11937
11938         [ $MDSCOUNT -ge 2 ] &&
11939                 skip "skipping now for more than one MDT" && return
11940        local mds=$(facet_host $SINGLEMDS)
11941        local target=$(do_nodes $mds 'lctl dl' | \
11942                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11943
11944        local cmd1="file_count=1000 thrhi=4"
11945        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11946        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11947        local cmd="$cmd1 $cmd2 $cmd3"
11948
11949        rm -f ${TMP}/mds_survey*
11950        echo + $cmd
11951        eval $cmd || error "mds-survey with stripe_count failed"
11952        cat ${TMP}/mds_survey*
11953        rm -f ${TMP}/mds_survey*
11954 }
11955 run_test 225b "Metadata survey sanity with stripe_count = 1"
11956
11957 mcreate_path2fid () {
11958         local mode=$1
11959         local major=$2
11960         local minor=$3
11961         local name=$4
11962         local desc=$5
11963         local path=$DIR/$tdir/$name
11964         local fid
11965         local rc
11966         local fid_path
11967
11968         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11969                 error "cannot create $desc"
11970
11971         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11972         rc=$?
11973         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11974
11975         fid_path=$($LFS fid2path $MOUNT $fid)
11976         rc=$?
11977         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11978
11979         [ "$path" == "$fid_path" ] ||
11980                 error "fid2path returned $fid_path, expected $path"
11981
11982         echo "pass with $path and $fid"
11983 }
11984
11985 test_226a () {
11986         rm -rf $DIR/$tdir
11987         mkdir -p $DIR/$tdir
11988
11989         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11990         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11991         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11992         mcreate_path2fid 0040666 0 0 dir "directory"
11993         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11994         mcreate_path2fid 0100666 0 0 file "regular file"
11995         mcreate_path2fid 0120666 0 0 link "symbolic link"
11996         mcreate_path2fid 0140666 0 0 sock "socket"
11997 }
11998 run_test 226a "call path2fid and fid2path on files of all type"
11999
12000 test_226b () {
12001         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12002         rm -rf $DIR/$tdir
12003         local MDTIDX=1
12004
12005         mkdir -p $DIR/$tdir
12006         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12007                 error "create remote directory failed"
12008         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12009         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12010                                 "character special file (null)"
12011         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12012                                 "character special file (no device)"
12013         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12014         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12015                                 "block special file (loop)"
12016         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12017         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12018         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12019 }
12020 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12021
12022 # LU-1299 Executing or running ldd on a truncated executable does not
12023 # cause an out-of-memory condition.
12024 test_227() {
12025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12026         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12027         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12028         chmod +x $MOUNT/date
12029
12030         $MOUNT/date > /dev/null
12031         ldd $MOUNT/date > /dev/null
12032         rm -f $MOUNT/date
12033 }
12034 run_test 227 "running truncated executable does not cause OOM"
12035
12036 # LU-1512 try to reuse idle OI blocks
12037 test_228a() {
12038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12039         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12040                 skip "non-ldiskfs backend" && return
12041
12042         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12043         local myDIR=$DIR/$tdir
12044
12045         mkdir -p $myDIR
12046         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12047         $LCTL set_param fail_loc=0x80001002
12048         createmany -o $myDIR/t- 10000
12049         $LCTL set_param fail_loc=0
12050         # The guard is current the largest FID holder
12051         touch $myDIR/guard
12052         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12053                     tr -d '[')
12054         local IDX=$(($SEQ % 64))
12055
12056         do_facet $SINGLEMDS sync
12057         # Make sure journal flushed.
12058         sleep 6
12059         local blk1=$(do_facet $SINGLEMDS \
12060                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12061                      grep Blockcount | awk '{print $4}')
12062
12063         # Remove old files, some OI blocks will become idle.
12064         unlinkmany $myDIR/t- 10000
12065         # Create new files, idle OI blocks should be reused.
12066         createmany -o $myDIR/t- 2000
12067         do_facet $SINGLEMDS sync
12068         # Make sure journal flushed.
12069         sleep 6
12070         local blk2=$(do_facet $SINGLEMDS \
12071                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12072                      grep Blockcount | awk '{print $4}')
12073
12074         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12075 }
12076 run_test 228a "try to reuse idle OI blocks"
12077
12078 test_228b() {
12079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12080         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12081                 skip "non-ldiskfs backend" && return
12082
12083         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12084         local myDIR=$DIR/$tdir
12085
12086         mkdir -p $myDIR
12087         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12088         $LCTL set_param fail_loc=0x80001002
12089         createmany -o $myDIR/t- 10000
12090         $LCTL set_param fail_loc=0
12091         # The guard is current the largest FID holder
12092         touch $myDIR/guard
12093         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12094                     tr -d '[')
12095         local IDX=$(($SEQ % 64))
12096
12097         do_facet $SINGLEMDS sync
12098         # Make sure journal flushed.
12099         sleep 6
12100         local blk1=$(do_facet $SINGLEMDS \
12101                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12102                      grep Blockcount | awk '{print $4}')
12103
12104         # Remove old files, some OI blocks will become idle.
12105         unlinkmany $myDIR/t- 10000
12106
12107         # stop the MDT
12108         stop $SINGLEMDS || error "Fail to stop MDT."
12109         # remount the MDT
12110         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12111
12112         df $MOUNT || error "Fail to df."
12113         # Create new files, idle OI blocks should be reused.
12114         createmany -o $myDIR/t- 2000
12115         do_facet $SINGLEMDS sync
12116         # Make sure journal flushed.
12117         sleep 6
12118         local blk2=$(do_facet $SINGLEMDS \
12119                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12120                      grep Blockcount | awk '{print $4}')
12121
12122         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12123 }
12124 run_test 228b "idle OI blocks can be reused after MDT restart"
12125
12126 #LU-1881
12127 test_228c() {
12128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12129         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12130                 skip "non-ldiskfs backend" && return
12131
12132         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12133         local myDIR=$DIR/$tdir
12134
12135         mkdir -p $myDIR
12136         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12137         $LCTL set_param fail_loc=0x80001002
12138         # 20000 files can guarantee there are index nodes in the OI file
12139         createmany -o $myDIR/t- 20000
12140         $LCTL set_param fail_loc=0
12141         # The guard is current the largest FID holder
12142         touch $myDIR/guard
12143         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12144                     tr -d '[')
12145         local IDX=$(($SEQ % 64))
12146
12147         do_facet $SINGLEMDS sync
12148         # Make sure journal flushed.
12149         sleep 6
12150         local blk1=$(do_facet $SINGLEMDS \
12151                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12152                      grep Blockcount | awk '{print $4}')
12153
12154         # Remove old files, some OI blocks will become idle.
12155         unlinkmany $myDIR/t- 20000
12156         rm -f $myDIR/guard
12157         # The OI file should become empty now
12158
12159         # Create new files, idle OI blocks should be reused.
12160         createmany -o $myDIR/t- 2000
12161         do_facet $SINGLEMDS sync
12162         # Make sure journal flushed.
12163         sleep 6
12164         local blk2=$(do_facet $SINGLEMDS \
12165                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12166                      grep Blockcount | awk '{print $4}')
12167
12168         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12169 }
12170 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12171
12172 test_229() { # LU-2482, LU-3448
12173         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12174                 skip "No HSM support on MDS of $(get_lustre_version)," \
12175                          "need 2.4.53 at least" && return
12176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12177         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12178
12179         rm -f $DIR/$tfile
12180
12181         # Create a file with a released layout and stripe count 2.
12182         $MULTIOP $DIR/$tfile H2c ||
12183                 error "failed to create file with released layout"
12184
12185         $GETSTRIPE -v $DIR/$tfile
12186
12187         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12188         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12189
12190         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12191         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12192         stat $DIR/$tfile || error "failed to stat released file"
12193
12194         chown $RUNAS_ID $DIR/$tfile ||
12195                 error "chown $RUNAS_ID $DIR/$tfile failed"
12196
12197         chgrp $RUNAS_ID $DIR/$tfile ||
12198                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12199
12200         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12201         rm $DIR/$tfile || error "failed to remove released file"
12202 }
12203 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12204
12205 test_230a() {
12206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12207         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12208         local MDTIDX=1
12209
12210         mkdir -p $DIR/$tdir/test_230_local
12211         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12212         [ $mdt_idx -ne 0 ] &&
12213                 error "create local directory on wrong MDT $mdt_idx"
12214
12215         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12216                         error "create remote directory failed"
12217         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12218         [ $mdt_idx -ne $MDTIDX ] &&
12219                 error "create remote directory on wrong MDT $mdt_idx"
12220
12221         createmany -o $DIR/$tdir/test_230/t- 10 ||
12222                 error "create files on remote directory failed"
12223         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12224         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12225         rm -r $DIR/$tdir || error "unlink remote directory failed"
12226 }
12227 run_test 230a "Create remote directory and files under the remote directory"
12228
12229 test_230b() {
12230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12231         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12232         local MDTIDX=1
12233         local mdt_index
12234         local i
12235         local file
12236         local pid
12237         local stripe_count
12238         local migrate_dir=$DIR/$tdir/migrate_dir
12239         local other_dir=$DIR/$tdir/other_dir
12240
12241         mkdir -p $migrate_dir
12242         mkdir -p $other_dir
12243         for ((i=0; i<10; i++)); do
12244                 mkdir -p $migrate_dir/dir_${i}
12245                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12246                         error "create files under remote dir failed $i"
12247         done
12248
12249         cp /etc/passwd $migrate_dir/$tfile
12250         cp /etc/passwd $other_dir/$tfile
12251         chattr +SAD $migrate_dir
12252         chattr +SAD $migrate_dir/$tfile
12253
12254         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12255         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12256         local old_dir_mode=$(stat -c%f $migrate_dir)
12257         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12258
12259         mkdir -p $migrate_dir/dir_default_stripe2
12260         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12261         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12262
12263         mkdir -p $other_dir
12264         ln $migrate_dir/$tfile $other_dir/luna
12265         ln $migrate_dir/$tfile $migrate_dir/sofia
12266         ln $other_dir/$tfile $migrate_dir/david
12267         ln -s $migrate_dir/$tfile $other_dir/zachary
12268         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12269         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12270
12271         $LFS mv -v -M $MDTIDX $migrate_dir ||
12272                         error "migrate remote dir error"
12273
12274         echo "migratate to MDT1, then checking.."
12275         for ((i=0; i<10; i++)); do
12276                 for file in $(find $migrate_dir/dir_${i}); do
12277                         mdt_index=$($LFS getstripe -M $file)
12278                         [ $mdt_index == $MDTIDX ] ||
12279                                 error "$file is not on MDT${MDTIDX}"
12280                 done
12281         done
12282
12283         # the multiple link file should still in MDT0
12284         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12285         [ $mdt_index == 0 ] ||
12286                 error "$file is not on MDT${MDTIDX}"
12287
12288         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12289         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12290                 error " expect $old_dir_flag get $new_dir_flag"
12291
12292         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12293         [ "$old_file_flag" = "$new_file_flag" ] ||
12294                 error " expect $old_file_flag get $new_file_flag"
12295
12296         local new_dir_mode=$(stat -c%f $migrate_dir)
12297         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12298                 error "expect mode $old_dir_mode get $new_dir_mode"
12299
12300         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12301         [ "$old_file_mode" = "$new_file_mode" ] ||
12302                 error "expect mode $old_file_mode get $new_file_mode"
12303
12304         diff /etc/passwd $migrate_dir/$tfile ||
12305                 error "$tfile different after migration"
12306
12307         diff /etc/passwd $other_dir/luna ||
12308                 error "luna different after migration"
12309
12310         diff /etc/passwd $migrate_dir/sofia ||
12311                 error "sofia different after migration"
12312
12313         diff /etc/passwd $migrate_dir/david ||
12314                 error "david different after migration"
12315
12316         diff /etc/passwd $other_dir/zachary ||
12317                 error "zachary different after migration"
12318
12319         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12320                 error "${tfile}_ln different after migration"
12321
12322         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12323                 error "${tfile}_ln_other different after migration"
12324
12325         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12326         [ $stripe_count = 2 ] ||
12327                         error "dir strpe_count $d != 2 after migration."
12328
12329         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12330         [ $stripe_count = 2 ] ||
12331                         error "file strpe_count $d != 2 after migration."
12332
12333         #migrate back to MDT0
12334         MDTIDX=0
12335         $LFS mv -v -M $MDTIDX $migrate_dir ||
12336                         error "migrate remote dir error"
12337
12338         echo "migrate back to MDT0, checking.."
12339         for file in $(find $migrate_dir); do
12340                 mdt_index=$($LFS getstripe -M $file)
12341                 [ $mdt_index == $MDTIDX ] ||
12342                         error "$file is not on MDT${MDTIDX}"
12343         done
12344
12345         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12346         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12347                 error " expect $old_dir_flag get $new_dir_flag"
12348
12349         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12350         [ "$old_file_flag" = "$new_file_flag" ] ||
12351                 error " expect $old_file_flag get $new_file_flag"
12352
12353         local new_dir_mode=$(stat -c%f $migrate_dir)
12354         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12355                 error "expect mode $old_dir_mode get $new_dir_mode"
12356
12357         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12358         [ "$old_file_mode" = "$new_file_mode" ] ||
12359                 error "expect mode $old_file_mode get $new_file_mode"
12360
12361         diff /etc/passwd ${migrate_dir}/$tfile ||
12362                 error "$tfile different after migration"
12363
12364         diff /etc/passwd ${other_dir}/luna ||
12365                 error "luna different after migration"
12366
12367         diff /etc/passwd ${migrate_dir}/sofia ||
12368                 error "sofia different after migration"
12369
12370         diff /etc/passwd ${other_dir}/zachary ||
12371                 error "zachary different after migration"
12372
12373         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12374                 error "${tfile}_ln different after migration"
12375
12376         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12377                 error "${tfile}_ln_other different after migration"
12378
12379         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12380         [ $stripe_count = 2 ] ||
12381                 error "dir strpe_count $d != 2 after migration."
12382
12383         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12384         [ $stripe_count = 2 ] ||
12385                 error "file strpe_count $d != 2 after migration."
12386
12387         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12388 }
12389 run_test 230b "migrate directory"
12390
12391 test_230c() {
12392         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12393         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12394         local MDTIDX=1
12395         local mdt_index
12396         local file
12397
12398         #If migrating directory fails in the middle, all entries of
12399         #the directory is still accessiable.
12400         mkdir -p $DIR/$tdir
12401         stat $DIR/$tdir
12402         createmany -o $DIR/$tdir/f 10 ||
12403                 error "create files under ${tdir} failed"
12404
12405         #failed after migrating 5 entries
12406         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
12407         do_facet mds1 lctl set_param fail_loc=0x20001801
12408         do_facet mds1 lctl  set_param fail_val=5
12409         local t=`ls $DIR/$tdir | wc -l`
12410         $LFS mv -M $MDTIDX $DIR/$tdir &&
12411                 error "migrate should failed after 5 entries"
12412         local u=`ls $DIR/$tdir | wc -l`
12413         [ "$u" == "$t" ] || error "$u != $t during migration"
12414
12415         for file in $(find $DIR/$tdir); do
12416                 stat $file || error "stat $file failed"
12417         done
12418
12419         do_facet mds1 lctl set_param fail_loc=0
12420         do_facet mds1 lctl set_param fail_val=0
12421
12422         $LFS mv -M $MDTIDX $DIR/$tdir ||
12423                 error "migrate open files should failed with open files"
12424
12425         echo "Finish migration, then checking.."
12426         for file in $(find $DIR/$tdir); do
12427                 mdt_index=$($LFS getstripe -M $file)
12428                 [ $mdt_index == $MDTIDX ] ||
12429                         error "$file is not on MDT${MDTIDX}"
12430         done
12431
12432         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12433 }
12434 run_test 230c "check directory accessiblity if migration is failed"
12435
12436 test_230d() {
12437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12438         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12439         local MDTIDX=1
12440         local mdt_index
12441         local i
12442         local j
12443
12444         mkdir -p $DIR/$tdir
12445
12446         for ((i=0; i<100; i++)); do
12447                 mkdir -p $DIR/$tdir/dir_${i}
12448                 createmany -o $DIR/$tdir/dir_${i}/f 100 ||
12449                         error "create files under remote dir failed $i"
12450         done
12451
12452         $LFS mv -M $MDTIDX -v $DIR/$tdir || error "migrate remote dir error"
12453
12454         echo "Finish migration, then checking.."
12455         for file in $(find $DIR/$tdir); do
12456                 mdt_index=$($LFS getstripe -M $file)
12457                 [ $mdt_index == $MDTIDX ] ||
12458                         error "$file is not on MDT${MDTIDX}"
12459         done
12460
12461         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12462 }
12463 run_test 230d "check migrate big directory"
12464
12465 test_231a()
12466 {
12467         # For simplicity this test assumes that max_pages_per_rpc
12468         # is the same across all OSCs
12469         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
12470         local bulk_size=$((max_pages * 4096))
12471
12472         mkdir -p $DIR/$tdir
12473
12474         # clear the OSC stats
12475         $LCTL set_param osc.*.stats=0 &>/dev/null
12476
12477         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
12478         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
12479                 oflag=direct &>/dev/null || error "dd failed"
12480
12481         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
12482         if [ x$nrpcs != "x1" ]; then
12483                 error "found $nrpc ost_write RPCs, not 1 as expected"
12484         fi
12485
12486         # Drop the OSC cache, otherwise we will read from it
12487         cancel_lru_locks osc
12488
12489         # clear the OSC stats
12490         $LCTL set_param osc.*.stats=0 &>/dev/null
12491
12492         # Client reads $bulk_size.
12493         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
12494                 iflag=direct &>/dev/null || error "dd failed"
12495
12496         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
12497         if [ x$nrpcs != "x1" ]; then
12498                 error "found $nrpc ost_read RPCs, not 1 as expected"
12499         fi
12500 }
12501 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
12502
12503 test_231b() {
12504         mkdir -p $DIR/$tdir
12505         local i
12506         for i in {0..1023}; do
12507                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
12508                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
12509                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
12510         done
12511         sync
12512 }
12513 run_test 231b "must not assert on fully utilized OST request buffer"
12514
12515 test_232() {
12516         mkdir -p $DIR/$tdir
12517         #define OBD_FAIL_LDLM_OST_LVB            0x31c
12518         $LCTL set_param fail_loc=0x31c
12519
12520         # ignore dd failure
12521         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
12522
12523         $LCTL set_param fail_loc=0
12524         umount_client $MOUNT || error "umount failed"
12525         mount_client $MOUNT || error "mount failed"
12526 }
12527 run_test 232 "failed lock should not block umount"
12528
12529 test_233a() {
12530         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
12531         { skip "Need MDS version at least 2.3.64"; return; }
12532
12533         local fid=$($LFS path2fid $MOUNT)
12534         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12535                 error "cannot access $MOUNT using its FID '$fid'"
12536 }
12537 run_test 233a "checking that OBF of the FS root succeeds"
12538
12539 test_233b() {
12540         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
12541         { skip "Need MDS version at least 2.5.90"; return; }
12542
12543         local fid=$($LFS path2fid $MOUNT/.lustre)
12544         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12545                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
12546
12547         fid=$($LFS path2fid $MOUNT/.lustre/fid)
12548         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12549                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
12550 }
12551 run_test 233b "checking that OBF of the FS .lustre succeeds"
12552
12553 test_234() {
12554         local p="$TMP/sanityN-$TESTNAME.parameters"
12555         save_lustre_params client "llite.*.xattr_cache" > $p
12556         lctl set_param llite.*.xattr_cache 1 ||
12557                 { skip "xattr cache is not supported"; return 0; }
12558
12559         mkdir -p $DIR/$tdir || error "mkdir failed"
12560         touch $DIR/$tdir/$tfile || error "touch failed"
12561         # OBD_FAIL_LLITE_XATTR_ENOMEM
12562         $LCTL set_param fail_loc=0x1405
12563         if [ ! -f /etc/SuSE-release ]; then
12564                 # attr pre-2.4.44-7 had a bug with rc
12565                 # LU-3703 - SLES clients have older attr
12566                 getfattr -n user.attr $DIR/$tdir/$tfile &&
12567                         error "getfattr should have failed with ENOMEM"
12568         fi
12569         $LCTL set_param fail_loc=0x0
12570         rm -rf $DIR/$tdir
12571
12572         restore_lustre_params < $p
12573         rm -f $p
12574 }
12575 run_test 234 "xattr cache should not crash on ENOMEM"
12576
12577 test_235() {
12578         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
12579                 skip "Need MDS version at least 2.4.52" && return
12580         flock_deadlock $DIR/$tfile
12581         local RC=$?
12582         case $RC in
12583                 0)
12584                 ;;
12585                 124) error "process hangs on a deadlock"
12586                 ;;
12587                 *) error "error executing flock_deadlock $DIR/$tfile"
12588                 ;;
12589         esac
12590 }
12591 run_test 235 "LU-1715: flock deadlock detection does not work properly"
12592
12593 #LU-2935
12594 test_236() {
12595         check_swap_layouts_support && return 0
12596         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
12597
12598         local ref1=/etc/passwd
12599         local ref2=/etc/group
12600         local file1=$DIR/$tdir/f1
12601         local file2=$DIR/$tdir/f2
12602
12603         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
12604         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
12605         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
12606         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
12607         local fd=$(free_fd)
12608         local cmd="exec $fd<>$file2"
12609         eval $cmd
12610         rm $file2
12611         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
12612                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
12613         cmd="exec $fd>&-"
12614         eval $cmd
12615         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12616
12617         #cleanup
12618         rm -rf $DIR/$tdir
12619 }
12620 run_test 236 "Layout swap on open unlinked file"
12621
12622 # test to verify file handle related system calls
12623 # (name_to_handle_at/open_by_handle_at)
12624 # The new system calls are supported in glibc >= 2.14.
12625
12626 test_237() {
12627         echo "Test file_handle syscalls" > $DIR/$tfile
12628         check_fhandle_syscalls $DIR/$tfile ||
12629                 error "check_fhandle_syscalls failed"
12630 }
12631 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
12632
12633 # LU-4659 linkea consistency
12634 test_238() {
12635         local server_version=$(lustre_version_code $SINGLEMDS)
12636
12637         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12638                 [[ $server_version -gt $(version_code 2.5.1) &&
12639                    $server_version -lt $(version_code 2.5.50) ]] ||
12640                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
12641
12642         touch $DIR/$tfile
12643         ln $DIR/$tfile $DIR/$tfile.lnk
12644         touch $DIR/$tfile.new
12645         mv $DIR/$tfile.new $DIR/$tfile
12646         local fid1=$(lfs path2fid $DIR/$tfile)
12647         local fid2=$(lfs path2fid $DIR/$tfile.lnk)
12648         local path1=$(lfs fid2path $FSNAME $fid1)
12649         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
12650         local path2=$(lfs fid2path $FSNAME $fid2)
12651         [ $tfile.lnk == $path2 ] ||
12652                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
12653         rm -f $DIR/$tfile*
12654 }
12655 run_test 238 "Verify linkea consistency"
12656
12657 test_239() {
12658         local list=$(comma_list $(mdts_nodes))
12659
12660         mkdir -p $DIR/$tdir
12661         createmany -o $DIR/$tdir/f- 5000
12662         unlinkmany $DIR/$tdir/f- 5000
12663         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
12664         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
12665                         osc.*MDT*.sync_in_flight" | calc_sum)
12666         [ "$changes" -eq 0 ] || error "$changes not synced"
12667 }
12668 run_test 239 "osp_sync test"
12669
12670 cleanup_test_300() {
12671         trap 0
12672         umask $SAVE_UMASK
12673 }
12674 test_striped_dir() {
12675         local mdt_index=$1
12676         local stripe_count
12677         local stripe_index
12678
12679         mkdir -p $DIR/$tdir
12680
12681         SAVE_UMASK=$(umask)
12682         trap cleanup_test_300 RETURN EXIT
12683
12684         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
12685                                                 $DIR/$tdir/striped_dir ||
12686                 error "set striped dir error"
12687
12688         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
12689         [ "$mode" = "755" ] || error "expect 755 got $mode"
12690
12691         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
12692         if [ "$stripe_count" != "2" ]; then
12693                 error "stripe_count is $stripe_count, expect 2"
12694         fi
12695
12696         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
12697         if [ "$stripe_index" != "$mdt_index" ]; then
12698                 error "stripe_index is $stripe_index, expect $mdt_index"
12699         fi
12700
12701         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
12702                 error "nlink error after create striped dir"
12703
12704         mkdir $DIR/$tdir/striped_dir/a
12705         mkdir $DIR/$tdir/striped_dir/b
12706
12707         stat $DIR/$tdir/striped_dir/a ||
12708                 error "create dir under striped dir failed"
12709         stat $DIR/$tdir/striped_dir/b ||
12710                 error "create dir under striped dir failed"
12711
12712         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
12713                 error "nlink error after mkdir"
12714
12715         rmdir $DIR/$tdir/striped_dir/a
12716         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
12717                 error "nlink error after rmdir"
12718
12719         rmdir $DIR/$tdir/striped_dir/b
12720         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
12721                 error "nlink error after rmdir"
12722
12723         rmdir $DIR/$tdir/striped_dir ||
12724                 error "rmdir striped dir error"
12725
12726         cleanup_test_300
12727
12728         true
12729 }
12730
12731 test_300a() {
12732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12733         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12734
12735         test_striped_dir 0 || error "failed on striped dir on MDT0"
12736         test_striped_dir 1 || error "failed on striped dir on MDT0"
12737 }
12738 run_test 300a "basic striped dir sanity test"
12739
12740 test_300b() {
12741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12742         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12743         local i
12744         local mtime1
12745         local mtime2
12746         local mtime3
12747
12748         test_mkdir $DIR/$tdir || error "mkdir fail"
12749         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
12750                 error "set striped dir error"
12751         for ((i=0; i<10; i++)); do
12752                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
12753                 sleep 1
12754                 touch $DIR/$tdir/striped_dir/file_$i ||
12755                                         error "touch error $i"
12756                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
12757                 [ $mtime1 -eq $mtime2 ] &&
12758                         error "mtime not change after create"
12759                 sleep 1
12760                 rm -f $DIR/$tdir/striped_dir/file_$i ||
12761                                         error "unlink error $i"
12762                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
12763                 [ $mtime2 -eq $mtime3 ] &&
12764                         error "mtime did not change after unlink"
12765         done
12766         true
12767 }
12768 run_test 300b "check ctime/mtime for striped dir"
12769
12770 test_300c() {
12771         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12772         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12773         local file_count
12774
12775         mkdir -p $DIR/$tdir
12776         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
12777                 error "set striped dir error"
12778
12779         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
12780                 error "chown striped dir failed"
12781
12782         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
12783                 error "create 5k files failed"
12784
12785         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
12786
12787         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
12788
12789         rm -rf $DIR/$tdir
12790 }
12791 run_test 300c "chown && check ls under striped directory"
12792
12793 test_300d() {
12794         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12795         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12796         local stripe_count
12797         local file
12798
12799         mkdir -p $DIR/$tdir
12800         $SETSTRIPE -c 2 $DIR/$tdir
12801
12802         #local striped directory
12803         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
12804                 error "set striped dir error"
12805         createmany -o $DIR/$tdir/striped_dir/f 10 ||
12806                 error "create 10 files failed"
12807
12808         #remote striped directory
12809         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
12810                 error "set striped dir error"
12811         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
12812                 error "create 10 files failed"
12813
12814         for file in $(find $DIR/$tdir); do
12815                 stripe_count=$($GETSTRIPE -c $file)
12816                 [ $stripe_count -eq 2 ] ||
12817                         error "wrong stripe $stripe_count for $file"
12818         done
12819
12820         rm -rf $DIR/$tdir
12821 }
12822 run_test 300d "check default stripe under striped directory"
12823
12824 test_300e() {
12825         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12826         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12827         local stripe_count
12828         local file
12829
12830         mkdir -p $DIR/$tdir
12831
12832         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
12833                 error "set striped dir error"
12834
12835         touch $DIR/$tdir/striped_dir/a
12836         touch $DIR/$tdir/striped_dir/b
12837         touch $DIR/$tdir/striped_dir/c
12838
12839         mkdir $DIR/$tdir/striped_dir/dir_a
12840         mkdir $DIR/$tdir/striped_dir/dir_b
12841         mkdir $DIR/$tdir/striped_dir/dir_c
12842
12843         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
12844                 error "set striped dir under striped dir error"
12845
12846         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
12847                 error "set striped dir under striped dir error"
12848
12849         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
12850                 error "set striped dir under striped dir error"
12851
12852         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/b &&
12853                 error "rename file under striped dir should fail"
12854
12855         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b &&
12856                 error "rename dir under striped dir should fail"
12857
12858         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b &&
12859                 error "rename dir under different stripes should fail"
12860
12861         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
12862                 error "rename file under striped dir should succeed"
12863
12864         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_c ||
12865                 error "rename dir under striped dir should succeed"
12866
12867         rm -rf $DIR/$tdir
12868 }
12869 run_test 300e "check rename under striped directory"
12870
12871 test_300f() {
12872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12873         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12874         local stripe_count
12875         local file
12876
12877         rm -rf $DIR/$tdir
12878         mkdir -p $DIR/$tdir
12879
12880         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
12881                 error "set striped dir error"
12882
12883         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
12884                 error "set striped dir error"
12885
12886         touch $DIR/$tdir/striped_dir/a
12887         mkdir $DIR/$tdir/striped_dir/dir_a
12888         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
12889                 error "create striped dir under striped dir fails"
12890
12891         touch $DIR/$tdir/striped_dir1/b
12892         mkdir $DIR/$tdir/striped_dir1/dir_b
12893         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
12894                 error "create striped dir under striped dir fails"
12895
12896         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/b &&
12897                 error "rename file under different striped dir should fail"
12898
12899         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b &&
12900                 error "rename dir under different striped dir should fail"
12901
12902         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b &&
12903                 error "rename striped dir under diff striped dir should fail"
12904
12905         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
12906                 error "rename file under diff striped dirs fails"
12907
12908         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_a ||
12909                 error "rename dir under diff striped dirs fails"
12910
12911         rm -rf $DIR/$tdir
12912 }
12913 run_test 300f "check rename cross striped directory"
12914
12915 test_300g() {
12916         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12917         local stripe_count
12918         local dir
12919
12920         mkdir $DIR/$tdir
12921         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
12922                                         $DIR/$tdir/striped_dir ||
12923                 error "set striped dir error"
12924
12925         $LFS setdirstripe -D -c $MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
12926                 error "set default stripe on striped dir error"
12927
12928         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/striped_dir)
12929         [ $stripe_count -eq $MDSCOUNT ] ||
12930                 error "default stripe wrong expect $MDSCOUNT get $stripe_count"
12931
12932         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
12933
12934         for dir in $(find $DIR/$tdir/striped_dir/*); do
12935                 stripe_count=$($LFS getdirstripe -c $dir)
12936                 [ $stripe_count -eq $MDSCOUNT ] ||
12937                         error "expect $MDSCOUNT get $stripe_count for $dir"
12938         done
12939
12940         rmdir $DIR/$tdir/striped_dir/* || error "rmdir1 failed"
12941         #change default stripe count to 2
12942         $LFS setdirstripe -D -c 2 -t all_char $DIR/$tdir/striped_dir ||
12943                 error "set default stripe on striped dir error"
12944
12945         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
12946
12947         rmdir $DIR/$tdir/striped_dir/* || error "rmdir2 failed"
12948
12949         #change default stripe count to 1
12950         $LFS setdirstripe -D -c 1 -t all_char $DIR/$tdir/striped_dir ||
12951                 error "set default stripe on striped dir error"
12952
12953         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
12954         for dir in $(find $DIR/$tdir/striped_dir/*); do
12955                 stripe_count=$($LFS getdirstripe -c $dir)
12956                 [ $stripe_count -eq 1 ] ||
12957                         error "expect 1 get $stripe_count for $dir"
12958         done
12959         rmdir $DIR/$tdir/striped_dir/* || error "rmdir3 failed"
12960 }
12961 run_test 300g "check default striped directory for striped directory"
12962
12963 test_400a() { # LU-1606, was conf-sanity test_74
12964         local extra_flags=''
12965         local out=$TMP/$tfile
12966         local prefix=/usr/include/lustre
12967         local prog
12968
12969         if ! which $CC > /dev/null 2>&1; then
12970                 skip_env "$CC is not installed"
12971                 return 0
12972         fi
12973
12974         if ! [[ -d $prefix ]]; then
12975                 # Assume we're running in tree and fixup the include path.
12976                 extra_flags+=" -I$LUSTRE/../libcfs/include"
12977                 extra_flags+=" -I$LUSTRE/include"
12978                 extra_flags+=" -L$LUSTRE/utils"
12979         fi
12980
12981         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
12982                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
12983                         error "client api broken"
12984         done
12985 }
12986 run_test 400a "Lustre client api program can compile and link"
12987
12988 test_400b() { # LU-1606, LU-5011
12989         local header
12990         local out=$TMP/$tfile
12991         local prefix=/usr/include/lustre
12992
12993         # We use a hard coded prefix so that this test will not fail
12994         # when run in tree. There are headers in lustre/include/lustre/
12995         # that are not packaged (like lustre_idl.h) and have more
12996         # complicated include dependencies (like config.h and lnet/types.h).
12997         # Since this test about correct packaging we just skip them when
12998         # they don't exist (see below) rather than try to fixup cppflags.
12999
13000         if ! which $CC > /dev/null 2>&1; then
13001                 skip_env "$CC is not installed"
13002                 return 0
13003         fi
13004
13005         for header in $prefix/*.h; do
13006                 if ! [[ -f "$header" ]]; then
13007                         continue
13008                 fi
13009
13010                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
13011                         continue # liblustreapi.h is deprecated.
13012                 fi
13013
13014                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
13015                         error "cannot compile '$header'"
13016         done
13017 }
13018 run_test 400b "packaged headers can be compiled"
13019
13020 #
13021 # tests that do cleanup/setup should be run at the end
13022 #
13023
13024 test_900() {
13025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13026         local ls
13027         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
13028         $LCTL set_param fail_loc=0x903
13029         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
13030         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
13031                 echo "clear" > $ls
13032         done
13033         FAIL_ON_ERROR=true cleanup
13034         FAIL_ON_ERROR=true setup
13035 }
13036 run_test 900 "umount should not race with any mgc requeue thread"
13037
13038 complete $SECONDS
13039 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
13040 check_and_cleanup_lustre
13041 if [ "$I_MOUNTED" != "yes" ]; then
13042         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
13043 fi
13044 exit_status