Whamcloud - gitweb
LU-4185 llite: Revise create with no open optimization
[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 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   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 LU-8139
17 ALWAYS_EXCEPT="                 76      101g    $ALWAYS_EXCEPT"
18
19 is_sles11()                                             # LU-4341
20 {
21         if [ -r /etc/SuSE-release ]
22         then
23                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
24                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
25                         awk '{ print $3 }')
26                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
27                         return 0
28                 fi
29         fi
30         return 1
31 }
32
33 if is_sles11; then                                      # LU-4341
34         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
35 fi
36
37 SRCDIR=$(cd $(dirname $0); echo $PWD)
38 export PATH=$PATH:/sbin
39
40 TMP=${TMP:-/tmp}
41
42 CC=${CC:-cc}
43 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
44 CREATETEST=${CREATETEST:-createtest}
45 LFS=${LFS:-lfs}
46 LFIND=${LFIND:-"$LFS find"}
47 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
48 LCTL=${LCTL:-lctl}
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 STRIPES_PER_OBJ=-1
60 CHECK_GRANT=${CHECK_GRANT:-"yes"}
61 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
62 export PARALLEL=${PARALLEL:-"no"}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
73 . $LUSTRE/tests/test-framework.sh
74 init_test_env $@
75 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
76 init_logging
77
78 #                                  5              12          (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24D 27m 64b 68 71 115 300o"
80
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82         # bug number for skipped test: LU-4536 LU-1957
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180"
84         #                                               13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
86 fi
87
88 FAIL_ON_ERROR=false
89
90 cleanup() {
91         echo -n "cln.."
92         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
93         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
94 }
95 setup() {
96         echo -n "mnt.."
97         load_modules
98         setupall || exit 10
99         echo "done"
100 }
101
102 check_swap_layouts_support()
103 {
104         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
105                 { skip "Does not support layout lock."; return 0; }
106         return 1
107 }
108
109 check_and_setup_lustre
110 DIR=${DIR:-$MOUNT}
111 assert_DIR
112
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
114         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
115 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
116
117 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
118 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
119 rm -rf $DIR/[Rdfs][0-9]*
120
121 # $RUNAS_ID may get set incorrectly somewhere else
122 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
123
124 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
125
126 build_test_filter
127
128 if [ "${ONLY}" = "MOUNT" ] ; then
129         echo "Lustre is up, please go on"
130         exit
131 fi
132
133 echo "preparing for tests involving mounts"
134 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
135 touch $EXT2_DEV
136 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
137 echo # add a newline after mke2fs.
138
139 umask 077
140
141 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
142 lctl set_param debug=-1 2> /dev/null || true
143 test_0a() {
144         touch $DIR/$tfile
145         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
146         rm $DIR/$tfile
147         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
148 }
149 run_test 0a "touch; rm ====================="
150
151 test_0b() {
152         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
153         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
154 }
155 run_test 0b "chmod 0755 $DIR ============================="
156
157 test_0c() {
158         $LCTL get_param mdc.*.import | grep "state: FULL" ||
159                 error "import not FULL"
160         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
161                 error "bad target"
162 }
163 run_test 0c "check import proc ============================="
164
165 test_1() {
166         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
167         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
168         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
169         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
170         rmdir $DIR/$tdir/d2
171         rmdir $DIR/$tdir
172         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
173 }
174 run_test 1 "mkdir; remkdir; rmdir =============================="
175
176 test_2() {
177         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
178         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
179         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
180         rm -r $DIR/$tdir
181         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
182 }
183 run_test 2 "mkdir; touch; rmdir; check file ===================="
184
185 test_3() {
186         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
187         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
188         touch $DIR/$tdir/$tfile
189         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
190         rm -r $DIR/$tdir
191         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
192 }
193 run_test 3 "mkdir; touch; rmdir; check dir ====================="
194
195 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
196 test_4() {
197         local MDTIDX=1
198
199         test_mkdir $DIR/$tdir ||
200                 error "Create remote directory failed"
201
202         touch $DIR/$tdir/$tfile ||
203                 error "Create file under remote directory failed"
204
205         rmdir $DIR/$tdir &&
206                 error "Expect error removing in-use dir $DIR/$tdir"
207
208         test -d $DIR/$tdir || error "Remote directory disappeared"
209
210         rm -rf $DIR/$tdir || error "remove remote dir error"
211 }
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
213
214 test_5() {
215         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
216         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
217         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
220 }
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
222
223 test_6a() {
224         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227                 error "$tfile does not have perm 0666 or UID $UID"
228         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230                 error "$tfile should be 0666 and owned by UID $UID"
231 }
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
233
234 test_6c() {
235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
236         touch $DIR/$tfile
237         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239                 error "$tfile should be owned by UID $RUNAS_ID"
240         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242                 error "$tfile should be owned by UID $RUNAS_ID"
243 }
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
245
246 test_6e() {
247         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
248         touch $DIR/$tfile
249         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251                 error "$tfile should be owned by GID $UID"
252         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
255 }
256 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
257
258 test_6g() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
261         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
265         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266                 error "$tdir/d/subdir should be GID $RUNAS_GID"
267 }
268 run_test 6g "Is new dir in sgid dir inheriting group?"
269
270 test_6h() { # bug 7331
271         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
272         touch $DIR/$tfile || error "touch failed"
273         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
274         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
275                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
276         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
277                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
278 }
279 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
280
281 test_7a() {
282         test_mkdir $DIR/$tdir
283         $MCREATE $DIR/$tdir/$tfile
284         chmod 0666 $DIR/$tdir/$tfile
285         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
286                 error "$tdir/$tfile should be mode 0666"
287 }
288 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
289
290 test_7b() {
291         if [ ! -d $DIR/$tdir ]; then
292                 test_mkdir $DIR/$tdir
293         fi
294         $MCREATE $DIR/$tdir/$tfile
295         echo -n foo > $DIR/$tdir/$tfile
296         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
297         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
298 }
299 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
300
301 test_8() {
302         test_mkdir $DIR/$tdir
303         touch $DIR/$tdir/$tfile
304         chmod 0666 $DIR/$tdir/$tfile
305         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
306                 error "$tfile mode not 0666"
307 }
308 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
309
310 test_9() {
311         test_mkdir $DIR/$tdir
312         test_mkdir $DIR/$tdir/d2
313         test_mkdir $DIR/$tdir/d2/d3
314         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
315 }
316 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
317
318 test_10() {
319         test_mkdir $DIR/$tdir
320         test_mkdir $DIR/$tdir/d2
321         touch $DIR/$tdir/d2/$tfile
322         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
323                 error "$tdir/d2/$tfile not a file"
324 }
325 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
326
327 test_11() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         chmod 0666 $DIR/$tdir/d2
331         chmod 0705 $DIR/$tdir/d2
332         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
333                 error "$tdir/d2 mode not 0705"
334 }
335 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
336
337 test_12() {
338         test_mkdir $DIR/$tdir
339         touch $DIR/$tdir/$tfile
340         chmod 0666 $DIR/$tdir/$tfile
341         chmod 0654 $DIR/$tdir/$tfile
342         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
343                 error "$tdir/d2 mode not 0654"
344 }
345 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
346
347 test_13() {
348         test_mkdir $DIR/$tdir
349         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
350         >  $DIR/$tdir/$tfile
351         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
352                 error "$tdir/$tfile size not 0 after truncate"
353 }
354 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
355
356 test_14() {
357         test_mkdir $DIR/$tdir
358         touch $DIR/$tdir/$tfile
359         rm $DIR/$tdir/$tfile
360         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
361 }
362 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
363
364 test_15() {
365         test_mkdir $DIR/$tdir
366         touch $DIR/$tdir/$tfile
367         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
368         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
369                 error "$tdir/${tfile_2} not a file after rename"
370         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
371 }
372 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
373
374 test_16() {
375         test_mkdir $DIR/$tdir
376         touch $DIR/$tdir/$tfile
377         rm -rf $DIR/$tdir/$tfile
378         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
379 }
380 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
381
382 test_17a() {
383         test_mkdir -p $DIR/$tdir
384         touch $DIR/$tdir/$tfile
385         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
386         ls -l $DIR/$tdir
387         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
388                 error "$tdir/l-exist not a symlink"
389         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
390                 error "$tdir/l-exist not referencing a file"
391         rm -f $DIR/$tdir/l-exist
392         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
393 }
394 run_test 17a "symlinks: create, remove (real) =================="
395
396 test_17b() {
397         test_mkdir -p $DIR/$tdir
398         ln -s no-such-file $DIR/$tdir/l-dangle
399         ls -l $DIR/$tdir
400         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
401                 error "$tdir/l-dangle not referencing no-such-file"
402         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
403                 error "$tdir/l-dangle not referencing non-existent file"
404         rm -f $DIR/$tdir/l-dangle
405         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
406 }
407 run_test 17b "symlinks: create, remove (dangling) =============="
408
409 test_17c() { # bug 3440 - don't save failed open RPC for replay
410         test_mkdir -p $DIR/$tdir
411         ln -s foo $DIR/$tdir/$tfile
412         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
413 }
414 run_test 17c "symlinks: open dangling (should return error) ===="
415
416 test_17d() {
417         test_mkdir -p $DIR/$tdir
418         ln -s foo $DIR/$tdir/$tfile
419         touch $DIR/$tdir/$tfile || error "creating to new symlink"
420 }
421 run_test 17d "symlinks: create dangling ========================"
422
423 test_17e() {
424         test_mkdir -p $DIR/$tdir
425         local foo=$DIR/$tdir/$tfile
426         ln -s $foo $foo || error "create symlink failed"
427         ls -l $foo || error "ls -l failed"
428         ls $foo && error "ls not failed" || true
429 }
430 run_test 17e "symlinks: create recursive symlink (should return error) ===="
431
432 test_17f() {
433         test_mkdir -p $DIR/$tdir
434         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
435         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
436         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
437         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
438         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
439         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
440         ls -l  $DIR/$tdir
441 }
442 run_test 17f "symlinks: long and very long symlink name ========================"
443
444 # str_repeat(S, N) generate a string that is string S repeated N times
445 str_repeat() {
446         local s=$1
447         local n=$2
448         local ret=''
449         while [ $((n -= 1)) -ge 0 ]; do
450                 ret=$ret$s
451         done
452         echo $ret
453 }
454
455 # Long symlinks and LU-2241
456 test_17g() {
457         test_mkdir -p $DIR/$tdir
458         local TESTS="59 60 61 4094 4095"
459
460         # Fix for inode size boundary in 2.1.4
461         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
462                 TESTS="4094 4095"
463
464         # Patch not applied to 2.2 or 2.3 branches
465         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
466         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
467                 TESTS="4094 4095"
468
469         # skip long symlink name for rhel6.5.
470         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
471         grep -q '6.5' /etc/redhat-release &>/dev/null &&
472                 TESTS="59 60 61 4062 4063"
473
474         for i in $TESTS; do
475                 local SYMNAME=$(str_repeat 'x' $i)
476                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
477                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
478         done
479 }
480 run_test 17g "symlinks: really long symlink name and inode boundaries"
481
482 test_17h() { #bug 17378
483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
485         local mdt_idx
486         test_mkdir -p $DIR/$tdir
487         if [[ $MDSCOUNT -gt 1 ]]; then
488                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
489         else
490                 mdt_idx=0
491         fi
492         $SETSTRIPE -c -1 $DIR/$tdir
493 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
494         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
495         touch $DIR/$tdir/$tfile || true
496 }
497 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
498
499 test_17i() { #bug 20018
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         test_mkdir -c1 $DIR/$tdir
503         local foo=$DIR/$tdir/$tfile
504         local mdt_idx
505         if [[ $MDSCOUNT -gt 1 ]]; then
506                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507         else
508                 mdt_idx=0
509         fi
510         ln -s $foo $foo || error "create symlink failed"
511 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
512         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
513         ls -l $foo && error "error not detected"
514         return 0
515 }
516 run_test 17i "don't panic on short symlink"
517
518 test_17k() { #bug 22301
519         [[ -z "$(which rsync 2>/dev/null)" ]] &&
520                 skip "no rsync command" && return 0
521         rsync --help | grep -q xattr ||
522                 skip_env "$(rsync --version | head -n1) does not support xattrs"
523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
524         test_mkdir -p $DIR/$tdir
525         test_mkdir -p $DIR/$tdir.new
526         touch $DIR/$tdir/$tfile
527         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
528         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
529                 error "rsync failed with xattrs enabled"
530 }
531 run_test 17k "symlinks: rsync with xattrs enabled ========================="
532
533 test_17l() { # LU-279
534         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
535                 skip "no getfattr command" && return 0
536         test_mkdir -p $DIR/$tdir
537         touch $DIR/$tdir/$tfile
538         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
539         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
540                 # -h to not follow symlinks. -m '' to list all the xattrs.
541                 # grep to remove first line: '# file: $path'.
542                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
543                 do
544                         lgetxattr_size_check $path $xattr ||
545                                 error "lgetxattr_size_check $path $xattr failed"
546                 done
547         done
548 }
549 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
550
551 # LU-1540
552 test_17m() {
553         local short_sym="0123456789"
554         local WDIR=$DIR/${tdir}m
555         local i
556
557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
558         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
559         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
560                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
561
562         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
563                 skip "only for ldiskfs MDT" && return 0
564
565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
566
567         test_mkdir -p $WDIR
568         long_sym=$short_sym
569         # create a long symlink file
570         for ((i = 0; i < 4; ++i)); do
571                 long_sym=${long_sym}${long_sym}
572         done
573
574         echo "create 512 short and long symlink files under $WDIR"
575         for ((i = 0; i < 256; ++i)); do
576                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
577                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
578         done
579
580         echo "erase them"
581         rm -f $WDIR/*
582         sync
583         wait_delete_completed
584
585         echo "recreate the 512 symlink files with a shorter string"
586         for ((i = 0; i < 512; ++i)); do
587                 # rewrite the symlink file with a shorter string
588                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
589                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
590         done
591
592         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
593         local devname=$(mdsdevname $mds_index)
594
595         echo "stop and checking mds${mds_index}:"
596         # e2fsck should not return error
597         stop mds${mds_index}
598         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
599         rc=$?
600
601         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
602         df $MOUNT > /dev/null 2>&1
603         [ $rc -eq 0 ] ||
604                 error "e2fsck detected error for short/long symlink: rc=$rc"
605 }
606 run_test 17m "run e2fsck against MDT which contains short/long symlink"
607
608 check_fs_consistency_17n() {
609         local mdt_index
610         local rc=0
611
612         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
613         # so it only check MDT1/MDT2 instead of all of MDTs.
614         for mdt_index in 1 2; do
615                 local devname=$(mdsdevname $mdt_index)
616                 # e2fsck should not return error
617                 stop mds${mdt_index}
618                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
619                         rc=$((rc + $?))
620
621                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
622                         error "mount mds$mdt_index failed"
623                 df $MOUNT > /dev/null 2>&1
624         done
625         return $rc
626 }
627
628 test_17n() {
629         local i
630
631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
632         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
633         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
634                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
635
636         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
637                 skip "only for ldiskfs MDT" && return 0
638
639         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
640
641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
642
643         test_mkdir $DIR/$tdir
644         for ((i=0; i<10; i++)); do
645                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
646                         error "create remote dir error $i"
647                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
648                         error "create files under remote dir failed $i"
649         done
650
651         check_fs_consistency_17n ||
652                 error "e2fsck report error after create files under remote dir"
653
654         for ((i = 0; i < 10; i++)); do
655                 rm -rf $DIR/$tdir/remote_dir_${i} ||
656                         error "destroy remote dir error $i"
657         done
658
659         check_fs_consistency_17n ||
660                 error "e2fsck report error after unlink files under remote dir"
661
662         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
663                 skip "lustre < 2.4.50 does not support migrate mv " && return
664
665         for ((i = 0; i < 10; i++)); do
666                 mkdir -p $DIR/$tdir/remote_dir_${i}
667                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
668                         error "create files under remote dir failed $i"
669                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
670                         error "migrate remote dir error $i"
671         done
672         check_fs_consistency_17n || error "e2fsck report error after migration"
673
674         for ((i = 0; i < 10; i++)); do
675                 rm -rf $DIR/$tdir/remote_dir_${i} ||
676                         error "destroy remote dir error $i"
677         done
678
679         check_fs_consistency_17n || error "e2fsck report error after unlink"
680 }
681 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
682
683 test_17o() {
684         remote_mds_nodsh && skip "remote MDS with nodsh" && return
685         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
686                 skip "Need MDS version at least 2.3.64" && return
687
688         local WDIR=$DIR/${tdir}o
689         local mdt_index
690         local rc=0
691
692         test_mkdir -p $WDIR
693         mdt_index=$($LFS getstripe -M $WDIR)
694         mdt_index=$((mdt_index+1))
695
696         touch $WDIR/$tfile
697
698         #fail mds will wait the failover finish then set
699         #following fail_loc to avoid interfer the recovery process.
700         fail mds${mdt_index}
701
702         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
703         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
704         ls -l $WDIR/$tfile && rc=1
705         do_facet mds${mdt_index} lctl set_param fail_loc=0
706         [[ $rc -ne 0 ]] && error "stat file should fail"
707         true
708 }
709 run_test 17o "stat file with incompat LMA feature"
710
711 test_18() {
712         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
713         ls $DIR || error "Failed to ls $DIR: $?"
714 }
715 run_test 18 "touch .../f ; ls ... =============================="
716
717 test_19a() {
718         touch $DIR/$tfile
719         ls -l $DIR
720         rm $DIR/$tfile
721         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
722 }
723 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
724
725 test_19b() {
726         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
727 }
728 run_test 19b "ls -l .../f19 (should return error) =============="
729
730 test_19c() {
731         [ $RUNAS_ID -eq $UID ] &&
732                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
733         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
734 }
735 run_test 19c "$RUNAS touch .../f19 (should return error) =="
736
737 test_19d() {
738         cat $DIR/f19 && error || true
739 }
740 run_test 19d "cat .../f19 (should return error) =============="
741
742 test_20() {
743         touch $DIR/$tfile
744         rm $DIR/$tfile
745         log "1 done"
746         touch $DIR/$tfile
747         rm $DIR/$tfile
748         log "2 done"
749         touch $DIR/$tfile
750         rm $DIR/$tfile
751         log "3 done"
752         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
753 }
754 run_test 20 "touch .../f ; ls -l ... ==========================="
755
756 test_21() {
757         test_mkdir -p $DIR/$tdir
758         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
759         ln -s dangle $DIR/$tdir/link
760         echo foo >> $DIR/$tdir/link
761         cat $DIR/$tdir/dangle
762         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
763         $CHECKSTAT -f -t file $DIR/$tdir/link ||
764                 error "$tdir/link not linked to a file"
765 }
766 run_test 21 "write to dangling link ============================"
767
768 test_22() {
769         WDIR=$DIR/$tdir
770         test_mkdir -p $DIR/$tdir
771         chown $RUNAS_ID:$RUNAS_GID $WDIR
772         (cd $WDIR || error "cd $WDIR failed";
773         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
774         $RUNAS tar xf -)
775         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
776         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
777         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
778 }
779 run_test 22 "unpack tar archive as non-root user ==============="
780
781 # was test_23
782 test_23a() {
783         test_mkdir -p $DIR/$tdir
784         local file=$DIR/$tdir/$tfile
785
786         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
787         openfile -f O_CREAT:O_EXCL $file &&
788                 error "$file recreate succeeded" || true
789 }
790 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
791
792 test_23b() { # bug 18988
793         test_mkdir -p $DIR/$tdir
794         local file=$DIR/$tdir/$tfile
795
796         rm -f $file
797         echo foo > $file || error "write filed"
798         echo bar >> $file || error "append filed"
799         $CHECKSTAT -s 8 $file || error "wrong size"
800         rm $file
801 }
802 run_test 23b "O_APPEND check =========================="
803
804 # rename sanity
805 test_24a() {
806         echo '-- same directory rename'
807         test_mkdir $DIR/$tdir
808         touch $DIR/$tdir/$tfile.1
809         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
810         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
811 }
812 run_test 24a "rename file to non-existent target"
813
814 test_24b() {
815         test_mkdir $DIR/$tdir
816         touch $DIR/$tdir/$tfile.{1,2}
817         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
818         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
819         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
820 }
821 run_test 24b "rename file to existing target"
822
823 test_24c() {
824         test_mkdir $DIR/$tdir
825         test_mkdir $DIR/$tdir/d$testnum.1
826         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
827         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
828         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
829 }
830 run_test 24c "rename directory to non-existent target"
831
832 test_24d() {
833         test_mkdir -c1 $DIR/$tdir
834         test_mkdir -c1 $DIR/$tdir/d$testnum.1
835         test_mkdir -c1 $DIR/$tdir/d$testnum.2
836         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
837         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
838         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
839 }
840 run_test 24d "rename directory to existing target"
841
842 test_24e() {
843         echo '-- cross directory renames --'
844         test_mkdir $DIR/R5a
845         test_mkdir $DIR/R5b
846         touch $DIR/R5a/f
847         mv $DIR/R5a/f $DIR/R5b/g
848         $CHECKSTAT -a $DIR/R5a/f || error
849         $CHECKSTAT -t file $DIR/R5b/g || error
850 }
851 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
852
853 test_24f() {
854         test_mkdir $DIR/R6a
855         test_mkdir $DIR/R6b
856         touch $DIR/R6a/f $DIR/R6b/g
857         mv $DIR/R6a/f $DIR/R6b/g
858         $CHECKSTAT -a $DIR/R6a/f || error
859         $CHECKSTAT -t file $DIR/R6b/g || error
860 }
861 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
862
863 test_24g() {
864         test_mkdir $DIR/R7a
865         test_mkdir $DIR/R7b
866         test_mkdir $DIR/R7a/d
867         mv $DIR/R7a/d $DIR/R7b/e
868         $CHECKSTAT -a $DIR/R7a/d || error
869         $CHECKSTAT -t dir $DIR/R7b/e || error
870 }
871 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
872
873 test_24h() {
874         test_mkdir -c1 $DIR/R8a
875         test_mkdir -c1 $DIR/R8b
876         test_mkdir -c1 $DIR/R8a/d
877         test_mkdir -c1 $DIR/R8b/e
878         mrename $DIR/R8a/d $DIR/R8b/e
879         $CHECKSTAT -a $DIR/R8a/d || error
880         $CHECKSTAT -t dir $DIR/R8b/e || error
881 }
882 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
883
884 test_24i() {
885         echo "-- rename error cases"
886         test_mkdir $DIR/R9
887         test_mkdir $DIR/R9/a
888         touch $DIR/R9/f
889         mrename $DIR/R9/f $DIR/R9/a
890         $CHECKSTAT -t file $DIR/R9/f || error
891         $CHECKSTAT -t dir  $DIR/R9/a || error
892         $CHECKSTAT -a $DIR/R9/a/f || error
893 }
894 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
895
896 test_24j() {
897         test_mkdir $DIR/R10
898         mrename $DIR/R10/f $DIR/R10/g
899         $CHECKSTAT -t dir $DIR/R10 || error
900         $CHECKSTAT -a $DIR/R10/f || error
901         $CHECKSTAT -a $DIR/R10/g || error
902 }
903 run_test 24j "source does not exist ============================"
904
905 test_24k() {
906         test_mkdir $DIR/R11a
907         test_mkdir $DIR/R11a/d
908         touch $DIR/R11a/f
909         mv $DIR/R11a/f $DIR/R11a/d
910         $CHECKSTAT -a $DIR/R11a/f || error
911         $CHECKSTAT -t file $DIR/R11a/d/f || error
912 }
913 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
914
915 # bug 2429 - rename foo foo foo creates invalid file
916 test_24l() {
917         f="$DIR/f24l"
918         $MULTIOP $f OcNs || error
919 }
920 run_test 24l "Renaming a file to itself ========================"
921
922 test_24m() {
923         f="$DIR/f24m"
924         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
925         # on ext3 this does not remove either the source or target files
926         # though the "expected" operation would be to remove the source
927         $CHECKSTAT -t file ${f} || error "${f} missing"
928         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
929 }
930 run_test 24m "Renaming a file to a hard link to itself ========="
931
932 test_24n() {
933     f="$DIR/f24n"
934     # this stats the old file after it was renamed, so it should fail
935     touch ${f}
936     $CHECKSTAT ${f}
937     mv ${f} ${f}.rename
938     $CHECKSTAT ${f}.rename
939     $CHECKSTAT -a ${f}
940 }
941 run_test 24n "Statting the old file after renaming (Posix rename 2)"
942
943 test_24o() {
944         test_mkdir -p $DIR/d24o
945         rename_many -s random -v -n 10 $DIR/d24o
946 }
947 run_test 24o "rename of files during htree split ==============="
948
949 test_24p() {
950         test_mkdir $DIR/R12a
951         test_mkdir $DIR/R12b
952         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
953         mrename $DIR/R12a $DIR/R12b
954         $CHECKSTAT -a $DIR/R12a || error
955         $CHECKSTAT -t dir $DIR/R12b || error
956         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
957         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
958 }
959 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
960
961 cleanup_multiop_pause() {
962         trap 0
963         kill -USR1 $MULTIPID
964 }
965
966 test_24q() {
967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
968         test_mkdir $DIR/R13a
969         test_mkdir $DIR/R13b
970         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
971         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
972         MULTIPID=$!
973
974         trap cleanup_multiop_pause EXIT
975         mrename $DIR/R13a $DIR/R13b
976         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
977         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
978         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
979         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
980         cleanup_multiop_pause
981         wait $MULTIPID || error "multiop close failed"
982 }
983 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
984
985 test_24r() { #bug 3789
986         test_mkdir $DIR/R14a
987         test_mkdir $DIR/R14a/b
988         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
989         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
990         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
991 }
992 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
993
994 test_24s() {
995         test_mkdir $DIR/R15a
996         test_mkdir $DIR/R15a/b
997         test_mkdir $DIR/R15a/b/c
998         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
999         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1000         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1001 }
1002 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1003 test_24t() {
1004         test_mkdir $DIR/R16a
1005         test_mkdir $DIR/R16a/b
1006         test_mkdir $DIR/R16a/b/c
1007         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1008         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1009         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1010 }
1011 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1012
1013 test_24u() { # bug12192
1014         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1015         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1016 }
1017 run_test 24u "create stripe file"
1018
1019 page_size() {
1020         local size
1021         size=$(getconf PAGE_SIZE 2>/dev/null)
1022         echo -n ${size:-4096}
1023 }
1024
1025 simple_cleanup_common() {
1026         trap 0
1027         rm -rf $DIR/$tdir
1028         wait_delete_completed
1029 }
1030
1031 max_pages_per_rpc() {
1032         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1033 }
1034
1035 test_24v() {
1036         local NRFILES=100000
1037         local FREE_INODES=$(mdt_free_inodes 0)
1038         [[ $FREE_INODES -lt $NRFILES ]] &&
1039                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1040                 return
1041
1042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1043         trap simple_cleanup_common EXIT
1044
1045         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1046         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1047
1048         test_mkdir -p $DIR/$tdir
1049         createmany -m $DIR/$tdir/$tfile $NRFILES
1050
1051         cancel_lru_locks mdc
1052         lctl set_param mdc.*.stats clear
1053
1054         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1055
1056         # LU-5 large readdir
1057         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1058         #               8 bytes for name(filename is mostly 5 in this test) +
1059         #               8 bytes for luda_type
1060         # take into account of overhead in lu_dirpage header and end mark in
1061         # each page, plus one in RPC_NUM calculation.
1062         DIRENT_SIZE=48
1063         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1064         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1065         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1066                                 awk '/^mds_readpage/ {print $2}')
1067         [[ $mds_readpage -gt $RPC_NUM ]] &&
1068                 error "large readdir doesn't take effect"
1069
1070         simple_cleanup_common
1071 }
1072 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1073
1074 test_24w() { # bug21506
1075         SZ1=234852
1076         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1077         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1078         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1079         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1080         [[ "$SZ1" -eq "$SZ2" ]] ||
1081                 error "Error reading at the end of the file $tfile"
1082 }
1083 run_test 24w "Reading a file larger than 4Gb"
1084
1085 test_24x() {
1086         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1087
1088         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1089                 skip "Need MDS version at least 2.7.56" && return
1090
1091         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1092         local MDTIDX=1
1093         local remote_dir=$DIR/$tdir/remote_dir
1094
1095         test_mkdir -p $DIR/$tdir
1096         $LFS mkdir -i $MDTIDX $remote_dir ||
1097                 error "create remote directory failed"
1098
1099         test_mkdir -p $DIR/$tdir/src_dir
1100         touch $DIR/$tdir/src_file
1101         test_mkdir -p $remote_dir/tgt_dir
1102         touch $remote_dir/tgt_file
1103
1104         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1105                 error "rename dir cross MDT failed!"
1106
1107         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1108                 error "rename file cross MDT failed!"
1109
1110         touch $DIR/$tdir/ln_file
1111         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1112                 error "ln file cross MDT failed"
1113
1114         rm -rf $DIR/$tdir || error "Can not delete directories"
1115 }
1116 run_test 24x "cross MDT rename/link"
1117
1118 test_24y() {
1119         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1121         local MDTIDX=1
1122         local remote_dir=$DIR/$tdir/remote_dir
1123
1124         test_mkdir -p $DIR/$tdir
1125         $LFS mkdir -i $MDTIDX $remote_dir ||
1126                    error "create remote directory failed"
1127
1128         test_mkdir -p $remote_dir/src_dir
1129         touch $remote_dir/src_file
1130         test_mkdir -p $remote_dir/tgt_dir
1131         touch $remote_dir/tgt_file
1132
1133         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1134                 error "rename subdir in the same remote dir failed!"
1135
1136         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1137                 error "rename files in the same remote dir failed!"
1138
1139         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1140                 error "link files in the same remote dir failed!"
1141
1142         rm -rf $DIR/$tdir || error "Can not delete directories"
1143 }
1144 run_test 24y "rename/link on the same dir should succeed"
1145
1146 test_24A() { # LU-3182
1147         local NFILES=5000
1148
1149         rm -rf $DIR/$tdir
1150         test_mkdir -p $DIR/$tdir
1151         createmany -m $DIR/$tdir/$tfile $NFILES
1152         local t=$(ls $DIR/$tdir | wc -l)
1153         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1154         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1155         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1156                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1157         fi
1158
1159         rm -rf $DIR/$tdir || error "Can not delete directories"
1160 }
1161 run_test 24A "readdir() returns correct number of entries."
1162
1163 test_24B() { # LU-4805
1164         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1165         local count
1166
1167         test_mkdir $DIR/$tdir
1168         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1169                 error "create striped dir failed"
1170
1171         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1172         [ $count -eq 2 ] || error "Expected 2, got $count"
1173
1174         touch $DIR/$tdir/striped_dir/a
1175
1176         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1177         [ $count -eq 3 ] || error "Expected 3, got $count"
1178
1179         touch $DIR/$tdir/striped_dir/.f
1180
1181         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1182         [ $count -eq 4 ] || error "Expected 4, got $count"
1183
1184         rm -rf $DIR/$tdir || error "Can not delete directories"
1185 }
1186 run_test 24B "readdir for striped dir return correct number of entries"
1187
1188 test_24C() {
1189         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1190
1191         mkdir $DIR/$tdir
1192         mkdir $DIR/$tdir/d0
1193         mkdir $DIR/$tdir/d1
1194
1195         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1196                 error "create striped dir failed"
1197
1198         cd $DIR/$tdir/d0/striped_dir
1199
1200         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1201         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1202         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1203
1204         [ "$d0_ino" = "$parent_ino" ] ||
1205                 error ".. wrong, expect $d0_ino, get $parent_ino"
1206
1207         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1208                 error "mv striped dir failed"
1209
1210         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1211
1212         [ "$d1_ino" = "$parent_ino" ] ||
1213                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1214 }
1215 run_test 24C "check .. in striped dir"
1216
1217 test_24D() { # LU-6101
1218         local NFILES=50000
1219
1220         rm -rf $DIR/$tdir
1221         mkdir -p $DIR/$tdir
1222         createmany -m $DIR/$tdir/$tfile $NFILES
1223         local t=$(ls $DIR/$tdir | wc -l)
1224         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1225         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1226         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1227                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1228         fi
1229
1230         rm -rf $DIR/$tdir || error "Can not delete directories"
1231 }
1232 run_test 24D "readdir() returns correct number of entries after cursor reload"
1233
1234 test_24E() {
1235         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1237
1238         mkdir -p $DIR/$tdir
1239         mkdir $DIR/$tdir/src_dir
1240         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1241                 error "create remote source failed"
1242
1243         touch $DIR/$tdir/src_dir/src_child/a
1244
1245         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1246                 error "create remote target dir failed"
1247
1248         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1249                 error "create remote target child failed"
1250
1251         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1252                 error "rename dir cross MDT failed!"
1253
1254         find $DIR/$tdir
1255
1256         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1257                 error "src_child still exists after rename"
1258
1259         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1260                 error "missing file(a) after rename"
1261
1262         rm -rf $DIR/$tdir || error "Can not delete directories"
1263 }
1264 run_test 24E "cross MDT rename/link"
1265
1266 test_25a() {
1267         echo '== symlink sanity ============================================='
1268
1269         test_mkdir $DIR/d25
1270         ln -s d25 $DIR/s25
1271         touch $DIR/s25/foo || error
1272 }
1273 run_test 25a "create file in symlinked directory ==============="
1274
1275 test_25b() {
1276         [ ! -d $DIR/d25 ] && test_25a
1277         $CHECKSTAT -t file $DIR/s25/foo || error
1278 }
1279 run_test 25b "lookup file in symlinked directory ==============="
1280
1281 test_26a() {
1282         test_mkdir $DIR/d26
1283         test_mkdir $DIR/d26/d26-2
1284         ln -s d26/d26-2 $DIR/s26
1285         touch $DIR/s26/foo || error
1286 }
1287 run_test 26a "multiple component symlink ======================="
1288
1289 test_26b() {
1290         test_mkdir -p $DIR/d26b/d26-2
1291         ln -s d26b/d26-2/foo $DIR/s26-2
1292         touch $DIR/s26-2 || error
1293 }
1294 run_test 26b "multiple component symlink at end of lookup ======"
1295
1296 test_26c() {
1297         test_mkdir $DIR/d26.2
1298         touch $DIR/d26.2/foo
1299         ln -s d26.2 $DIR/s26.2-1
1300         ln -s s26.2-1 $DIR/s26.2-2
1301         ln -s s26.2-2 $DIR/s26.2-3
1302         chmod 0666 $DIR/s26.2-3/foo
1303 }
1304 run_test 26c "chain of symlinks ================================"
1305
1306 # recursive symlinks (bug 439)
1307 test_26d() {
1308         ln -s d26-3/foo $DIR/d26-3
1309 }
1310 run_test 26d "create multiple component recursive symlink ======"
1311
1312 test_26e() {
1313         [ ! -h $DIR/d26-3 ] && test_26d
1314         rm $DIR/d26-3
1315 }
1316 run_test 26e "unlink multiple component recursive symlink ======"
1317
1318 # recursive symlinks (bug 7022)
1319 test_26f() {
1320         test_mkdir -p $DIR/$tdir
1321         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1322         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1323         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1324         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1325         cd $tfile                || error "cd $tfile failed"
1326         ln -s .. dotdot          || error "ln dotdot failed"
1327         ln -s dotdot/lndir lndir || error "ln lndir failed"
1328         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1329         output=`ls $tfile/$tfile/lndir/bar1`
1330         [ "$output" = bar1 ] && error "unexpected output"
1331         rm -r $tfile             || error "rm $tfile failed"
1332         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1333 }
1334 run_test 26f "rm -r of a directory which has recursive symlink ="
1335
1336 test_27a() {
1337         echo '== stripe sanity =============================================='
1338         test_mkdir -p $DIR/d27 || error "mkdir failed"
1339         $GETSTRIPE $DIR/d27
1340         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1341         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1342         log "== test_27a: write to one stripe file ========================="
1343         cp /etc/hosts $DIR/d27/f0 || error
1344 }
1345 run_test 27a "one stripe file =================================="
1346
1347 test_27b() {
1348         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1349         test_mkdir -p $DIR/d27
1350         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1351         $GETSTRIPE -c $DIR/d27/f01
1352         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1353                 error "two-stripe file doesn't have two stripes"
1354
1355         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1356 }
1357 run_test 27b "create and write to two stripe file"
1358
1359 test_27d() {
1360         test_mkdir -p $DIR/d27
1361         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1362         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1363         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1364 }
1365 run_test 27d "create file with default settings ================"
1366
1367 test_27e() {
1368         # LU-5839 adds check for existed layout before setting it
1369         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1370                 skip "Need MDS version at least 2.7.56" && return
1371         test_mkdir -p $DIR/d27
1372         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1373         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1374         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1375 }
1376 run_test 27e "setstripe existing file (should return error) ======"
1377
1378 test_27f() {
1379         test_mkdir $DIR/$tdir
1380         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1381                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1382         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1383                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1384         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1385         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1386 }
1387 run_test 27f "setstripe with bad stripe size (should return error)"
1388
1389 test_27g() {
1390         test_mkdir -p $DIR/d27
1391         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1392         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1393                 error "$DIR/d27/fnone has object"
1394 }
1395 run_test 27g "$GETSTRIPE with no objects"
1396
1397 test_27i() {
1398         test_mkdir $DIR/$tdir
1399         touch $DIR/$tdir/$tfile || error "touch failed"
1400         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1401                 error "missing objects"
1402 }
1403 run_test 27i "$GETSTRIPE with some objects"
1404
1405 test_27j() {
1406         test_mkdir -p $DIR/d27
1407         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1408 }
1409 run_test 27j "setstripe with bad stripe offset (should return error)"
1410
1411 test_27k() { # bug 2844
1412         test_mkdir -p $DIR/d27
1413         FILE=$DIR/d27/f27k
1414         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1415         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1416         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1417         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1418         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1419         dd if=/dev/zero of=$FILE bs=4k count=1
1420         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1421         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1422 }
1423 run_test 27k "limit i_blksize for broken user apps ============="
1424
1425 test_27l() {
1426         test_mkdir -p $DIR/d27
1427         mcreate $DIR/f27l || error "creating file"
1428         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1429                 error "setstripe should have failed" || true
1430 }
1431 run_test 27l "check setstripe permissions (should return error)"
1432
1433 test_27m() {
1434         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1435                 return
1436
1437         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1438                    head -n1)
1439         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1440                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1441                 return
1442         fi
1443         trap simple_cleanup_common EXIT
1444         test_mkdir -p $DIR/$tdir
1445         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1446         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1447                 error "dd should fill OST0"
1448         i=2
1449         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1450                 i=$((i + 1))
1451                 [ $i -gt 256 ] && break
1452         done
1453         i=$((i + 1))
1454         touch $DIR/$tdir/f27m_$i
1455         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1456                 error "OST0 was full but new created file still use it"
1457         i=$((i + 1))
1458         touch $DIR/$tdir/f27m_$i
1459         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1460                 error "OST0 was full but new created file still use it"
1461         simple_cleanup_common
1462 }
1463 run_test 27m "create file while OST0 was full =================="
1464
1465 sleep_maxage() {
1466         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1467         sleep $DELAY
1468 }
1469
1470 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1471 # if the OST isn't full anymore.
1472 reset_enospc() {
1473         local OSTIDX=${1:-""}
1474
1475         local list=$(comma_list $(osts_nodes))
1476         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1477
1478         do_nodes $list lctl set_param fail_loc=0
1479         sync    # initiate all OST_DESTROYs from MDS to OST
1480         sleep_maxage
1481 }
1482
1483 exhaust_precreations() {
1484         local OSTIDX=$1
1485         local FAILLOC=$2
1486         local FAILIDX=${3:-$OSTIDX}
1487         local ofacet=ost$((OSTIDX + 1))
1488
1489         test_mkdir -p -c1 $DIR/$tdir
1490         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1491         local mfacet=mds$((mdtidx + 1))
1492         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1493
1494         local OST=$(ostname_from_index $OSTIDX)
1495
1496         # on the mdt's osc
1497         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1498         local last_id=$(do_facet $mfacet lctl get_param -n \
1499                         osc.$mdtosc_proc1.prealloc_last_id)
1500         local next_id=$(do_facet $mfacet lctl get_param -n \
1501                         osc.$mdtosc_proc1.prealloc_next_id)
1502
1503         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1504         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1505
1506         test_mkdir -p $DIR/$tdir/${OST}
1507         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1508 #define OBD_FAIL_OST_ENOSPC              0x215
1509         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1510         echo "Creating to objid $last_id on ost $OST..."
1511         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1512         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1513         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1514         sleep_maxage
1515 }
1516
1517 exhaust_all_precreations() {
1518         local i
1519         for (( i=0; i < OSTCOUNT; i++ )) ; do
1520                 exhaust_precreations $i $1 -1
1521         done
1522 }
1523
1524 test_27n() {
1525         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1528         remote_ost_nodsh && skip "remote OST with nodsh" && return
1529
1530         reset_enospc
1531         rm -f $DIR/$tdir/$tfile
1532         exhaust_precreations 0 0x80000215
1533         $SETSTRIPE -c -1 $DIR/$tdir
1534         touch $DIR/$tdir/$tfile || error
1535         $GETSTRIPE $DIR/$tdir/$tfile
1536         reset_enospc
1537 }
1538 run_test 27n "create file with some full OSTs =================="
1539
1540 test_27o() {
1541         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1544         remote_ost_nodsh && skip "remote OST with nodsh" && return
1545
1546         reset_enospc
1547         rm -f $DIR/$tdir/$tfile
1548         exhaust_all_precreations 0x215
1549
1550         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1551
1552         reset_enospc
1553         rm -rf $DIR/$tdir/*
1554 }
1555 run_test 27o "create file with all full OSTs (should error) ===="
1556
1557 test_27p() {
1558         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1561         remote_ost_nodsh && skip "remote OST with nodsh" && return
1562
1563         reset_enospc
1564         rm -f $DIR/$tdir/$tfile
1565         test_mkdir -p $DIR/$tdir
1566
1567         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1568         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1569         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1570
1571         exhaust_precreations 0 0x80000215
1572         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1573         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1574         $GETSTRIPE $DIR/$tdir/$tfile
1575
1576         reset_enospc
1577 }
1578 run_test 27p "append to a truncated file with some full OSTs ==="
1579
1580 test_27q() {
1581         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1583         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1584         remote_ost_nodsh && skip "remote OST with nodsh" && return
1585
1586         reset_enospc
1587         rm -f $DIR/$tdir/$tfile
1588
1589         test_mkdir -p $DIR/$tdir
1590         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1591         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1592         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1593
1594         exhaust_all_precreations 0x215
1595
1596         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1597         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1598
1599         reset_enospc
1600 }
1601 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1602
1603 test_27r() {
1604         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1606         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1607         remote_ost_nodsh && skip "remote OST with nodsh" && return
1608
1609         reset_enospc
1610         rm -f $DIR/$tdir/$tfile
1611         exhaust_precreations 0 0x80000215
1612
1613         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1614
1615         reset_enospc
1616 }
1617 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1618
1619 test_27s() { # bug 10725
1620         test_mkdir -p $DIR/$tdir
1621         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1622         local stripe_count=0
1623         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1624         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1625                 error "stripe width >= 2^32 succeeded" || true
1626
1627 }
1628 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1629
1630 test_27t() { # bug 10864
1631         WDIR=$(pwd)
1632         WLFS=$(which lfs)
1633         cd $DIR
1634         touch $tfile
1635         $WLFS getstripe $tfile
1636         cd $WDIR
1637 }
1638 run_test 27t "check that utils parse path correctly"
1639
1640 test_27u() { # bug 4900
1641         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1642         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1643         local index
1644         local list=$(comma_list $(mdts_nodes))
1645
1646 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1647         do_nodes $list $LCTL set_param fail_loc=0x139
1648         test_mkdir -p $DIR/$tdir
1649         rm -rf $DIR/$tdir/*
1650         createmany -o $DIR/$tdir/t- 1000
1651         do_nodes $list $LCTL set_param fail_loc=0
1652
1653         TLOG=$DIR/$tfile.getstripe
1654         $GETSTRIPE $DIR/$tdir > $TLOG
1655         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1656         unlinkmany $DIR/$tdir/t- 1000
1657         [[ $OBJS -gt 0 ]] &&
1658                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1659 }
1660 run_test 27u "skip object creation on OSC w/o objects =========="
1661
1662 test_27v() { # bug 4900
1663         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1665         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1666         remote_ost_nodsh && skip "remote OST with nodsh" && return
1667
1668         exhaust_all_precreations 0x215
1669         reset_enospc
1670
1671         test_mkdir -p $DIR/$tdir
1672         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1673
1674         touch $DIR/$tdir/$tfile
1675         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1676         # all except ost1
1677         for (( i=1; i < OSTCOUNT; i++ )); do
1678                 do_facet ost$i lctl set_param fail_loc=0x705
1679         done
1680         local START=`date +%s`
1681         createmany -o $DIR/$tdir/$tfile 32
1682
1683         local FINISH=`date +%s`
1684         local TIMEOUT=`lctl get_param -n timeout`
1685         local PROCESS=$((FINISH - START))
1686         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1687                error "$FINISH - $START >= $TIMEOUT / 2"
1688         sleep $((TIMEOUT / 2 - PROCESS))
1689         reset_enospc
1690 }
1691 run_test 27v "skip object creation on slow OST ================="
1692
1693 test_27w() { # bug 10997
1694         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1695         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1696         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1697                 error "stripe size $size != 65536" || true
1698         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1699                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1700 }
1701 run_test 27w "check $SETSTRIPE -S option"
1702
1703 test_27wa() {
1704         [[ $OSTCOUNT -lt 2 ]] &&
1705                 skip_env "skipping multiple stripe count/offset test" && return
1706
1707         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1708         for i in $(seq 1 $OSTCOUNT); do
1709                 offset=$((i - 1))
1710                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1711                         error "setstripe -c $i -i $offset failed"
1712                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1713                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1714                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1715                 [ $index -ne $offset ] &&
1716                         error "stripe offset $index != $offset" || true
1717         done
1718 }
1719 run_test 27wa "check $SETSTRIPE -c -i options"
1720
1721 test_27x() {
1722         remote_ost_nodsh && skip "remote OST with nodsh" && return
1723         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1725         OFFSET=$(($OSTCOUNT - 1))
1726         OSTIDX=0
1727         local OST=$(ostname_from_index $OSTIDX)
1728
1729         test_mkdir -p $DIR/$tdir
1730         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1731         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1732         sleep_maxage
1733         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1734         for i in `seq 0 $OFFSET`; do
1735                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1736                 error "OST0 was degraded but new created file still use it"
1737         done
1738         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1739 }
1740 run_test 27x "create files while OST0 is degraded"
1741
1742 test_27y() {
1743         [[ $OSTCOUNT -lt 2 ]] &&
1744                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1745         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1746         remote_ost_nodsh && skip "remote OST with nodsh" && return
1747         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1748
1749         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1750         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1751             osc.$mdtosc.prealloc_last_id)
1752         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1753             osc.$mdtosc.prealloc_next_id)
1754         local fcount=$((last_id - next_id))
1755         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1756         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1757
1758         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1759                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1760         local OST_DEACTIVE_IDX=-1
1761         local OSC
1762         local OSTIDX
1763         local OST
1764
1765         for OSC in $MDS_OSCS; do
1766                 OST=$(osc_to_ost $OSC)
1767                 OSTIDX=$(index_from_ostuuid $OST)
1768                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1769                         OST_DEACTIVE_IDX=$OSTIDX
1770                 fi
1771                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1772                         echo $OSC "is Deactivated:"
1773                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1774                 fi
1775         done
1776
1777         OSTIDX=$(index_from_ostuuid $OST)
1778         test_mkdir -p $DIR/$tdir
1779         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1780
1781         for OSC in $MDS_OSCS; do
1782                 OST=$(osc_to_ost $OSC)
1783                 OSTIDX=$(index_from_ostuuid $OST)
1784                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1785                         echo $OST "is degraded:"
1786                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1787                                                 obdfilter.$OST.degraded=1
1788                 fi
1789         done
1790
1791         sleep_maxage
1792         createmany -o $DIR/$tdir/$tfile $fcount
1793
1794         for OSC in $MDS_OSCS; do
1795                 OST=$(osc_to_ost $OSC)
1796                 OSTIDX=$(index_from_ostuuid $OST)
1797                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1798                         echo $OST "is recovered from degraded:"
1799                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1800                                                 obdfilter.$OST.degraded=0
1801                 else
1802                         do_facet $SINGLEMDS lctl --device %$OSC activate
1803                 fi
1804         done
1805
1806         # all osp devices get activated, hence -1 stripe count restored
1807         local stripecnt=0
1808
1809         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1810         # devices get activated.
1811         sleep_maxage
1812         $SETSTRIPE -c -1 $DIR/$tfile
1813         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1814         rm -f $DIR/$tfile
1815         [ $stripecnt -ne $OSTCOUNT ] &&
1816                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1817         return 0
1818 }
1819 run_test 27y "create files while OST0 is degraded and the rest inactive"
1820
1821 check_seq_oid()
1822 {
1823         log "check file $1"
1824
1825         lmm_count=$($GETSTRIPE -c $1)
1826         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1827         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1828
1829         local old_ifs="$IFS"
1830         IFS=$'[:]'
1831         fid=($($LFS path2fid $1))
1832         IFS="$old_ifs"
1833
1834         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1835         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1836
1837         # compare lmm_seq and lu_fid->f_seq
1838         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1839         # compare lmm_object_id and lu_fid->oid
1840         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1841
1842         # check the trusted.fid attribute of the OST objects of the file
1843         local have_obdidx=false
1844         local stripe_nr=0
1845         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1846                 # skip lines up to and including "obdidx"
1847                 [ -z "$obdidx" ] && break
1848                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1849                 $have_obdidx || continue
1850
1851                 local ost=$((obdidx + 1))
1852                 local dev=$(ostdevname $ost)
1853                 local oid_hex
1854
1855                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1856
1857                 seq=$(echo $seq | sed -e "s/^0x//g")
1858                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1859                         oid_hex=$(echo $oid)
1860                 else
1861                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1862                 fi
1863                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1864
1865                 local ff
1866                 #
1867                 # Don't unmount/remount the OSTs if we don't need to do that.
1868                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1869                 # update too, until that use mount/ll_decode_filter_fid/mount.
1870                 # Re-enable when debugfs will understand new filter_fid.
1871                 #
1872                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1873                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1874                                 $dev 2>/dev/null" | grep "parent=")
1875                 else
1876                         stop ost$ost
1877                         mount_fstype ost$ost
1878                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1879                                 $(facet_mntpt ost$ost)/$obj_file)
1880                         unmount_fstype ost$ost
1881                         start ost$ost $dev $OST_MOUNT_OPTS
1882                         clients_up
1883                 fi
1884
1885                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1886
1887                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1888
1889                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1890                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1891                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1892                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1893                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1894                 local ff_pstripe
1895                 if echo $ff_parent | grep -q 'stripe='; then
1896                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1897                 else
1898                         #
1899                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1900                         # into f_ver in this case.  See the comment on
1901                         # ff_parent.
1902                         #
1903                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1904                                 sed -e 's/\]//')
1905                 fi
1906
1907                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1908                 [ $ff_pseq = $lmm_seq ] ||
1909                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1910                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1911                 [ $ff_poid = $lmm_oid ] ||
1912                         error "FF parent OID $ff_poid != $lmm_oid"
1913                 (($ff_pstripe == $stripe_nr)) ||
1914                         error "FF stripe $ff_pstripe != $stripe_nr"
1915
1916                 stripe_nr=$((stripe_nr + 1))
1917         done
1918 }
1919
1920 test_27z() {
1921         remote_ost_nodsh && skip "remote OST with nodsh" && return
1922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1923         test_mkdir -p $DIR/$tdir
1924
1925         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1926                 { error "setstripe -c -1 failed"; return 1; }
1927         # We need to send a write to every object to get parent FID info set.
1928         # This _should_ also work for setattr, but does not currently.
1929         # touch $DIR/$tdir/$tfile-1 ||
1930         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1931                 { error "dd $tfile-1 failed"; return 2; }
1932         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1933                 { error "setstripe -c -1 failed"; return 3; }
1934         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1935                 { error "dd $tfile-2 failed"; return 4; }
1936
1937         # make sure write RPCs have been sent to OSTs
1938         sync; sleep 5; sync
1939
1940         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1941         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1942 }
1943 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1944
1945 test_27A() { # b=19102
1946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1947         local restore_size=$($GETSTRIPE -S $MOUNT)
1948         local restore_count=$($GETSTRIPE -c $MOUNT)
1949         local restore_offset=$($GETSTRIPE -i $MOUNT)
1950         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1951         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1952                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1953         local default_size=$($GETSTRIPE -S $MOUNT)
1954         local default_offset=$($GETSTRIPE -i $MOUNT)
1955         local dsize=$((1024 * 1024))
1956         [ $default_size -eq $dsize ] ||
1957                 error "stripe size $default_size != $dsize"
1958         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1959         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1960 }
1961 run_test 27A "check filesystem-wide default LOV EA values"
1962
1963 test_27B() { # LU-2523
1964         test_mkdir -p $DIR/$tdir
1965         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1966         touch $DIR/$tdir/f0
1967         # open f1 with O_LOV_DELAY_CREATE
1968         # rename f0 onto f1
1969         # call setstripe ioctl on open file descriptor for f1
1970         # close
1971         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1972                 $DIR/$tdir/f0
1973
1974         rm -f $DIR/$tdir/f1
1975         # open f1 with O_LOV_DELAY_CREATE
1976         # unlink f1
1977         # call setstripe ioctl on open file descriptor for f1
1978         # close
1979         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1980
1981         # Allow multiop to fail in imitation of NFS's busted semantics.
1982         true
1983 }
1984 run_test 27B "call setstripe on open unlinked file/rename victim"
1985
1986 test_27C() { #LU-2871
1987         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1988
1989         declare -a ost_idx
1990         local index
1991         local found
1992         local i
1993         local j
1994
1995         test_mkdir -p $DIR/$tdir
1996         cd $DIR/$tdir
1997         for i in $(seq 0 $((OSTCOUNT - 1))); do
1998                 # set stripe across all OSTs starting from OST$i
1999                 $SETSTRIPE -i $i -c -1 $tfile$i
2000                 # get striping information
2001                 ost_idx=($($GETSTRIPE $tfile$i |
2002                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2003                 echo ${ost_idx[@]}
2004
2005                 # check the layout
2006                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2007                         error "${#ost_idx[@]} != $OSTCOUNT"
2008
2009                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2010                         found=0
2011                         for j in $(echo ${ost_idx[@]}); do
2012                                 if [ $index -eq $j ]; then
2013                                         found=1
2014                                         break
2015                                 fi
2016                         done
2017                         [ $found = 1 ] ||
2018                                 error "Can not find $index in ${ost_idx[@]}"
2019                 done
2020         done
2021 }
2022 run_test 27C "check full striping across all OSTs"
2023
2024 test_27D() {
2025         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2026         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2027         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2028         local POOL=${POOL:-testpool}
2029         local first_ost=0
2030         local last_ost=$(($OSTCOUNT - 1))
2031         local ost_step=1
2032         local ost_list=$(seq $first_ost $ost_step $last_ost)
2033         local ost_range="$first_ost $last_ost $ost_step"
2034
2035         test_mkdir -p $DIR/$tdir
2036         pool_add $POOL || error "pool_add failed"
2037         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2038
2039         local skip27D
2040         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
2041                 skip27D = "-s 29"
2042         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2043                 error "llapi_layout_test failed"
2044
2045         cleanup_pools || error "cleanup_pools failed"
2046 }
2047 run_test 27D "validate llapi_layout API"
2048
2049 # Verify that default_easize is increased from its initial value after
2050 # accessing a widely striped file.
2051 test_27E() {
2052         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2053         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2054                 skip "client does not have LU-3338 fix" && return
2055
2056         # 72 bytes is the minimum space required to store striping
2057         # information for a file striped across one OST:
2058         # (sizeof(struct lov_user_md_v3) +
2059         #  sizeof(struct lov_user_ost_data_v1))
2060         local min_easize=72
2061         $LCTL set_param -n llite.*.default_easize $min_easize ||
2062                 error "lctl set_param failed"
2063         local easize=$($LCTL get_param -n llite.*.default_easize)
2064
2065         [ $easize -eq $min_easize ] ||
2066                 error "failed to set default_easize"
2067
2068         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2069                 error "setstripe failed"
2070         cat $DIR/$tfile
2071         rm $DIR/$tfile
2072
2073         easize=$($LCTL get_param -n llite.*.default_easize)
2074
2075         [ $easize -gt $min_easize ] ||
2076                 error "default_easize not updated"
2077 }
2078 run_test 27E "check that default extended attribute size properly increases"
2079
2080 test_27F() { # LU-5346/LU-7975
2081
2082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2083
2084         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2085                 skip "Need MDS version at least 2.8.51" && return
2086
2087         test_mkdir -p $DIR/$tdir
2088         rm -f $DIR/$tdir/f0
2089         $SETSTRIPE -c 2 $DIR/$tdir
2090
2091         # stop all OSTs to reproduce situation for LU-7975 ticket
2092         for num in $(seq $OSTCOUNT); do
2093                 stop ost$num
2094         done
2095
2096         # open/create f0 with O_LOV_DELAY_CREATE
2097         # truncate f0 to a non-0 size
2098         # close
2099         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2100
2101         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2102         # open/write it again to force delayed layout creation
2103         cat /etc/hosts > $DIR/$tdir/f0 &
2104         catpid=$!
2105
2106         # restart OSTs
2107         for num in $(seq $OSTCOUNT); do
2108                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2109                         error "ost$num failed to start"
2110         done
2111
2112         wait $catpid || error "cat failed"
2113
2114         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2115         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2116
2117 }
2118 run_test 27F "Client resend delayed layout creation with non-zero size"
2119
2120 # createtest also checks that device nodes are created and
2121 # then visible correctly (#2091)
2122 test_28() { # bug 2091
2123         test_mkdir $DIR/d28
2124         $CREATETEST $DIR/d28/ct || error
2125 }
2126 run_test 28 "create/mknod/mkdir with bad file types ============"
2127
2128 test_29() {
2129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2130         sync; sleep 1; sync # flush out any dirty pages from previous tests
2131         cancel_lru_locks
2132         test_mkdir $DIR/d29
2133         touch $DIR/d29/foo
2134         log 'first d29'
2135         ls -l $DIR/d29
2136
2137         declare -i LOCKCOUNTORIG=0
2138         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2139                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2140         done
2141         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2142
2143         declare -i LOCKUNUSEDCOUNTORIG=0
2144         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2145                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2146         done
2147
2148         log 'second d29'
2149         ls -l $DIR/d29
2150         log 'done'
2151
2152         declare -i LOCKCOUNTCURRENT=0
2153         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2154                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2155         done
2156
2157         declare -i LOCKUNUSEDCOUNTCURRENT=0
2158         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2159                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2160         done
2161
2162         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2163                 $LCTL set_param -n ldlm.dump_namespaces ""
2164                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2165                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2166                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2167                 return 2
2168         fi
2169         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2170                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2171                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2172                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2173                 return 3
2174         fi
2175 }
2176 run_test 29 "IT_GETATTR regression  ============================"
2177
2178 test_30a() { # was test_30
2179         cp $(which ls) $DIR || cp /bin/ls $DIR
2180         $DIR/ls / || error
2181         rm $DIR/ls
2182 }
2183 run_test 30a "execute binary from Lustre (execve) =============="
2184
2185 test_30b() {
2186         cp `which ls` $DIR || cp /bin/ls $DIR
2187         chmod go+rx $DIR/ls
2188         $RUNAS $DIR/ls / || error
2189         rm $DIR/ls
2190 }
2191 run_test 30b "execute binary from Lustre as non-root ==========="
2192
2193 test_30c() { # b=22376
2194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2195         cp `which ls` $DIR || cp /bin/ls $DIR
2196         chmod a-rw $DIR/ls
2197         cancel_lru_locks mdc
2198         cancel_lru_locks osc
2199         $RUNAS $DIR/ls / || error
2200         rm -f $DIR/ls
2201 }
2202 run_test 30c "execute binary from Lustre without read perms ===="
2203
2204 test_31a() {
2205         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2206         $CHECKSTAT -a $DIR/f31 || error
2207 }
2208 run_test 31a "open-unlink file =================================="
2209
2210 test_31b() {
2211         touch $DIR/f31 || error
2212         ln $DIR/f31 $DIR/f31b || error
2213         $MULTIOP $DIR/f31b Ouc || error
2214         $CHECKSTAT -t file $DIR/f31 || error
2215 }
2216 run_test 31b "unlink file with multiple links while open ======="
2217
2218 test_31c() {
2219         touch $DIR/f31 || error
2220         ln $DIR/f31 $DIR/f31c || error
2221         multiop_bg_pause $DIR/f31 O_uc || return 1
2222         MULTIPID=$!
2223         $MULTIOP $DIR/f31c Ouc
2224         kill -USR1 $MULTIPID
2225         wait $MULTIPID
2226 }
2227 run_test 31c "open-unlink file with multiple links ============="
2228
2229 test_31d() {
2230         opendirunlink $DIR/d31d $DIR/d31d || error
2231         $CHECKSTAT -a $DIR/d31d || error
2232 }
2233 run_test 31d "remove of open directory ========================="
2234
2235 test_31e() { # bug 2904
2236         openfilleddirunlink $DIR/d31e || error
2237 }
2238 run_test 31e "remove of open non-empty directory ==============="
2239
2240 test_31f() { # bug 4554
2241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2242         set -vx
2243         test_mkdir $DIR/d31f
2244         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2245         cp /etc/hosts $DIR/d31f
2246         ls -l $DIR/d31f
2247         $GETSTRIPE $DIR/d31f/hosts
2248         multiop_bg_pause $DIR/d31f D_c || return 1
2249         MULTIPID=$!
2250
2251         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2252         test_mkdir $DIR/d31f
2253         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2254         cp /etc/hosts $DIR/d31f
2255         ls -l $DIR/d31f
2256         $GETSTRIPE $DIR/d31f/hosts
2257         multiop_bg_pause $DIR/d31f D_c || return 1
2258         MULTIPID2=$!
2259
2260         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2261         wait $MULTIPID || error "first opendir $MULTIPID failed"
2262
2263         sleep 6
2264
2265         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2266         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2267         set +vx
2268 }
2269 run_test 31f "remove of open directory with open-unlink file ==="
2270
2271 test_31g() {
2272         echo "-- cross directory link --"
2273         test_mkdir -c1 $DIR/${tdir}ga
2274         test_mkdir -c1 $DIR/${tdir}gb
2275         touch $DIR/${tdir}ga/f
2276         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2277         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2278         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2279         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2280         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2281 }
2282 run_test 31g "cross directory link==============="
2283
2284 test_31h() {
2285         echo "-- cross directory link --"
2286         test_mkdir -c1 $DIR/${tdir}
2287         test_mkdir -c1 $DIR/${tdir}/dir
2288         touch $DIR/${tdir}/f
2289         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2290         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2291         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2292         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2293         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2294 }
2295 run_test 31h "cross directory link under child==============="
2296
2297 test_31i() {
2298         echo "-- cross directory link --"
2299         test_mkdir -c1 $DIR/$tdir
2300         test_mkdir -c1 $DIR/$tdir/dir
2301         touch $DIR/$tdir/dir/f
2302         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2303         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2304         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2305         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2306         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2307 }
2308 run_test 31i "cross directory link under parent==============="
2309
2310 test_31j() {
2311         test_mkdir -c1 -p $DIR/$tdir
2312         test_mkdir -c1 -p $DIR/$tdir/dir1
2313         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2314         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2315         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2316         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2317         return 0
2318 }
2319 run_test 31j "link for directory==============="
2320
2321 test_31k() {
2322         test_mkdir -c1 -p $DIR/$tdir
2323         touch $DIR/$tdir/s
2324         touch $DIR/$tdir/exist
2325         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2326         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2327         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2328         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2329         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2330         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2331         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2332         return 0
2333 }
2334 run_test 31k "link to file: the same, non-existing, dir==============="
2335
2336 test_31m() {
2337         mkdir $DIR/d31m
2338         touch $DIR/d31m/s
2339         mkdir $DIR/d31m2
2340         touch $DIR/d31m2/exist
2341         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2342         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2343         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2344         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2345         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2346         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2347         return 0
2348 }
2349 run_test 31m "link to file: the same, non-existing, dir==============="
2350
2351 test_31n() {
2352         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2353         nlink=$(stat --format=%h $DIR/$tfile)
2354         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2355         local fd=$(free_fd)
2356         local cmd="exec $fd<$DIR/$tfile"
2357         eval $cmd
2358         cmd="exec $fd<&-"
2359         trap "eval $cmd" EXIT
2360         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2361         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2362         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2363         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2364         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2365         eval $cmd
2366 }
2367 run_test 31n "check link count of unlinked file"
2368
2369 link_one() {
2370         local TEMPNAME=$(mktemp $1_XXXXXX)
2371         mlink $TEMPNAME $1 2> /dev/null &&
2372                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2373         munlink $TEMPNAME
2374 }
2375
2376 test_31o() { # LU-2901
2377         test_mkdir -p $DIR/$tdir
2378         for LOOP in $(seq 100); do
2379                 rm -f $DIR/$tdir/$tfile*
2380                 for THREAD in $(seq 8); do
2381                         link_one $DIR/$tdir/$tfile.$LOOP &
2382                 done
2383                 wait
2384                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2385                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2386                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2387                         break || true
2388         done
2389 }
2390 run_test 31o "duplicate hard links with same filename"
2391
2392 test_31p() {
2393         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2394
2395         test_mkdir $DIR/$tdir
2396         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2397         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2398
2399         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2400                 error "open unlink test1 failed"
2401         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2402                 error "open unlink test2 failed"
2403
2404         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2405                 error "test1 still exists"
2406         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2407                 error "test2 still exists"
2408 }
2409 run_test 31p "remove of open striped directory"
2410
2411 cleanup_test32_mount() {
2412         local rc=0
2413         trap 0
2414         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2415         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2416         losetup -d $loopdev || true
2417         rm -rf $DIR/$tdir/ext2-mountpoint
2418         return $rc
2419 }
2420
2421 test_32a() {
2422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2423         echo "== more mountpoints and symlinks ================="
2424         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2425         trap cleanup_test32_mount EXIT
2426         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2427         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2428         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2429         cleanup_test32_mount
2430 }
2431 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2432
2433 test_32b() {
2434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2435         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2436         trap cleanup_test32_mount EXIT
2437         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2438         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2439         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2440         cleanup_test32_mount
2441 }
2442 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2443
2444 test_32c() {
2445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2446         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2447         trap cleanup_test32_mount EXIT
2448         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2449         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2450         test_mkdir -p $DIR/$tdir/d2/test_dir
2451         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2452         cleanup_test32_mount
2453 }
2454 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2455
2456 test_32d() {
2457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2458         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2459         trap cleanup_test32_mount EXIT
2460         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2461         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2462         test_mkdir -p $DIR/$tdir/d2/test_dir
2463         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2464         cleanup_test32_mount
2465 }
2466 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2467
2468 test_32e() {
2469         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2470         test_mkdir -p $DIR/d32e/tmp
2471         TMP_DIR=$DIR/d32e/tmp
2472         ln -s $DIR/d32e $TMP_DIR/symlink11
2473         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2474         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2475         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2476 }
2477 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2478
2479 test_32f() {
2480         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2481         test_mkdir -p $DIR/d32f/tmp
2482         TMP_DIR=$DIR/d32f/tmp
2483         ln -s $DIR/d32f $TMP_DIR/symlink11
2484         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2485         ls $DIR/d32f/tmp/symlink11  || error
2486         ls $DIR/d32f/symlink01 || error
2487 }
2488 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2489
2490 test_32g() {
2491         TMP_DIR=$DIR/$tdir/tmp
2492         test_mkdir -p $DIR/$tdir/tmp
2493         test_mkdir $DIR/${tdir}2
2494         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2495         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2496         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2497         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2498         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2499         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2500 }
2501 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2502
2503 test_32h() {
2504         rm -fr $DIR/$tdir $DIR/${tdir}2
2505         TMP_DIR=$DIR/$tdir/tmp
2506         test_mkdir -p $DIR/$tdir/tmp
2507         test_mkdir $DIR/${tdir}2
2508         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2509         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2510         ls $TMP_DIR/symlink12 || error
2511         ls $DIR/$tdir/symlink02  || error
2512 }
2513 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2514
2515 test_32i() {
2516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2517         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2518         trap cleanup_test32_mount EXIT
2519         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2520         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2521         touch $DIR/$tdir/test_file
2522         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2523         cleanup_test32_mount
2524 }
2525 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2526
2527 test_32j() {
2528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2529         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2530         trap cleanup_test32_mount EXIT
2531         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2532         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2533         touch $DIR/$tdir/test_file
2534         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2535         cleanup_test32_mount
2536 }
2537 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2538
2539 test_32k() {
2540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2541         rm -fr $DIR/$tdir
2542         trap cleanup_test32_mount EXIT
2543         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2544         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2545         test_mkdir -p $DIR/$tdir/d2
2546         touch $DIR/$tdir/d2/test_file || error
2547         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2548         cleanup_test32_mount
2549 }
2550 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2551
2552 test_32l() {
2553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2554         rm -fr $DIR/$tdir
2555         trap cleanup_test32_mount EXIT
2556         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2557         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2558         test_mkdir -p $DIR/$tdir/d2
2559         touch $DIR/$tdir/d2/test_file
2560         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2561         cleanup_test32_mount
2562 }
2563 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2564
2565 test_32m() {
2566         rm -fr $DIR/d32m
2567         test_mkdir -p $DIR/d32m/tmp
2568         TMP_DIR=$DIR/d32m/tmp
2569         ln -s $DIR $TMP_DIR/symlink11
2570         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2571         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2572         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2573 }
2574 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2575
2576 test_32n() {
2577         rm -fr $DIR/d32n
2578         test_mkdir -p $DIR/d32n/tmp
2579         TMP_DIR=$DIR/d32n/tmp
2580         ln -s $DIR $TMP_DIR/symlink11
2581         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2582         ls -l $DIR/d32n/tmp/symlink11  || error
2583         ls -l $DIR/d32n/symlink01 || error
2584 }
2585 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2586
2587 test_32o() {
2588         touch $DIR/$tfile
2589         test_mkdir -p $DIR/d32o/tmp
2590         TMP_DIR=$DIR/d32o/tmp
2591         ln -s $DIR/$tfile $TMP_DIR/symlink12
2592         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2593         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2594         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2595         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2596         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2597 }
2598 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2599
2600 test_32p() {
2601     log 32p_1
2602         rm -fr $DIR/d32p
2603     log 32p_2
2604         rm -f $DIR/$tfile
2605     log 32p_3
2606         touch $DIR/$tfile
2607     log 32p_4
2608         test_mkdir -p $DIR/d32p/tmp
2609     log 32p_5
2610         TMP_DIR=$DIR/d32p/tmp
2611     log 32p_6
2612         ln -s $DIR/$tfile $TMP_DIR/symlink12
2613     log 32p_7
2614         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2615     log 32p_8
2616         cat $DIR/d32p/tmp/symlink12 || error
2617     log 32p_9
2618         cat $DIR/d32p/symlink02 || error
2619     log 32p_10
2620 }
2621 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2622
2623 cleanup_testdir_mount() {
2624         local rc=0
2625         trap 0
2626         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$/p')
2627         $UMOUNT $DIR/$tdir || rc=$?
2628         losetup -d $loopdev || true
2629         rm -rf $DIR/$tdir
2630         return $rc
2631 }
2632
2633 test_32q() {
2634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2635         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2636         trap cleanup_testdir_mount EXIT
2637         test_mkdir -p $DIR/$tdir
2638         touch $DIR/$tdir/under_the_mount
2639         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2640         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2641         cleanup_testdir_mount
2642 }
2643 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2644
2645 test_32r() {
2646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2647         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2648         trap cleanup_testdir_mount EXIT
2649         test_mkdir -p $DIR/$tdir
2650         touch $DIR/$tdir/under_the_mount
2651         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2652         ls $DIR/$tdir | grep -q under_the_mount && error || true
2653         cleanup_testdir_mount
2654 }
2655 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2656
2657 test_33aa() {
2658         rm -f $DIR/$tfile
2659         touch $DIR/$tfile
2660         chmod 444 $DIR/$tfile
2661         chown $RUNAS_ID $DIR/$tfile
2662         log 33_1
2663         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2664         log 33_2
2665 }
2666 run_test 33aa "write file with mode 444 (should return error) ===="
2667
2668 test_33a() {
2669         rm -fr $DIR/d33
2670         test_mkdir -p $DIR/d33
2671         chown $RUNAS_ID $DIR/d33
2672         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2673         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2674                 error "open RDWR" || true
2675 }
2676 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2677
2678 test_33b() {
2679         rm -fr $DIR/d33
2680         test_mkdir -p $DIR/d33
2681         chown $RUNAS_ID $DIR/d33
2682         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2683 }
2684 run_test 33b "test open file with malformed flags (No panic)"
2685
2686 test_33c() {
2687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2688         local ostnum
2689         local ostname
2690         local write_bytes
2691         local all_zeros
2692
2693         remote_ost_nodsh && skip "remote OST with nodsh" && return
2694         all_zeros=:
2695         rm -fr $DIR/d33
2696         test_mkdir -p $DIR/d33
2697         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2698
2699         sync
2700         for ostnum in $(seq $OSTCOUNT); do
2701                 # test-framework's OST numbering is one-based, while Lustre's
2702                 # is zero-based
2703                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2704                 # Parsing llobdstat's output sucks; we could grep the /proc
2705                 # path, but that's likely to not be as portable as using the
2706                 # llobdstat utility.  So we parse lctl output instead.
2707                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2708                         obdfilter/$ostname/stats |
2709                         awk '/^write_bytes/ {print $7}' )
2710                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2711                 if (( ${write_bytes:-0} > 0 ))
2712                 then
2713                         all_zeros=false
2714                         break;
2715                 fi
2716         done
2717
2718         $all_zeros || return 0
2719
2720         # Write four bytes
2721         echo foo > $DIR/d33/bar
2722         # Really write them
2723         sync
2724
2725         # Total up write_bytes after writing.  We'd better find non-zeros.
2726         for ostnum in $(seq $OSTCOUNT); do
2727                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2728                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2729                         obdfilter/$ostname/stats |
2730                         awk '/^write_bytes/ {print $7}' )
2731                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2732                 if (( ${write_bytes:-0} > 0 ))
2733                 then
2734                         all_zeros=false
2735                         break;
2736                 fi
2737         done
2738
2739         if $all_zeros
2740         then
2741                 for ostnum in $(seq $OSTCOUNT); do
2742                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2743                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2744                         do_facet ost$ostnum lctl get_param -n \
2745                                 obdfilter/$ostname/stats
2746                 done
2747                 error "OST not keeping write_bytes stats (b22312)"
2748         fi
2749 }
2750 run_test 33c "test llobdstat and write_bytes"
2751
2752 test_33d() {
2753         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2755         local MDTIDX=1
2756         local remote_dir=$DIR/$tdir/remote_dir
2757
2758         test_mkdir -p $DIR/$tdir
2759         $LFS mkdir -i $MDTIDX $remote_dir ||
2760                 error "create remote directory failed"
2761
2762         touch $remote_dir/$tfile
2763         chmod 444 $remote_dir/$tfile
2764         chown $RUNAS_ID $remote_dir/$tfile
2765
2766         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2767
2768         chown $RUNAS_ID $remote_dir
2769         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2770                                         error "create" || true
2771         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2772                                     error "open RDWR" || true
2773         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2774 }
2775 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2776
2777 test_33e() {
2778         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2779
2780         mkdir $DIR/$tdir
2781
2782         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2783         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2784         mkdir $DIR/$tdir/local_dir
2785
2786         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2787         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2788         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2789
2790         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2791                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2792
2793         rmdir $DIR/$tdir/* || error "rmdir failed"
2794
2795         umask 777
2796         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2797         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2798         mkdir $DIR/$tdir/local_dir
2799
2800         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2801         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2802         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2803
2804         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2805                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2806
2807         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2808
2809         umask 000
2810         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2811         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2812         mkdir $DIR/$tdir/local_dir
2813
2814         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2815         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2816         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2817
2818         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2819                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2820 }
2821 run_test 33e "mkdir and striped directory should have same mode"
2822
2823 cleanup_33f() {
2824         trap 0
2825         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2826 }
2827
2828 test_33f() {
2829         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2830         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2831
2832         mkdir $DIR/$tdir
2833         chmod go+rwx $DIR/$tdir
2834         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2835         trap cleanup_33f EXIT
2836
2837         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2838                 error "cannot create striped directory"
2839
2840         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2841                 error "cannot create files in striped directory"
2842
2843         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2844                 error "cannot remove files in striped directory"
2845
2846         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2847                 error "cannot remove striped directory"
2848
2849         cleanup_33f
2850 }
2851 run_test 33f "nonroot user can create, access, and remove a striped directory"
2852
2853 test_33g() {
2854         mkdir -p $DIR/$tdir/dir2
2855
2856         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2857         echo $err
2858         [[ $err =~ "exists" ]] || error "Not exists error"
2859 }
2860 run_test 33g "nonroot user create already existing root created file"
2861
2862 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2863 test_34a() {
2864         rm -f $DIR/f34
2865         $MCREATE $DIR/f34 || error
2866         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2867         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2868         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2869         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2870 }
2871 run_test 34a "truncate file that has not been opened ==========="
2872
2873 test_34b() {
2874         [ ! -f $DIR/f34 ] && test_34a
2875         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2876         $OPENFILE -f O_RDONLY $DIR/f34
2877         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2878         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2879 }
2880 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2881
2882 test_34c() {
2883         [ ! -f $DIR/f34 ] && test_34a
2884         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2885         $OPENFILE -f O_RDWR $DIR/f34
2886         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2887         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2888 }
2889 run_test 34c "O_RDWR opening file-with-size works =============="
2890
2891 test_34d() {
2892         [ ! -f $DIR/f34 ] && test_34a
2893         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2894         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2895         rm $DIR/f34
2896 }
2897 run_test 34d "write to sparse file ============================="
2898
2899 test_34e() {
2900         rm -f $DIR/f34e
2901         $MCREATE $DIR/f34e || error
2902         $TRUNCATE $DIR/f34e 1000 || error
2903         $CHECKSTAT -s 1000 $DIR/f34e || error
2904         $OPENFILE -f O_RDWR $DIR/f34e
2905         $CHECKSTAT -s 1000 $DIR/f34e || error
2906 }
2907 run_test 34e "create objects, some with size and some without =="
2908
2909 test_34f() { # bug 6242, 6243
2910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2911         SIZE34F=48000
2912         rm -f $DIR/f34f
2913         $MCREATE $DIR/f34f || error
2914         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2915         dd if=$DIR/f34f of=$TMP/f34f
2916         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2917         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2918         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2919         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2920         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2921 }
2922 run_test 34f "read from a file with no objects until EOF ======="
2923
2924 test_34g() {
2925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2926         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2927         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2928         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2929         cancel_lru_locks osc
2930         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2931                 error "wrong size after lock cancel"
2932
2933         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2934         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2935                 error "expanding truncate failed"
2936         cancel_lru_locks osc
2937         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2938                 error "wrong expanded size after lock cancel"
2939 }
2940 run_test 34g "truncate long file ==============================="
2941
2942 test_34h() {
2943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2944         local gid=10
2945         local sz=1000
2946
2947         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2948         sync # Flush the cache so that multiop below does not block on cache
2949              # flush when getting the group lock
2950         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2951         MULTIPID=$!
2952
2953         # Since just timed wait is not good enough, let's do a sync write
2954         # that way we are sure enough time for a roundtrip + processing
2955         # passed + 2 seconds of extra margin.
2956         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2957         rm $DIR/${tfile}-1
2958         sleep 2
2959
2960         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2961                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2962                 kill -9 $MULTIPID
2963         fi
2964         wait $MULTIPID
2965         local nsz=`stat -c %s $DIR/$tfile`
2966         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2967 }
2968 run_test 34h "ftruncate file under grouplock should not block"
2969
2970 test_35a() {
2971         cp /bin/sh $DIR/f35a
2972         chmod 444 $DIR/f35a
2973         chown $RUNAS_ID $DIR/f35a
2974         $RUNAS $DIR/f35a && error || true
2975         rm $DIR/f35a
2976 }
2977 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2978
2979 test_36a() {
2980         rm -f $DIR/f36
2981         utime $DIR/f36 || error
2982 }
2983 run_test 36a "MDS utime check (mknod, utime) ==================="
2984
2985 test_36b() {
2986         echo "" > $DIR/f36
2987         utime $DIR/f36 || error
2988 }
2989 run_test 36b "OST utime check (open, utime) ===================="
2990
2991 test_36c() {
2992         rm -f $DIR/d36/f36
2993         test_mkdir $DIR/d36
2994         chown $RUNAS_ID $DIR/d36
2995         $RUNAS utime $DIR/d36/f36 || error
2996 }
2997 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2998
2999 test_36d() {
3000         [ ! -d $DIR/d36 ] && test_36c
3001         echo "" > $DIR/d36/f36
3002         $RUNAS utime $DIR/d36/f36 || error
3003 }
3004 run_test 36d "non-root OST utime check (open, utime) ==========="
3005
3006 test_36e() {
3007         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3008         test_mkdir -p $DIR/$tdir
3009         touch $DIR/$tdir/$tfile
3010         $RUNAS utime $DIR/$tdir/$tfile && \
3011                 error "utime worked, expected failure" || true
3012 }
3013 run_test 36e "utime on non-owned file (should return error) ===="
3014
3015 subr_36fh() {
3016         local fl="$1"
3017         local LANG_SAVE=$LANG
3018         local LC_LANG_SAVE=$LC_LANG
3019         export LANG=C LC_LANG=C # for date language
3020
3021         DATESTR="Dec 20  2000"
3022         test_mkdir -p $DIR/$tdir
3023         lctl set_param fail_loc=$fl
3024         date; date +%s
3025         cp /etc/hosts $DIR/$tdir/$tfile
3026         sync & # write RPC generated with "current" inode timestamp, but delayed
3027         sleep 1
3028         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3029         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3030         cancel_lru_locks osc
3031         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3032         date; date +%s
3033         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3034                 echo "BEFORE: $LS_BEFORE" && \
3035                 echo "AFTER : $LS_AFTER" && \
3036                 echo "WANT  : $DATESTR" && \
3037                 error "$DIR/$tdir/$tfile timestamps changed" || true
3038
3039         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3040 }
3041
3042 test_36f() {
3043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3044         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3045         subr_36fh "0x80000214"
3046 }
3047 run_test 36f "utime on file racing with OST BRW write =========="
3048
3049 test_36g() {
3050         remote_ost_nodsh && skip "remote OST with nodsh" && return
3051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3052         local fmd_max_age
3053         local fmd_before
3054         local fmd_after
3055
3056         test_mkdir -p $DIR/$tdir
3057         fmd_max_age=$(do_facet ost1 \
3058                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3059                 head -n 1")
3060
3061         fmd_before=$(do_facet ost1 \
3062                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3063         touch $DIR/$tdir/$tfile
3064         sleep $((fmd_max_age + 12))
3065         fmd_after=$(do_facet ost1 \
3066                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3067
3068         echo "fmd_before: $fmd_before"
3069         echo "fmd_after: $fmd_after"
3070         [[ $fmd_after -gt $fmd_before ]] &&
3071                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3072                 error "fmd didn't expire after ping" || true
3073 }
3074 run_test 36g "filter mod data cache expiry ====================="
3075
3076 test_36h() {
3077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3078         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3079         subr_36fh "0x80000227"
3080 }
3081 run_test 36h "utime on file racing with OST BRW write =========="
3082
3083 test_36i() {
3084         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3085
3086         test_mkdir $DIR/$tdir
3087         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3088
3089         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3090         local new_mtime=$((mtime + 200))
3091
3092         #change Modify time of striped dir
3093         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3094                         error "change mtime failed"
3095
3096         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3097
3098         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3099 }
3100 run_test 36i "change mtime on striped directory"
3101
3102 # test_37 - duplicate with tests 32q 32r
3103
3104 test_38() {
3105         local file=$DIR/$tfile
3106         touch $file
3107         openfile -f O_DIRECTORY $file
3108         local RC=$?
3109         local ENOTDIR=20
3110         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3111         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3112 }
3113 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3114
3115 test_39() {
3116         touch $DIR/$tfile
3117         touch $DIR/${tfile}2
3118 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3119 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3120 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3121         sleep 2
3122         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3123         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3124                 echo "mtime"
3125                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3126                 echo "atime"
3127                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3128                 echo "ctime"
3129                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3130                 error "O_TRUNC didn't change timestamps"
3131         fi
3132 }
3133 run_test 39 "mtime changed on create ==========================="
3134
3135 test_39b() {
3136         test_mkdir -p -c1 $DIR/$tdir
3137         cp -p /etc/passwd $DIR/$tdir/fopen
3138         cp -p /etc/passwd $DIR/$tdir/flink
3139         cp -p /etc/passwd $DIR/$tdir/funlink
3140         cp -p /etc/passwd $DIR/$tdir/frename
3141         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3142
3143         sleep 1
3144         echo "aaaaaa" >> $DIR/$tdir/fopen
3145         echo "aaaaaa" >> $DIR/$tdir/flink
3146         echo "aaaaaa" >> $DIR/$tdir/funlink
3147         echo "aaaaaa" >> $DIR/$tdir/frename
3148
3149         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3150         local link_new=`stat -c %Y $DIR/$tdir/flink`
3151         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3152         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3153
3154         cat $DIR/$tdir/fopen > /dev/null
3155         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3156         rm -f $DIR/$tdir/funlink2
3157         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3158
3159         for (( i=0; i < 2; i++ )) ; do
3160                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3161                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3162                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3163                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3164
3165                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3166                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3167                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3168                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3169
3170                 cancel_lru_locks osc
3171                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3172         done
3173 }
3174 run_test 39b "mtime change on open, link, unlink, rename  ======"
3175
3176 # this should be set to past
3177 TEST_39_MTIME=`date -d "1 year ago" +%s`
3178
3179 # bug 11063
3180 test_39c() {
3181         touch $DIR1/$tfile
3182         sleep 2
3183         local mtime0=`stat -c %Y $DIR1/$tfile`
3184
3185         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3186         local mtime1=`stat -c %Y $DIR1/$tfile`
3187         [ "$mtime1" = $TEST_39_MTIME ] || \
3188                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3189
3190         local d1=`date +%s`
3191         echo hello >> $DIR1/$tfile
3192         local d2=`date +%s`
3193         local mtime2=`stat -c %Y $DIR1/$tfile`
3194         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3195                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3196
3197         mv $DIR1/$tfile $DIR1/$tfile-1
3198
3199         for (( i=0; i < 2; i++ )) ; do
3200                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3201                 [ "$mtime2" = "$mtime3" ] || \
3202                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3203
3204                 cancel_lru_locks osc
3205                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3206         done
3207 }
3208 run_test 39c "mtime change on rename ==========================="
3209
3210 # bug 21114
3211 test_39d() {
3212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3213         touch $DIR1/$tfile
3214
3215         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3216
3217         for (( i=0; i < 2; i++ )) ; do
3218                 local mtime=`stat -c %Y $DIR1/$tfile`
3219                 [ $mtime = $TEST_39_MTIME ] || \
3220                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3221
3222                 cancel_lru_locks osc
3223                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3224         done
3225 }
3226 run_test 39d "create, utime, stat =============================="
3227
3228 # bug 21114
3229 test_39e() {
3230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3231         touch $DIR1/$tfile
3232         local mtime1=`stat -c %Y $DIR1/$tfile`
3233
3234         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3235
3236         for (( i=0; i < 2; i++ )) ; do
3237                 local mtime2=`stat -c %Y $DIR1/$tfile`
3238                 [ $mtime2 = $TEST_39_MTIME ] || \
3239                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3240
3241                 cancel_lru_locks osc
3242                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3243         done
3244 }
3245 run_test 39e "create, stat, utime, stat ========================"
3246
3247 # bug 21114
3248 test_39f() {
3249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3250         touch $DIR1/$tfile
3251         mtime1=`stat -c %Y $DIR1/$tfile`
3252
3253         sleep 2
3254         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3255
3256         for (( i=0; i < 2; i++ )) ; do
3257                 local mtime2=`stat -c %Y $DIR1/$tfile`
3258                 [ $mtime2 = $TEST_39_MTIME ] || \
3259                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3260
3261                 cancel_lru_locks osc
3262                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3263         done
3264 }
3265 run_test 39f "create, stat, sleep, utime, stat ================="
3266
3267 # bug 11063
3268 test_39g() {
3269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3270         echo hello >> $DIR1/$tfile
3271         local mtime1=`stat -c %Y $DIR1/$tfile`
3272
3273         sleep 2
3274         chmod o+r $DIR1/$tfile
3275
3276         for (( i=0; i < 2; i++ )) ; do
3277                 local mtime2=`stat -c %Y $DIR1/$tfile`
3278                 [ "$mtime1" = "$mtime2" ] || \
3279                         error "lost mtime: $mtime2, should be $mtime1"
3280
3281                 cancel_lru_locks osc
3282                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3283         done
3284 }
3285 run_test 39g "write, chmod, stat ==============================="
3286
3287 # bug 11063
3288 test_39h() {
3289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3290         touch $DIR1/$tfile
3291         sleep 1
3292
3293         local d1=`date`
3294         echo hello >> $DIR1/$tfile
3295         local mtime1=`stat -c %Y $DIR1/$tfile`
3296
3297         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3298         local d2=`date`
3299         if [ "$d1" != "$d2" ]; then
3300                 echo "write and touch not within one second"
3301         else
3302                 for (( i=0; i < 2; i++ )) ; do
3303                         local mtime2=`stat -c %Y $DIR1/$tfile`
3304                         [ "$mtime2" = $TEST_39_MTIME ] || \
3305                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3306
3307                         cancel_lru_locks osc
3308                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3309                 done
3310         fi
3311 }
3312 run_test 39h "write, utime within one second, stat ============="
3313
3314 test_39i() {
3315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3316         touch $DIR1/$tfile
3317         sleep 1
3318
3319         echo hello >> $DIR1/$tfile
3320         local mtime1=`stat -c %Y $DIR1/$tfile`
3321
3322         mv $DIR1/$tfile $DIR1/$tfile-1
3323
3324         for (( i=0; i < 2; i++ )) ; do
3325                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3326
3327                 [ "$mtime1" = "$mtime2" ] || \
3328                         error "lost mtime: $mtime2, should be $mtime1"
3329
3330                 cancel_lru_locks osc
3331                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3332         done
3333 }
3334 run_test 39i "write, rename, stat =============================="
3335
3336 test_39j() {
3337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3338         start_full_debug_logging
3339         touch $DIR1/$tfile
3340         sleep 1
3341
3342         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3343         lctl set_param fail_loc=0x80000412
3344         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3345                 error "multiop failed"
3346         local multipid=$!
3347         local mtime1=`stat -c %Y $DIR1/$tfile`
3348
3349         mv $DIR1/$tfile $DIR1/$tfile-1
3350
3351         kill -USR1 $multipid
3352         wait $multipid || error "multiop close failed"
3353
3354         for (( i=0; i < 2; i++ )) ; do
3355                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3356                 [ "$mtime1" = "$mtime2" ] ||
3357                         error "mtime is lost on close: $mtime2, " \
3358                               "should be $mtime1"
3359
3360                 cancel_lru_locks osc
3361                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3362         done
3363         lctl set_param fail_loc=0
3364         stop_full_debug_logging
3365 }
3366 run_test 39j "write, rename, close, stat ======================="
3367
3368 test_39k() {
3369         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3370         touch $DIR1/$tfile
3371         sleep 1
3372
3373         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3374         local multipid=$!
3375         local mtime1=`stat -c %Y $DIR1/$tfile`
3376
3377         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3378
3379         kill -USR1 $multipid
3380         wait $multipid || error "multiop close failed"
3381
3382         for (( i=0; i < 2; i++ )) ; do
3383                 local mtime2=`stat -c %Y $DIR1/$tfile`
3384
3385                 [ "$mtime2" = $TEST_39_MTIME ] || \
3386                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3387
3388                 cancel_lru_locks osc
3389                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3390         done
3391 }
3392 run_test 39k "write, utime, close, stat ========================"
3393
3394 # this should be set to future
3395 TEST_39_ATIME=`date -d "1 year" +%s`
3396
3397 test_39l() {
3398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3399         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3400         local atime_diff=$(do_facet $SINGLEMDS \
3401                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3402         rm -rf $DIR/$tdir
3403         mkdir -p $DIR/$tdir
3404
3405         # test setting directory atime to future
3406         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3407         local atime=$(stat -c %X $DIR/$tdir)
3408         [ "$atime" = $TEST_39_ATIME ] ||
3409                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3410
3411         # test setting directory atime from future to now
3412         local now=$(date +%s)
3413         touch -a -d @$now $DIR/$tdir
3414
3415         atime=$(stat -c %X $DIR/$tdir)
3416         [ "$atime" -eq "$now"  ] ||
3417                 error "atime is not updated from future: $atime, $now"
3418
3419         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3420         sleep 3
3421
3422         # test setting directory atime when now > dir atime + atime_diff
3423         local d1=$(date +%s)
3424         ls $DIR/$tdir
3425         local d2=$(date +%s)
3426         cancel_lru_locks mdc
3427         atime=$(stat -c %X $DIR/$tdir)
3428         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3429                 error "atime is not updated  : $atime, should be $d2"
3430
3431         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3432         sleep 3
3433
3434         # test not setting directory atime when now < dir atime + atime_diff
3435         ls $DIR/$tdir
3436         cancel_lru_locks mdc
3437         atime=$(stat -c %X $DIR/$tdir)
3438         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3439                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3440
3441         do_facet $SINGLEMDS \
3442                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3443 }
3444 run_test 39l "directory atime update ==========================="
3445
3446 test_39m() {
3447         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3448         touch $DIR1/$tfile
3449         sleep 2
3450         local far_past_mtime=$(date -d "May 29 1953" +%s)
3451         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3452
3453         touch -m -d @$far_past_mtime $DIR1/$tfile
3454         touch -a -d @$far_past_atime $DIR1/$tfile
3455
3456         for (( i=0; i < 2; i++ )) ; do
3457                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3458                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3459                         error "atime or mtime set incorrectly"
3460
3461                 cancel_lru_locks osc
3462                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3463         done
3464 }
3465 run_test 39m "test atime and mtime before 1970"
3466
3467 test_39n() { # LU-3832
3468         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3469         local atime_diff=$(do_facet $SINGLEMDS \
3470                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3471         local atime0
3472         local atime1
3473         local atime2
3474
3475         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3476
3477         rm -rf $DIR/$tfile
3478         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3479         atime0=$(stat -c %X $DIR/$tfile)
3480
3481         sleep 5
3482         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3483         atime1=$(stat -c %X $DIR/$tfile)
3484
3485         sleep 5
3486         cancel_lru_locks mdc
3487         cancel_lru_locks osc
3488         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3489         atime2=$(stat -c %X $DIR/$tfile)
3490
3491         do_facet $SINGLEMDS \
3492                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3493
3494         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3495         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3496 }
3497 run_test 39n "check that O_NOATIME is honored"
3498
3499 test_39o() {
3500         TESTDIR=$DIR/$tdir/$tfile
3501         [ -e $TESTDIR ] && rm -rf $TESTDIR
3502         mkdir -p $TESTDIR
3503         cd $TESTDIR
3504         links1=2
3505         ls
3506         mkdir a b
3507         ls
3508         links2=$(stat -c %h .)
3509         [ $(($links1 + 2)) != $links2 ] &&
3510                 error "wrong links count $(($links1 + 2)) != $links2"
3511         rmdir b
3512         links3=$(stat -c %h .)
3513         [ $(($links1 + 1)) != $links3 ] &&
3514                 error "wrong links count $links1 != $links3"
3515         return 0
3516 }
3517 run_test 39o "directory cached attributes updated after create ========"
3518
3519 test_39p() {
3520         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3521         local MDTIDX=1
3522         TESTDIR=$DIR/$tdir/$tfile
3523         [ -e $TESTDIR ] && rm -rf $TESTDIR
3524         test_mkdir -p $TESTDIR
3525         cd $TESTDIR
3526         links1=2
3527         ls
3528         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3529         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3530         ls
3531         links2=$(stat -c %h .)
3532         [ $(($links1 + 2)) != $links2 ] &&
3533                 error "wrong links count $(($links1 + 2)) != $links2"
3534         rmdir remote_dir2
3535         links3=$(stat -c %h .)
3536         [ $(($links1 + 1)) != $links3 ] &&
3537                 error "wrong links count $links1 != $links3"
3538         return 0
3539 }
3540 run_test 39p "remote directory cached attributes updated after create ========"
3541
3542
3543 test_39q() { # LU-8041
3544         local testdir=$DIR/$tdir
3545         mkdir -p $testdir
3546         multiop_bg_pause $testdir D_c || error "multiop failed"
3547         local multipid=$!
3548         cancel_lru_locks mdc
3549         kill -USR1 $multipid
3550         local atime=$(stat -c %X $testdir)
3551         [ "$atime" -ne 0 ] || error "atime is zero"
3552 }
3553 run_test 39q "close won't zero out atime"
3554
3555 test_40() {
3556         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3557         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3558                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3559         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3560                 error "$tfile is not 4096 bytes in size"
3561 }
3562 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3563
3564 test_41() {
3565         # bug 1553
3566         small_write $DIR/f41 18
3567 }
3568 run_test 41 "test small file write + fstat ====================="
3569
3570 count_ost_writes() {
3571         lctl get_param -n osc.*.stats |
3572                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3573                         END { printf("%0.0f", writes) }'
3574 }
3575
3576 # decent default
3577 WRITEBACK_SAVE=500
3578 DIRTY_RATIO_SAVE=40
3579 MAX_DIRTY_RATIO=50
3580 BG_DIRTY_RATIO_SAVE=10
3581 MAX_BG_DIRTY_RATIO=25
3582
3583 start_writeback() {
3584         trap 0
3585         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3586         # dirty_ratio, dirty_background_ratio
3587         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3588                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3589                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3590                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3591         else
3592                 # if file not here, we are a 2.4 kernel
3593                 kill -CONT `pidof kupdated`
3594         fi
3595 }
3596
3597 stop_writeback() {
3598         # setup the trap first, so someone cannot exit the test at the
3599         # exact wrong time and mess up a machine
3600         trap start_writeback EXIT
3601         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3602         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3603                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3604                 sysctl -w vm.dirty_writeback_centisecs=0
3605                 sysctl -w vm.dirty_writeback_centisecs=0
3606                 # save and increase /proc/sys/vm/dirty_ratio
3607                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3608                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3609                 # save and increase /proc/sys/vm/dirty_background_ratio
3610                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3611                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3612         else
3613                 # if file not here, we are a 2.4 kernel
3614                 kill -STOP `pidof kupdated`
3615         fi
3616 }
3617
3618 # ensure that all stripes have some grant before we test client-side cache
3619 setup_test42() {
3620         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3621                 dd if=/dev/zero of=$i bs=4k count=1
3622                 rm $i
3623         done
3624 }
3625
3626 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3627 # file truncation, and file removal.
3628 test_42a() {
3629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3630         setup_test42
3631         cancel_lru_locks osc
3632         stop_writeback
3633         sync; sleep 1; sync # just to be safe
3634         BEFOREWRITES=`count_ost_writes`
3635         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3636         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3637         AFTERWRITES=`count_ost_writes`
3638         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3639                 error "$BEFOREWRITES < $AFTERWRITES"
3640         start_writeback
3641 }
3642 run_test 42a "ensure that we don't flush on close =============="
3643
3644 test_42b() {
3645         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3646         setup_test42
3647         cancel_lru_locks osc
3648         stop_writeback
3649         sync
3650         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3651         BEFOREWRITES=$(count_ost_writes)
3652         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3653         AFTERWRITES=$(count_ost_writes)
3654         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3655                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3656         fi
3657         BEFOREWRITES=$(count_ost_writes)
3658         sync || error "sync: $?"
3659         AFTERWRITES=$(count_ost_writes)
3660         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3661                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3662         fi
3663         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3664         start_writeback
3665         return 0
3666 }
3667 run_test 42b "test destroy of file with cached dirty data ======"
3668
3669 # if these tests just want to test the effect of truncation,
3670 # they have to be very careful.  consider:
3671 # - the first open gets a {0,EOF}PR lock
3672 # - the first write conflicts and gets a {0, count-1}PW
3673 # - the rest of the writes are under {count,EOF}PW
3674 # - the open for truncate tries to match a {0,EOF}PR
3675 #   for the filesize and cancels the PWs.
3676 # any number of fixes (don't get {0,EOF} on open, match
3677 # composite locks, do smarter file size management) fix
3678 # this, but for now we want these tests to verify that
3679 # the cancellation with truncate intent works, so we
3680 # start the file with a full-file pw lock to match against
3681 # until the truncate.
3682 trunc_test() {
3683         test=$1
3684         file=$DIR/$test
3685         offset=$2
3686         cancel_lru_locks osc
3687         stop_writeback
3688         # prime the file with 0,EOF PW to match
3689         touch $file
3690         $TRUNCATE $file 0
3691         sync; sync
3692         # now the real test..
3693         dd if=/dev/zero of=$file bs=1024 count=100
3694         BEFOREWRITES=`count_ost_writes`
3695         $TRUNCATE $file $offset
3696         cancel_lru_locks osc
3697         AFTERWRITES=`count_ost_writes`
3698         start_writeback
3699 }
3700
3701 test_42c() {
3702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3703         trunc_test 42c 1024
3704         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3705             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3706         rm $file
3707 }
3708 run_test 42c "test partial truncate of file with cached dirty data"
3709
3710 test_42d() {
3711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3712         trunc_test 42d 0
3713         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3714             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3715         rm $file
3716 }
3717 run_test 42d "test complete truncate of file with cached dirty data"
3718
3719 test_42e() { # bug22074
3720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3721         local TDIR=$DIR/${tdir}e
3722         local pagesz=$(page_size)
3723         local pages=16 # hardcoded 16 pages, don't change it.
3724         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3725         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3726         local max_dirty_mb
3727         local warmup_files
3728
3729         test_mkdir -p $DIR/${tdir}e
3730         $SETSTRIPE -c 1 $TDIR
3731         createmany -o $TDIR/f $files
3732
3733         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3734
3735         # we assume that with $OSTCOUNT files, at least one of them will
3736         # be allocated on OST0.
3737         warmup_files=$((OSTCOUNT * max_dirty_mb))
3738         createmany -o $TDIR/w $warmup_files
3739
3740         # write a large amount of data into one file and sync, to get good
3741         # avail_grant number from OST.
3742         for ((i=0; i<$warmup_files; i++)); do
3743                 idx=$($GETSTRIPE -i $TDIR/w$i)
3744                 [ $idx -ne 0 ] && continue
3745                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3746                 break
3747         done
3748         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3749         sync
3750         $LCTL get_param $proc_osc0/cur_dirty_bytes
3751         $LCTL get_param $proc_osc0/cur_grant_bytes
3752
3753         # create as much dirty pages as we can while not to trigger the actual
3754         # RPCs directly. but depends on the env, VFS may trigger flush during this
3755         # period, hopefully we are good.
3756         for ((i=0; i<$warmup_files; i++)); do
3757                 idx=$($GETSTRIPE -i $TDIR/w$i)
3758                 [ $idx -ne 0 ] && continue
3759                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3760         done
3761         $LCTL get_param $proc_osc0/cur_dirty_bytes
3762         $LCTL get_param $proc_osc0/cur_grant_bytes
3763
3764         # perform the real test
3765         $LCTL set_param $proc_osc0/rpc_stats 0
3766         for ((;i<$files; i++)); do
3767                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3768                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3769         done
3770         sync
3771         $LCTL get_param $proc_osc0/rpc_stats
3772
3773         local percent=0
3774         local have_ppr=false
3775         $LCTL get_param $proc_osc0/rpc_stats |
3776                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3777                         # skip lines until we are at the RPC histogram data
3778                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3779                         $have_ppr || continue
3780
3781                         # we only want the percent stat for < 16 pages
3782                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3783
3784                         percent=$((percent + WPCT))
3785                         if [[ $percent -gt 15 ]]; then
3786                                 error "less than 16-pages write RPCs" \
3787                                       "$percent% > 15%"
3788                                 break
3789                         fi
3790                 done
3791         rm -rf $TDIR
3792 }
3793 run_test 42e "verify sub-RPC writes are not done synchronously"
3794
3795 test_43() {
3796         test_mkdir -p $DIR/$tdir
3797         cp -p /bin/ls $DIR/$tdir/$tfile
3798         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3799         pid=$!
3800         # give multiop a chance to open
3801         sleep 1
3802
3803         $DIR/$tdir/$tfile && error || true
3804         kill -USR1 $pid
3805 }
3806 run_test 43 "execution of file opened for write should return -ETXTBSY"
3807
3808 test_43a() {
3809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3810         test_mkdir -p $DIR/$tdir
3811         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3812                         cp -p multiop $DIR/$tdir/multiop
3813         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3814                         return 1
3815         MULTIOP_PID=$!
3816         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3817         kill -USR1 $MULTIOP_PID || return 2
3818         wait $MULTIOP_PID || return 3
3819         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3820 }
3821 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3822
3823 test_43b() {
3824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3825         test_mkdir -p $DIR/$tdir
3826         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3827                         cp -p multiop $DIR/$tdir/multiop
3828         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3829                         return 1
3830         MULTIOP_PID=$!
3831         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3832         kill -USR1 $MULTIOP_PID || return 2
3833         wait $MULTIOP_PID || return 3
3834         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3835 }
3836 run_test 43b "truncate of file being executed should return -ETXTBSY"
3837
3838 test_43c() {
3839         local testdir="$DIR/$tdir"
3840         test_mkdir -p $DIR/$tdir
3841         cp $SHELL $testdir/
3842         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3843                 ( cd $testdir && md5sum -c)
3844 }
3845 run_test 43c "md5sum of copy into lustre========================"
3846
3847 test_44() {
3848         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3849         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3850         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3851 }
3852 run_test 44 "zero length read from a sparse stripe ============="
3853
3854 test_44a() {
3855         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3856                 awk '{ print $2 }')
3857         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3858         [[ $nstripe -gt $OSTCOUNT ]] &&
3859             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3860             return
3861         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3862                 awk '{ print $2 }')
3863         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3864                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3865                         awk '{ print $2 }')
3866         fi
3867
3868         OFFSETS="0 $((stride/2)) $((stride-1))"
3869         for offset in $OFFSETS; do
3870                 for i in $(seq 0 $((nstripe-1))); do
3871                         local GLOBALOFFSETS=""
3872                         # size in Bytes
3873                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3874                         local myfn=$DIR/d44a-$size
3875                         echo "--------writing $myfn at $size"
3876                         ll_sparseness_write $myfn $size ||
3877                                 error "ll_sparseness_write"
3878                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3879                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3880                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3881
3882                         for j in $(seq 0 $((nstripe-1))); do
3883                                 # size in Bytes
3884                                 size=$((((j + $nstripe )*$stride + $offset)))
3885                                 ll_sparseness_write $myfn $size ||
3886                                         error "ll_sparseness_write"
3887                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3888                         done
3889                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3890                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3891                         rm -f $myfn
3892                 done
3893         done
3894 }
3895 run_test 44a "test sparse pwrite ==============================="
3896
3897 dirty_osc_total() {
3898         tot=0
3899         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3900                 tot=$(($tot + $d))
3901         done
3902         echo $tot
3903 }
3904 do_dirty_record() {
3905         before=`dirty_osc_total`
3906         echo executing "\"$*\""
3907         eval $*
3908         after=`dirty_osc_total`
3909         echo before $before, after $after
3910 }
3911 test_45() {
3912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3913         f="$DIR/f45"
3914         # Obtain grants from OST if it supports it
3915         echo blah > ${f}_grant
3916         stop_writeback
3917         sync
3918         do_dirty_record "echo blah > $f"
3919         [[ $before -eq $after ]] && error "write wasn't cached"
3920         do_dirty_record "> $f"
3921         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3922         do_dirty_record "echo blah > $f"
3923         [[ $before -eq $after ]] && error "write wasn't cached"
3924         do_dirty_record "sync"
3925         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3926         do_dirty_record "echo blah > $f"
3927         [[ $before -eq $after ]] && error "write wasn't cached"
3928         do_dirty_record "cancel_lru_locks osc"
3929         [[ $before -gt $after ]] ||
3930                 error "lock cancellation didn't lower dirty count"
3931         start_writeback
3932 }
3933 run_test 45 "osc io page accounting ============================"
3934
3935 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3936 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3937 # objects offset and an assert hit when an rpc was built with 1023's mapped
3938 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3939 test_46() {
3940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3941         f="$DIR/f46"
3942         stop_writeback
3943         sync
3944         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3945         sync
3946         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3947         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3948         sync
3949         start_writeback
3950 }
3951 run_test 46 "dirtying a previously written page ================"
3952
3953 # test_47 is removed "Device nodes check" is moved to test_28
3954
3955 test_48a() { # bug 2399
3956         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3957         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3958                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3959                 return
3960         test_mkdir $DIR/$tdir
3961         cd $DIR/$tdir
3962         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3963         test_mkdir $DIR/$tdir || error "recreate directory failed"
3964         touch foo || error "'touch foo' failed after recreating cwd"
3965         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3966         touch .foo || error "'touch .foo' failed after recreating cwd"
3967         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3968         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3969         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3970         cd . || error "'cd .' failed after recreating cwd"
3971         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3972         rmdir . && error "'rmdir .' worked after recreating cwd"
3973         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3974         cd .. || error "'cd ..' failed after recreating cwd"
3975 }
3976 run_test 48a "Access renamed working dir (should return errors)="
3977
3978 test_48b() { # bug 2399
3979         rm -rf $DIR/$tdir
3980         test_mkdir $DIR/$tdir
3981         cd $DIR/$tdir
3982         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3983         touch foo && error "'touch foo' worked after removing cwd"
3984         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3985         touch .foo && error "'touch .foo' worked after removing cwd"
3986         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3987         ls . > /dev/null && error "'ls .' worked after removing cwd"
3988         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3989         test_mkdir . && error "'mkdir .' worked after removing cwd"
3990         rmdir . && error "'rmdir .' worked after removing cwd"
3991         ln -s . foo && error "'ln -s .' worked after removing cwd"
3992         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3993 }
3994 run_test 48b "Access removed working dir (should return errors)="
3995
3996 test_48c() { # bug 2350
3997         #lctl set_param debug=-1
3998         #set -vx
3999         rm -rf $DIR/$tdir
4000         test_mkdir -p $DIR/$tdir/dir
4001         cd $DIR/$tdir/dir
4002         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4003         $TRACE touch foo && error "touch foo worked after removing cwd"
4004         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4005         touch .foo && error "touch .foo worked after removing cwd"
4006         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4007         $TRACE ls . && error "'ls .' worked after removing cwd"
4008         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4009         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4010         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4011         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4012         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4013 }
4014 run_test 48c "Access removed working subdir (should return errors)"
4015
4016 test_48d() { # bug 2350
4017         #lctl set_param debug=-1
4018         #set -vx
4019         rm -rf $DIR/$tdir
4020         test_mkdir -p $DIR/$tdir/dir
4021         cd $DIR/$tdir/dir
4022         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4023         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4024         $TRACE touch foo && error "'touch foo' worked after removing parent"
4025         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4026         touch .foo && error "'touch .foo' worked after removing parent"
4027         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4028         $TRACE ls . && error "'ls .' worked after removing parent"
4029         $TRACE ls .. && error "'ls ..' worked after removing parent"
4030         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4031         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4032         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4033         true
4034 }
4035 run_test 48d "Access removed parent subdir (should return errors)"
4036
4037 test_48e() { # bug 4134
4038         #lctl set_param debug=-1
4039         #set -vx
4040         rm -rf $DIR/$tdir
4041         test_mkdir -p $DIR/$tdir/dir
4042         cd $DIR/$tdir/dir
4043         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4044         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4045         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4046         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4047         # On a buggy kernel addition of "touch foo" after cd .. will
4048         # produce kernel oops in lookup_hash_it
4049         touch ../foo && error "'cd ..' worked after recreate parent"
4050         cd $DIR
4051         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4052 }
4053 run_test 48e "Access to recreated parent subdir (should return errors)"
4054
4055 test_49() { # LU-1030
4056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4057         remote_ost_nodsh && skip "remote OST with nodsh" && return
4058         # get ost1 size - lustre-OST0000
4059         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4060                 awk '{ print $4 }')
4061         # write 800M at maximum
4062         [[ $ost1_size -lt 2 ]] && ost1_size=2
4063         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4064
4065         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4066         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4067         local dd_pid=$!
4068
4069         # change max_pages_per_rpc while writing the file
4070         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4071         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4072         # loop until dd process exits
4073         while ps ax -opid | grep -wq $dd_pid; do
4074                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4075                 sleep $((RANDOM % 5 + 1))
4076         done
4077         # restore original max_pages_per_rpc
4078         $LCTL set_param $osc1_mppc=$orig_mppc
4079         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4080 }
4081 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4082
4083 test_50() {
4084         # bug 1485
4085         test_mkdir $DIR/$tdir
4086         cd $DIR/$tdir
4087         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4088 }
4089 run_test 50 "special situations: /proc symlinks  ==============="
4090
4091 test_51a() {    # was test_51
4092         # bug 1516 - create an empty entry right after ".." then split dir
4093         test_mkdir -c1 $DIR/$tdir
4094         touch $DIR/$tdir/foo
4095         $MCREATE $DIR/$tdir/bar
4096         rm $DIR/$tdir/foo
4097         createmany -m $DIR/$tdir/longfile 201
4098         FNUM=202
4099         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4100                 $MCREATE $DIR/$tdir/longfile$FNUM
4101                 FNUM=$(($FNUM + 1))
4102                 echo -n "+"
4103         done
4104         echo
4105         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4106 }
4107 run_test 51a "special situations: split htree with empty entry =="
4108
4109 cleanup_print_lfs_df () {
4110         trap 0
4111         $LFS df
4112         $LFS df -i
4113 }
4114
4115 test_51b() {
4116         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4117         local dir=$DIR/$tdir
4118
4119         local nrdirs=$((65536 + 100))
4120
4121         # cleanup the directory
4122         rm -fr $dir
4123
4124         test_mkdir -p -c1 $dir
4125
4126         $LFS df
4127         $LFS df -i
4128         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4129         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4130         [[ $numfree -lt $nrdirs ]] &&
4131                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4132                 return
4133
4134         # need to check free space for the directories as well
4135         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4136         numfree=$(( blkfree / $(fs_inode_ksize) ))
4137         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4138                 return
4139
4140         trap cleanup_print_lfsdf EXIT
4141
4142         # create files
4143         createmany -d $dir/d $nrdirs ||
4144                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4145
4146         # really created :
4147         nrdirs=$(ls -U $dir | wc -l)
4148
4149         # unlink all but 100 subdirectories, then check it still works
4150         local left=100
4151         local delete=$((nrdirs - left))
4152
4153         $LFS df
4154         $LFS df -i
4155
4156         # for ldiskfs the nlink count should be 1, but this is OSD specific
4157         # and so this is listed for informational purposes only
4158         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4159         unlinkmany -d $dir/d $delete ||
4160                 error "unlink of first $delete subdirs failed"
4161
4162         echo "nlink between: $(stat -c %h $dir)"
4163         local found=$(ls -U $dir | wc -l)
4164         [ $found -ne $left ] &&
4165                 error "can't find subdirs: found only $found, expected $left"
4166
4167         unlinkmany -d $dir/d $delete $left ||
4168                 error "unlink of second $left subdirs failed"
4169         # regardless of whether the backing filesystem tracks nlink accurately
4170         # or not, the nlink count shouldn't be more than "." and ".." here
4171         local after=$(stat -c %h $dir)
4172         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4173                 echo "nlink after: $after"
4174
4175         cleanup_print_lfs_df
4176 }
4177 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4178
4179 test_51d() {
4180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4181         [[ $OSTCOUNT -lt 3 ]] &&
4182                 skip_env "skipping test with few OSTs" && return
4183         test_mkdir -p $DIR/$tdir
4184         createmany -o $DIR/$tdir/t- 1000
4185         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4186         for N in $(seq 0 $((OSTCOUNT - 1))); do
4187                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4188                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4189                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4190                         '($1 == '$N') { objs += 1 } \
4191                         END { printf("%0.0f", objs) }')
4192                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4193         done
4194         unlinkmany $DIR/$tdir/t- 1000
4195
4196         NLAST=0
4197         for N in $(seq 1 $((OSTCOUNT - 1))); do
4198                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4199                         error "OST $N has less objects vs OST $NLAST" \
4200                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4201                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4202                         error "OST $N has less objects vs OST $NLAST" \
4203                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4204
4205                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4206                         error "OST $N has less #0 objects vs OST $NLAST" \
4207                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4208                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4209                         error "OST $N has less #0 objects vs OST $NLAST" \
4210                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4211                 NLAST=$N
4212         done
4213         rm -f $TMP/$tfile
4214 }
4215 run_test 51d "check object distribution"
4216
4217 test_51e() {
4218         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4219                 skip "Only applicable to ldiskfs-based MDTs"
4220                 return
4221         fi
4222
4223         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4224         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4225
4226         touch $DIR/$tdir/d0/foo
4227         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4228                 error "file exceed 65000 nlink limit!"
4229         unlinkmany $DIR/$tdir/d0/f- 65001
4230         return 0
4231 }
4232 run_test 51e "check file nlink limit"
4233
4234 test_52a() {
4235         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4236         test_mkdir -p $DIR/$tdir
4237         touch $DIR/$tdir/foo
4238         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4239         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4240         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4241         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4242         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4243                                         error "link worked"
4244         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4245         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4246         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4247                                                      error "lsattr"
4248         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4249         cp -r $DIR/$tdir $TMP/
4250         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4251 }
4252 run_test 52a "append-only flag test (should return errors)"
4253
4254 test_52b() {
4255         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4256         test_mkdir -p $DIR/$tdir
4257         touch $DIR/$tdir/foo
4258         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4259         cat test > $DIR/$tdir/foo && error "cat test worked"
4260         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4261         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4262         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4263                                         error "link worked"
4264         echo foo >> $DIR/$tdir/foo && error "echo worked"
4265         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4266         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4267         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4268         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4269                                                         error "lsattr"
4270         chattr -i $DIR/$tdir/foo || error "chattr failed"
4271
4272         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4273 }
4274 run_test 52b "immutable flag test (should return errors) ======="
4275
4276 test_53() {
4277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4278         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4279         remote_ost_nodsh && skip "remote OST with nodsh" && return
4280
4281         local param
4282         local param_seq
4283         local ostname
4284         local mds_last
4285         local mds_last_seq
4286         local ost_last
4287         local ost_last_seq
4288         local ost_last_id
4289         local ostnum
4290         local node
4291         local found=false
4292         local support_last_seq=true
4293
4294         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4295                 support_last_seq=false
4296
4297         # only test MDT0000
4298         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4299         local value
4300         for value in $(do_facet $SINGLEMDS \
4301                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4302                 param=$(echo ${value[0]} | cut -d "=" -f1)
4303                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4304
4305                 if $support_last_seq; then
4306                         param_seq=$(echo $param |
4307                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4308                         mds_last_seq=$(do_facet $SINGLEMDS \
4309                                        $LCTL get_param -n $param_seq)
4310                 fi
4311                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4312
4313                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4314                 node=$(facet_active_host ost$((ostnum+1)))
4315                 param="obdfilter.$ostname.last_id"
4316                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4317                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4318                         ost_last_id=$ost_last
4319
4320                         if $support_last_seq; then
4321                                 ost_last_id=$(echo $ost_last |
4322                                               awk -F':' '{print $2}' |
4323                                               sed -e "s/^0x//g")
4324                                 ost_last_seq=$(echo $ost_last |
4325                                                awk -F':' '{print $1}')
4326                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4327                         fi
4328
4329                         if [[ $ost_last_id != $mds_last ]]; then
4330                                 error "$ost_last_id != $mds_last"
4331                         else
4332                                 found=true
4333                                 break
4334                         fi
4335                 done
4336         done
4337         $found || error "can not match last_seq/last_id for $mdtosc"
4338         return 0
4339 }
4340 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4341
4342 test_54a() {
4343         $SOCKETSERVER $DIR/socket ||
4344                 error "$SOCKETSERVER $DIR/socket failed: $?"
4345         $SOCKETCLIENT $DIR/socket ||
4346                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4347         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4348 }
4349 run_test 54a "unix domain socket test =========================="
4350
4351 test_54b() {
4352         f="$DIR/f54b"
4353         mknod $f c 1 3
4354         chmod 0666 $f
4355         dd if=/dev/zero of=$f bs=$(page_size) count=1
4356 }
4357 run_test 54b "char device works in lustre ======================"
4358
4359 find_loop_dev() {
4360         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4361         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4362         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4363
4364         for i in $(seq 3 7); do
4365                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4366                 LOOPDEV=$LOOPBASE$i
4367                 LOOPNUM=$i
4368                 break
4369         done
4370 }
4371
4372 cleanup_54c() {
4373         local rc=0
4374         loopdev="$DIR/loop54c"
4375
4376         trap 0
4377         $UMOUNT $DIR/$tdir || rc=$?
4378         losetup -d $loopdev || true
4379         losetup -d $LOOPDEV || true
4380         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4381         return $rc
4382 }
4383
4384 test_54c() {
4385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4386         loopdev="$DIR/loop54c"
4387
4388         find_loop_dev
4389         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4390         trap cleanup_54c EXIT
4391         mknod $loopdev b 7 $LOOPNUM
4392         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4393         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4394         losetup $loopdev $DIR/$tfile ||
4395                 error "can't set up $loopdev for $DIR/$tfile"
4396         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4397         test_mkdir -p $DIR/$tdir
4398         mount -t ext2 $loopdev $DIR/$tdir ||
4399                 error "error mounting $loopdev on $DIR/$tdir"
4400         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4401                 error "dd write"
4402         df $DIR/$tdir
4403         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4404                 error "dd read"
4405         cleanup_54c
4406 }
4407 run_test 54c "block device works in lustre ====================="
4408
4409 test_54d() {
4410         f="$DIR/f54d"
4411         string="aaaaaa"
4412         mknod $f p
4413         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4414 }
4415 run_test 54d "fifo device works in lustre ======================"
4416
4417 test_54e() {
4418         f="$DIR/f54e"
4419         string="aaaaaa"
4420         cp -aL /dev/console $f
4421         echo $string > $f || error "echo $string to $f failed"
4422 }
4423 run_test 54e "console/tty device works in lustre ======================"
4424
4425 #The test_55 used to be iopen test and it was removed by bz#24037.
4426 #run_test 55 "check iopen_connect_dentry() ======================"
4427
4428 test_56a() {    # was test_56
4429         rm -rf $DIR/$tdir
4430         $SETSTRIPE -d $DIR
4431         test_mkdir -p $DIR/$tdir/dir
4432         NUMFILES=3
4433         NUMFILESx2=$(($NUMFILES * 2))
4434         for i in $(seq 1 $NUMFILES); do
4435                 touch $DIR/$tdir/file$i
4436                 touch $DIR/$tdir/dir/file$i
4437         done
4438
4439         # test lfs getstripe with --recursive
4440         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4441         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4442                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4443         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4444         [[ $FILENUM -eq $NUMFILES ]] ||
4445                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4446         echo "$GETSTRIPE --recursive passed."
4447
4448         # test lfs getstripe with file instead of dir
4449         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4450         [[ $FILENUM -eq 1 ]] ||
4451                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4452         echo "$GETSTRIPE file1 passed."
4453
4454         #test lfs getstripe with --verbose
4455         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4456                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4457                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4458         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4459                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4460
4461         #test lfs getstripe with -v prints lmm_fid
4462         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4463                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4464         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4465                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4466         echo "$GETSTRIPE --verbose passed."
4467
4468         #check for FID information
4469         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4470         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4471                        awk '/lmm_fid: / { print $2 }')
4472         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4473         [ "$fid1" != "$fid2" ] &&
4474                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4475         [ "$fid1" != "$fid3" ] &&
4476                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4477         echo "$GETSTRIPE --fid passed."
4478
4479         #test lfs getstripe with --obd
4480         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4481                 grep -q "unknown obduuid" ||
4482                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4483
4484         [[ $OSTCOUNT -lt 2 ]] &&
4485                 skip_env "skipping other $GETSTRIPE --obd test" && return
4486
4487         OSTIDX=1
4488         OBDUUID=$(ostuuid_from_index $OSTIDX)
4489         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4490         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4491         [[ $FOUND -eq $FILENUM ]] ||
4492                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4493         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4494                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4495                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4496                 error "$GETSTRIPE --obd: should not show file on other obd"
4497         echo "$GETSTRIPE --obd passed"
4498 }
4499 run_test 56a "check $GETSTRIPE"
4500
4501 test_56b() {
4502         test_mkdir $DIR/$tdir
4503         NUMDIRS=3
4504         for i in $(seq 1 $NUMDIRS); do
4505                 test_mkdir $DIR/$tdir/dir$i
4506         done
4507
4508         # test lfs getdirstripe default mode is non-recursion, which is
4509         # different from lfs getstripe
4510         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4511         [[ $dircnt -eq 1 ]] ||
4512                 error "$LFS getdirstripe: found $dircnt, not 1"
4513         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4514                 grep -c lmv_stripe_count)
4515         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4516                 error "$LFS getdirstripe --recursive: found $dircnt, \
4517                         not $((NUMDIRS + 1))"
4518 }
4519 run_test 56b "check $LFS getdirstripe"
4520
4521 NUMFILES=3
4522 NUMDIRS=3
4523 setup_56() {
4524         local LOCAL_NUMFILES="$1"
4525         local LOCAL_NUMDIRS="$2"
4526         local MKDIR_PARAMS="$3"
4527         local DIR_STRIPE_PARAMS="$4"
4528
4529         if [ ! -d "$TDIR" ] ; then
4530                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4531                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4532                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4533                         touch $TDIR/file$i
4534                 done
4535                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4536                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4537                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4538                                 touch $TDIR/dir$i/file$j
4539                         done
4540                 done
4541         fi
4542 }
4543
4544 setup_56_special() {
4545         LOCAL_NUMFILES=$1
4546         LOCAL_NUMDIRS=$2
4547         setup_56 $1 $2
4548         if [ ! -e "$TDIR/loop1b" ] ; then
4549                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4550                         mknod $TDIR/loop${i}b b 7 $i
4551                         mknod $TDIR/null${i}c c 1 3
4552                         ln -s $TDIR/file1 $TDIR/link${i}l
4553                 done
4554                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4555                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4556                         mknod $TDIR/dir$i/null${i}c c 1 3
4557                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4558                 done
4559         fi
4560 }
4561
4562 test_56g() {
4563         $SETSTRIPE -d $DIR
4564
4565         TDIR=$DIR/${tdir}g
4566         setup_56 $NUMFILES $NUMDIRS
4567
4568         EXPECTED=$(($NUMDIRS + 2))
4569         # test lfs find with -name
4570         for i in $(seq 1 $NUMFILES) ; do
4571                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4572                 [ $NUMS -eq $EXPECTED ] ||
4573                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4574                               "found $NUMS, expected $EXPECTED"
4575         done
4576 }
4577 run_test 56g "check lfs find -name ============================="
4578
4579 test_56h() {
4580         $SETSTRIPE -d $DIR
4581
4582         TDIR=$DIR/${tdir}g
4583         setup_56 $NUMFILES $NUMDIRS
4584
4585         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4586         # test lfs find with ! -name
4587         for i in $(seq 1 $NUMFILES) ; do
4588                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4589                 [ $NUMS -eq $EXPECTED ] ||
4590                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4591                               "found $NUMS, expected $EXPECTED"
4592         done
4593 }
4594 run_test 56h "check lfs find ! -name ============================="
4595
4596 test_56i() {
4597        tdir=${tdir}i
4598        test_mkdir -p $DIR/$tdir
4599        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4600        CMD="$LFIND -ost $UUID $DIR/$tdir"
4601        OUT=$($CMD)
4602        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4603 }
4604 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4605
4606 test_56j() {
4607         TDIR=$DIR/${tdir}g
4608         setup_56_special $NUMFILES $NUMDIRS
4609
4610         EXPECTED=$((NUMDIRS + 1))
4611         CMD="$LFIND -type d $TDIR"
4612         NUMS=$($CMD | wc -l)
4613         [ $NUMS -eq $EXPECTED ] ||
4614                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4615 }
4616 run_test 56j "check lfs find -type d ============================="
4617
4618 test_56k() {
4619         TDIR=$DIR/${tdir}g
4620         setup_56_special $NUMFILES $NUMDIRS
4621
4622         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4623         CMD="$LFIND -type f $TDIR"
4624         NUMS=$($CMD | wc -l)
4625         [ $NUMS -eq $EXPECTED ] ||
4626                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4627 }
4628 run_test 56k "check lfs find -type f ============================="
4629
4630 test_56l() {
4631         TDIR=$DIR/${tdir}g
4632         setup_56_special $NUMFILES $NUMDIRS
4633
4634         EXPECTED=$((NUMDIRS + NUMFILES))
4635         CMD="$LFIND -type b $TDIR"
4636         NUMS=$($CMD | wc -l)
4637         [ $NUMS -eq $EXPECTED ] ||
4638                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4639 }
4640 run_test 56l "check lfs find -type b ============================="
4641
4642 test_56m() {
4643         TDIR=$DIR/${tdir}g
4644         setup_56_special $NUMFILES $NUMDIRS
4645
4646         EXPECTED=$((NUMDIRS + NUMFILES))
4647         CMD="$LFIND -type c $TDIR"
4648         NUMS=$($CMD | wc -l)
4649         [ $NUMS -eq $EXPECTED ] ||
4650                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4651 }
4652 run_test 56m "check lfs find -type c ============================="
4653
4654 test_56n() {
4655         TDIR=$DIR/${tdir}g
4656         setup_56_special $NUMFILES $NUMDIRS
4657
4658         EXPECTED=$((NUMDIRS + NUMFILES))
4659         CMD="$LFIND -type l $TDIR"
4660         NUMS=$($CMD | wc -l)
4661         [ $NUMS -eq $EXPECTED ] ||
4662                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4663 }
4664 run_test 56n "check lfs find -type l ============================="
4665
4666 test_56o() {
4667         TDIR=$DIR/${tdir}o
4668         setup_56 $NUMFILES $NUMDIRS
4669         utime $TDIR/file1 > /dev/null || error "utime (1)"
4670         utime $TDIR/file2 > /dev/null || error "utime (2)"
4671         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4672         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4673         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4674         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4675
4676         EXPECTED=4
4677         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4678         [ $NUMS -eq $EXPECTED ] || \
4679                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4680
4681         EXPECTED=12
4682         CMD="$LFIND -mtime 0 $TDIR"
4683         NUMS=$($CMD | wc -l)
4684         [ $NUMS -eq $EXPECTED ] ||
4685                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4686 }
4687 run_test 56o "check lfs find -mtime for old files =========================="
4688
4689 test_56p() {
4690         [ $RUNAS_ID -eq $UID ] &&
4691                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4692
4693         TDIR=$DIR/${tdir}p
4694         setup_56 $NUMFILES $NUMDIRS
4695
4696         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4697         EXPECTED=$NUMFILES
4698         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4699         NUMS=$($CMD | wc -l)
4700         [ $NUMS -eq $EXPECTED ] || \
4701                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4702
4703         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4704         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4705         NUMS=$($CMD | wc -l)
4706         [ $NUMS -eq $EXPECTED ] || \
4707                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4708 }
4709 run_test 56p "check lfs find -uid and ! -uid ==============================="
4710
4711 test_56q() {
4712         [ $RUNAS_ID -eq $UID ] &&
4713                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4714
4715         TDIR=$DIR/${tdir}q
4716         setup_56 $NUMFILES $NUMDIRS
4717
4718         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4719
4720         EXPECTED=$NUMFILES
4721         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4722         NUMS=$($CMD | wc -l)
4723         [ $NUMS -eq $EXPECTED ] ||
4724                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4725
4726         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4727         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4728         NUMS=$($CMD | wc -l)
4729         [ $NUMS -eq $EXPECTED ] ||
4730                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4731 }
4732 run_test 56q "check lfs find -gid and ! -gid ==============================="
4733
4734 test_56r() {
4735         TDIR=$DIR/${tdir}r
4736         setup_56 $NUMFILES $NUMDIRS
4737
4738         EXPECTED=12
4739         CMD="$LFIND -size 0 -type f $TDIR"
4740         NUMS=$($CMD | wc -l)
4741         [ $NUMS -eq $EXPECTED ] ||
4742                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4743         EXPECTED=0
4744         CMD="$LFIND ! -size 0 -type f $TDIR"
4745         NUMS=$($CMD | wc -l)
4746         [ $NUMS -eq $EXPECTED ] ||
4747                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4748         echo "test" > $TDIR/$tfile
4749         echo "test2" > $TDIR/$tfile.2 && sync
4750         EXPECTED=1
4751         CMD="$LFIND -size 5 -type f $TDIR"
4752         NUMS=$($CMD | wc -l)
4753         [ $NUMS -eq $EXPECTED ] ||
4754                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4755         EXPECTED=1
4756         CMD="$LFIND -size +5 -type f $TDIR"
4757         NUMS=$($CMD | wc -l)
4758         [ $NUMS -eq $EXPECTED ] ||
4759                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4760         EXPECTED=2
4761         CMD="$LFIND -size +0 -type f $TDIR"
4762         NUMS=$($CMD | wc -l)
4763         [ $NUMS -eq $EXPECTED ] ||
4764                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4765         EXPECTED=2
4766         CMD="$LFIND ! -size -5 -type f $TDIR"
4767         NUMS=$($CMD | wc -l)
4768         [ $NUMS -eq $EXPECTED ] ||
4769                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4770         EXPECTED=12
4771         CMD="$LFIND -size -5 -type f $TDIR"
4772         NUMS=$($CMD | wc -l)
4773         [ $NUMS -eq $EXPECTED ] ||
4774                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4775 }
4776 run_test 56r "check lfs find -size works =========================="
4777
4778 test_56s() { # LU-611
4779         TDIR=$DIR/${tdir}s
4780         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4781
4782         if [[ $OSTCOUNT -gt 1 ]]; then
4783                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4784                 ONESTRIPE=4
4785                 EXTRA=4
4786         else
4787                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4788                 EXTRA=0
4789         fi
4790
4791         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4792         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4793         NUMS=$($CMD | wc -l)
4794         [ $NUMS -eq $EXPECTED ] || {
4795                 $GETSTRIPE -R $TDIR
4796                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4797         }
4798
4799         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4800         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4801         NUMS=$($CMD | wc -l)
4802         [ $NUMS -eq $EXPECTED ] || {
4803                 $GETSTRIPE -R $TDIR
4804                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4805         }
4806
4807         EXPECTED=$ONESTRIPE
4808         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4809         NUMS=$($CMD | wc -l)
4810         [ $NUMS -eq $EXPECTED ] || {
4811                 $GETSTRIPE -R $TDIR
4812                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4813         }
4814
4815         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4816         NUMS=$($CMD | wc -l)
4817         [ $NUMS -eq $EXPECTED ] || {
4818                 $GETSTRIPE -R $TDIR
4819                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4820         }
4821
4822         EXPECTED=0
4823         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4824         NUMS=$($CMD | wc -l)
4825         [ $NUMS -eq $EXPECTED ] || {
4826                 $GETSTRIPE -R $TDIR
4827                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4828         }
4829 }
4830 run_test 56s "check lfs find -stripe-count works"
4831
4832 test_56t() { # LU-611
4833         TDIR=$DIR/${tdir}t
4834         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4835
4836         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4837
4838         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4839         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4840         NUMS=$($CMD | wc -l)
4841         [ $NUMS -eq $EXPECTED ] ||
4842                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4843
4844         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4845         NUMS=$($CMD | wc -l)
4846         [ $NUMS -eq $EXPECTED ] ||
4847                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4848
4849         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4850         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4851         NUMS=$($CMD | wc -l)
4852         [ $NUMS -eq $EXPECTED ] ||
4853                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4854
4855         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4856         NUMS=$($CMD | wc -l)
4857         [ $NUMS -eq $EXPECTED ] ||
4858                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4859
4860         EXPECTED=4
4861         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4862         NUMS=$($CMD | wc -l)
4863         [ $NUMS -eq $EXPECTED ] ||
4864                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4865
4866         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4867         NUMS=$($CMD | wc -l)
4868         [ $NUMS -eq $EXPECTED ] ||
4869                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4870
4871         EXPECTED=0
4872         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4873         NUMS=$($CMD | wc -l)
4874         [ $NUMS -eq $EXPECTED ] ||
4875                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4876 }
4877 run_test 56t "check lfs find -stripe-size works"
4878
4879 test_56u() { # LU-611
4880         TDIR=$DIR/${tdir}u
4881         setup_56 $NUMFILES $NUMDIRS "-i 0"
4882
4883         if [[ $OSTCOUNT -gt 1 ]]; then
4884                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4885                 ONESTRIPE=4
4886         else
4887                 ONESTRIPE=0
4888         fi
4889
4890         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4891         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4892         NUMS=$($CMD | wc -l)
4893         [ $NUMS -eq $EXPECTED ] ||
4894                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4895
4896         EXPECTED=$ONESTRIPE
4897         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4898         NUMS=$($CMD | wc -l)
4899         [ $NUMS -eq $EXPECTED ] ||
4900                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4901
4902         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4903         NUMS=$($CMD | wc -l)
4904         [ $NUMS -eq $EXPECTED ] ||
4905                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4906
4907         EXPECTED=0
4908         # This should produce an error and not return any files
4909         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4910         NUMS=$($CMD 2>/dev/null | wc -l)
4911         [ $NUMS -eq $EXPECTED ] ||
4912                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4913
4914         if [[ $OSTCOUNT -gt 1 ]]; then
4915                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4916                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4917                 NUMS=$($CMD | wc -l)
4918                 [ $NUMS -eq $EXPECTED ] ||
4919                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4920         fi
4921 }
4922 run_test 56u "check lfs find -stripe-index works"
4923
4924 test_56v() {
4925     local MDT_IDX=0
4926
4927     TDIR=$DIR/${tdir}v
4928     rm -rf $TDIR
4929     setup_56 $NUMFILES $NUMDIRS
4930
4931     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4932     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4933
4934     for file in $($LFIND -mdt $UUID $TDIR); do
4935         file_mdt_idx=$($GETSTRIPE -M $file)
4936         [ $file_mdt_idx -eq $MDT_IDX ] ||
4937             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4938     done
4939 }
4940 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4941
4942 test_56w() {
4943         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4944                 return
4945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4946         TDIR=$DIR/${tdir}w
4947
4948     rm -rf $TDIR || error "remove $TDIR failed"
4949     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4950
4951     local stripe_size
4952     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4953         error "$GETSTRIPE -S -d $TDIR failed"
4954     stripe_size=${stripe_size%% *}
4955
4956     local file_size=$((stripe_size * OSTCOUNT))
4957     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4958     local required_space=$((file_num * file_size))
4959
4960     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4961                         head -n1)
4962     [[ $free_space -le $((required_space / 1024)) ]] &&
4963         skip_env "need at least $required_space bytes free space," \
4964                  "have $free_space kbytes" && return
4965
4966     local dd_bs=65536
4967     local dd_count=$((file_size / dd_bs))
4968
4969     # write data into the files
4970     local i
4971     local j
4972     local file
4973     for i in $(seq 1 $NUMFILES); do
4974         file=$TDIR/file$i
4975         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4976             error "write data into $file failed"
4977     done
4978     for i in $(seq 1 $NUMDIRS); do
4979         for j in $(seq 1 $NUMFILES); do
4980             file=$TDIR/dir$i/file$j
4981             yes | dd bs=$dd_bs count=$dd_count of=$file \
4982                 >/dev/null 2>&1 ||
4983                 error "write data into $file failed"
4984         done
4985     done
4986
4987     local expected=-1
4988     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4989
4990     # lfs_migrate file
4991     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4992     echo "$cmd"
4993     eval $cmd || error "$cmd failed"
4994
4995     check_stripe_count $TDIR/file1 $expected
4996
4997         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4998         then
4999                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5000                 # OST 1 if it is on OST 0. This file is small enough to
5001                 # be on only one stripe.
5002                 file=$TDIR/migr_1_ost
5003                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5004                         error "write data into $file failed"
5005                 local obdidx=$($LFS getstripe -i $file)
5006                 local oldmd5=$(md5sum $file)
5007                 local newobdidx=0
5008                 [[ $obdidx -eq 0 ]] && newobdidx=1
5009                 cmd="$LFS migrate -i $newobdidx $file"
5010                 echo $cmd
5011                 eval $cmd || error "$cmd failed"
5012                 local realobdix=$($LFS getstripe -i $file)
5013                 local newmd5=$(md5sum $file)
5014                 [[ $newobdidx -ne $realobdix ]] &&
5015                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5016                 [[ "$oldmd5" != "$newmd5" ]] &&
5017                         error "md5sum differ: $oldmd5, $newmd5"
5018         fi
5019
5020     # lfs_migrate dir
5021     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5022     echo "$cmd"
5023     eval $cmd || error "$cmd failed"
5024
5025     for j in $(seq 1 $NUMFILES); do
5026         check_stripe_count $TDIR/dir1/file$j $expected
5027     done
5028
5029     # lfs_migrate works with lfs find
5030     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5031          $LFS_MIGRATE -y -c $expected"
5032     echo "$cmd"
5033     eval $cmd || error "$cmd failed"
5034
5035     for i in $(seq 2 $NUMFILES); do
5036         check_stripe_count $TDIR/file$i $expected
5037     done
5038     for i in $(seq 2 $NUMDIRS); do
5039         for j in $(seq 1 $NUMFILES); do
5040             check_stripe_count $TDIR/dir$i/file$j $expected
5041         done
5042     done
5043 }
5044 run_test 56w "check lfs_migrate -c stripe_count works"
5045
5046 test_56x() {
5047         check_swap_layouts_support && return 0
5048         [[ $OSTCOUNT -lt 2 ]] &&
5049                 skip_env "need 2 OST, skipping test" && return
5050
5051         local dir0=$DIR/$tdir/$testnum
5052         test_mkdir -p $dir0 || error "creating dir $dir0"
5053
5054         local ref1=/etc/passwd
5055         local file1=$dir0/file1
5056
5057         $SETSTRIPE -c 2 $file1
5058         cp $ref1 $file1
5059         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5060         stripe=$($GETSTRIPE -c $file1)
5061         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5062         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5063
5064         # clean up
5065         rm -f $file1
5066 }
5067 run_test 56x "lfs migration support"
5068
5069 test_56xa() {
5070         check_swap_layouts_support && return 0
5071         [[ $OSTCOUNT -lt 2 ]] &&
5072                 skip_env "need 2 OST, skipping test" && return
5073
5074         local dir0=$DIR/$tdir/$testnum
5075         test_mkdir -p $dir0 || error "creating dir $dir0"
5076
5077         local ref1=/etc/passwd
5078         local file1=$dir0/file1
5079
5080         $SETSTRIPE -c 2 $file1
5081         cp $ref1 $file1
5082         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5083         local stripe=$($GETSTRIPE -c $file1)
5084         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5085         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5086
5087         # clean up
5088         rm -f $file1
5089 }
5090 run_test 56xa "lfs migration --block support"
5091
5092 test_56y() {
5093         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5094                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5095                 return
5096
5097         local res=""
5098         local dir0=$DIR/$tdir/$testnum
5099         test_mkdir -p $dir0 || error "creating dir $dir0"
5100         local f1=$dir0/file1
5101         local f2=$dir0/file2
5102
5103         touch $f1 || error "creating std file $f1"
5104         $MULTIOP $f2 H2c || error "creating released file $f2"
5105
5106         # a directory can be raid0, so ask only for files
5107         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5108         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5109
5110         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5111         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5112
5113         # only files can be released, so no need to force file search
5114         res=$($LFIND $dir0 -L released)
5115         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5116
5117         res=$($LFIND $dir0 \! -L released)
5118         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5119
5120 }
5121 run_test 56y "lfs find -L raid0|released"
5122
5123 test_56z() { # LU-4824
5124         # This checks to make sure 'lfs find' continues after errors
5125         # There are two classes of errors that should be caught:
5126         # - If multiple paths are provided, all should be searched even if one
5127         #   errors out
5128         # - If errors are encountered during the search, it should not terminate
5129         #   early
5130         local i
5131         test_mkdir $DIR/$tdir
5132         for i in d{0..9}; do
5133                 test_mkdir $DIR/$tdir/$i
5134         done
5135         touch $DIR/$tdir/d{0..9}/$tfile
5136         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5137                 error "$LFS find did not return an error"
5138         # Make a directory unsearchable. This should NOT be the last entry in
5139         # directory order.  Arbitrarily pick the 6th entry
5140         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5141         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5142         # The user should be able to see 10 directories and 9 files
5143         [ $count == 19 ] || error "$LFS find did not continue after error"
5144 }
5145 run_test 56z "lfs find should continue after an error"
5146
5147 test_56aa() { # LU-5937
5148         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5149
5150         mkdir $DIR/$tdir
5151         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5152
5153         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5154         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5155
5156         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5157 }
5158 run_test 56aa "lfs find --size under striped dir"
5159
5160 test_57a() {
5161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5162         # note test will not do anything if MDS is not local
5163         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5164                 skip "Only applicable to ldiskfs-based MDTs"
5165                 return
5166         fi
5167
5168         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5169         local MNTDEV="osd*.*MDT*.mntdev"
5170         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5171         [ -z "$DEV" ] && error "can't access $MNTDEV"
5172         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5173                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5174                         error "can't access $DEV"
5175                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5176                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5177                 rm $TMP/t57a.dump
5178         done
5179 }
5180 run_test 57a "verify MDS filesystem created with large inodes =="
5181
5182 test_57b() {
5183         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5184         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5185                 skip "Only applicable to ldiskfs-based MDTs"
5186                 return
5187         fi
5188
5189         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5190         local dir=$DIR/$tdir
5191
5192         local FILECOUNT=100
5193         local FILE1=$dir/f1
5194         local FILEN=$dir/f$FILECOUNT
5195
5196         rm -rf $dir || error "removing $dir"
5197         test_mkdir -p -c1 $dir || error "creating $dir"
5198         local mdtidx=$($LFS getstripe -M $dir)
5199         local mdtname=MDT$(printf %04x $mdtidx)
5200         local facet=mds$((mdtidx + 1))
5201
5202         echo "mcreating $FILECOUNT files"
5203         createmany -m $dir/f 1 $FILECOUNT || \
5204                 error "creating files in $dir"
5205
5206         # verify that files do not have EAs yet
5207         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5208         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5209
5210         sync
5211         sleep 1
5212         df $dir  #make sure we get new statfs data
5213         local MDSFREE=$(do_facet $facet \
5214                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5215         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5216         echo "opening files to create objects/EAs"
5217         local FILE
5218         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5219                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5220         done
5221
5222         # verify that files have EAs now
5223         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5224         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5225
5226         sleep 1  #make sure we get new statfs data
5227         df $dir
5228         local MDSFREE2=$(do_facet $facet \
5229                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5230         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5231         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5232                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5233                         error "MDC before $MDCFREE != after $MDCFREE2"
5234                 else
5235                         echo "MDC before $MDCFREE != after $MDCFREE2"
5236                         echo "unable to confirm if MDS has large inodes"
5237                 fi
5238         fi
5239         rm -rf $dir
5240 }
5241 run_test 57b "default LOV EAs are stored inside large inodes ==="
5242
5243 test_58() {
5244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5245         [ -z "$(which wiretest 2>/dev/null)" ] &&
5246                         skip_env "could not find wiretest" && return
5247         wiretest
5248 }
5249 run_test 58 "verify cross-platform wire constants =============="
5250
5251 test_59() {
5252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5253         echo "touch 130 files"
5254         createmany -o $DIR/f59- 130
5255         echo "rm 130 files"
5256         unlinkmany $DIR/f59- 130
5257         sync
5258         # wait for commitment of removal
5259         wait_delete_completed
5260 }
5261 run_test 59 "verify cancellation of llog records async ========="
5262
5263 TEST60_HEAD="test_60 run $RANDOM"
5264 test_60a() {
5265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5266         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5267         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5268                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5269                         skip_env "missing subtest run-llog.sh" && return
5270
5271         log "$TEST60_HEAD - from kernel mode"
5272         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5273         do_facet mgs sh run-llog.sh
5274         do_facet mgs $LCTL dk > $TMP/$tfile
5275
5276         # LU-6388: test llog_reader
5277         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5278         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5279         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5280                         skip_env "missing llog_reader" && return
5281         local fstype=$(facet_fstype mgs)
5282         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5283                 skip_env "Only for ldiskfs or zfs type mgs" && return
5284
5285         local mntpt=$(facet_mntpt mgs)
5286         local mgsdev=$(mgsdevname 1)
5287         local fid_list
5288         local fid
5289         local rec_list
5290         local rec
5291         local rec_type
5292         local obj_file
5293         local path
5294         local seq
5295         local oid
5296         local pass=true
5297
5298         #get fid and record list
5299         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5300                 tail -n 4))
5301         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5302                 tail -n 4))
5303         #remount mgs as ldiskfs or zfs type
5304         stop mgs || error "stop mgs failed"
5305         mount_fstype mgs || error "remount mgs failed"
5306         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5307                 fid=${fid_list[i]}
5308                 rec=${rec_list[i]}
5309                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5310                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5311                 oid=$((16#$oid))
5312
5313                 case $fstype in
5314                         ldiskfs )
5315                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5316                         zfs )
5317                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5318                 esac
5319                 echo "obj_file is $obj_file"
5320                 do_facet mgs $llog_reader $obj_file
5321
5322                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5323                         awk '{ print $3 }' | sed -e "s/^type=//g")
5324                 if [ $rec_type != $rec ]; then
5325                         echo "FAILED test_60a wrong record type $rec_type," \
5326                               "should be $rec"
5327                         pass=false
5328                         break
5329                 fi
5330
5331                 #check obj path if record type is LLOG_LOGID_MAGIC
5332                 if [ "$rec" == "1064553b" ]; then
5333                         path=$(do_facet mgs $llog_reader $obj_file |
5334                                 grep "path=" | awk '{ print $NF }' |
5335                                 sed -e "s/^path=//g")
5336                         if [ $obj_file != $mntpt/$path ]; then
5337                                 echo "FAILED test_60a wrong obj path" \
5338                                       "$montpt/$path, should be $obj_file"
5339                                 pass=false
5340                                 break
5341                         fi
5342                 fi
5343         done
5344         rm -f $TMP/$tfile
5345         #restart mgs before "error", otherwise it will block the next test
5346         stop mgs || error "stop mgs failed"
5347         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5348         $pass || error "test failed, see FAILED test_60a messages for specifics"
5349 }
5350 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5351
5352 test_60b() { # bug 6411
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         dmesg > $DIR/$tfile
5355         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5356                                 /llog.test/ {
5357                                         if (marker)
5358                                                 from_marker++
5359                                         from_begin++
5360                                 }
5361                                 END {
5362                                         if (marker)
5363                                                 print from_marker
5364                                         else
5365                                                 print from_begin
5366                                 }")
5367         [[ $LLOG_COUNT -gt 100 ]] &&
5368                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5369 }
5370 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5371
5372 test_60c() {
5373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5374         echo "create 5000 files"
5375         createmany -o $DIR/f60c- 5000
5376 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5377         lctl set_param fail_loc=0x80000137
5378         unlinkmany $DIR/f60c- 5000
5379         lctl set_param fail_loc=0
5380 }
5381 run_test 60c "unlink file when mds full"
5382
5383 test_60d() {
5384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5385         SAVEPRINTK=$(lctl get_param -n printk)
5386
5387         # verify "lctl mark" is even working"
5388         MESSAGE="test message ID $RANDOM $$"
5389         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5390         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5391
5392         lctl set_param printk=0 || error "set lnet.printk failed"
5393         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5394         MESSAGE="new test message ID $RANDOM $$"
5395         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5396         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5397         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5398
5399         lctl set_param -n printk="$SAVEPRINTK"
5400 }
5401 run_test 60d "test printk console message masking"
5402
5403 test_60e() {
5404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5405         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5406         touch $DIR/$tfile
5407 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5408         do_facet mds1 lctl set_param fail_loc=0x15b
5409         rm $DIR/$tfile
5410 }
5411 run_test 60e "no space while new llog is being created"
5412
5413 test_61() {
5414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5415         f="$DIR/f61"
5416         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5417         cancel_lru_locks osc
5418         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5419         sync
5420 }
5421 run_test 61 "mmap() writes don't make sync hang ================"
5422
5423 # bug 2330 - insufficient obd_match error checking causes LBUG
5424 test_62() {
5425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5426         f="$DIR/f62"
5427         echo foo > $f
5428         cancel_lru_locks osc
5429         lctl set_param fail_loc=0x405
5430         cat $f && error "cat succeeded, expect -EIO"
5431         lctl set_param fail_loc=0
5432 }
5433 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5434 # match every page all of the time.
5435 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5436
5437 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5438 # Though this test is irrelevant anymore, it helped to reveal some
5439 # other grant bugs (LU-4482), let's keep it.
5440 test_63a() {   # was test_63
5441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5442         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5443         for i in `seq 10` ; do
5444                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5445                 sleep 5
5446                 kill $!
5447                 sleep 1
5448         done
5449
5450         rm -f $DIR/f63 || true
5451 }
5452 run_test 63a "Verify oig_wait interruption does not crash ======="
5453
5454 # bug 2248 - async write errors didn't return to application on sync
5455 # bug 3677 - async write errors left page locked
5456 test_63b() {
5457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5458         debugsave
5459         lctl set_param debug=-1
5460
5461         # ensure we have a grant to do async writes
5462         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5463         rm $DIR/$tfile
5464
5465         sync    # sync lest earlier test intercept the fail_loc
5466
5467         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5468         lctl set_param fail_loc=0x80000406
5469         $MULTIOP $DIR/$tfile Owy && \
5470                 error "sync didn't return ENOMEM"
5471         sync; sleep 2; sync     # do a real sync this time to flush page
5472         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5473                 error "locked page left in cache after async error" || true
5474         debugrestore
5475 }
5476 run_test 63b "async write errors should be returned to fsync ==="
5477
5478 test_64a () {
5479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5480         df $DIR
5481         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5482 }
5483 run_test 64a "verify filter grant calculations (in kernel) ====="
5484
5485 test_64b () {
5486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5487         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5488 }
5489 run_test 64b "check out-of-space detection on client ==========="
5490
5491 test_64c() {
5492         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5493 }
5494 run_test 64c "verify grant shrink ========================------"
5495
5496 # bug 1414 - set/get directories' stripe info
5497 test_65a() {
5498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5499         test_mkdir -p $DIR/$tdir
5500         touch $DIR/$tdir/f1
5501         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5502 }
5503 run_test 65a "directory with no stripe info ===================="
5504
5505 test_65b() {
5506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5507         test_mkdir -p $DIR/$tdir
5508         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5509
5510         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5511                                                 error "setstripe"
5512         touch $DIR/$tdir/f2
5513         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5514 }
5515 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5516
5517 test_65c() {
5518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5519         if [[ $OSTCOUNT -gt 1 ]]; then
5520                 test_mkdir -p $DIR/$tdir
5521                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5522
5523                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5524                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5525                 touch $DIR/$tdir/f3
5526                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5527         fi
5528 }
5529 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5530
5531 test_65d() {
5532         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5533         test_mkdir -p $DIR/$tdir
5534         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5535         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5536
5537         if [[ $STRIPECOUNT -le 0 ]]; then
5538                 sc=1
5539         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5540 #LOV_MAX_STRIPE_COUNT is 2000
5541                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5542         else
5543                 sc=$(($STRIPECOUNT - 1))
5544         fi
5545         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5546         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5547         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5548                 error "lverify failed"
5549 }
5550 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5551
5552 test_65e() {
5553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5554         test_mkdir -p $DIR/$tdir
5555
5556         $SETSTRIPE $DIR/$tdir || error "setstripe"
5557         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5558                                         error "no stripe info failed"
5559         touch $DIR/$tdir/f6
5560         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5561 }
5562 run_test 65e "directory setstripe defaults ======================="
5563
5564 test_65f() {
5565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5566         test_mkdir -p $DIR/${tdir}f
5567         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5568 }
5569 run_test 65f "dir setstripe permission (should return error) ==="
5570
5571 test_65g() {
5572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5573         test_mkdir -p $DIR/$tdir
5574         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5575
5576         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5577                                                         error "setstripe"
5578         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5579         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5580                 error "delete default stripe failed"
5581 }
5582 run_test 65g "directory setstripe -d ==========================="
5583
5584 test_65h() {
5585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5586         test_mkdir -p $DIR/$tdir
5587         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5588
5589         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5590                                                         error "setstripe"
5591         test_mkdir -p $DIR/$tdir/dd1
5592         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5593                 error "stripe info inherit failed"
5594 }
5595 run_test 65h "directory stripe info inherit ===================="
5596
5597 test_65i() { # bug6367
5598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5599         $SETSTRIPE -S 65536 -c -1 $MOUNT
5600 }
5601 run_test 65i "set non-default striping on root directory (bug 6367)="
5602
5603 test_65ia() { # bug12836
5604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5605         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5606 }
5607 run_test 65ia "getstripe on -1 default directory striping"
5608
5609 test_65ib() { # bug12836
5610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5611         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5612 }
5613 run_test 65ib "getstripe -v on -1 default directory striping"
5614
5615 test_65ic() { # bug12836
5616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5617         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5618 }
5619 run_test 65ic "new find on -1 default directory striping"
5620
5621 test_65j() { # bug6367
5622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5623         sync; sleep 1
5624         # if we aren't already remounting for each test, do so for this test
5625         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5626                 cleanup || error "failed to unmount"
5627                 setup
5628         fi
5629         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5630 }
5631 run_test 65j "set default striping on root directory (bug 6367)="
5632
5633 test_65k() { # bug11679
5634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5635         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5636         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5637
5638         local disable_precreate=true
5639         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5640                 disable_precreate=false
5641
5642         echo "Check OST status: "
5643         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5644                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5645
5646         for OSC in $MDS_OSCS; do
5647                 echo $OSC "is active"
5648                 do_facet $SINGLEMDS lctl --device %$OSC activate
5649         done
5650
5651         for INACTIVE_OSC in $MDS_OSCS; do
5652                 local ost=$(osc_to_ost $INACTIVE_OSC)
5653                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5654                                lov.*md*.target_obd |
5655                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5656
5657                 mkdir -p $DIR/$tdir
5658                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5659                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5660
5661                 echo "Deactivate: " $INACTIVE_OSC
5662                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5663
5664                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5665                               osp.$ost*MDT0000.create_count")
5666                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5667                                   osp.$ost*MDT0000.max_create_count")
5668                 $disable_precreate &&
5669                         do_facet $SINGLEMDS "lctl set_param -n \
5670                                 osp.$ost*MDT0000.max_create_count=0"
5671
5672                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5673                         [ -f $DIR/$tdir/$idx ] && continue
5674                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5675                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5676                                 error "setstripe $idx should succeed"
5677                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5678                 done
5679                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5680                 rmdir $DIR/$tdir
5681
5682                 do_facet $SINGLEMDS "lctl set_param -n \
5683                         osp.$ost*MDT0000.max_create_count=$max_count"
5684                 do_facet $SINGLEMDS "lctl set_param -n \
5685                         osp.$ost*MDT0000.create_count=$count"
5686                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5687                 echo $INACTIVE_OSC "is Activate"
5688
5689                 wait_osc_import_state mds ost$ostnum FULL
5690         done
5691 }
5692 run_test 65k "validate manual striping works properly with deactivated OSCs"
5693
5694 test_65l() { # bug 12836
5695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5696         test_mkdir -p $DIR/$tdir/test_dir
5697         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5698         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5699 }
5700 run_test 65l "lfs find on -1 stripe dir ========================"
5701
5702 test_65m() {
5703         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5704         true
5705 }
5706 run_test 65m "normal user can't set filesystem default stripe"
5707
5708 # bug 2543 - update blocks count on client
5709 test_66() {
5710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5711         COUNT=${COUNT:-8}
5712         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5713         sync; sync_all_data; sync; sync_all_data
5714         cancel_lru_locks osc
5715         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5716         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5717 }
5718 run_test 66 "update inode blocks count on client ==============="
5719
5720 LLOOP=
5721 LLITELOOPLOAD=
5722 cleanup_68() {
5723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5724         trap 0
5725         if [ ! -z "$LLOOP" ]; then
5726                 if swapon -s | grep -q $LLOOP; then
5727                         swapoff $LLOOP || error "swapoff failed"
5728                 fi
5729
5730                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5731                 rm -f $LLOOP
5732                 unset LLOOP
5733         fi
5734         if [ ! -z "$LLITELOOPLOAD" ]; then
5735                 rmmod llite_lloop
5736                 unset LLITELOOPLOAD
5737         fi
5738         rm -f $DIR/f68*
5739 }
5740
5741 meminfo() {
5742         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5743 }
5744
5745 swap_used() {
5746         swapon -s | awk '($1 == "'$1'") { print $4 }'
5747 }
5748
5749 # test case for lloop driver, basic function
5750 test_68a() {
5751         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5752         [ "$UID" != 0 ] && skip_env "must run as root" && return
5753         llite_lloop_enabled || \
5754                 { skip_env "llite_lloop module disabled" && return; }
5755
5756         trap cleanup_68 EXIT
5757
5758         if ! module_loaded llite_lloop; then
5759                 if load_module llite/llite_lloop; then
5760                         LLITELOOPLOAD=yes
5761                 else
5762                         skip_env "can't find module llite_lloop"
5763                         return
5764                 fi
5765         fi
5766
5767         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5768         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5769         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5770
5771         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5772         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5773
5774         cleanup_68
5775 }
5776 run_test 68a "lloop driver - basic test ========================"
5777
5778 # excercise swapping to lustre by adding a high priority swapfile entry
5779 # and then consuming memory until it is used.
5780 test_68b() {  # was test_68
5781         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5782         [ "$UID" != 0 ] && skip_env "must run as root" && return
5783         lctl get_param -n devices | grep -q obdfilter && \
5784                 skip "local OST" && return
5785
5786         grep -q llite_lloop /proc/modules
5787         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5788
5789         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5790                 skip "can't reliably test swap with TCP" && return
5791
5792         MEMTOTAL=`meminfo MemTotal`
5793         NR_BLOCKS=$((MEMTOTAL>>8))
5794         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5795
5796         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5797         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5798         mkswap $DIR/f68b
5799
5800         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5801
5802         trap cleanup_68 EXIT
5803
5804         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5805
5806         echo "before: `swapon -s | grep $LLOOP`"
5807         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5808         echo "after: `swapon -s | grep $LLOOP`"
5809         SWAPUSED=`swap_used $LLOOP`
5810
5811         cleanup_68
5812
5813         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5814 }
5815 run_test 68b "support swapping to Lustre ========================"
5816
5817 # bug5265, obdfilter oa2dentry return -ENOENT
5818 # #define OBD_FAIL_SRV_ENOENT 0x217
5819 test_69() {
5820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5821         remote_ost_nodsh && skip "remote OST with nodsh" && return
5822
5823         f="$DIR/$tfile"
5824         $SETSTRIPE -c 1 -i 0 $f
5825
5826         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5827
5828         do_facet ost1 lctl set_param fail_loc=0x217
5829         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5830         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5831
5832         do_facet ost1 lctl set_param fail_loc=0
5833         $DIRECTIO write $f 0 2 || error "write error"
5834
5835         cancel_lru_locks osc
5836         $DIRECTIO read $f 0 1 || error "read error"
5837
5838         do_facet ost1 lctl set_param fail_loc=0x217
5839         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5840
5841         do_facet ost1 lctl set_param fail_loc=0
5842         rm -f $f
5843 }
5844 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5845
5846 test_71() {
5847         test_mkdir -p $DIR/$tdir
5848         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5849         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5850 }
5851 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5852
5853 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5855         [ "$RUNAS_ID" = "$UID" ] &&
5856                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5857
5858         # Check that testing environment is properly set up. Skip if not
5859         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5860                 skip_env "User $RUNAS_ID does not exist - skipping"
5861                 return 0
5862         }
5863         touch $DIR/$tfile
5864         chmod 777 $DIR/$tfile
5865         chmod ug+s $DIR/$tfile
5866         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5867                 error "$RUNAS dd $DIR/$tfile failed"
5868         # See if we are still setuid/sgid
5869         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5870                 error "S/gid is not dropped on write"
5871         # Now test that MDS is updated too
5872         cancel_lru_locks mdc
5873         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5874                 error "S/gid is not dropped on MDS"
5875         rm -f $DIR/$tfile
5876 }
5877 run_test 72a "Test that remove suid works properly (bug5695) ===="
5878
5879 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5880         local perm
5881
5882         [ "$RUNAS_ID" = "$UID" ] && \
5883                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5884         [ "$RUNAS_ID" -eq 0 ] && \
5885                 skip_env "RUNAS_ID = 0 -- skipping" && return
5886
5887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5888         # Check that testing environment is properly set up. Skip if not
5889         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5890                 skip_env "User $RUNAS_ID does not exist - skipping"
5891                 return 0
5892         }
5893         touch $DIR/${tfile}-f{g,u}
5894         test_mkdir $DIR/${tfile}-dg
5895         test_mkdir $DIR/${tfile}-du
5896         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5897         chmod g+s $DIR/${tfile}-{f,d}g
5898         chmod u+s $DIR/${tfile}-{f,d}u
5899         for perm in 777 2777 4777; do
5900                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5901                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5902                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5903                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5904         done
5905         true
5906 }
5907 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5908
5909 # bug 3462 - multiple simultaneous MDC requests
5910 test_73() {
5911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5912         test_mkdir $DIR/d73-1
5913         test_mkdir $DIR/d73-2
5914         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5915         pid1=$!
5916
5917         lctl set_param fail_loc=0x80000129
5918         $MULTIOP $DIR/d73-1/f73-2 Oc &
5919         sleep 1
5920         lctl set_param fail_loc=0
5921
5922         $MULTIOP $DIR/d73-2/f73-3 Oc &
5923         pid3=$!
5924
5925         kill -USR1 $pid1
5926         wait $pid1 || return 1
5927
5928         sleep 25
5929
5930         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5931         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5932         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5933
5934         rm -rf $DIR/d73-*
5935 }
5936 run_test 73 "multiple MDC requests (should not deadlock)"
5937
5938 test_74a() { # bug 6149, 6184
5939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5940         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5941         #
5942         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5943         # will spin in a tight reconnection loop
5944         touch $DIR/f74a
5945         $LCTL set_param fail_loc=0x8000030e
5946         # get any lock that won't be difficult - lookup works.
5947         ls $DIR/f74a
5948         $LCTL set_param fail_loc=0
5949         rm -f $DIR/f74a
5950         true
5951 }
5952 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5953
5954 test_74b() { # bug 13310
5955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5956         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5957         #
5958         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5959         # will spin in a tight reconnection loop
5960         $LCTL set_param fail_loc=0x8000030e
5961         # get a "difficult" lock
5962         touch $DIR/f74b
5963         $LCTL set_param fail_loc=0
5964         rm -f $DIR/f74b
5965         true
5966 }
5967 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5968
5969 test_74c() {
5970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5971         #define OBD_FAIL_LDLM_NEW_LOCK
5972         $LCTL set_param fail_loc=0x319
5973         touch $DIR/$tfile && error "touch successful"
5974         $LCTL set_param fail_loc=0
5975         true
5976 }
5977 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5978
5979 num_inodes() {
5980         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5981 }
5982
5983 get_inode_slab_tunables() {
5984         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5985 }
5986
5987 set_inode_slab_tunables() {
5988         echo "lustre_inode_cache $1" > /proc/slabinfo
5989 }
5990
5991 test_76() { # Now for bug 20433, added originally in bug 1443
5992         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5993         local SLAB_SETTINGS=$(get_inode_slab_tunables)
5994         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
5995         # we cannot set limit below 1 which means 1 inode in each
5996         # per-cpu cache is still allowed
5997         set_inode_slab_tunables "1 1 0"
5998         cancel_lru_locks osc
5999         BEFORE_INODES=$(num_inodes)
6000         echo "before inodes: $BEFORE_INODES"
6001         local COUNT=1000
6002         [ "$SLOW" = "no" ] && COUNT=100
6003         for i in $(seq $COUNT); do
6004                 touch $DIR/$tfile
6005                 rm -f $DIR/$tfile
6006         done
6007         cancel_lru_locks osc
6008         AFTER_INODES=$(num_inodes)
6009         echo "after inodes: $AFTER_INODES"
6010         local wait=0
6011         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6012                 sleep 2
6013                 AFTER_INODES=$(num_inodes)
6014                 wait=$((wait+2))
6015                 echo "wait $wait seconds inodes: $AFTER_INODES"
6016                 if [ $wait -gt 30 ]; then
6017                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6018                 fi
6019         done
6020         set_inode_slab_tunables "$SLAB_SETTINGS"
6021 }
6022 run_test 76 "confirm clients recycle inodes properly ===="
6023
6024
6025 export ORIG_CSUM=""
6026 set_checksums()
6027 {
6028         # Note: in sptlrpc modes which enable its own bulk checksum, the
6029         # original crc32_le bulk checksum will be automatically disabled,
6030         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6031         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6032         # In this case set_checksums() will not be no-op, because sptlrpc
6033         # bulk checksum will be enabled all through the test.
6034
6035         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6036         lctl set_param -n osc.*.checksums $1
6037         return 0
6038 }
6039
6040 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6041                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6042 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6043 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6044 set_checksum_type()
6045 {
6046         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6047         log "set checksum type to $1"
6048         return 0
6049 }
6050 F77_TMP=$TMP/f77-temp
6051 F77SZ=8
6052 setup_f77() {
6053         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6054                 error "error writing to $F77_TMP"
6055 }
6056
6057 test_77a() { # bug 10889
6058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6059         $GSS && skip "could not run with gss" && return
6060         [ ! -f $F77_TMP ] && setup_f77
6061         set_checksums 1
6062         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6063         set_checksums 0
6064         rm -f $DIR/$tfile
6065 }
6066 run_test 77a "normal checksum read/write operation"
6067
6068 test_77b() { # bug 10889
6069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6070         $GSS && skip "could not run with gss" && return
6071         [ ! -f $F77_TMP ] && setup_f77
6072         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6073         $LCTL set_param fail_loc=0x80000409
6074         set_checksums 1
6075
6076         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6077                 error "dd error: $?"
6078         $LCTL set_param fail_loc=0
6079
6080         for algo in $CKSUM_TYPES; do
6081                 cancel_lru_locks osc
6082                 set_checksum_type $algo
6083                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6084                 $LCTL set_param fail_loc=0x80000408
6085                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6086                 $LCTL set_param fail_loc=0
6087         done
6088         set_checksums 0
6089         set_checksum_type $ORIG_CSUM_TYPE
6090         rm -f $DIR/$tfile
6091 }
6092 run_test 77b "checksum error on client write, read"
6093
6094 test_77d() { # bug 10889
6095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6096         $GSS && skip "could not run with gss" && return
6097         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6098         $LCTL set_param fail_loc=0x80000409
6099         set_checksums 1
6100         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6101                 error "direct write: rc=$?"
6102         $LCTL set_param fail_loc=0
6103         set_checksums 0
6104
6105         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6106         $LCTL set_param fail_loc=0x80000408
6107         set_checksums 1
6108         cancel_lru_locks osc
6109         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6110                 error "direct read: rc=$?"
6111         $LCTL set_param fail_loc=0
6112         set_checksums 0
6113 }
6114 run_test 77d "checksum error on OST direct write, read"
6115
6116 test_77f() { # bug 10889
6117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6118         $GSS && skip "could not run with gss" && return
6119         set_checksums 1
6120         for algo in $CKSUM_TYPES; do
6121                 cancel_lru_locks osc
6122                 set_checksum_type $algo
6123                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6124                 $LCTL set_param fail_loc=0x409
6125                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6126                         error "direct write succeeded"
6127                 $LCTL set_param fail_loc=0
6128         done
6129         set_checksum_type $ORIG_CSUM_TYPE
6130         set_checksums 0
6131 }
6132 run_test 77f "repeat checksum error on write (expect error)"
6133
6134 test_77g() { # bug 10889
6135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6136         $GSS && skip "could not run with gss" && return
6137         remote_ost_nodsh && skip "remote OST with nodsh" && return
6138
6139         [ ! -f $F77_TMP ] && setup_f77
6140
6141         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6142         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6143         do_facet ost1 lctl set_param fail_loc=0x8000021a
6144         set_checksums 1
6145         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6146                 error "write error: rc=$?"
6147         do_facet ost1 lctl set_param fail_loc=0
6148         set_checksums 0
6149
6150         cancel_lru_locks osc
6151         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6152         do_facet ost1 lctl set_param fail_loc=0x8000021b
6153         set_checksums 1
6154         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6155         do_facet ost1 lctl set_param fail_loc=0
6156         set_checksums 0
6157 }
6158 run_test 77g "checksum error on OST write, read"
6159
6160 test_77i() { # bug 13805
6161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6162         $GSS && skip "could not run with gss" && return
6163         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6164         lctl set_param fail_loc=0x40b
6165         remount_client $MOUNT
6166         lctl set_param fail_loc=0
6167         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6168                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6169                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6170                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6171         done
6172         remount_client $MOUNT
6173 }
6174 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6175
6176 test_77j() { # bug 13805
6177         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6178         $GSS && skip "could not run with gss" && return
6179         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6180         lctl set_param fail_loc=0x40c
6181         remount_client $MOUNT
6182         lctl set_param fail_loc=0
6183         sleep 2 # wait async osc connect to finish
6184         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6185                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6186                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6187                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6188         done
6189         remount_client $MOUNT
6190 }
6191 run_test 77j "client only supporting ADLER32"
6192
6193 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6194 rm -f $F77_TMP
6195 unset F77_TMP
6196
6197 cleanup_test_78() {
6198         trap 0
6199         rm -f $DIR/$tfile
6200 }
6201
6202 test_78() { # bug 10901
6203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6204         remote_ost || { skip_env "local OST" && return; }
6205
6206         NSEQ=5
6207         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6208         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6209         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6210         echo "MemTotal: $MEMTOTAL"
6211
6212         # reserve 256MB of memory for the kernel and other running processes,
6213         # and then take 1/2 of the remaining memory for the read/write buffers.
6214         if [ $MEMTOTAL -gt 512 ] ;then
6215                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6216         else
6217                 # for those poor memory-starved high-end clusters...
6218                 MEMTOTAL=$((MEMTOTAL / 2))
6219         fi
6220         echo "Mem to use for directio: $MEMTOTAL"
6221
6222         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6223         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6224         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6225         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6226                 head -n1)
6227         echo "Smallest OST: $SMALLESTOST"
6228         [[ $SMALLESTOST -lt 10240 ]] &&
6229                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6230
6231         trap cleanup_test_78 EXIT
6232
6233         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6234                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6235
6236         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6237         echo "File size: $F78SIZE"
6238         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6239         for i in $(seq 1 $NSEQ); do
6240                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6241                 echo directIO rdwr round $i of $NSEQ
6242                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6243         done
6244
6245         cleanup_test_78
6246 }
6247 run_test 78 "handle large O_DIRECT writes correctly ============"
6248
6249 test_79() { # bug 12743
6250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6251         wait_delete_completed
6252
6253         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6254         BKFREE=$(calc_osc_kbytes kbytesfree)
6255         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6256
6257         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6258         DFTOTAL=`echo $STRING | cut -d, -f1`
6259         DFUSED=`echo $STRING  | cut -d, -f2`
6260         DFAVAIL=`echo $STRING | cut -d, -f3`
6261         DFFREE=$(($DFTOTAL - $DFUSED))
6262
6263         ALLOWANCE=$((64 * $OSTCOUNT))
6264
6265         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6266            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6267                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6268         fi
6269         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6270            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6271                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6272         fi
6273         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6274            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6275                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6276         fi
6277 }
6278 run_test 79 "df report consistency check ======================="
6279
6280 test_80() { # bug 10718
6281         remote_ost_nodsh && skip "remote OST with nodsh" && return
6282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6283         # relax strong synchronous semantics for slow backends like ZFS
6284         local soc="obdfilter.*.sync_on_lock_cancel"
6285         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6286         local hosts=
6287         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6288                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6289                           facet_active_host $host; done | sort -u)
6290                 do_nodes $hosts lctl set_param $soc=never
6291         fi
6292
6293         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6294         sync; sleep 1; sync
6295         local BEFORE=`date +%s`
6296         cancel_lru_locks osc
6297         local AFTER=`date +%s`
6298         local DIFF=$((AFTER-BEFORE))
6299         if [ $DIFF -gt 1 ] ; then
6300                 error "elapsed for 1M@1T = $DIFF"
6301         fi
6302
6303         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6304
6305         rm -f $DIR/$tfile
6306 }
6307 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6308
6309 test_81a() { # LU-456
6310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6311         remote_ost_nodsh && skip "remote OST with nodsh" && return
6312         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6313         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6314         do_facet ost1 lctl set_param fail_loc=0x80000228
6315
6316         # write should trigger a retry and success
6317         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6318         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6319         RC=$?
6320         if [ $RC -ne 0 ] ; then
6321                 error "write should success, but failed for $RC"
6322         fi
6323 }
6324 run_test 81a "OST should retry write when get -ENOSPC ==============="
6325
6326 test_81b() { # LU-456
6327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6328         remote_ost_nodsh && skip "remote OST with nodsh" && return
6329         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6330         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6331         do_facet ost1 lctl set_param fail_loc=0x228
6332
6333         # write should retry several times and return -ENOSPC finally
6334         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6335         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6336         RC=$?
6337         ENOSPC=28
6338         if [ $RC -ne $ENOSPC ] ; then
6339                 error "dd should fail for -ENOSPC, but succeed."
6340         fi
6341 }
6342 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6343
6344 test_82() { # LU-1031
6345         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6346         local gid1=14091995
6347         local gid2=16022000
6348
6349         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6350         local MULTIPID1=$!
6351         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6352         local MULTIPID2=$!
6353         kill -USR1 $MULTIPID2
6354         sleep 2
6355         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6356                 error "First grouplock does not block second one"
6357         else
6358                 echo "Second grouplock blocks first one"
6359         fi
6360         kill -USR1 $MULTIPID1
6361         wait $MULTIPID1
6362         wait $MULTIPID2
6363 }
6364 run_test 82 "Basic grouplock test ==============================="
6365
6366 test_99a() {
6367         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6368                 return
6369         test_mkdir -p $DIR/d99cvsroot
6370         chown $RUNAS_ID $DIR/d99cvsroot
6371         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6372         cd $TMP
6373
6374         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6375         cd $oldPWD
6376 }
6377 run_test 99a "cvs init ========================================="
6378
6379 test_99b() {
6380         [ -z "$(which cvs 2>/dev/null)" ] &&
6381                 skip_env "could not find cvs" && return
6382         [ ! -d $DIR/d99cvsroot ] && test_99a
6383         cd /etc/init.d
6384         # some versions of cvs import exit(1) when asked to import links or
6385         # files they can't read.  ignore those files.
6386         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6387                         ! -perm /4 -printf '-I %f\n')
6388         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6389                 d99reposname vtag rtag
6390 }
6391 run_test 99b "cvs import ======================================="
6392
6393 test_99c() {
6394         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6395         [ ! -d $DIR/d99cvsroot ] && test_99b
6396         cd $DIR
6397         test_mkdir -p $DIR/d99reposname
6398         chown $RUNAS_ID $DIR/d99reposname
6399         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6400 }
6401 run_test 99c "cvs checkout ====================================="
6402
6403 test_99d() {
6404         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6405         [ ! -d $DIR/d99cvsroot ] && test_99c
6406         cd $DIR/d99reposname
6407         $RUNAS touch foo99
6408         $RUNAS cvs add -m 'addmsg' foo99
6409 }
6410 run_test 99d "cvs add =========================================="
6411
6412 test_99e() {
6413         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6414         [ ! -d $DIR/d99cvsroot ] && test_99c
6415         cd $DIR/d99reposname
6416         $RUNAS cvs update
6417 }
6418 run_test 99e "cvs update ======================================="
6419
6420 test_99f() {
6421         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6422         [ ! -d $DIR/d99cvsroot ] && test_99d
6423         cd $DIR/d99reposname
6424         $RUNAS cvs commit -m 'nomsg' foo99
6425     rm -fr $DIR/d99cvsroot
6426 }
6427 run_test 99f "cvs commit ======================================="
6428
6429 test_100() {
6430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6431         [ "$NETTYPE" = tcp ] || \
6432                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6433                         return ; }
6434
6435         remote_ost_nodsh && skip "remote OST with nodsh" && return
6436         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6437         remote_servers || \
6438                 { skip "useless for local single node setup" && return; }
6439
6440         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6441                 [ "$PROT" != "tcp" ] && continue
6442                 RPORT=$(echo $REMOTE | cut -d: -f2)
6443                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6444
6445                 rc=0
6446                 LPORT=`echo $LOCAL | cut -d: -f2`
6447                 if [ $LPORT -ge 1024 ]; then
6448                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6449                         netstat -tna
6450                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6451                 fi
6452         done
6453         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6454 }
6455 run_test 100 "check local port using privileged port ==========="
6456
6457 function get_named_value()
6458 {
6459     local tag
6460
6461     tag=$1
6462     while read ;do
6463         line=$REPLY
6464         case $line in
6465         $tag*)
6466             echo $line | sed "s/^$tag[ ]*//"
6467             break
6468             ;;
6469         esac
6470     done
6471 }
6472
6473 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6474                    awk '/^max_cached_mb/ { print $2 }')
6475
6476 cleanup_101a() {
6477         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6478         trap 0
6479 }
6480
6481 test_101a() {
6482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6483         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6484         local s
6485         local discard
6486         local nreads=10000
6487         local cache_limit=32
6488
6489         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6490         trap cleanup_101a EXIT
6491         $LCTL set_param -n llite.*.read_ahead_stats 0
6492         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6493
6494         #
6495         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6496         #
6497         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6498         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6499
6500         discard=0
6501         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6502                 get_named_value 'read but discarded' | cut -d" " -f1); do
6503                         discard=$(($discard + $s))
6504         done
6505         cleanup_101a
6506
6507         if [[ $(($discard * 10)) -gt $nreads ]]; then
6508                 $LCTL get_param osc.*-osc*.rpc_stats
6509                 $LCTL get_param llite.*.read_ahead_stats
6510                 error "too many ($discard) discarded pages"
6511         fi
6512         rm -f $DIR/$tfile || true
6513 }
6514 run_test 101a "check read-ahead for random reads ================"
6515
6516 setup_test101bc() {
6517         test_mkdir -p $DIR/$tdir
6518         local STRIPE_SIZE=$1
6519         local FILE_LENGTH=$2
6520         STRIPE_OFFSET=0
6521
6522         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6523
6524         local list=$(comma_list $(osts_nodes))
6525         set_osd_param $list '' read_cache_enable 0
6526         set_osd_param $list '' writethrough_cache_enable 0
6527
6528         trap cleanup_test101bc EXIT
6529         # prepare the read-ahead file
6530         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6531
6532         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6533                                 count=$FILE_SIZE_MB 2> /dev/null
6534
6535 }
6536
6537 cleanup_test101bc() {
6538         trap 0
6539         rm -rf $DIR/$tdir
6540         rm -f $DIR/$tfile
6541
6542         local list=$(comma_list $(osts_nodes))
6543         set_osd_param $list '' read_cache_enable 1
6544         set_osd_param $list '' writethrough_cache_enable 1
6545 }
6546
6547 calc_total() {
6548         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6549 }
6550
6551 ra_check_101() {
6552         local READ_SIZE=$1
6553         local STRIPE_SIZE=$2
6554         local FILE_LENGTH=$3
6555         local RA_INC=1048576
6556         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6557         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6558                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6559         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6560                         get_named_value 'read but discarded' |
6561                         cut -d" " -f1 | calc_total)
6562         if [[ $DISCARD -gt $discard_limit ]]; then
6563                 $LCTL get_param llite.*.read_ahead_stats
6564                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6565         else
6566                 echo "Read-ahead success for size ${READ_SIZE}"
6567         fi
6568 }
6569
6570 test_101b() {
6571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6572         [[ $OSTCOUNT -lt 2 ]] &&
6573                 skip_env "skipping stride IO stride-ahead test" && return
6574         local STRIPE_SIZE=1048576
6575         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6576         if [ $SLOW == "yes" ]; then
6577                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6578         else
6579                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6580         fi
6581
6582         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6583
6584         # prepare the read-ahead file
6585         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6586         cancel_lru_locks osc
6587         for BIDX in 2 4 8 16 32 64 128 256
6588         do
6589                 local BSIZE=$((BIDX*4096))
6590                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6591                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6592                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6593                 $LCTL set_param -n llite.*.read_ahead_stats 0
6594                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6595                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6596                 cancel_lru_locks osc
6597                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6598         done
6599         cleanup_test101bc
6600         true
6601 }
6602 run_test 101b "check stride-io mode read-ahead ================="
6603
6604 test_101c() {
6605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6606         local STRIPE_SIZE=1048576
6607         local FILE_LENGTH=$((STRIPE_SIZE*100))
6608         local nreads=10000
6609         local osc_rpc_stats
6610
6611         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6612
6613         cancel_lru_locks osc
6614         $LCTL set_param osc.*.rpc_stats 0
6615         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6616         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6617                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6618                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6619                 local size
6620
6621                 if [ $lines -le 20 ]; then
6622                         continue
6623                 fi
6624                 for size in 1 2 4 8; do
6625                         local rpc=$(echo "$stats" |
6626                                     awk '($1 == "'$size':") {print $2; exit; }')
6627                         [ $rpc != 0 ] &&
6628                                 error "Small $((size*4))k read IO $rpc !"
6629                 done
6630                 echo "$osc_rpc_stats check passed!"
6631         done
6632         cleanup_test101bc
6633         true
6634 }
6635 run_test 101c "check stripe_size aligned read-ahead ================="
6636
6637 set_read_ahead() {
6638         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6639         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6640 }
6641
6642 test_101d() {
6643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6644         local file=$DIR/$tfile
6645         local sz_MB=${FILESIZE_101d:-500}
6646         local ra_MB=${READAHEAD_MB:-40}
6647
6648         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6649         [ $free_MB -lt $sz_MB ] &&
6650                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6651
6652         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6653         $SETSTRIPE -c -1 $file || error "setstripe failed"
6654
6655         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6656         echo Cancel LRU locks on lustre client to flush the client cache
6657         cancel_lru_locks osc
6658
6659         echo Disable read-ahead
6660         local old_READAHEAD=$(set_read_ahead 0)
6661
6662         echo Reading the test file $file with read-ahead disabled
6663         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6664
6665         echo Cancel LRU locks on lustre client to flush the client cache
6666         cancel_lru_locks osc
6667         echo Enable read-ahead with ${ra_MB}MB
6668         set_read_ahead $ra_MB
6669
6670         echo Reading the test file $file with read-ahead enabled
6671         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6672
6673         echo "read-ahead disabled time read $raOFF"
6674         echo "read-ahead enabled  time read $raON"
6675
6676         set_read_ahead $old_READAHEAD
6677         rm -f $file
6678         wait_delete_completed
6679
6680         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6681                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6682 }
6683 run_test 101d "file read with and without read-ahead enabled"
6684
6685 test_101e() {
6686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6687         local file=$DIR/$tfile
6688         local size_KB=500  #KB
6689         local count=100
6690         local bsize=1024
6691
6692         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6693         local need_KB=$((count * size_KB))
6694         [[ $free_KB -le $need_KB ]] &&
6695                 skip_env "Need free space $need_KB, have $free_KB" && return
6696
6697         echo "Creating $count ${size_KB}K test files"
6698         for ((i = 0; i < $count; i++)); do
6699                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6700         done
6701
6702         echo "Cancel LRU locks on lustre client to flush the client cache"
6703         cancel_lru_locks osc
6704
6705         echo "Reset readahead stats"
6706         $LCTL set_param -n llite.*.read_ahead_stats 0
6707
6708         for ((i = 0; i < $count; i++)); do
6709                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6710         done
6711
6712         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6713                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6714
6715         for ((i = 0; i < $count; i++)); do
6716                 rm -rf $file.$i 2>/dev/null
6717         done
6718
6719         #10000 means 20% reads are missing in readahead
6720         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6721 }
6722 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6723
6724 test_101f() {
6725         which iozone || { skip "no iozone installed" && return; }
6726
6727         local old_debug=$($LCTL get_param debug)
6728         $LCTL set_param debug="reada mmap"
6729
6730         # create a test file
6731         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6732
6733         echo Cancel LRU locks on lustre client to flush the client cache
6734         cancel_lru_locks osc
6735
6736         echo Reset readahead stats
6737         $LCTL set_param -n llite.*.read_ahead_stats 0
6738
6739         echo mmap read the file with small block size
6740         iozone -i 1 -+n -r 32k -s 128m -B -f $DIR/$tfile > /dev/null 2>&1
6741
6742         echo checking missing pages
6743         $LCTL get_param llite.*.read_ahead_stats
6744         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6745                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6746
6747         $LCTL set_param debug=$old_debug
6748         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6749         rm -f $DIR/$tfile
6750 }
6751 run_test 101f "check mmap read performance"
6752
6753 test_101g() {
6754         local rpcs
6755         local osts=$(get_facets OST)
6756         local list=$(comma_list $(osts_nodes))
6757         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6758
6759         save_lustre_params $osts "obdfilter.*.brw_size" > $p
6760
6761         $LFS setstripe -c 1 $DIR/$tfile
6762
6763         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6764                 set_osd_param $list '' brw_size 16M
6765
6766                 echo "remount client to enable large RPC size"
6767                 remount_client $MOUNT || error "remount_client failed"
6768
6769                 for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6770                         [ "$mp" -eq 4096 ] ||
6771                                 error "max_pages_per_rpc not correctly set"
6772                 done
6773
6774                 $LCTL set_param -n osc.*.rpc_stats=0
6775
6776                 # 10*16 MiB should be enough for the test
6777                 dd if=/dev/zero of=$DIR/$tfile bs=16M count=10
6778                 cancel_lru_locks osc
6779                 dd of=/dev/null if=$DIR/$tfile bs=16M count=10
6780
6781                 # calculate 16 MiB RPCs
6782                 rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6783                        sed -n '/pages per rpc/,/^$/p' |
6784                        awk 'BEGIN { sum = 0 }; /4096:/ { sum += $2 };
6785                             END { print sum }')
6786                 echo $rpcs RPCs
6787                 [ "$rpcs" -eq 10 ] || error "not all RPCs are 16 MiB BRW rpcs"
6788         fi
6789
6790         echo "set RPC size to 4MB"
6791
6792         $LCTL set_param -n osc.*.max_pages_per_rpc=4M osc.*.rpc_stats=0
6793         dd if=/dev/zero of=$DIR/$tfile bs=4M count=25
6794         cancel_lru_locks osc
6795         dd of=/dev/null if=$DIR/$tfile bs=4M count=25
6796
6797         # calculate 4 MiB RPCs
6798         rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6799                 sed -n '/pages per rpc/,/^$/p' |
6800                 awk 'BEGIN { sum = 0 }; /1024:/ { sum += $2 };
6801                      END { print sum }')
6802         echo $rpcs RPCs
6803         [ "$rpcs" -eq 25 ] || error "not all RPCs are 4 MiB BRW rpcs"
6804
6805         restore_lustre_params < $p
6806         remount_client $MOUNT || error "remount_client failed"
6807
6808         rm -f $p $DIR/$tfile
6809 }
6810 run_test 101g "Big bulk(4/16 MiB) readahead"
6811
6812 setup_test102() {
6813         test_mkdir -p $DIR/$tdir
6814         chown $RUNAS_ID $DIR/$tdir
6815         STRIPE_SIZE=65536
6816         STRIPE_OFFSET=1
6817         STRIPE_COUNT=$OSTCOUNT
6818         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6819
6820         trap cleanup_test102 EXIT
6821         cd $DIR
6822         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6823         cd $DIR/$tdir
6824         for num in 1 2 3 4; do
6825                 for count in $(seq 1 $STRIPE_COUNT); do
6826                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6827                                 local size=`expr $STRIPE_SIZE \* $num`
6828                                 local file=file"$num-$idx-$count"
6829                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6830                         done
6831                 done
6832         done
6833
6834         cd $DIR
6835         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6836 }
6837
6838 cleanup_test102() {
6839         trap 0
6840         rm -f $TMP/f102.tar
6841         rm -rf $DIR/d0.sanity/d102
6842 }
6843
6844 test_102a() {
6845         local testfile=$DIR/$tfile
6846
6847         touch $testfile
6848
6849         [ "$UID" != 0 ] && skip_env "must run as root" && return
6850         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6851                 skip_env "must have user_xattr" && return
6852
6853         [ -z "$(which setfattr 2>/dev/null)" ] &&
6854                 skip_env "could not find setfattr" && return
6855
6856         echo "set/get xattr..."
6857         setfattr -n trusted.name1 -v value1 $testfile ||
6858                 error "setfattr -n trusted.name1=value1 $testfile failed"
6859         getfattr -n trusted.name1 $testfile 2> /dev/null |
6860           grep "trusted.name1=.value1" ||
6861                 error "$testfile missing trusted.name1=value1"
6862
6863         setfattr -n user.author1 -v author1 $testfile ||
6864                 error "setfattr -n user.author1=author1 $testfile failed"
6865         getfattr -n user.author1 $testfile 2> /dev/null |
6866           grep "user.author1=.author1" ||
6867                 error "$testfile missing trusted.author1=author1"
6868
6869         echo "listxattr..."
6870         setfattr -n trusted.name2 -v value2 $testfile ||
6871                 error "$testfile unable to set trusted.name2"
6872         setfattr -n trusted.name3 -v value3 $testfile ||
6873                 error "$testfile unable to set trusted.name3"
6874         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6875             grep "trusted.name" | wc -l) -eq 3 ] ||
6876                 error "$testfile missing 3 trusted.name xattrs"
6877
6878         setfattr -n user.author2 -v author2 $testfile ||
6879                 error "$testfile unable to set user.author2"
6880         setfattr -n user.author3 -v author3 $testfile ||
6881                 error "$testfile unable to set user.author3"
6882         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6883             grep "user.author" | wc -l) -eq 3 ] ||
6884                 error "$testfile missing 3 user.author xattrs"
6885
6886         echo "remove xattr..."
6887         setfattr -x trusted.name1 $testfile ||
6888                 error "$testfile error deleting trusted.name1"
6889         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6890                 error "$testfile did not delete trusted.name1 xattr"
6891
6892         setfattr -x user.author1 $testfile ||
6893                 error "$testfile error deleting user.author1"
6894         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6895                 error "$testfile did not delete trusted.name1 xattr"
6896
6897         # b10667: setting lustre special xattr be silently discarded
6898         echo "set lustre special xattr ..."
6899         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6900                 error "$testfile allowed setting trusted.lov"
6901 }
6902 run_test 102a "user xattr test =================================="
6903
6904 test_102b() {
6905         [ -z "$(which setfattr 2>/dev/null)" ] &&
6906                 skip_env "could not find setfattr" && return
6907
6908         # b10930: get/set/list trusted.lov xattr
6909         echo "get/set/list trusted.lov xattr ..."
6910         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6911         local testfile=$DIR/$tfile
6912         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6913                 error "setstripe failed"
6914         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6915                 error "getstripe failed"
6916         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6917                 error "can't get trusted.lov from $testfile"
6918
6919         local testfile2=${testfile}2
6920         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6921                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6922
6923         $MCREATE $testfile2
6924         setfattr -n trusted.lov -v $value $testfile2
6925         local stripe_size=$($GETSTRIPE -S $testfile2)
6926         local stripe_count=$($GETSTRIPE -c $testfile2)
6927         [[ $stripe_size -eq 65536 ]] ||
6928                 error "stripe size $stripe_size != 65536"
6929         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6930                 error "stripe count $stripe_count != $STRIPECOUNT"
6931         rm -f $DIR/$tfile
6932 }
6933 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6934
6935 test_102c() {
6936         [ -z "$(which setfattr 2>/dev/null)" ] &&
6937                 skip_env "could not find setfattr" && return
6938
6939         # b10930: get/set/list lustre.lov xattr
6940         echo "get/set/list lustre.lov xattr ..."
6941         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6942         test_mkdir -p $DIR/$tdir
6943         chown $RUNAS_ID $DIR/$tdir
6944         local testfile=$DIR/$tdir/$tfile
6945         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6946                 error "setstripe failed"
6947         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6948                 error "getstripe failed"
6949         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6950         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6951
6952         local testfile2=${testfile}2
6953         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6954                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6955
6956         $RUNAS $MCREATE $testfile2
6957         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6958         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6959         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6960         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6961         [ $stripe_count -eq $STRIPECOUNT ] ||
6962                 error "stripe count $stripe_count != $STRIPECOUNT"
6963 }
6964 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6965
6966 compare_stripe_info1() {
6967         local stripe_index_all_zero=true
6968
6969         for num in 1 2 3 4; do
6970                 for count in $(seq 1 $STRIPE_COUNT); do
6971                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6972                                 local size=$((STRIPE_SIZE * num))
6973                                 local file=file"$num-$offset-$count"
6974                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6975                                 [[ $stripe_size -ne $size ]] &&
6976                                     error "$file: size $stripe_size != $size"
6977                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6978                                 # allow fewer stripes to be created, ORI-601
6979                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6980                                     error "$file: count $stripe_count != $count"
6981                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6982                                 [[ $stripe_index -ne 0 ]] &&
6983                                         stripe_index_all_zero=false
6984                         done
6985                 done
6986         done
6987         $stripe_index_all_zero &&
6988                 error "all files are being extracted starting from OST index 0"
6989         return 0
6990 }
6991
6992 find_lustre_tar() {
6993         [ -n "$(which tar 2>/dev/null)" ] &&
6994                 strings $(which tar) | grep -q "lustre" && echo tar
6995 }
6996
6997 test_102d() {
6998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6999         # b10930: tar test for trusted.lov xattr
7000         TAR=$(find_lustre_tar)
7001         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7002         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7003         setup_test102
7004         test_mkdir -p $DIR/d102d
7005         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
7006         cd $DIR/d102d/$tdir
7007         compare_stripe_info1
7008 }
7009 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7010
7011 test_102f() {
7012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7013         # b10930: tar test for trusted.lov xattr
7014         TAR=$(find_lustre_tar)
7015         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7016         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7017         setup_test102
7018         test_mkdir -p $DIR/d102f
7019         cd $DIR
7020         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7021         cd $DIR/d102f/$tdir
7022         compare_stripe_info1
7023 }
7024 run_test 102f "tar copy files, not keep osts ==========="
7025
7026 grow_xattr() {
7027         local xsize=${1:-1024}  # in bytes
7028         local file=$DIR/$tfile
7029
7030         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7031                 skip "must have user_xattr" && return 0
7032         [ -z "$(which setfattr 2>/dev/null)" ] &&
7033                 skip_env "could not find setfattr" && return 0
7034         [ -z "$(which getfattr 2>/dev/null)" ] &&
7035                 skip_env "could not find getfattr" && return 0
7036
7037         touch $file
7038
7039         local value="$(generate_string $xsize)"
7040
7041         local xbig=trusted.big
7042         log "save $xbig on $file"
7043         setfattr -n $xbig -v $value $file ||
7044                 error "saving $xbig on $file failed"
7045
7046         local orig=$(get_xattr_value $xbig $file)
7047         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7048
7049         local xsml=trusted.sml
7050         log "save $xsml on $file"
7051         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7052
7053         local new=$(get_xattr_value $xbig $file)
7054         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7055
7056         log "grow $xsml on $file"
7057         setfattr -n $xsml -v "$value" $file ||
7058                 error "growing $xsml on $file failed"
7059
7060         new=$(get_xattr_value $xbig $file)
7061         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7062         log "$xbig still valid after growing $xsml"
7063
7064         rm -f $file
7065 }
7066
7067 test_102h() { # bug 15777
7068         grow_xattr 1024
7069 }
7070 run_test 102h "grow xattr from inside inode to external block"
7071
7072 test_102ha() {
7073         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7074         grow_xattr $(max_xattr_size)
7075 }
7076 run_test 102ha "grow xattr from inside inode to external inode"
7077
7078 test_102i() { # bug 17038
7079         [ -z "$(which getfattr 2>/dev/null)" ] &&
7080                 skip "could not find getfattr" && return
7081         touch $DIR/$tfile
7082         ln -s $DIR/$tfile $DIR/${tfile}link
7083         getfattr -n trusted.lov $DIR/$tfile ||
7084                 error "lgetxattr on $DIR/$tfile failed"
7085         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7086                 grep -i "no such attr" ||
7087                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7088         rm -f $DIR/$tfile $DIR/${tfile}link
7089 }
7090 run_test 102i "lgetxattr test on symbolic link ============"
7091
7092 test_102j() {
7093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7094         TAR=$(find_lustre_tar)
7095         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7096         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7097         setup_test102 "$RUNAS"
7098         test_mkdir -p $DIR/d102j
7099         chown $RUNAS_ID $DIR/d102j
7100         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7101         cd $DIR/d102j/$tdir
7102         compare_stripe_info1 "$RUNAS"
7103 }
7104 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7105
7106 test_102k() {
7107         [ -z "$(which setfattr 2>/dev/null)" ] &&
7108                 skip "could not find setfattr" && return
7109         touch $DIR/$tfile
7110         # b22187 just check that does not crash for regular file.
7111         setfattr -n trusted.lov $DIR/$tfile
7112         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7113         local test_kdir=$DIR/d102k
7114         test_mkdir $test_kdir
7115         local default_size=`$GETSTRIPE -S $test_kdir`
7116         local default_count=`$GETSTRIPE -c $test_kdir`
7117         local default_offset=`$GETSTRIPE -i $test_kdir`
7118         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7119                 error 'dir setstripe failed'
7120         setfattr -n trusted.lov $test_kdir
7121         local stripe_size=`$GETSTRIPE -S $test_kdir`
7122         local stripe_count=`$GETSTRIPE -c $test_kdir`
7123         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7124         [ $stripe_size -eq $default_size ] ||
7125                 error "stripe size $stripe_size != $default_size"
7126         [ $stripe_count -eq $default_count ] ||
7127                 error "stripe count $stripe_count != $default_count"
7128         [ $stripe_offset -eq $default_offset ] ||
7129                 error "stripe offset $stripe_offset != $default_offset"
7130         rm -rf $DIR/$tfile $test_kdir
7131 }
7132 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7133
7134 test_102l() {
7135         [ -z "$(which getfattr 2>/dev/null)" ] &&
7136                 skip "could not find getfattr" && return
7137
7138         # LU-532 trusted. xattr is invisible to non-root
7139         local testfile=$DIR/$tfile
7140
7141         touch $testfile
7142
7143         echo "listxattr as user..."
7144         chown $RUNAS_ID $testfile
7145         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7146             grep -q "trusted" &&
7147                 error "$testfile trusted xattrs are user visible"
7148
7149         return 0;
7150 }
7151 run_test 102l "listxattr size test =================================="
7152
7153 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7154         local path=$DIR/$tfile
7155         touch $path
7156
7157         listxattr_size_check $path || error "listattr_size_check $path failed"
7158 }
7159 run_test 102m "Ensure listxattr fails on small bufffer ========"
7160
7161 cleanup_test102
7162
7163 getxattr() { # getxattr path name
7164         # Return the base64 encoding of the value of xattr name on path.
7165         local path=$1
7166         local name=$2
7167
7168         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7169         # file: $path
7170         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7171         #
7172         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7173
7174         getfattr --absolute-names --encoding=base64 --name=$name $path |
7175                 awk -F= -v name=$name '$1 == name {
7176                         print substr($0, index($0, "=") + 1);
7177         }'
7178 }
7179
7180 test_102n() { # LU-4101 mdt: protect internal xattrs
7181         local file0=$DIR/$tfile.0
7182         local file1=$DIR/$tfile.1
7183         local xattr0=$TMP/$tfile.0
7184         local xattr1=$TMP/$tfile.1
7185         local name
7186         local value
7187
7188         [ -z "$(which setfattr 2>/dev/null)" ] &&
7189                 skip "could not find setfattr" && return
7190
7191         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7192         then
7193                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7194                 return
7195         fi
7196
7197         rm -rf $file0 $file1 $xattr0 $xattr1
7198         touch $file0 $file1
7199
7200         # Get 'before' xattrs of $file1.
7201         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7202
7203         for name in lov lma lmv link fid version som hsm; do
7204                 # Try to copy xattr from $file0 to $file1.
7205                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7206
7207                 setfattr --name=trusted.$name --value="$value" $file1 ||
7208                         error "setxattr 'trusted.$name' failed"
7209
7210                 # Try to set a garbage xattr.
7211                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7212
7213                 setfattr --name=trusted.$name --value="$value" $file1 ||
7214                         error "setxattr 'trusted.$name' failed"
7215
7216                 # Try to remove the xattr from $file1. We don't care if this
7217                 # appears to succeed or fail, we just don't want there to be
7218                 # any changes or crashes.
7219                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7220         done
7221
7222         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7223         then
7224                 name="lfsck_ns"
7225                 # Try to copy xattr from $file0 to $file1.
7226                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7227
7228                 setfattr --name=trusted.$name --value="$value" $file1 ||
7229                         error "setxattr 'trusted.$name' failed"
7230
7231                 # Try to set a garbage xattr.
7232                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7233
7234                 setfattr --name=trusted.$name --value="$value" $file1 ||
7235                         error "setxattr 'trusted.$name' failed"
7236
7237                 # Try to remove the xattr from $file1. We don't care if this
7238                 # appears to succeed or fail, we just don't want there to be
7239                 # any changes or crashes.
7240                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7241         fi
7242
7243         # Get 'after' xattrs of file1.
7244         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7245
7246         if ! diff $xattr0 $xattr1; then
7247                 error "before and after xattrs of '$file1' differ"
7248         fi
7249
7250         rm -rf $file0 $file1 $xattr0 $xattr1
7251
7252         return 0
7253 }
7254 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7255
7256 test_102p() { # LU-4703 setxattr did not check ownership
7257         local testfile=$DIR/$tfile
7258
7259         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7260                 skip "MDS needs to be at least 2.5.56" && return
7261
7262         touch $testfile
7263
7264         echo "setfacl as user..."
7265         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7266         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7267
7268         echo "setfattr as user..."
7269         setfacl -m "u:$RUNAS_ID:---" $testfile
7270         $RUNAS setfattr -x system.posix_acl_access $testfile
7271         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7272 }
7273 run_test 102p "check setxattr(2) correctly fails without permission"
7274
7275 test_102q() {
7276         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7277                 skip "MDS needs to be at least 2.6.92" && return
7278         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7279 }
7280 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7281
7282 test_102r() {
7283         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7284                 skip "MDS needs to be at least 2.6.93" && return
7285         touch $DIR/$tfile || error "touch"
7286         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7287         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7288         rm $DIR/$tfile || error "rm"
7289
7290         #normal directory
7291         mkdir -p $DIR/$tdir || error "mkdir"
7292         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7293         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7294         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7295                 error "$testfile error deleting user.author1"
7296         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7297                 grep "user.$(basename $tdir)" &&
7298                 error "$tdir did not delete user.$(basename $tdir)"
7299         rmdir $DIR/$tdir || error "rmdir"
7300
7301         #striped directory
7302         test_mkdir -p $DIR/$tdir || error "make striped dir"
7303         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7304         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7305         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7306                 error "$testfile error deleting user.author1"
7307         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7308                 grep "user.$(basename $tdir)" &&
7309                 error "$tdir did not delete user.$(basename $tdir)"
7310         rmdir $DIR/$tdir || error "rm striped dir"
7311 }
7312 run_test 102r "set EAs with empty values"
7313
7314 run_acl_subtest()
7315 {
7316     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7317     return $?
7318 }
7319
7320 test_103a() {
7321         [ "$UID" != 0 ] && skip_env "must run as root" && return
7322         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7323                 skip "must have acl enabled" && return
7324         [ -z "$(which setfacl 2>/dev/null)" ] &&
7325                 skip_env "could not find setfacl" && return
7326         $GSS && skip "could not run under gss" && return
7327         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7328
7329         gpasswd -a daemon bin                           # LU-5641
7330         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7331
7332         declare -a identity_old
7333
7334         for num in $(seq $MDSCOUNT); do
7335                 switch_identity $num true || identity_old[$num]=$?
7336         done
7337
7338         SAVE_UMASK=$(umask)
7339         umask 0022
7340         cd $DIR
7341
7342         echo "performing cp ..."
7343         run_acl_subtest cp || error "run_acl_subtest cp failed"
7344         echo "performing getfacl-noacl..."
7345         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7346         echo "performing misc..."
7347         run_acl_subtest misc || error  "misc test failed"
7348         echo "performing permissions..."
7349         run_acl_subtest permissions || error "permissions failed"
7350         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7351         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7352              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7353              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7354         then
7355                 echo "performing permissions xattr..."
7356                 run_acl_subtest permissions_xattr ||
7357                         error "permissions_xattr failed"
7358         fi
7359         echo "performing setfacl..."
7360         run_acl_subtest setfacl || error  "setfacl test failed"
7361
7362         # inheritance test got from HP
7363         echo "performing inheritance..."
7364         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7365         chmod +x make-tree || error "chmod +x failed"
7366         run_acl_subtest inheritance || error "inheritance test failed"
7367         rm -f make-tree
7368
7369         echo "LU-974 ignore umask when acl is enabled..."
7370         run_acl_subtest 974 || error "LU-974 umask test failed"
7371         if [ $MDSCOUNT -ge 2 ]; then
7372                 run_acl_subtest 974_remote ||
7373                         error "LU-974 umask test failed under remote dir"
7374         fi
7375
7376         echo "LU-2561 newly created file is same size as directory..."
7377         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7378                 run_acl_subtest 2561 || error "LU-2561 test failed"
7379         else
7380                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7381         fi
7382
7383         run_acl_subtest 4924 || error "LU-4924 test failed"
7384
7385         cd $SAVE_PWD
7386         umask $SAVE_UMASK
7387
7388         for num in $(seq $MDSCOUNT); do
7389                 if [ "${identity_old[$num]}" = 1 ]; then
7390                         switch_identity $num false || identity_old[$num]=$?
7391                 fi
7392         done
7393 }
7394 run_test 103a "acl test ========================================="
7395
7396 test_103b() {
7397         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7398         local noacl=false
7399         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7400         local mountopts=$MDS_MOUNT_OPTS
7401
7402         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7403                 noacl=true
7404         else
7405                 # stop the MDT
7406                 stop $SINGLEMDS || error "failed to stop MDT."
7407                 # remount the MDT
7408                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7409                         MDS_MOUNT_OPTS="-o noacl"
7410                 else
7411                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7412                 fi
7413                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7414                         error "failed to start MDT."
7415                 MDS_MOUNT_OPTS=$mountopts
7416         fi
7417
7418         touch $DIR/$tfile
7419         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7420
7421         if ! $noacl; then
7422                 # stop the MDT
7423                 stop $SINGLEMDS || error "failed to stop MDT."
7424                 # remount the MDT
7425                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7426                         error "failed to start MDT."
7427         fi
7428
7429         true
7430 }
7431 run_test 103b "MDS mount option 'noacl'"
7432
7433 test_103c() {
7434         mkdir -p $DIR/$tdir
7435         cp -rp $DIR/$tdir $DIR/$tdir.bak
7436
7437         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7438                 error "$DIR/$tdir shouldn't contain default ACL"
7439         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7440                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7441         true
7442 }
7443 run_test 103c "'cp -rp' won't set empty acl"
7444
7445 test_104a() {
7446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7447         touch $DIR/$tfile
7448         lfs df || error "lfs df failed"
7449         lfs df -ih || error "lfs df -ih failed"
7450         lfs df -h $DIR || error "lfs df -h $DIR failed"
7451         lfs df -i $DIR || error "lfs df -i $DIR failed"
7452         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7453         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7454
7455         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7456         lctl --device %$OSC deactivate
7457         lfs df || error "lfs df with deactivated OSC failed"
7458         lctl --device %$OSC activate
7459         # wait the osc back to normal
7460         wait_osc_import_state client ost FULL
7461
7462         lfs df || error "lfs df with reactivated OSC failed"
7463         rm -f $DIR/$tfile
7464 }
7465 run_test 104a "lfs df [-ih] [path] test ========================="
7466
7467 test_104b() {
7468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7469         [ $RUNAS_ID -eq $UID ] &&
7470                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7471         chmod 666 /dev/obd
7472         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7473                         grep "Permission denied" | wc -l)))
7474         if [ $denied_cnt -ne 0 ]; then
7475                 error "lfs check servers test failed"
7476         fi
7477 }
7478 run_test 104b "$RUNAS lfs check servers test ===================="
7479
7480 test_105a() {
7481         # doesn't work on 2.4 kernels
7482         touch $DIR/$tfile
7483         if $(flock_is_enabled); then
7484                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7485         else
7486                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7487         fi
7488         rm -f $DIR/$tfile
7489 }
7490 run_test 105a "flock when mounted without -o flock test ========"
7491
7492 test_105b() {
7493         touch $DIR/$tfile
7494         if $(flock_is_enabled); then
7495                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7496         else
7497                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7498         fi
7499         rm -f $DIR/$tfile
7500 }
7501 run_test 105b "fcntl when mounted without -o flock test ========"
7502
7503 test_105c() {
7504         touch $DIR/$tfile
7505         if $(flock_is_enabled); then
7506                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7507         else
7508                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7509         fi
7510         rm -f $DIR/$tfile
7511 }
7512 run_test 105c "lockf when mounted without -o flock test ========"
7513
7514 test_105d() { # bug 15924
7515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7516         test_mkdir -p $DIR/$tdir
7517         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7518         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7519         $LCTL set_param fail_loc=0x80000315
7520         flocks_test 2 $DIR/$tdir
7521 }
7522 run_test 105d "flock race (should not freeze) ========"
7523
7524 test_105e() { # bug 22660 && 22040
7525         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7526         touch $DIR/$tfile
7527         flocks_test 3 $DIR/$tfile
7528 }
7529 run_test 105e "Two conflicting flocks from same process ======="
7530
7531 test_106() { #bug 10921
7532         test_mkdir -p $DIR/$tdir
7533         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7534         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7535 }
7536 run_test 106 "attempt exec of dir followed by chown of that dir"
7537
7538 test_107() {
7539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7540         CDIR=`pwd`
7541         cd $DIR
7542
7543         local file=core
7544         rm -f $file
7545
7546         local save_pattern=$(sysctl -n kernel.core_pattern)
7547         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7548         sysctl -w kernel.core_pattern=$file
7549         sysctl -w kernel.core_uses_pid=0
7550
7551         ulimit -c unlimited
7552         sleep 60 &
7553         SLEEPPID=$!
7554
7555         sleep 1
7556
7557         kill -s 11 $SLEEPPID
7558         wait $SLEEPPID
7559         if [ -e $file ]; then
7560                 size=`stat -c%s $file`
7561                 [ $size -eq 0 ] && error "Fail to create core file $file"
7562         else
7563                 error "Fail to create core file $file"
7564         fi
7565         rm -f $file
7566         sysctl -w kernel.core_pattern=$save_pattern
7567         sysctl -w kernel.core_uses_pid=$save_uses_pid
7568         cd $CDIR
7569 }
7570 run_test 107 "Coredump on SIG"
7571
7572 test_110() {
7573         test_mkdir -p $DIR/$tdir
7574         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7575                 error "mkdir with 255 char failed"
7576         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7577                 error "mkdir with 256 char should fail, but did not"
7578         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7579                 error "create with 255 char failed"
7580         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7581                 error "create with 256 char should fail, but did not"
7582
7583         ls -l $DIR/$tdir
7584         rm -rf $DIR/$tdir
7585 }
7586 run_test 110 "filename length checking"
7587
7588 test_115() {
7589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7590         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7591                 tail -1 | cut -c11-20)
7592         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7593         echo "Starting with $OSTIO_pre threads"
7594
7595         NUMTEST=20000
7596         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7597         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7598         echo "$NUMTEST creates/unlinks"
7599         test_mkdir -p $DIR/$tdir
7600         createmany -o $DIR/$tdir/$tfile $NUMTEST
7601         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7602
7603         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7604                 tail -1 | cut -c11-20)
7605
7606         # don't return an error
7607         [ $OSTIO_post == $OSTIO_pre ] && echo \
7608             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7609             echo "This may be fine, depending on what ran before this test" &&
7610             echo "and how fast this system is." && return
7611
7612         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7613 }
7614 run_test 115 "verify dynamic thread creation===================="
7615
7616 free_min_max () {
7617         wait_delete_completed
7618         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7619         echo OST kbytes available: ${AVAIL[@]}
7620         MAXI=0; MAXV=${AVAIL[0]}
7621         MINI=0; MINV=${AVAIL[0]}
7622         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7623                 #echo OST $i: ${AVAIL[i]}kb
7624                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7625                         MAXV=${AVAIL[i]}; MAXI=$i
7626                 fi
7627                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7628                         MINV=${AVAIL[i]}; MINI=$i
7629                 fi
7630         done
7631         echo Min free space: OST $MINI: $MINV
7632         echo Max free space: OST $MAXI: $MAXV
7633 }
7634
7635 test_116a() { # was previously test_116()
7636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7637         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7638
7639         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7640
7641         echo -n "Free space priority "
7642         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7643                 head -n1
7644         declare -a AVAIL
7645         free_min_max
7646
7647         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7648         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7649                 && return
7650         trap simple_cleanup_common EXIT
7651
7652
7653         # Check if we need to generate uneven OSTs
7654         test_mkdir -p $DIR/$tdir/OST${MINI}
7655         local FILL=$(($MINV / 4))
7656         local DIFF=$(($MAXV - $MINV))
7657         local DIFF2=$(($DIFF * 100 / $MINV))
7658
7659         local threshold=$(do_facet $SINGLEMDS \
7660                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7661         threshold=${threshold%%%}
7662         echo -n "Check for uneven OSTs: "
7663         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7664
7665         if [[ $DIFF2 -gt $threshold ]]; then
7666                 echo "ok"
7667                 echo "Don't need to fill OST$MINI"
7668         else
7669                 # generate uneven OSTs. Write 2% over the QOS threshold value
7670                 echo "no"
7671                 DIFF=$(($threshold - $DIFF2 + 2))
7672                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7673                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7674                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7675                         error "setstripe failed"
7676                 DIFF=$(($DIFF2 / 2048))
7677                 i=0
7678                 while [ $i -lt $DIFF ]; do
7679                         i=$(($i + 1))
7680                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7681                                 bs=2M count=1 2>/dev/null
7682                         echo -n .
7683                 done
7684                 echo .
7685                 sync
7686                 sleep_maxage
7687                 free_min_max
7688         fi
7689
7690         DIFF=$(($MAXV - $MINV))
7691         DIFF2=$(($DIFF * 100 / $MINV))
7692         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7693         if [[ $DIFF2 -gt $threshold ]]; then
7694                 echo "ok"
7695         else
7696                 echo "failed - QOS mode won't be used"
7697                 skip "QOS imbalance criteria not met"
7698                 simple_cleanup_common
7699                 return
7700         fi
7701
7702         MINI1=$MINI; MINV1=$MINV
7703         MAXI1=$MAXI; MAXV1=$MAXV
7704
7705         # now fill using QOS
7706         $SETSTRIPE -c 1 $DIR/$tdir
7707         FILL=$(($FILL / 200))
7708         if [ $FILL -gt 600 ]; then
7709                 FILL=600
7710         fi
7711         echo "writing $FILL files to QOS-assigned OSTs"
7712         i=0
7713         while [ $i -lt $FILL ]; do
7714                 i=$((i + 1))
7715                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7716                         count=1 2>/dev/null
7717                 echo -n .
7718         done
7719         echo "wrote $i 200k files"
7720         sync
7721         sleep_maxage
7722
7723         echo "Note: free space may not be updated, so measurements might be off"
7724         free_min_max
7725         DIFF2=$(($MAXV - $MINV))
7726         echo "free space delta: orig $DIFF final $DIFF2"
7727         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7728         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7729         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7730         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7731         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7732         if [[ $DIFF -gt 0 ]]; then
7733                 FILL=$(($DIFF2 * 100 / $DIFF - 100))
7734                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7735         fi
7736
7737         # Figure out which files were written where
7738         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7739                   awk '/'$MINI1': / {print $2; exit}')
7740         echo $UUID
7741         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7742         echo "$MINC files created on smaller OST $MINI1"
7743         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7744                   awk '/'$MAXI1': / {print $2; exit}')
7745         echo $UUID
7746         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7747         echo "$MAXC files created on larger OST $MAXI1"
7748         if [[ $MINC -gt 0 ]]; then
7749                 FILL=$(($MAXC * 100 / $MINC - 100))
7750                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7751         fi
7752         [[ $MAXC -gt $MINC ]] ||
7753                 error_ignore LU-9 "stripe QOS didn't balance free space"
7754         simple_cleanup_common
7755 }
7756 run_test 116a "stripe QOS: free space balance ==================="
7757
7758 test_116b() { # LU-2093
7759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7760         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7761
7762 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7763         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7764                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7765         [ -z "$old_rr" ] && skip "no QOS" && return 0
7766         do_facet $SINGLEMDS lctl set_param \
7767                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7768         mkdir -p $DIR/$tdir
7769         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7770         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7771         do_facet $SINGLEMDS lctl set_param fail_loc=0
7772         rm -rf $DIR/$tdir
7773         do_facet $SINGLEMDS lctl set_param \
7774                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7775 }
7776 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7777
7778 test_117() # bug 10891
7779 {
7780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7781         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7782         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7783         lctl set_param fail_loc=0x21e
7784         > $DIR/$tfile || error "truncate failed"
7785         lctl set_param fail_loc=0
7786         echo "Truncate succeeded."
7787         rm -f $DIR/$tfile
7788 }
7789 run_test 117 "verify osd extend =========="
7790
7791 NO_SLOW_RESENDCOUNT=4
7792 export OLD_RESENDCOUNT=""
7793 set_resend_count () {
7794         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7795         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7796         lctl set_param -n $PROC_RESENDCOUNT $1
7797         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7798 }
7799
7800 # for reduce test_118* time (b=14842)
7801 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7802
7803 # Reset async IO behavior after error case
7804 reset_async() {
7805         FILE=$DIR/reset_async
7806
7807         # Ensure all OSCs are cleared
7808         $SETSTRIPE -c -1 $FILE
7809         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7810         sync
7811         rm $FILE
7812 }
7813
7814 test_118a() #bug 11710
7815 {
7816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7817         reset_async
7818
7819         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7820         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7821         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7822
7823         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7824                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7825                 return 1;
7826         fi
7827         rm -f $DIR/$tfile
7828 }
7829 run_test 118a "verify O_SYNC works =========="
7830
7831 test_118b()
7832 {
7833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7834         remote_ost_nodsh && skip "remote OST with nodsh" && return
7835
7836         reset_async
7837
7838         #define OBD_FAIL_SRV_ENOENT 0x217
7839         set_nodes_failloc "$(osts_nodes)" 0x217
7840         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7841         RC=$?
7842         set_nodes_failloc "$(osts_nodes)" 0
7843         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7844         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7845                     grep -c writeback)
7846
7847         if [[ $RC -eq 0 ]]; then
7848                 error "Must return error due to dropped pages, rc=$RC"
7849                 return 1;
7850         fi
7851
7852         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7853                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7854                 return 1;
7855         fi
7856
7857         echo "Dirty pages not leaked on ENOENT"
7858
7859         # Due to the above error the OSC will issue all RPCs syncronously
7860         # until a subsequent RPC completes successfully without error.
7861         $MULTIOP $DIR/$tfile Ow4096yc
7862         rm -f $DIR/$tfile
7863
7864         return 0
7865 }
7866 run_test 118b "Reclaim dirty pages on fatal error =========="
7867
7868 test_118c()
7869 {
7870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7871
7872         # for 118c, restore the original resend count, LU-1940
7873         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7874                                 set_resend_count $OLD_RESENDCOUNT
7875         remote_ost_nodsh && skip "remote OST with nodsh" && return
7876
7877         reset_async
7878
7879         #define OBD_FAIL_OST_EROFS               0x216
7880         set_nodes_failloc "$(osts_nodes)" 0x216
7881
7882         # multiop should block due to fsync until pages are written
7883         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7884         MULTIPID=$!
7885         sleep 1
7886
7887         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7888                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7889         fi
7890
7891         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7892                     grep -c writeback)
7893         if [[ $WRITEBACK -eq 0 ]]; then
7894                 error "No page in writeback, writeback=$WRITEBACK"
7895         fi
7896
7897         set_nodes_failloc "$(osts_nodes)" 0
7898         wait $MULTIPID
7899         RC=$?
7900         if [[ $RC -ne 0 ]]; then
7901                 error "Multiop fsync failed, rc=$RC"
7902         fi
7903
7904         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7905         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7906                     grep -c writeback)
7907         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7908                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7909         fi
7910
7911         rm -f $DIR/$tfile
7912         echo "Dirty pages flushed via fsync on EROFS"
7913         return 0
7914 }
7915 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7916
7917 # continue to use small resend count to reduce test_118* time (b=14842)
7918 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7919
7920 test_118d()
7921 {
7922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7923         remote_ost_nodsh && skip "remote OST with nodsh" && return
7924
7925         reset_async
7926
7927         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7928         set_nodes_failloc "$(osts_nodes)" 0x214
7929         # multiop should block due to fsync until pages are written
7930         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7931         MULTIPID=$!
7932         sleep 1
7933
7934         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7935                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7936         fi
7937
7938         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7939                     grep -c writeback)
7940         if [[ $WRITEBACK -eq 0 ]]; then
7941                 error "No page in writeback, writeback=$WRITEBACK"
7942         fi
7943
7944         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7945         set_nodes_failloc "$(osts_nodes)" 0
7946
7947         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7948         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7949                     grep -c writeback)
7950         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7951                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7952         fi
7953
7954         rm -f $DIR/$tfile
7955         echo "Dirty pages gaurenteed flushed via fsync"
7956         return 0
7957 }
7958 run_test 118d "Fsync validation inject a delay of the bulk =========="
7959
7960 test_118f() {
7961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7962         reset_async
7963
7964         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7965         lctl set_param fail_loc=0x8000040a
7966
7967         # Should simulate EINVAL error which is fatal
7968         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7969         RC=$?
7970         if [[ $RC -eq 0 ]]; then
7971                 error "Must return error due to dropped pages, rc=$RC"
7972         fi
7973
7974         lctl set_param fail_loc=0x0
7975
7976         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7977         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7978         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7979                     grep -c writeback)
7980         if [[ $LOCKED -ne 0 ]]; then
7981                 error "Locked pages remain in cache, locked=$LOCKED"
7982         fi
7983
7984         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7985                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7986         fi
7987
7988         rm -f $DIR/$tfile
7989         echo "No pages locked after fsync"
7990
7991         reset_async
7992         return 0
7993 }
7994 run_test 118f "Simulate unrecoverable OSC side error =========="
7995
7996 test_118g() {
7997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7998         reset_async
7999
8000         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8001         lctl set_param fail_loc=0x406
8002
8003         # simulate local -ENOMEM
8004         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8005         RC=$?
8006
8007         lctl set_param fail_loc=0
8008         if [[ $RC -eq 0 ]]; then
8009                 error "Must return error due to dropped pages, rc=$RC"
8010         fi
8011
8012         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8013         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8014         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8015                         grep -c writeback)
8016         if [[ $LOCKED -ne 0 ]]; then
8017                 error "Locked pages remain in cache, locked=$LOCKED"
8018         fi
8019
8020         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8021                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8022         fi
8023
8024         rm -f $DIR/$tfile
8025         echo "No pages locked after fsync"
8026
8027         reset_async
8028         return 0
8029 }
8030 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8031
8032 test_118h() {
8033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8034         remote_ost_nodsh && skip "remote OST with nodsh" && return
8035
8036         reset_async
8037
8038         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8039         set_nodes_failloc "$(osts_nodes)" 0x20e
8040         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8041         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8042         RC=$?
8043
8044         set_nodes_failloc "$(osts_nodes)" 0
8045         if [[ $RC -eq 0 ]]; then
8046                 error "Must return error due to dropped pages, rc=$RC"
8047         fi
8048
8049         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8050         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8051         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8052                     grep -c writeback)
8053         if [[ $LOCKED -ne 0 ]]; then
8054                 error "Locked pages remain in cache, locked=$LOCKED"
8055         fi
8056
8057         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8058                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8059         fi
8060
8061         rm -f $DIR/$tfile
8062         echo "No pages locked after fsync"
8063
8064         return 0
8065 }
8066 run_test 118h "Verify timeout in handling recoverables errors  =========="
8067
8068 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8069
8070 test_118i() {
8071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8072         remote_ost_nodsh && skip "remote OST with nodsh" && return
8073
8074         reset_async
8075
8076         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8077         set_nodes_failloc "$(osts_nodes)" 0x20e
8078
8079         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8080         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8081         PID=$!
8082         sleep 5
8083         set_nodes_failloc "$(osts_nodes)" 0
8084
8085         wait $PID
8086         RC=$?
8087         if [[ $RC -ne 0 ]]; then
8088                 error "got error, but should be not, rc=$RC"
8089         fi
8090
8091         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8092         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8093         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8094         if [[ $LOCKED -ne 0 ]]; then
8095                 error "Locked pages remain in cache, locked=$LOCKED"
8096         fi
8097
8098         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8099                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8100         fi
8101
8102         rm -f $DIR/$tfile
8103         echo "No pages locked after fsync"
8104
8105         return 0
8106 }
8107 run_test 118i "Fix error before timeout in recoverable error  =========="
8108
8109 [ "$SLOW" = "no" ] && set_resend_count 4
8110
8111 test_118j() {
8112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8113         remote_ost_nodsh && skip "remote OST with nodsh" && return
8114
8115         reset_async
8116
8117         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8118         set_nodes_failloc "$(osts_nodes)" 0x220
8119
8120         # return -EIO from OST
8121         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8122         RC=$?
8123         set_nodes_failloc "$(osts_nodes)" 0x0
8124         if [[ $RC -eq 0 ]]; then
8125                 error "Must return error due to dropped pages, rc=$RC"
8126         fi
8127
8128         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8129         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8130         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8131         if [[ $LOCKED -ne 0 ]]; then
8132                 error "Locked pages remain in cache, locked=$LOCKED"
8133         fi
8134
8135         # in recoverable error on OST we want resend and stay until it finished
8136         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8137                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8138         fi
8139
8140         rm -f $DIR/$tfile
8141         echo "No pages locked after fsync"
8142
8143         return 0
8144 }
8145 run_test 118j "Simulate unrecoverable OST side error =========="
8146
8147 test_118k()
8148 {
8149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8150         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8151
8152         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8153         set_nodes_failloc "$(osts_nodes)" 0x20e
8154         test_mkdir -p $DIR/$tdir
8155
8156         for ((i=0;i<10;i++)); do
8157                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8158                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8159                 SLEEPPID=$!
8160                 sleep 0.500s
8161                 kill $SLEEPPID
8162                 wait $SLEEPPID
8163         done
8164
8165         set_nodes_failloc "$(osts_nodes)" 0
8166         rm -rf $DIR/$tdir
8167 }
8168 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8169
8170 test_118l()
8171 {
8172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8173         # LU-646
8174         test_mkdir -p $DIR/$tdir
8175         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8176         rm -rf $DIR/$tdir
8177 }
8178 run_test 118l "fsync dir ========="
8179
8180 test_118m() # LU-3066
8181 {
8182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8183         test_mkdir -p $DIR/$tdir
8184         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8185         rm -rf $DIR/$tdir
8186 }
8187 run_test 118m "fdatasync dir ========="
8188
8189 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8190
8191 test_119a() # bug 11737
8192 {
8193         BSIZE=$((512 * 1024))
8194         directio write $DIR/$tfile 0 1 $BSIZE
8195         # We ask to read two blocks, which is more than a file size.
8196         # directio will indicate an error when requested and actual
8197         # sizes aren't equeal (a normal situation in this case) and
8198         # print actual read amount.
8199         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8200         if [ "$NOB" != "$BSIZE" ]; then
8201                 error "read $NOB bytes instead of $BSIZE"
8202         fi
8203         rm -f $DIR/$tfile
8204 }
8205 run_test 119a "Short directIO read must return actual read amount"
8206
8207 test_119b() # bug 11737
8208 {
8209         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8210
8211         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8212         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8213         sync
8214         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8215                 error "direct read failed"
8216         rm -f $DIR/$tfile
8217 }
8218 run_test 119b "Sparse directIO read must return actual read amount"
8219
8220 test_119c() # bug 13099
8221 {
8222         BSIZE=1048576
8223         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8224         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8225         rm -f $DIR/$tfile
8226 }
8227 run_test 119c "Testing for direct read hitting hole"
8228
8229 test_119d() # bug 15950
8230 {
8231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8232         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8233         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8234         BSIZE=1048576
8235         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8236         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8237         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8238         lctl set_param fail_loc=0x40d
8239         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8240         pid_dio=$!
8241         sleep 1
8242         cat $DIR/$tfile > /dev/null &
8243         lctl set_param fail_loc=0
8244         pid_reads=$!
8245         wait $pid_dio
8246         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8247         sleep 2
8248         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8249         error "the read rpcs have not completed in 2s"
8250         rm -f $DIR/$tfile
8251         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8252 }
8253 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8254
8255 test_120a() {
8256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8257         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8258         test_mkdir -p $DIR/$tdir
8259         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8260                skip "no early lock cancel on server" && return 0
8261
8262         lru_resize_disable mdc
8263         lru_resize_disable osc
8264         cancel_lru_locks mdc
8265         # asynchronous object destroy at MDT could cause bl ast to client
8266         cancel_lru_locks osc
8267
8268         stat $DIR/$tdir > /dev/null
8269         can1=$(do_facet $SINGLEMDS \
8270                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8271                awk '/ldlm_cancel/ {print $2}')
8272         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8273                awk '/ldlm_bl_callback/ {print $2}')
8274         test_mkdir -c1 $DIR/$tdir/d1
8275         can2=$(do_facet $SINGLEMDS \
8276                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8277                awk '/ldlm_cancel/ {print $2}')
8278         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8279                awk '/ldlm_bl_callback/ {print $2}')
8280         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8281         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8282         lru_resize_enable mdc
8283         lru_resize_enable osc
8284 }
8285 run_test 120a "Early Lock Cancel: mkdir test"
8286
8287 test_120b() {
8288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8289         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8290         test_mkdir $DIR/$tdir
8291         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8292                skip "no early lock cancel on server" && return 0
8293         lru_resize_disable mdc
8294         lru_resize_disable osc
8295         cancel_lru_locks mdc
8296         stat $DIR/$tdir > /dev/null
8297         can1=$(do_facet $SINGLEMDS \
8298                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8299                awk '/ldlm_cancel/ {print $2}')
8300         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8301                awk '/ldlm_bl_callback/ {print $2}')
8302         touch $DIR/$tdir/f1
8303         can2=$(do_facet $SINGLEMDS \
8304                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8305                awk '/ldlm_cancel/ {print $2}')
8306         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8307                awk '/ldlm_bl_callback/ {print $2}')
8308         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8309         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8310         lru_resize_enable mdc
8311         lru_resize_enable osc
8312 }
8313 run_test 120b "Early Lock Cancel: create test"
8314
8315 test_120c() {
8316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8317         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8318         test_mkdir -c1 $DIR/$tdir
8319         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8320                skip "no early lock cancel on server" && return 0
8321         lru_resize_disable mdc
8322         lru_resize_disable osc
8323         test_mkdir -p -c1 $DIR/$tdir/d1
8324         test_mkdir -p -c1 $DIR/$tdir/d2
8325         touch $DIR/$tdir/d1/f1
8326         cancel_lru_locks mdc
8327         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8328         can1=$(do_facet $SINGLEMDS \
8329                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8330                awk '/ldlm_cancel/ {print $2}')
8331         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8332                awk '/ldlm_bl_callback/ {print $2}')
8333         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8334         can2=$(do_facet $SINGLEMDS \
8335                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8336                awk '/ldlm_cancel/ {print $2}')
8337         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8338                awk '/ldlm_bl_callback/ {print $2}')
8339         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8340         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8341         lru_resize_enable mdc
8342         lru_resize_enable osc
8343 }
8344 run_test 120c "Early Lock Cancel: link test"
8345
8346 test_120d() {
8347         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8348         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8349         test_mkdir -p -c1 $DIR/$tdir
8350         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8351                skip "no early lock cancel on server" && return 0
8352         lru_resize_disable mdc
8353         lru_resize_disable osc
8354         touch $DIR/$tdir
8355         cancel_lru_locks mdc
8356         stat $DIR/$tdir > /dev/null
8357         can1=$(do_facet $SINGLEMDS \
8358                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8359                awk '/ldlm_cancel/ {print $2}')
8360         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8361                awk '/ldlm_bl_callback/ {print $2}')
8362         chmod a+x $DIR/$tdir
8363         can2=$(do_facet $SINGLEMDS \
8364                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8365                awk '/ldlm_cancel/ {print $2}')
8366         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8367                awk '/ldlm_bl_callback/ {print $2}')
8368         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8369         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8370         lru_resize_enable mdc
8371         lru_resize_enable osc
8372 }
8373 run_test 120d "Early Lock Cancel: setattr test"
8374
8375 test_120e() {
8376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8377         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8378                 skip "no early lock cancel on server" && return 0
8379         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8380         local dlmtrace_set=false
8381
8382         test_mkdir -p -c1 $DIR/$tdir
8383         lru_resize_disable mdc
8384         lru_resize_disable osc
8385         ! $LCTL get_param debug | grep -q dlmtrace &&
8386                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8387         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8388         cancel_lru_locks mdc
8389         cancel_lru_locks osc
8390         dd if=$DIR/$tdir/f1 of=/dev/null
8391         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8392         # XXX client can not do early lock cancel of OST lock
8393         # during unlink (LU-4206), so cancel osc lock now.
8394         cancel_lru_locks osc
8395         can1=$(do_facet $SINGLEMDS \
8396                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8397                awk '/ldlm_cancel/ {print $2}')
8398         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8399                awk '/ldlm_bl_callback/ {print $2}')
8400         unlink $DIR/$tdir/f1
8401         sleep 5
8402         can2=$(do_facet $SINGLEMDS \
8403                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8404                awk '/ldlm_cancel/ {print $2}')
8405         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8406                awk '/ldlm_bl_callback/ {print $2}')
8407         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8408                 $LCTL dk $TMP/cancel.debug.txt
8409         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8410                 $LCTL dk $TMP/blocking.debug.txt
8411         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8412         lru_resize_enable mdc
8413         lru_resize_enable osc
8414 }
8415 run_test 120e "Early Lock Cancel: unlink test"
8416
8417 test_120f() {
8418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8419         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8420                skip "no early lock cancel on server" && return 0
8421         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8422         test_mkdir -p -c1 $DIR/$tdir
8423         lru_resize_disable mdc
8424         lru_resize_disable osc
8425         test_mkdir -p -c1 $DIR/$tdir/d1
8426         test_mkdir -p -c1 $DIR/$tdir/d2
8427         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8428         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8429         cancel_lru_locks mdc
8430         cancel_lru_locks osc
8431         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8432         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8433         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8434         # XXX client can not do early lock cancel of OST lock
8435         # during rename (LU-4206), so cancel osc lock now.
8436         cancel_lru_locks osc
8437         can1=$(do_facet $SINGLEMDS \
8438                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8439                awk '/ldlm_cancel/ {print $2}')
8440         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8441                awk '/ldlm_bl_callback/ {print $2}')
8442         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8443         sleep 5
8444         can2=$(do_facet $SINGLEMDS \
8445                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8446                awk '/ldlm_cancel/ {print $2}')
8447         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8448                awk '/ldlm_bl_callback/ {print $2}')
8449         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8450         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8451         lru_resize_enable mdc
8452         lru_resize_enable osc
8453 }
8454 run_test 120f "Early Lock Cancel: rename test"
8455
8456 test_120g() {
8457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8458         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8459                skip "no early lock cancel on server" && return 0
8460         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8461         lru_resize_disable mdc
8462         lru_resize_disable osc
8463         count=10000
8464         echo create $count files
8465         test_mkdir -p $DIR/$tdir
8466         cancel_lru_locks mdc
8467         cancel_lru_locks osc
8468         t0=`date +%s`
8469
8470         can0=$(do_facet $SINGLEMDS \
8471                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8472                awk '/ldlm_cancel/ {print $2}')
8473         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8474                awk '/ldlm_bl_callback/ {print $2}')
8475         createmany -o $DIR/$tdir/f $count
8476         sync
8477         can1=$(do_facet $SINGLEMDS \
8478                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8479                awk '/ldlm_cancel/ {print $2}')
8480         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8481                awk '/ldlm_bl_callback/ {print $2}')
8482         t1=$(date +%s)
8483         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8484         echo rm $count files
8485         rm -r $DIR/$tdir
8486         sync
8487         can2=$(do_facet $SINGLEMDS \
8488                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8489                awk '/ldlm_cancel/ {print $2}')
8490         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8491                awk '/ldlm_bl_callback/ {print $2}')
8492         t2=$(date +%s)
8493         echo total: $count removes in $((t2-t1))
8494         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8495         sleep 2
8496         # wait for commitment of removal
8497         lru_resize_enable mdc
8498         lru_resize_enable osc
8499 }
8500 run_test 120g "Early Lock Cancel: performance test"
8501
8502 test_121() { #bug #10589
8503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8504         rm -rf $DIR/$tfile
8505         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8506 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8507         lctl set_param fail_loc=0x310
8508         cancel_lru_locks osc > /dev/null
8509         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8510         lctl set_param fail_loc=0
8511         [[ $reads -eq $writes ]] ||
8512                 error "read $reads blocks, must be $writes blocks"
8513 }
8514 run_test 121 "read cancel race ========="
8515
8516 test_123a() { # was test 123, statahead(bug 11401)
8517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8518         SLOWOK=0
8519         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8520             log "testing on UP system. Performance may be not as good as expected."
8521                         SLOWOK=1
8522         fi
8523
8524         rm -rf $DIR/$tdir
8525         test_mkdir -p $DIR/$tdir
8526         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8527         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8528         MULT=10
8529         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8530                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8531
8532                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8533                 lctl set_param -n llite.*.statahead_max 0
8534                 lctl get_param llite.*.statahead_max
8535                 cancel_lru_locks mdc
8536                 cancel_lru_locks osc
8537                 stime=`date +%s`
8538                 time ls -l $DIR/$tdir | wc -l
8539                 etime=`date +%s`
8540                 delta=$((etime - stime))
8541                 log "ls $i files without statahead: $delta sec"
8542                 lctl set_param llite.*.statahead_max=$max
8543
8544                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8545                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8546                 cancel_lru_locks mdc
8547                 cancel_lru_locks osc
8548                 stime=`date +%s`
8549                 time ls -l $DIR/$tdir | wc -l
8550                 etime=`date +%s`
8551                 delta_sa=$((etime - stime))
8552                 log "ls $i files with statahead: $delta_sa sec"
8553                 lctl get_param -n llite.*.statahead_stats
8554                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8555
8556                 [[ $swrong -lt $ewrong ]] &&
8557                         log "statahead was stopped, maybe too many locks held!"
8558                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8559
8560                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8561                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8562                     lctl set_param -n llite.*.statahead_max 0
8563                     lctl get_param llite.*.statahead_max
8564                     cancel_lru_locks mdc
8565                     cancel_lru_locks osc
8566                     stime=`date +%s`
8567                     time ls -l $DIR/$tdir | wc -l
8568                     etime=`date +%s`
8569                     delta=$((etime - stime))
8570                     log "ls $i files again without statahead: $delta sec"
8571                     lctl set_param llite.*.statahead_max=$max
8572                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8573                         if [  $SLOWOK -eq 0 ]; then
8574                                 error "ls $i files is slower with statahead!"
8575                         else
8576                                 log "ls $i files is slower with statahead!"
8577                         fi
8578                         break
8579                     fi
8580                 fi
8581
8582                 [ $delta -gt 20 ] && break
8583                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8584                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8585         done
8586         log "ls done"
8587
8588         stime=`date +%s`
8589         rm -r $DIR/$tdir
8590         sync
8591         etime=`date +%s`
8592         delta=$((etime - stime))
8593         log "rm -r $DIR/$tdir/: $delta seconds"
8594         log "rm done"
8595         lctl get_param -n llite.*.statahead_stats
8596 }
8597 run_test 123a "verify statahead work"
8598
8599 test_123b () { # statahead(bug 15027)
8600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8601         test_mkdir -p $DIR/$tdir
8602         createmany -o $DIR/$tdir/$tfile-%d 1000
8603
8604         cancel_lru_locks mdc
8605         cancel_lru_locks osc
8606
8607 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8608         lctl set_param fail_loc=0x80000803
8609         ls -lR $DIR/$tdir > /dev/null
8610         log "ls done"
8611         lctl set_param fail_loc=0x0
8612         lctl get_param -n llite.*.statahead_stats
8613         rm -r $DIR/$tdir
8614         sync
8615
8616 }
8617 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8618
8619 test_124a() {
8620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8621         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8622                 skip "no lru resize on server" && return 0
8623         local NR=2000
8624         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8625
8626         log "create $NR files at $DIR/$tdir"
8627         createmany -o $DIR/$tdir/f $NR ||
8628                 error "failed to create $NR files in $DIR/$tdir"
8629
8630         cancel_lru_locks mdc
8631         ls -l $DIR/$tdir > /dev/null
8632
8633         local NSDIR=""
8634         local LRU_SIZE=0
8635         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8636                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8637                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8638                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8639                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8640                         log "NSDIR=$NSDIR"
8641                         log "NS=$(basename $NSDIR)"
8642                         break
8643                 fi
8644         done
8645
8646         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8647                 skip "Not enough cached locks created!"
8648                 return 0
8649         fi
8650         log "LRU=$LRU_SIZE"
8651
8652         local SLEEP=30
8653
8654         # We know that lru resize allows one client to hold $LIMIT locks
8655         # for 10h. After that locks begin to be killed by client.
8656         local MAX_HRS=10
8657         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8658         log "LIMIT=$LIMIT"
8659         if [ $LIMIT -lt $LRU_SIZE ]; then
8660             skip "Limit is too small $LIMIT"
8661             return 0
8662         fi
8663
8664         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8665         # killing locks. Some time was spent for creating locks. This means
8666         # that up to the moment of sleep finish we must have killed some of
8667         # them (10-100 locks). This depends on how fast ther were created.
8668         # Many of them were touched in almost the same moment and thus will
8669         # be killed in groups.
8670         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8671
8672         # Use $LRU_SIZE_B here to take into account real number of locks
8673         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8674         local LRU_SIZE_B=$LRU_SIZE
8675         log "LVF=$LVF"
8676         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8677         log "OLD_LVF=$OLD_LVF"
8678         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8679
8680         # Let's make sure that we really have some margin. Client checks
8681         # cached locks every 10 sec.
8682         SLEEP=$((SLEEP+20))
8683         log "Sleep ${SLEEP} sec"
8684         local SEC=0
8685         while ((SEC<$SLEEP)); do
8686                 echo -n "..."
8687                 sleep 5
8688                 SEC=$((SEC+5))
8689                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8690                 echo -n "$LRU_SIZE"
8691         done
8692         echo ""
8693         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8694         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8695
8696         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8697                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8698                 unlinkmany $DIR/$tdir/f $NR
8699                 return
8700         }
8701
8702         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8703         log "unlink $NR files at $DIR/$tdir"
8704         unlinkmany $DIR/$tdir/f $NR
8705 }
8706 run_test 124a "lru resize ======================================="
8707
8708 get_max_pool_limit()
8709 {
8710         local limit=$($LCTL get_param \
8711                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8712         local max=0
8713         for l in $limit; do
8714                 if [[ $l -gt $max ]]; then
8715                         max=$l
8716                 fi
8717         done
8718         echo $max
8719 }
8720
8721 test_124b() {
8722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8723         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8724                 skip "no lru resize on server" && return 0
8725
8726         LIMIT=$(get_max_pool_limit)
8727
8728         NR=$(($(default_lru_size)*20))
8729         if [[ $NR -gt $LIMIT ]]; then
8730                 log "Limit lock number by $LIMIT locks"
8731                 NR=$LIMIT
8732         fi
8733         lru_resize_disable mdc
8734         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8735                 error "failed to create $DIR/$tdir/disable_lru_resize"
8736
8737         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8738         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8739         cancel_lru_locks mdc
8740         stime=`date +%s`
8741         PID=""
8742         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8743         PID="$PID $!"
8744         sleep 2
8745         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8746         PID="$PID $!"
8747         sleep 2
8748         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8749         PID="$PID $!"
8750         wait $PID
8751         etime=`date +%s`
8752         nolruresize_delta=$((etime-stime))
8753         log "ls -la time: $nolruresize_delta seconds"
8754         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8755         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8756
8757         lru_resize_enable mdc
8758         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8759                 error "failed to create $DIR/$tdir/enable_lru_resize"
8760
8761         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8762         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8763         cancel_lru_locks mdc
8764         stime=`date +%s`
8765         PID=""
8766         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8767         PID="$PID $!"
8768         sleep 2
8769         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8770         PID="$PID $!"
8771         sleep 2
8772         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8773         PID="$PID $!"
8774         wait $PID
8775         etime=`date +%s`
8776         lruresize_delta=$((etime-stime))
8777         log "ls -la time: $lruresize_delta seconds"
8778         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8779
8780         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8781                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8782         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8783                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8784         else
8785                 log "lru resize performs the same with no lru resize"
8786         fi
8787         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8788 }
8789 run_test 124b "lru resize (performance test) ======================="
8790
8791 test_124c() {
8792         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8793         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8794                 skip "no lru resize on server" && return 0
8795
8796         # cache ununsed locks on client
8797         local nr=100
8798         cancel_lru_locks mdc
8799         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8800         createmany -o $DIR/$tdir/f $nr ||
8801                 error "failed to create $nr files in $DIR/$tdir"
8802         ls -l $DIR/$tdir > /dev/null
8803
8804         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8805         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8806         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8807         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8808         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8809
8810         # set lru_max_age to 1 sec
8811         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8812         echo "sleep $((recalc_p * 2)) seconds..."
8813         sleep $((recalc_p * 2))
8814
8815         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8816         # restore lru_max_age
8817         $LCTL set_param -n $nsdir.lru_max_age $max_age
8818         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8819         unlinkmany $DIR/$tdir/f $nr
8820 }
8821 run_test 124c "LRUR cancel very aged locks"
8822
8823 test_125() { # 13358
8824         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8825         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8826         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8827         test_mkdir -p $DIR/d125 || error "mkdir failed"
8828         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8829         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8830         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8831 }
8832 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8833
8834 test_126() { # bug 12829/13455
8835         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8836         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8837         $GSS && skip "must run as gss disabled" && return
8838
8839         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8840         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8841         rm -f $DIR/$tfile
8842         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8843 }
8844 run_test 126 "check that the fsgid provided by the client is taken into account"
8845
8846 test_127a() { # bug 15521
8847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8848         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8849         $LCTL set_param osc.*.stats=0
8850         FSIZE=$((2048 * 1024))
8851         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8852         cancel_lru_locks osc
8853         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8854
8855         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8856         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8857                 echo "got $COUNT $NAME"
8858                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8859                 eval $NAME=$COUNT || error "Wrong proc format"
8860
8861                 case $NAME in
8862                         read_bytes|write_bytes)
8863                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8864                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8865                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8866                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8867                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8868                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8869                                 error "sumsquare is too small: $SUMSQ"
8870                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8871                                 error "sumsquare is too big: $SUMSQ"
8872                         ;;
8873                         *) ;;
8874                 esac
8875         done < $DIR/${tfile}.tmp
8876
8877         #check that we actually got some stats
8878         [ "$read_bytes" ] || error "Missing read_bytes stats"
8879         [ "$write_bytes" ] || error "Missing write_bytes stats"
8880         [ "$read_bytes" != 0 ] || error "no read done"
8881         [ "$write_bytes" != 0 ] || error "no write done"
8882 }
8883 run_test 127a "verify the client stats are sane"
8884
8885 test_127b() { # bug LU-333
8886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8887         $LCTL set_param llite.*.stats=0
8888         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8889         # perform 2 reads and writes so MAX is different from SUM.
8890         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8891         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8892         cancel_lru_locks osc
8893         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8894         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8895
8896         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8897         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8898                 echo "got $COUNT $NAME"
8899                 eval $NAME=$COUNT || error "Wrong proc format"
8900
8901         case $NAME in
8902                 read_bytes)
8903                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8904                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8905                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8906                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8907                         ;;
8908                 write_bytes)
8909                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8910                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8911                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8912                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8913                         ;;
8914                         *) ;;
8915                 esac
8916         done < $TMP/${tfile}.tmp
8917
8918         #check that we actually got some stats
8919         [ "$read_bytes" ] || error "Missing read_bytes stats"
8920         [ "$write_bytes" ] || error "Missing write_bytes stats"
8921         [ "$read_bytes" != 0 ] || error "no read done"
8922         [ "$write_bytes" != 0 ] || error "no write done"
8923
8924         rm -f $TMP/${tfile}.tmp
8925 }
8926 run_test 127b "verify the llite client stats are sane"
8927
8928 test_128() { # bug 15212
8929         touch $DIR/$tfile
8930         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8931                 find $DIR/$tfile
8932                 find $DIR/$tfile
8933         EOF
8934
8935         result=$(grep error $TMP/$tfile.log)
8936         rm -f $DIR/$tfile $TMP/$tfile.log
8937         [ -z "$result" ] ||
8938                 error "consecutive find's under interactive lfs failed"
8939 }
8940 run_test 128 "interactive lfs for 2 consecutive find's"
8941
8942 set_dir_limits () {
8943         local mntdev
8944         local canondev
8945         local node
8946
8947         local LDPROC=/proc/fs/ldiskfs
8948         local facets=$(get_facets MDS)
8949
8950         for facet in ${facets//,/ }; do
8951                 canondev=$(ldiskfs_canon \
8952                            *.$(convert_facet2label $facet).mntdev $facet)
8953                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8954                                                 LDPROC=/sys/fs/ldiskfs
8955                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8956                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8957                                                 LDPROC=/sys/fs/ldiskfs
8958                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8959         done
8960 }
8961
8962 check_mds_dmesg() {
8963         local facets=$(get_facets MDS)
8964         for facet in ${facets//,/ }; do
8965                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8966         done
8967         return 1
8968 }
8969
8970 test_129() {
8971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8972         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8973                 skip "Only applicable to ldiskfs-based MDTs"
8974                 return
8975         fi
8976         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8977         local ENOSPC=28
8978         local EFBIG=27
8979         local has_warning=0
8980
8981         rm -rf $DIR/$tdir
8982         mkdir -p $DIR/$tdir
8983
8984         # block size of mds1
8985         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8986         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8987         local MAX=$((MDSBLOCKSIZE * 5))
8988         set_dir_limits $MAX $MAX
8989         local I=$(stat -c%s "$DIR/$tdir")
8990         local J=0
8991         while [[ $I -le $MAX ]]; do
8992                 $MULTIOP $DIR/$tdir/$J Oc
8993                 rc=$?
8994                 if [ $has_warning -eq 0 ]; then
8995                         check_mds_dmesg '"is approaching"' &&
8996                                 has_warning=1
8997                 fi
8998                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8999                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
9000                 #and EFBIG for previous versions
9001                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9002                         set_dir_limits 0 0
9003                         echo "return code $rc received as expected"
9004
9005                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
9006                                 error_exit "create failed w/o dir size limit"
9007
9008                         check_mds_dmesg '"has reached"' ||
9009                                 error_exit "has reached message should be output"
9010
9011                         [ $has_warning -eq 0 ] &&
9012                                 error_exit "warning message should be output"
9013
9014                         I=$(stat -c%s "$DIR/$tdir")
9015
9016                         if [ $(lustre_version_code $SINGLEMDS) -lt \
9017                                         $(version_code 2.4.51) ]
9018                         then
9019                                 [[ $I -eq $MAX ]] && return 0
9020                         else
9021                                 [[ $I -gt $MAX ]] && return 0
9022                         fi
9023                         error_exit "current dir size $I, previous limit $MAX"
9024                 elif [ $rc -ne 0 ]; then
9025                         set_dir_limits 0 0
9026                         error_exit "return code $rc received instead of expected " \
9027                                    "$EFBIG or $ENOSPC, files in dir $I"
9028                 fi
9029                 J=$((J+1))
9030                 I=$(stat -c%s "$DIR/$tdir")
9031         done
9032
9033         set_dir_limits 0 0
9034         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
9035 }
9036 run_test 129 "test directory size limit ========================"
9037
9038 OLDIFS="$IFS"
9039 cleanup_130() {
9040         trap 0
9041         IFS="$OLDIFS"
9042 }
9043
9044 test_130a() {
9045         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9046         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9047                 return
9048
9049         trap cleanup_130 EXIT RETURN
9050
9051         local fm_file=$DIR/$tfile
9052         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9053         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9054                 error "dd failed for $fm_file"
9055
9056         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9057         filefrag -ves $fm_file
9058         RC=$?
9059         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9060                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9061         [ $RC != 0 ] && error "filefrag $fm_file failed"
9062
9063         filefrag_op=$(filefrag -ve $fm_file |
9064                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9065         lun=$($GETSTRIPE -i $fm_file)
9066
9067         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9068         IFS=$'\n'
9069         tot_len=0
9070         for line in $filefrag_op
9071         do
9072                 frag_lun=`echo $line | cut -d: -f5`
9073                 ext_len=`echo $line | cut -d: -f4`
9074                 if (( $frag_lun != $lun )); then
9075                         cleanup_130
9076                         error "FIEMAP on 1-stripe file($fm_file) failed"
9077                         return
9078                 fi
9079                 (( tot_len += ext_len ))
9080         done
9081
9082         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9083                 cleanup_130
9084                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9085                 return
9086         fi
9087
9088         cleanup_130
9089
9090         echo "FIEMAP on single striped file succeeded"
9091 }
9092 run_test 130a "FIEMAP (1-stripe file)"
9093
9094 test_130b() {
9095         [ "$OSTCOUNT" -lt "2" ] &&
9096                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9097
9098         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9099         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9100                 return
9101
9102         trap cleanup_130 EXIT RETURN
9103
9104         local fm_file=$DIR/$tfile
9105         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9106                         error "setstripe on $fm_file"
9107         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9108                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9109
9110         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9111                 error "dd failed on $fm_file"
9112
9113         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9114         filefrag_op=$(filefrag -ve $fm_file |
9115                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9116
9117         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9118                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9119
9120         IFS=$'\n'
9121         tot_len=0
9122         num_luns=1
9123         for line in $filefrag_op
9124         do
9125                 frag_lun=$(echo $line | cut -d: -f5 |
9126                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9127                 ext_len=$(echo $line | cut -d: -f4)
9128                 if (( $frag_lun != $last_lun )); then
9129                         if (( tot_len != 1024 )); then
9130                                 cleanup_130
9131                                 error "FIEMAP on $fm_file failed; returned " \
9132                                 "len $tot_len for OST $last_lun instead of 1024"
9133                                 return
9134                         else
9135                                 (( num_luns += 1 ))
9136                                 tot_len=0
9137                         fi
9138                 fi
9139                 (( tot_len += ext_len ))
9140                 last_lun=$frag_lun
9141         done
9142         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9143                 cleanup_130
9144                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9145                         "luns or wrong len for OST $last_lun"
9146                 return
9147         fi
9148
9149         cleanup_130
9150
9151         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9152 }
9153 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9154
9155 test_130c() {
9156         [ "$OSTCOUNT" -lt "2" ] &&
9157                 skip_env "skipping FIEMAP on 2-stripe file" && return
9158
9159         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9160         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9161                 return
9162
9163         trap cleanup_130 EXIT RETURN
9164
9165         local fm_file=$DIR/$tfile
9166         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9167         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9168                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9169
9170         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9171                         error "dd failed on $fm_file"
9172
9173         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9174         filefrag_op=$(filefrag -ve $fm_file |
9175                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9176
9177         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9178                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9179
9180         IFS=$'\n'
9181         tot_len=0
9182         num_luns=1
9183         for line in $filefrag_op
9184         do
9185                 frag_lun=$(echo $line | cut -d: -f5 |
9186                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9187                 ext_len=$(echo $line | cut -d: -f4)
9188                 if (( $frag_lun != $last_lun )); then
9189                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9190                         if (( logical != 512 )); then
9191                                 cleanup_130
9192                                 error "FIEMAP on $fm_file failed; returned " \
9193                                 "logical start for lun $logical instead of 512"
9194                                 return
9195                         fi
9196                         if (( tot_len != 512 )); then
9197                                 cleanup_130
9198                                 error "FIEMAP on $fm_file failed; returned " \
9199                                 "len $tot_len for OST $last_lun instead of 1024"
9200                                 return
9201                         else
9202                                 (( num_luns += 1 ))
9203                                 tot_len=0
9204                         fi
9205                 fi
9206                 (( tot_len += ext_len ))
9207                 last_lun=$frag_lun
9208         done
9209         if (( num_luns != 2 || tot_len != 512 )); then
9210                 cleanup_130
9211                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9212                         "luns or wrong len for OST $last_lun"
9213                 return
9214         fi
9215
9216         cleanup_130
9217
9218         echo "FIEMAP on 2-stripe file with hole succeeded"
9219 }
9220 run_test 130c "FIEMAP (2-stripe file with hole)"
9221
9222 test_130d() {
9223         [ "$OSTCOUNT" -lt "3" ] &&
9224                 skip_env "skipping FIEMAP on N-stripe file test" && return
9225
9226         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9227         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9228                 return
9229
9230         trap cleanup_130 EXIT RETURN
9231
9232         local fm_file=$DIR/$tfile
9233         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9234                         error "setstripe on $fm_file"
9235         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9236                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9237
9238         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9239         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9240                 error "dd failed on $fm_file"
9241
9242         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9243         filefrag_op=$(filefrag -ve $fm_file |
9244                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9245
9246         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9247                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9248
9249         IFS=$'\n'
9250         tot_len=0
9251         num_luns=1
9252         for line in $filefrag_op
9253         do
9254                 frag_lun=$(echo $line | cut -d: -f5 |
9255                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9256                 ext_len=$(echo $line | cut -d: -f4)
9257                 if (( $frag_lun != $last_lun )); then
9258                         if (( tot_len != 1024 )); then
9259                                 cleanup_130
9260                                 error "FIEMAP on $fm_file failed; returned " \
9261                                 "len $tot_len for OST $last_lun instead of 1024"
9262                                 return
9263                         else
9264                                 (( num_luns += 1 ))
9265                                 tot_len=0
9266                         fi
9267                 fi
9268                 (( tot_len += ext_len ))
9269                 last_lun=$frag_lun
9270         done
9271         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9272                 cleanup_130
9273                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9274                         "luns or wrong len for OST $last_lun"
9275                 return
9276         fi
9277
9278         cleanup_130
9279
9280         echo "FIEMAP on N-stripe file succeeded"
9281 }
9282 run_test 130d "FIEMAP (N-stripe file)"
9283
9284 test_130e() {
9285         [ "$OSTCOUNT" -lt "2" ] &&
9286                 skip_env "skipping continuation FIEMAP test" && return
9287
9288         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9289         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9290
9291         trap cleanup_130 EXIT RETURN
9292
9293         local fm_file=$DIR/$tfile
9294         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9295         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9296                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9297
9298         NUM_BLKS=512
9299         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9300         for ((i = 0; i < $NUM_BLKS; i++))
9301         do
9302                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9303         done
9304
9305         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9306         filefrag_op=$(filefrag -ve $fm_file |
9307                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9308
9309         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9310                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9311
9312         IFS=$'\n'
9313         tot_len=0
9314         num_luns=1
9315         for line in $filefrag_op
9316         do
9317                 frag_lun=$(echo $line | cut -d: -f5 |
9318                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9319                 ext_len=$(echo $line | cut -d: -f4)
9320                 if (( $frag_lun != $last_lun )); then
9321                         if (( tot_len != $EXPECTED_LEN )); then
9322                                 cleanup_130
9323                                 error "FIEMAP on $fm_file failed; returned " \
9324                                 "len $tot_len for OST $last_lun instead " \
9325                                 "of $EXPECTED_LEN"
9326                                 return
9327                         else
9328                                 (( num_luns += 1 ))
9329                                 tot_len=0
9330                         fi
9331                 fi
9332                 (( tot_len += ext_len ))
9333                 last_lun=$frag_lun
9334         done
9335         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9336                 cleanup_130
9337                 error "FIEMAP on $fm_file failed; returned wrong number " \
9338                         "of luns or wrong len for OST $last_lun"
9339                 return
9340         fi
9341
9342         cleanup_130
9343
9344         echo "FIEMAP with continuation calls succeeded"
9345 }
9346 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9347
9348 # Test for writev/readv
9349 test_131a() {
9350         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9351         error "writev test failed"
9352         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9353         error "readv failed"
9354         rm -f $DIR/$tfile
9355 }
9356 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9357
9358 test_131b() {
9359         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9360         error "append writev test failed"
9361         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9362         error "append writev test failed"
9363         rm -f $DIR/$tfile
9364 }
9365 run_test 131b "test append writev"
9366
9367 test_131c() {
9368         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9369         error "NOT PASS"
9370 }
9371 run_test 131c "test read/write on file w/o objects"
9372
9373 test_131d() {
9374         rwv -f $DIR/$tfile -w -n 1 1572864
9375         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9376         if [ "$NOB" != 1572864 ]; then
9377                 error "Short read filed: read $NOB bytes instead of 1572864"
9378         fi
9379         rm -f $DIR/$tfile
9380 }
9381 run_test 131d "test short read"
9382
9383 test_131e() {
9384         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9385         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9386         error "read hitting hole failed"
9387         rm -f $DIR/$tfile
9388 }
9389 run_test 131e "test read hitting hole"
9390
9391 check_stats() {
9392         local res
9393         local count
9394         case $1 in
9395         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9396                  ;;
9397         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9398                  ;;
9399         *) error "Wrong argument $1" ;;
9400         esac
9401         echo $res
9402         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9403         # if the argument $3 is zero, it means any stat increment is ok.
9404         if [[ $3 -gt 0 ]]; then
9405                 count=$(echo $res | awk '{ print $2 }')
9406                 [[ $count -ne $3 ]] &&
9407                         error "The $2 counter on $1 is wrong - expected $3"
9408         fi
9409 }
9410
9411 test_133a() {
9412         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9413         remote_ost_nodsh && skip "remote OST with nodsh" && return
9414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9415
9416         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9417                 { skip "MDS doesn't support rename stats"; return; }
9418         local testdir=$DIR/${tdir}/stats_testdir
9419         mkdir -p $DIR/${tdir}
9420
9421         # clear stats.
9422         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9423         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9424
9425         # verify mdt stats first.
9426         mkdir ${testdir} || error "mkdir failed"
9427         check_stats $SINGLEMDS "mkdir" 1
9428         touch ${testdir}/${tfile} || error "touch failed"
9429         check_stats $SINGLEMDS "open" 1
9430         check_stats $SINGLEMDS "close" 1
9431         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9432                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9433                 check_stats $SINGLEMDS "mknod" 2
9434         }
9435         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9436         check_stats $SINGLEMDS "unlink" 1
9437         rm -f ${testdir}/${tfile} || error "file remove failed"
9438         check_stats $SINGLEMDS "unlink" 2
9439
9440         # remove working dir and check mdt stats again.
9441         rmdir ${testdir} || error "rmdir failed"
9442         check_stats $SINGLEMDS "rmdir" 1
9443
9444         local testdir1=$DIR/${tdir}/stats_testdir1
9445         mkdir -p ${testdir}
9446         mkdir -p ${testdir1}
9447         touch ${testdir1}/test1
9448         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9449         check_stats $SINGLEMDS "crossdir_rename" 1
9450
9451         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9452         check_stats $SINGLEMDS "samedir_rename" 1
9453
9454         rm -rf $DIR/${tdir}
9455 }
9456 run_test 133a "Verifying MDT stats ========================================"
9457
9458 test_133b() {
9459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9460         remote_ost_nodsh && skip "remote OST with nodsh" && return
9461         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9462         local testdir=$DIR/${tdir}/stats_testdir
9463         mkdir -p ${testdir} || error "mkdir failed"
9464         touch ${testdir}/${tfile} || error "touch failed"
9465         cancel_lru_locks mdc
9466
9467         # clear stats.
9468         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9469         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9470
9471         # extra mdt stats verification.
9472         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9473         check_stats $SINGLEMDS "setattr" 1
9474         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9475         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9476         then            # LU-1740
9477                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9478                 check_stats $SINGLEMDS "getattr" 1
9479         fi
9480         $LFS df || error "lfs failed"
9481         check_stats $SINGLEMDS "statfs" 1
9482
9483         rm -rf $DIR/${tdir}
9484 }
9485 run_test 133b "Verifying extra MDT stats =================================="
9486
9487 test_133c() {
9488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9489         remote_ost_nodsh && skip "remote OST with nodsh" && return
9490         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9491         local testdir=$DIR/${tdir}/stats_testdir
9492         test_mkdir -p ${testdir} || error "mkdir failed"
9493
9494         # verify obdfilter stats.
9495         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9496         sync
9497         cancel_lru_locks osc
9498         wait_delete_completed
9499
9500         # clear stats.
9501         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9502         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9503
9504         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9505         sync
9506         cancel_lru_locks osc
9507         check_stats ost "write" 1
9508
9509         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9510         check_stats ost "read" 1
9511
9512         > ${testdir}/${tfile} || error "truncate failed"
9513         check_stats ost "punch" 1
9514
9515         rm -f ${testdir}/${tfile} || error "file remove failed"
9516         wait_delete_completed
9517         check_stats ost "destroy" 1
9518
9519         rm -rf $DIR/${tdir}
9520 }
9521 run_test 133c "Verifying OST stats ========================================"
9522
9523 order_2() {
9524         local value=$1
9525         local orig=$value
9526         local order=1
9527
9528         while [ $value -ge 2 ]; do
9529                 order=$((order*2))
9530                 value=$((value/2))
9531         done
9532
9533         if [ $orig -gt $order ]; then
9534                 order=$((order*2))
9535         fi
9536         echo $order
9537 }
9538
9539 size_in_KMGT() {
9540     local value=$1
9541     local size=('K' 'M' 'G' 'T');
9542     local i=0
9543     local size_string=$value
9544
9545     while [ $value -ge 1024 ]; do
9546         if [ $i -gt 3 ]; then
9547             #T is the biggest unit we get here, if that is bigger,
9548             #just return XXXT
9549             size_string=${value}T
9550             break
9551         fi
9552         value=$((value >> 10))
9553         if [ $value -lt 1024 ]; then
9554             size_string=${value}${size[$i]}
9555             break
9556         fi
9557         i=$((i + 1))
9558     done
9559
9560     echo $size_string
9561 }
9562
9563 get_rename_size() {
9564     local size=$1
9565     local context=${2:-.}
9566     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9567                 grep -A1 $context |
9568                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9569     echo $sample
9570 }
9571
9572 test_133d() {
9573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9574         remote_ost_nodsh && skip "remote OST with nodsh" && return
9575         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9576         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9577         { skip "MDS doesn't support rename stats"; return; }
9578
9579         local testdir1=$DIR/${tdir}/stats_testdir1
9580         local testdir2=$DIR/${tdir}/stats_testdir2
9581
9582         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9583
9584         mkdir -p ${testdir1} || error "mkdir failed"
9585         mkdir -p ${testdir2} || error "mkdir failed"
9586
9587         createmany -o $testdir1/test 512 || error "createmany failed"
9588
9589         # check samedir rename size
9590         mv ${testdir1}/test0 ${testdir1}/test_0
9591
9592         local testdir1_size=$(ls -l $DIR/${tdir} |
9593                 awk '/stats_testdir1/ {print $5}')
9594         local testdir2_size=$(ls -l $DIR/${tdir} |
9595                 awk '/stats_testdir2/ {print $5}')
9596
9597         testdir1_size=$(order_2 $testdir1_size)
9598         testdir2_size=$(order_2 $testdir2_size)
9599
9600         testdir1_size=$(size_in_KMGT $testdir1_size)
9601         testdir2_size=$(size_in_KMGT $testdir2_size)
9602
9603         echo "source rename dir size: ${testdir1_size}"
9604         echo "target rename dir size: ${testdir2_size}"
9605
9606         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9607         eval $cmd || error "$cmd failed"
9608         local samedir=$($cmd | grep 'same_dir')
9609         local same_sample=$(get_rename_size $testdir1_size)
9610         [ -z "$samedir" ] && error "samedir_rename_size count error"
9611         [[ $same_sample -eq 1 ]] ||
9612                 error "samedir_rename_size error $same_sample"
9613         echo "Check same dir rename stats success"
9614
9615         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9616
9617         # check crossdir rename size
9618         mv ${testdir1}/test_0 ${testdir2}/test_0
9619
9620         testdir1_size=$(ls -l $DIR/${tdir} |
9621                 awk '/stats_testdir1/ {print $5}')
9622         testdir2_size=$(ls -l $DIR/${tdir} |
9623                 awk '/stats_testdir2/ {print $5}')
9624
9625         testdir1_size=$(order_2 $testdir1_size)
9626         testdir2_size=$(order_2 $testdir2_size)
9627
9628         testdir1_size=$(size_in_KMGT $testdir1_size)
9629         testdir2_size=$(size_in_KMGT $testdir2_size)
9630
9631         echo "source rename dir size: ${testdir1_size}"
9632         echo "target rename dir size: ${testdir2_size}"
9633
9634         eval $cmd || error "$cmd failed"
9635         local crossdir=$($cmd | grep 'crossdir')
9636         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9637         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9638         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9639         [[ $src_sample -eq 1 ]] ||
9640                 error "crossdir_rename_size error $src_sample"
9641         [[ $tgt_sample -eq 1 ]] ||
9642                 error "crossdir_rename_size error $tgt_sample"
9643         echo "Check cross dir rename stats success"
9644         rm -rf $DIR/${tdir}
9645 }
9646 run_test 133d "Verifying rename_stats ========================================"
9647
9648 test_133e() {
9649         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9650         remote_ost_nodsh && skip "remote OST with nodsh" && return
9651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9652         local testdir=$DIR/${tdir}/stats_testdir
9653         local ctr f0 f1 bs=32768 count=42 sum
9654
9655         mkdir -p ${testdir} || error "mkdir failed"
9656
9657         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9658
9659         for ctr in {write,read}_bytes; do
9660                 sync
9661                 cancel_lru_locks osc
9662
9663                 do_facet ost1 $LCTL set_param -n \
9664                         "obdfilter.*.exports.clear=clear"
9665
9666                 if [ $ctr = write_bytes ]; then
9667                         f0=/dev/zero
9668                         f1=${testdir}/${tfile}
9669                 else
9670                         f0=${testdir}/${tfile}
9671                         f1=/dev/null
9672                 fi
9673
9674                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9675                         error "dd failed"
9676                 sync
9677                 cancel_lru_locks osc
9678
9679                 sum=$(do_facet ost1 $LCTL get_param \
9680                         "obdfilter.*.exports.*.stats" |
9681                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9682                                 $1 == ctr { sum += $7 }
9683                                 END { printf("%0.0f", sum) }')
9684
9685                 if ((sum != bs * count)); then
9686                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9687                 fi
9688         done
9689
9690         rm -rf $DIR/${tdir}
9691 }
9692 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9693
9694 proc_dirs=""
9695 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9696            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9697            /sys/kernel/debug/lustre/; do
9698         [[ -d $dir ]] && proc_dirs+=" $dir"
9699 done
9700
9701 test_133f() {
9702         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9703         remote_ost_nodsh && skip "remote OST with nodsh" && return
9704         # First without trusting modes.
9705         find $proc_dirs -exec cat '{}' \; &> /dev/null
9706
9707         # Second verifying readability.
9708         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9709
9710         # eventually, this can also be replaced with "lctl get_param -R",
9711         # but not until that option is always available on the server
9712         local facet
9713         for facet in $SINGLEMDS ost1; do
9714                 do_facet $facet find $proc_dirs \
9715                         ! -name req_history \
9716                         -exec cat '{}' \\\; &> /dev/null
9717
9718                 do_facet $facet find $proc_dirs \
9719                         ! -name req_history \
9720                         -type f \
9721                         -exec cat '{}' \\\; &> /dev/null ||
9722                                 error "proc file read failed"
9723         done
9724 }
9725 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9726
9727 test_133g() {
9728         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9729         remote_ost_nodsh && skip "remote OST with nodsh" && return
9730         # Second verifying writability.
9731         find $proc_dirs \
9732                 -type f \
9733                 -not -name force_lbug \
9734                 -not -name changelog_mask \
9735                 -exec badarea_io '{}' \; &> /dev/null ||
9736                 error "find $proc_dirs failed"
9737
9738         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9739                 skip "Too old lustre on MDS" && return
9740
9741         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9742                 skip "Too old lustre on ost1" && return
9743
9744         local facet
9745         for facet in $SINGLEMDS ost1; do
9746                 do_facet $facet find $proc_dirs \
9747                         -type f \
9748                         -not -name force_lbug \
9749                         -not -name changelog_mask \
9750                         -exec badarea_io '{}' \\\; &> /dev/null ||
9751                 error "$facet find $proc_dirs failed"
9752
9753         done
9754
9755         # remount the FS in case writes/reads /proc break the FS
9756         cleanup || error "failed to unmount"
9757         setup || error "failed to setup"
9758         true
9759 }
9760 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9761
9762 test_134a() {
9763         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9764         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9765                 skip "Need MDS version at least 2.7.54" && return
9766
9767         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9768         cancel_lru_locks mdc
9769
9770         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9771         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9772         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9773
9774         local nr=1000
9775         createmany -o $DIR/$tdir/f $nr ||
9776                 error "failed to create $nr files in $DIR/$tdir"
9777         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9778
9779         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9780         do_facet mds1 $LCTL set_param fail_loc=0x327
9781         do_facet mds1 $LCTL set_param fail_val=500
9782         touch $DIR/$tdir/m
9783
9784         echo "sleep 10 seconds ..."
9785         sleep 10
9786         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9787
9788         do_facet mds1 $LCTL set_param fail_loc=0
9789         do_facet mds1 $LCTL set_param fail_val=0
9790         [ $lck_cnt -lt $unused ] ||
9791                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9792
9793         rm $DIR/$tdir/m
9794         unlinkmany $DIR/$tdir/f $nr
9795 }
9796 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9797
9798 test_134b() {
9799         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9800         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9801                 skip "Need MDS version at least 2.7.54" && return
9802
9803         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9804         cancel_lru_locks mdc
9805
9806         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9807                         ldlm.lock_reclaim_threshold_mb)
9808         # disable reclaim temporarily
9809         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9810
9811         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9812         do_facet mds1 $LCTL set_param fail_loc=0x328
9813         do_facet mds1 $LCTL set_param fail_val=500
9814
9815         $LCTL set_param debug=+trace
9816
9817         local nr=600
9818         createmany -o $DIR/$tdir/f $nr &
9819         local create_pid=$!
9820
9821         echo "Sleep $TIMEOUT seconds ..."
9822         sleep $TIMEOUT
9823         if ! ps -p $create_pid  > /dev/null 2>&1; then
9824                 do_facet mds1 $LCTL set_param fail_loc=0
9825                 do_facet mds1 $LCTL set_param fail_val=0
9826                 do_facet mds1 $LCTL set_param \
9827                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9828                 error "createmany finished incorrectly!"
9829         fi
9830         do_facet mds1 $LCTL set_param fail_loc=0
9831         do_facet mds1 $LCTL set_param fail_val=0
9832         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9833         wait $create_pid || return 1
9834
9835         unlinkmany $DIR/$tdir/f $nr
9836 }
9837 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9838
9839 test_140() { #bug-17379
9840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9841         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9842         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9843         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
9844
9845         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9846         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9847         local i=0
9848         while i=`expr $i + 1`; do
9849                 test_mkdir -p $i || error "Creating dir $i"
9850                 cd $i || error "Changing to $i"
9851                 ln -s ../stat stat || error "Creating stat symlink"
9852                 # Read the symlink until ELOOP present,
9853                 # not LBUGing the system is considered success,
9854                 # we didn't overrun the stack.
9855                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9856                 [ $ret -ne 0 ] && {
9857                         if [ $ret -eq 40 ]; then
9858                                 break  # -ELOOP
9859                         else
9860                                 error "Open stat symlink"
9861                                 return
9862                         fi
9863                 }
9864         done
9865         i=`expr $i - 1`
9866         echo "The symlink depth = $i"
9867         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9868                                         error "Invalid symlink depth"
9869
9870         # Test recursive symlink
9871         ln -s symlink_self symlink_self
9872         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9873         echo "open symlink_self returns $ret"
9874         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9875 }
9876 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9877
9878 test_150() {
9879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9880         local TF="$TMP/$tfile"
9881
9882         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9883         cp $TF $DIR/$tfile
9884         cancel_lru_locks osc
9885         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9886         remount_client $MOUNT
9887         df -P $MOUNT
9888         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9889
9890         $TRUNCATE $TF 6000
9891         $TRUNCATE $DIR/$tfile 6000
9892         cancel_lru_locks osc
9893         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9894
9895         echo "12345" >>$TF
9896         echo "12345" >>$DIR/$tfile
9897         cancel_lru_locks osc
9898         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9899
9900         echo "12345" >>$TF
9901         echo "12345" >>$DIR/$tfile
9902         cancel_lru_locks osc
9903         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9904
9905         rm -f $TF
9906         true
9907 }
9908 run_test 150 "truncate/append tests"
9909
9910 #LU-2902 roc_hit was not able to read all values from lproc
9911 function roc_hit_init() {
9912         local list=$(comma_list $(osts_nodes))
9913         local dir=$DIR/$tdir-check
9914         local file=$dir/file
9915         local BEFORE
9916         local AFTER
9917         local idx
9918
9919         test_mkdir -p $dir
9920         #use setstripe to do a write to every ost
9921         for i in $(seq 0 $((OSTCOUNT-1))); do
9922                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9923                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9924                 idx=$(printf %04x $i)
9925                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9926                         awk '$1 == "cache_access" {sum += $7}
9927                                 END { printf("%0.0f", sum) }')
9928
9929                 cancel_lru_locks osc
9930                 cat $file >/dev/null
9931
9932                 AFTER=$(get_osd_param $list *OST*$idx stats |
9933                         awk '$1 == "cache_access" {sum += $7}
9934                                 END { printf("%0.0f", sum) }')
9935
9936                 echo BEFORE:$BEFORE AFTER:$AFTER
9937                 if ! let "AFTER - BEFORE == 4"; then
9938                         rm -rf $dir
9939                         error "roc_hit is not safe to use"
9940                 fi
9941                 rm $file
9942         done
9943
9944         rm -rf $dir
9945 }
9946
9947 function roc_hit() {
9948         local list=$(comma_list $(osts_nodes))
9949         echo $(get_osd_param $list '' stats |
9950                 awk '$1 == "cache_hit" {sum += $7}
9951                         END { printf("%0.0f", sum) }')
9952 }
9953
9954 function set_cache() {
9955         local on=1
9956
9957         if [ "$2" == "off" ]; then
9958                 on=0;
9959         fi
9960         local list=$(comma_list $(osts_nodes))
9961         set_osd_param $list '' $1_cache_enable $on
9962
9963         cancel_lru_locks osc
9964 }
9965
9966 test_151() {
9967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9968         remote_ost_nodsh && skip "remote OST with nodsh" && return
9969
9970         local CPAGES=3
9971         local list=$(comma_list $(osts_nodes))
9972
9973         # check whether obdfilter is cache capable at all
9974         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9975                 echo "not cache-capable obdfilter"
9976                 return 0
9977         fi
9978
9979         # check cache is enabled on all obdfilters
9980         if get_osd_param $list '' read_cache_enable | grep 0; then
9981                 echo "oss cache is disabled"
9982                 return 0
9983         fi
9984
9985         set_osd_param $list '' writethrough_cache_enable 1
9986
9987         # check write cache is enabled on all obdfilters
9988         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9989                 echo "oss write cache is NOT enabled"
9990                 return 0
9991         fi
9992
9993         roc_hit_init
9994
9995         #define OBD_FAIL_OBD_NO_LRU  0x609
9996         do_nodes $list $LCTL set_param fail_loc=0x609
9997
9998         # pages should be in the case right after write
9999         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10000                 error "dd failed"
10001
10002         local BEFORE=$(roc_hit)
10003         cancel_lru_locks osc
10004         cat $DIR/$tfile >/dev/null
10005         local AFTER=$(roc_hit)
10006
10007         do_nodes $list $LCTL set_param fail_loc=0
10008
10009         if ! let "AFTER - BEFORE == CPAGES"; then
10010                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10011         fi
10012
10013         # the following read invalidates the cache
10014         cancel_lru_locks osc
10015         set_osd_param $list '' read_cache_enable 0
10016         cat $DIR/$tfile >/dev/null
10017
10018         # now data shouldn't be found in the cache
10019         BEFORE=$(roc_hit)
10020         cancel_lru_locks osc
10021         cat $DIR/$tfile >/dev/null
10022         AFTER=$(roc_hit)
10023         if let "AFTER - BEFORE != 0"; then
10024                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10025         fi
10026
10027         set_osd_param $list '' read_cache_enable 1
10028         rm -f $DIR/$tfile
10029 }
10030 run_test 151 "test cache on oss and controls ==============================="
10031
10032 test_152() {
10033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10034         local TF="$TMP/$tfile"
10035
10036         # simulate ENOMEM during write
10037 #define OBD_FAIL_OST_NOMEM      0x226
10038         lctl set_param fail_loc=0x80000226
10039         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10040         cp $TF $DIR/$tfile
10041         sync || error "sync failed"
10042         lctl set_param fail_loc=0
10043
10044         # discard client's cache
10045         cancel_lru_locks osc
10046
10047         # simulate ENOMEM during read
10048         lctl set_param fail_loc=0x80000226
10049         cmp $TF $DIR/$tfile || error "cmp failed"
10050         lctl set_param fail_loc=0
10051
10052         rm -f $TF
10053 }
10054 run_test 152 "test read/write with enomem ============================"
10055
10056 test_153() {
10057         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10058 }
10059 run_test 153 "test if fdatasync does not crash ======================="
10060
10061 dot_lustre_fid_permission_check() {
10062         local fid=$1
10063         local ffid=$MOUNT/.lustre/fid/$fid
10064         local test_dir=$2
10065
10066         echo "stat fid $fid"
10067         stat $ffid > /dev/null || error "stat $ffid failed."
10068         echo "touch fid $fid"
10069         touch $ffid || error "touch $ffid failed."
10070         echo "write to fid $fid"
10071         cat /etc/hosts > $ffid || error "write $ffid failed."
10072         echo "read fid $fid"
10073         diff /etc/hosts $ffid || error "read $ffid failed."
10074         echo "append write to fid $fid"
10075         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10076         echo "rename fid $fid"
10077         mv $ffid $test_dir/$tfile.1 &&
10078                 error "rename $ffid to $tfile.1 should fail."
10079         touch $test_dir/$tfile.1
10080         mv $test_dir/$tfile.1 $ffid &&
10081                 error "rename $tfile.1 to $ffid should fail."
10082         rm -f $test_dir/$tfile.1
10083         echo "truncate fid $fid"
10084         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10085         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10086                 echo "link fid $fid"
10087                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10088         fi
10089         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10090                 echo "setfacl fid $fid"
10091                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10092                 echo "getfacl fid $fid"
10093                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10094         fi
10095         echo "unlink fid $fid"
10096         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10097         echo "mknod fid $fid"
10098         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10099
10100         fid=[0xf00000400:0x1:0x0]
10101         ffid=$MOUNT/.lustre/fid/$fid
10102
10103         echo "stat non-exist fid $fid"
10104         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10105         echo "write to non-exist fid $fid"
10106         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10107         echo "link new fid $fid"
10108         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10109
10110         mkdir -p $test_dir/$tdir
10111         touch $test_dir/$tdir/$tfile
10112         fid=$($LFS path2fid $test_dir/$tdir)
10113         rc=$?
10114         [ $rc -ne 0 ] &&
10115                 error "error: could not get fid for $test_dir/$dir/$tfile."
10116
10117         ffid=$MOUNT/.lustre/fid/$fid
10118
10119         echo "ls $fid"
10120         ls $ffid > /dev/null || error "ls $ffid failed."
10121         echo "touch $fid/$tfile.1"
10122         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10123
10124         echo "touch $MOUNT/.lustre/fid/$tfile"
10125         touch $MOUNT/.lustre/fid/$tfile && \
10126                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10127
10128         echo "setxattr to $MOUNT/.lustre/fid"
10129         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10130
10131         echo "listxattr for $MOUNT/.lustre/fid"
10132         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10133
10134         echo "delxattr from $MOUNT/.lustre/fid"
10135         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10136
10137         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10138         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10139                 error "touch invalid fid should fail."
10140
10141         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10142         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10143                 error "touch non-normal fid should fail."
10144
10145         echo "rename $tdir to $MOUNT/.lustre/fid"
10146         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10147                 error "rename to $MOUNT/.lustre/fid should fail."
10148
10149         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10150         then            # LU-3547
10151                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10152                 local new_obf_mode=777
10153
10154                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10155                 chmod $new_obf_mode $DIR/.lustre/fid ||
10156                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10157
10158                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10159                 [ $obf_mode -eq $new_obf_mode ] ||
10160                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10161
10162                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10163                 chmod $old_obf_mode $DIR/.lustre/fid ||
10164                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10165         fi
10166
10167         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10168         fid=$($LFS path2fid $test_dir/$tfile-2)
10169
10170         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10171         then # LU-5424
10172                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10173                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10174                         error "create lov data thru .lustre failed"
10175         fi
10176         echo "cp /etc/passwd $test_dir/$tfile-2"
10177         cp /etc/passwd $test_dir/$tfile-2 ||
10178                 error "copy to $test_dir/$tfile-2 failed."
10179         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10180         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10181                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10182
10183         rm -rf $test_dir/tfile.lnk
10184         rm -rf $test_dir/$tfile-2
10185 }
10186
10187 test_154A() {
10188         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10189                 skip "Need MDS version at least 2.4.1" && return
10190
10191         local tf=$DIR/$tfile
10192         touch $tf
10193
10194         local fid=$($LFS path2fid $tf)
10195         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10196
10197         # check that we get the same pathname back
10198         local found=$($LFS fid2path $MOUNT "$fid")
10199         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10200         [ "$found" == "$tf" ] ||
10201                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10202 }
10203 run_test 154A "lfs path2fid and fid2path basic checks"
10204
10205 test_154a() {
10206         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10207         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10208                 { skip "Need MDS version at least 2.2.51"; return 0; }
10209         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10210         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10211
10212         cp /etc/hosts $DIR/$tfile
10213
10214         fid=$($LFS path2fid $DIR/$tfile)
10215         rc=$?
10216         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10217
10218         dot_lustre_fid_permission_check "$fid" $DIR ||
10219                 error "dot lustre permission check $fid failed"
10220
10221         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10222
10223         touch $MOUNT/.lustre/file &&
10224                 error "creation is not allowed under .lustre"
10225
10226         mkdir $MOUNT/.lustre/dir &&
10227                 error "mkdir is not allowed under .lustre"
10228
10229         rm -rf $DIR/$tfile
10230 }
10231 run_test 154a "Open-by-FID"
10232
10233 test_154b() {
10234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10235         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10236                 { skip "Need MDS version at least 2.2.51"; return 0; }
10237         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10238
10239         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10240
10241         local remote_dir=$DIR/$tdir/remote_dir
10242         local MDTIDX=1
10243         local rc=0
10244
10245         mkdir -p $DIR/$tdir
10246         $LFS mkdir -i $MDTIDX $remote_dir ||
10247                 error "create remote directory failed"
10248
10249         cp /etc/hosts $remote_dir/$tfile
10250
10251         fid=$($LFS path2fid $remote_dir/$tfile)
10252         rc=$?
10253         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10254
10255         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10256                 error "dot lustre permission check $fid failed"
10257         rm -rf $DIR/$tdir
10258 }
10259 run_test 154b "Open-by-FID for remote directory"
10260
10261 test_154c() {
10262         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10263                 skip "Need MDS version at least 2.4.1" && return
10264
10265         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10266         local FID1=$($LFS path2fid $DIR/$tfile.1)
10267         local FID2=$($LFS path2fid $DIR/$tfile.2)
10268         local FID3=$($LFS path2fid $DIR/$tfile.3)
10269
10270         local N=1
10271         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10272                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10273                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10274                 local want=FID$N
10275                 [ "$FID" = "${!want}" ] ||
10276                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10277                 N=$((N + 1))
10278         done
10279
10280         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10281         do
10282                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10283                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10284                 N=$((N + 1))
10285         done
10286 }
10287 run_test 154c "lfs path2fid and fid2path multiple arguments"
10288
10289 test_154d() {
10290         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10291         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10292                 skip "Need MDS version at least 2.5.53" && return
10293
10294         if remote_mds; then
10295                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10296         else
10297                 nid="0@lo"
10298         fi
10299         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10300         local fd
10301         local cmd
10302
10303         rm -f $DIR/$tfile
10304         touch $DIR/$tfile
10305
10306         local fid=$($LFS path2fid $DIR/$tfile)
10307         # Open the file
10308         fd=$(free_fd)
10309         cmd="exec $fd<$DIR/$tfile"
10310         eval $cmd
10311         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10312         echo "$fid_list" | grep "$fid"
10313         rc=$?
10314
10315         cmd="exec $fd>/dev/null"
10316         eval $cmd
10317         if [ $rc -ne 0 ]; then
10318                 error "FID $fid not found in open files list $fid_list"
10319         fi
10320 }
10321 run_test 154d "Verify open file fid"
10322
10323 test_154e()
10324 {
10325         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10326                 skip "Need MDS version at least 2.6.50" && return
10327
10328         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10329                 error ".lustre returned by readdir"
10330         fi
10331 }
10332 run_test 154e ".lustre is not returned by readdir"
10333
10334 test_154f() {
10335         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10336         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10337         test_mkdir -p -c1 $DIR/$tdir/d
10338         # test dirs inherit from its stripe
10339         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10340         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10341         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10342         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10343         touch $DIR/f
10344
10345         # get fid of parents
10346         local FID0=$($LFS path2fid $DIR/$tdir/d)
10347         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10348         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10349         local FID3=$($LFS path2fid $DIR)
10350
10351         # check that path2fid --parents returns expected <parent_fid>/name
10352         # 1) test for a directory (single parent)
10353         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10354         [ "$parent" == "$FID0/foo1" ] ||
10355                 error "expected parent: $FID0/foo1, got: $parent"
10356
10357         # 2) test for a file with nlink > 1 (multiple parents)
10358         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10359         echo "$parent" | grep -F "$FID1/$tfile" ||
10360                 error "$FID1/$tfile not returned in parent list"
10361         echo "$parent" | grep -F "$FID2/link" ||
10362                 error "$FID2/link not returned in parent list"
10363
10364         # 3) get parent by fid
10365         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10366         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10367         echo "$parent" | grep -F "$FID1/$tfile" ||
10368                 error "$FID1/$tfile not returned in parent list (by fid)"
10369         echo "$parent" | grep -F "$FID2/link" ||
10370                 error "$FID2/link not returned in parent list (by fid)"
10371
10372         # 4) test for entry in root directory
10373         parent=$($LFS path2fid --parents $DIR/f)
10374         echo "$parent" | grep -F "$FID3/f" ||
10375                 error "$FID3/f not returned in parent list"
10376
10377         # 5) test it on root directory
10378         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10379                 error "$MOUNT should not have parents"
10380
10381         # enable xattr caching and check that linkea is correctly updated
10382         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10383         save_lustre_params client "llite.*.xattr_cache" > $save
10384         lctl set_param llite.*.xattr_cache 1
10385
10386         # 6.1) linkea update on rename
10387         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10388
10389         # get parents by fid
10390         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10391         # foo1 should no longer be returned in parent list
10392         echo "$parent" | grep -F "$FID1" &&
10393                 error "$FID1 should no longer be in parent list"
10394         # the new path should appear
10395         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10396                 error "$FID2/$tfile.moved is not in parent list"
10397
10398         # 6.2) linkea update on unlink
10399         rm -f $DIR/$tdir/d/foo2/link
10400         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10401         # foo2/link should no longer be returned in parent list
10402         echo "$parent" | grep -F "$FID2/link" &&
10403                 error "$FID2/link should no longer be in parent list"
10404         true
10405
10406         rm -f $DIR/f
10407         restore_lustre_params < $save
10408         rm -f $save
10409 }
10410 run_test 154f "get parent fids by reading link ea"
10411
10412 test_154g()
10413 {
10414         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10415                 { skip "Need MDS version at least 2.6.92"; return 0; }
10416         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10417
10418         mkdir -p $DIR/$tdir
10419         llapi_fid_test -d $DIR/$tdir
10420 }
10421 run_test 154g "various llapi FID tests"
10422
10423 test_155_small_load() {
10424     local temp=$TMP/$tfile
10425     local file=$DIR/$tfile
10426
10427     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10428         error "dd of=$temp bs=6096 count=1 failed"
10429     cp $temp $file
10430     cancel_lru_locks osc
10431     cmp $temp $file || error "$temp $file differ"
10432
10433     $TRUNCATE $temp 6000
10434     $TRUNCATE $file 6000
10435     cmp $temp $file || error "$temp $file differ (truncate1)"
10436
10437     echo "12345" >>$temp
10438     echo "12345" >>$file
10439     cmp $temp $file || error "$temp $file differ (append1)"
10440
10441     echo "12345" >>$temp
10442     echo "12345" >>$file
10443     cmp $temp $file || error "$temp $file differ (append2)"
10444
10445     rm -f $temp $file
10446     true
10447 }
10448
10449 test_155_big_load() {
10450     remote_ost_nodsh && skip "remote OST with nodsh" && return
10451     local temp=$TMP/$tfile
10452     local file=$DIR/$tfile
10453
10454     free_min_max
10455     local cache_size=$(do_facet ost$((MAXI+1)) \
10456         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10457     local large_file_size=$((cache_size * 2))
10458
10459     echo "OSS cache size: $cache_size KB"
10460     echo "Large file size: $large_file_size KB"
10461
10462     [ $MAXV -le $large_file_size ] && \
10463         skip_env "max available OST size needs > $large_file_size KB" && \
10464         return 0
10465
10466     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10467
10468     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10469         error "dd of=$temp bs=$large_file_size count=1k failed"
10470     cp $temp $file
10471     ls -lh $temp $file
10472     cancel_lru_locks osc
10473     cmp $temp $file || error "$temp $file differ"
10474
10475     rm -f $temp $file
10476     true
10477 }
10478
10479 save_writethrough() {
10480         local facets=$(get_facets OST)
10481
10482         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10483         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10484 }
10485
10486 test_155a() {
10487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10488         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10489         save_writethrough $p
10490
10491         set_cache read on
10492         set_cache writethrough on
10493         test_155_small_load
10494         restore_lustre_params < $p
10495         rm -f $p
10496 }
10497 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10498
10499 test_155b() {
10500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10501         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10502         save_writethrough $p
10503
10504         set_cache read on
10505         set_cache writethrough off
10506         test_155_small_load
10507         restore_lustre_params < $p
10508         rm -f $p
10509 }
10510 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10511
10512 test_155c() {
10513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10514         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10515         save_writethrough $p
10516
10517         set_cache read off
10518         set_cache writethrough on
10519         test_155_small_load
10520         restore_lustre_params < $p
10521         rm -f $p
10522 }
10523 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10524
10525 test_155d() {
10526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10527         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10528         save_writethrough $p
10529
10530         set_cache read off
10531         set_cache writethrough off
10532         test_155_small_load
10533         restore_lustre_params < $p
10534         rm -f $p
10535 }
10536 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10537
10538 test_155e() {
10539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10540         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10541         save_writethrough $p
10542
10543         set_cache read on
10544         set_cache writethrough on
10545         test_155_big_load
10546         restore_lustre_params < $p
10547         rm -f $p
10548 }
10549 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10550
10551 test_155f() {
10552         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10553         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10554         save_writethrough $p
10555
10556         set_cache read on
10557         set_cache writethrough off
10558         test_155_big_load
10559         restore_lustre_params < $p
10560         rm -f $p
10561 }
10562 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10563
10564 test_155g() {
10565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10566         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10567         save_writethrough $p
10568
10569         set_cache read off
10570         set_cache writethrough on
10571         test_155_big_load
10572         restore_lustre_params < $p
10573         rm -f $p
10574 }
10575 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10576
10577 test_155h() {
10578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10579         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10580         save_writethrough $p
10581
10582         set_cache read off
10583         set_cache writethrough off
10584         test_155_big_load
10585         restore_lustre_params < $p
10586         rm -f $p
10587 }
10588 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10589
10590 test_156() {
10591         remote_ost_nodsh && skip "remote OST with nodsh" && return
10592         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10593         local CPAGES=3
10594         local BEFORE
10595         local AFTER
10596         local file="$DIR/$tfile"
10597         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10598
10599         [ "$(facet_fstype ost1)" = "zfs" -a \
10600            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10601                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10602                 return
10603
10604         save_writethrough $p
10605         roc_hit_init
10606
10607         log "Turn on read and write cache"
10608         set_cache read on
10609         set_cache writethrough on
10610
10611         log "Write data and read it back."
10612         log "Read should be satisfied from the cache."
10613         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10614         BEFORE=$(roc_hit)
10615         cancel_lru_locks osc
10616         cat $file >/dev/null
10617         AFTER=$(roc_hit)
10618         if ! let "AFTER - BEFORE == CPAGES"; then
10619                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10620         else
10621                 log "cache hits:: before: $BEFORE, after: $AFTER"
10622         fi
10623
10624         log "Read again; it should be satisfied from the cache."
10625         BEFORE=$AFTER
10626         cancel_lru_locks osc
10627         cat $file >/dev/null
10628         AFTER=$(roc_hit)
10629         if ! let "AFTER - BEFORE == CPAGES"; then
10630                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10631         else
10632                 log "cache hits:: before: $BEFORE, after: $AFTER"
10633         fi
10634
10635         log "Turn off the read cache and turn on the write cache"
10636         set_cache read off
10637         set_cache writethrough on
10638
10639         log "Read again; it should be satisfied from the cache."
10640         BEFORE=$(roc_hit)
10641         cancel_lru_locks osc
10642         cat $file >/dev/null
10643         AFTER=$(roc_hit)
10644         if ! let "AFTER - BEFORE == CPAGES"; then
10645                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10646         else
10647                 log "cache hits:: before: $BEFORE, after: $AFTER"
10648         fi
10649
10650         log "Read again; it should not be satisfied from the cache."
10651         BEFORE=$AFTER
10652         cancel_lru_locks osc
10653         cat $file >/dev/null
10654         AFTER=$(roc_hit)
10655         if ! let "AFTER - BEFORE == 0"; then
10656                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10657         else
10658                 log "cache hits:: before: $BEFORE, after: $AFTER"
10659         fi
10660
10661         log "Write data and read it back."
10662         log "Read should be satisfied from the cache."
10663         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10664         BEFORE=$(roc_hit)
10665         cancel_lru_locks osc
10666         cat $file >/dev/null
10667         AFTER=$(roc_hit)
10668         if ! let "AFTER - BEFORE == CPAGES"; then
10669                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10670         else
10671                 log "cache hits:: before: $BEFORE, after: $AFTER"
10672         fi
10673
10674         log "Read again; it should not be satisfied from the cache."
10675         BEFORE=$AFTER
10676         cancel_lru_locks osc
10677         cat $file >/dev/null
10678         AFTER=$(roc_hit)
10679         if ! let "AFTER - BEFORE == 0"; then
10680                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10681         else
10682                 log "cache hits:: before: $BEFORE, after: $AFTER"
10683         fi
10684
10685         log "Turn off read and write cache"
10686         set_cache read off
10687         set_cache writethrough off
10688
10689         log "Write data and read it back"
10690         log "It should not be satisfied from the cache."
10691         rm -f $file
10692         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10693         cancel_lru_locks osc
10694         BEFORE=$(roc_hit)
10695         cat $file >/dev/null
10696         AFTER=$(roc_hit)
10697         if ! let "AFTER - BEFORE == 0"; then
10698                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10699         else
10700                 log "cache hits:: before: $BEFORE, after: $AFTER"
10701         fi
10702
10703         log "Turn on the read cache and turn off the write cache"
10704         set_cache read on
10705         set_cache writethrough off
10706
10707         log "Write data and read it back"
10708         log "It should not be satisfied from the cache."
10709         rm -f $file
10710         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10711         BEFORE=$(roc_hit)
10712         cancel_lru_locks osc
10713         cat $file >/dev/null
10714         AFTER=$(roc_hit)
10715         if ! let "AFTER - BEFORE == 0"; then
10716                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10717         else
10718                 log "cache hits:: before: $BEFORE, after: $AFTER"
10719         fi
10720
10721         log "Read again; it should be satisfied from the cache."
10722         BEFORE=$(roc_hit)
10723         cancel_lru_locks osc
10724         cat $file >/dev/null
10725         AFTER=$(roc_hit)
10726         if ! let "AFTER - BEFORE == CPAGES"; then
10727                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10728         else
10729                 log "cache hits:: before: $BEFORE, after: $AFTER"
10730         fi
10731
10732         rm -f $file
10733         restore_lustre_params < $p
10734         rm -f $p
10735 }
10736 run_test 156 "Verification of tunables"
10737
10738 #Changelogs
10739 cleanup_changelog () {
10740         trap 0
10741         echo "Deregistering changelog client $CL_USER"
10742         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10743 }
10744
10745 err17935 () {
10746         if [[ $MDSCOUNT -gt 1 ]]; then
10747                 error_ignore bz17935 $*
10748         else
10749                 error $*
10750         fi
10751 }
10752
10753 changelog_chmask()
10754 {
10755         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10756
10757         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10758
10759         if [ $MASK -eq 1 ]; then
10760                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10761         else
10762                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10763         fi
10764 }
10765
10766 changelog_extract_field() {
10767         local mdt=$1
10768         local cltype=$2
10769         local file=$3
10770         local identifier=$4
10771
10772         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10773                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10774                 tail -1
10775 }
10776
10777 test_160a() {
10778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10779         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10780         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10781                 { skip "Need MDS version at least 2.2.0"; return; }
10782
10783         local CL_USERS="mdd.$MDT0.changelog_users"
10784         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10785         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10786                 changelog_register -n)
10787         echo "Registered as changelog user $CL_USER"
10788         trap cleanup_changelog EXIT
10789         $GET_CL_USERS | grep -q $CL_USER ||
10790                 error "User $CL_USER not found in changelog_users"
10791
10792         # change something
10793         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10794         touch $DIR/$tdir/pics/2008/zachy/timestamp
10795         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10796         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10797         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10798         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10799         rm $DIR/$tdir/pics/desktop.jpg
10800
10801         $LFS changelog $MDT0 | tail -5
10802
10803         echo "verifying changelog mask"
10804         changelog_chmask "MKDIR"
10805         changelog_chmask "CLOSE"
10806
10807         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10808         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10809
10810         changelog_chmask "MKDIR"
10811         changelog_chmask "CLOSE"
10812
10813         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10814         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10815
10816         $LFS changelog $MDT0
10817         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10818         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10819         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10820         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10821
10822         # verify contents
10823         echo "verifying target fid"
10824         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10825         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10826         [ "$fidc" == "$fidf" ] ||
10827                 err17935 "fid in changelog $fidc != file fid $fidf"
10828         echo "verifying parent fid"
10829         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10830         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10831         [ "$fidc" == "$fidf" ] ||
10832                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10833
10834         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10835         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
10836         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
10837         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10838         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10839                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10840
10841         MIN_REC=$($GET_CL_USERS |
10842                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10843         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10844         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10845         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10846                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10847
10848         # LU-3446 changelog index reset on MDT restart
10849         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10850         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10851         $LFS changelog_clear $MDT0 $CL_USER 0
10852         stop $SINGLEMDS || error "Fail to stop MDT."
10853         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10854         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10855         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10856         [ $CUR_REC1 == $CUR_REC2 ] ||
10857                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10858
10859         echo "verifying user deregister"
10860         cleanup_changelog
10861         $GET_CL_USERS | grep -q $CL_USER &&
10862                 error "User $CL_USER still in changelog_users"
10863
10864         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10865         if [ $CL_USER -eq 0 ]; then
10866                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10867                 touch $DIR/$tdir/chloe
10868                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10869                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10870                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10871         else
10872                 echo "$CL_USER other changelog users; can't verify off"
10873         fi
10874 }
10875 run_test 160a "changelog sanity"
10876
10877 test_160b() { # LU-3587
10878         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10879         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10880         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10881                 { skip "Need MDS version at least 2.2.0"; return; }
10882
10883         local CL_USERS="mdd.$MDT0.changelog_users"
10884         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10885         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10886                 changelog_register -n)
10887         echo "Registered as changelog user $CL_USER"
10888         trap cleanup_changelog EXIT
10889         $GET_CL_USERS | grep -q $CL_USER ||
10890                 error "User $CL_USER not found in changelog_users"
10891
10892         local LONGNAME1=$(str_repeat a 255)
10893         local LONGNAME2=$(str_repeat b 255)
10894
10895         cd $DIR
10896         echo "creating very long named file"
10897         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10898         echo "moving very long named file"
10899         mv $LONGNAME1 $LONGNAME2
10900
10901         $LFS changelog $MDT0 | grep RENME
10902         rm -f $LONGNAME2
10903         cleanup_changelog
10904 }
10905 run_test 160b "Verify that very long rename doesn't crash in changelog"
10906
10907 test_160c() {
10908         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10909
10910         local rc=0
10911         local server_version=$(lustre_version_code $SINGLEMDS)
10912
10913         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10914                 [[ $server_version -gt $(version_code 2.5.1) &&
10915                    $server_version -lt $(version_code 2.5.50) ]] ||
10916                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10917         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10918
10919         # Registration step
10920         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10921                 changelog_register -n)
10922         trap cleanup_changelog EXIT
10923
10924         rm -rf $DIR/$tdir
10925         mkdir -p $DIR/$tdir
10926         $MCREATE $DIR/$tdir/foo_160c
10927         changelog_chmask "TRUNC"
10928         $TRUNCATE $DIR/$tdir/foo_160c 200
10929         changelog_chmask "TRUNC"
10930         $TRUNCATE $DIR/$tdir/foo_160c 199
10931         $LFS changelog $MDT0
10932         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10933         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10934         $LFS changelog_clear $MDT0 $CL_USER 0
10935
10936         # Deregistration step
10937         cleanup_changelog
10938 }
10939 run_test 160c "verify that changelog log catch the truncate event"
10940
10941 test_160d() {
10942         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10943         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10944
10945         local server_version=$(lustre_version_code mds1)
10946         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10947
10948         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10949                 { skip "Need MDS version at least 2.7.60+"; return; }
10950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10951
10952         # Registration step
10953         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
10954                 changelog_register -n)
10955
10956         trap cleanup_changelog EXIT
10957         mkdir -p $DIR/$tdir/migrate_dir
10958         $LFS changelog_clear $MDT0 $CL_USER 0
10959
10960         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10961         $LFS changelog $MDT0
10962         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10963         $LFS changelog_clear $MDT0 $CL_USER 0
10964         [ $MIGRATES -eq 1 ] ||
10965                 error "MIGRATE changelog mask count $MIGRATES != 1"
10966
10967         # Deregistration step
10968         cleanup_changelog
10969 }
10970 run_test 160d "verify that changelog log catch the migrate event"
10971
10972 test_161a() {
10973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10974         test_mkdir -p -c1 $DIR/$tdir
10975         cp /etc/hosts $DIR/$tdir/$tfile
10976         test_mkdir -c1 $DIR/$tdir/foo1
10977         test_mkdir -c1 $DIR/$tdir/foo2
10978         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10979         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10980         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10981         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10982         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10983         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10984                 $LFS fid2path $DIR $FID
10985                 err17935 "bad link ea"
10986         fi
10987     # middle
10988     rm $DIR/$tdir/foo2/zachary
10989     # last
10990     rm $DIR/$tdir/foo2/thor
10991     # first
10992     rm $DIR/$tdir/$tfile
10993     # rename
10994     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10995     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10996         then
10997         $LFS fid2path $DIR $FID
10998         err17935 "bad link rename"
10999     fi
11000     rm $DIR/$tdir/foo2/maggie
11001
11002         # overflow the EA
11003         local longname=filename_avg_len_is_thirty_two_
11004         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11005                 error "failed to hardlink many files"
11006         links=$($LFS fid2path $DIR $FID | wc -l)
11007         echo -n "${links}/1000 links in link EA"
11008         [[ $links -gt 60 ]] ||
11009                 err17935 "expected at least 60 links in link EA"
11010         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11011                 error "failed to unlink many hardlinks"
11012 }
11013 run_test 161a "link ea sanity"
11014
11015 test_161b() {
11016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11017         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11018         local MDTIDX=1
11019         local remote_dir=$DIR/$tdir/remote_dir
11020
11021         mkdir -p $DIR/$tdir
11022         $LFS mkdir -i $MDTIDX $remote_dir ||
11023                 error "create remote directory failed"
11024
11025         cp /etc/hosts $remote_dir/$tfile
11026         mkdir -p $remote_dir/foo1
11027         mkdir -p $remote_dir/foo2
11028         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11029         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11030         ln $remote_dir/$tfile $remote_dir/foo1/luna
11031         ln $remote_dir/$tfile $remote_dir/foo2/thor
11032
11033         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11034                      tr -d ']')
11035         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11036                 $LFS fid2path $DIR $FID
11037                 err17935 "bad link ea"
11038         fi
11039         # middle
11040         rm $remote_dir/foo2/zachary
11041         # last
11042         rm $remote_dir/foo2/thor
11043         # first
11044         rm $remote_dir/$tfile
11045         # rename
11046         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11047         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11048         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11049                 $LFS fid2path $DIR $FID
11050                 err17935 "bad link rename"
11051         fi
11052         rm $remote_dir/foo2/maggie
11053
11054         # overflow the EA
11055         local longname=filename_avg_len_is_thirty_two_
11056         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11057                 error "failed to hardlink many files"
11058         links=$($LFS fid2path $DIR $FID | wc -l)
11059         echo -n "${links}/1000 links in link EA"
11060         [[ ${links} -gt 60 ]] ||
11061                 err17935 "expected at least 60 links in link EA"
11062         unlinkmany $remote_dir/foo2/$longname 1000 ||
11063         error "failed to unlink many hardlinks"
11064 }
11065 run_test 161b "link ea sanity under remote directory"
11066
11067 test_161c() {
11068         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11070         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11071                 skip "Need MDS version at least 2.1.5" && return
11072
11073         # define CLF_RENAME_LAST 0x0001
11074         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11075         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11076                 changelog_register -n)
11077
11078         trap cleanup_changelog EXIT
11079         rm -rf $DIR/$tdir
11080         mkdir -p $DIR/$tdir
11081         touch $DIR/$tdir/foo_161c
11082         touch $DIR/$tdir/bar_161c
11083         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11084         $LFS changelog $MDT0 | grep RENME
11085         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11086                 cut -f5 -d' ')
11087         $LFS changelog_clear $MDT0 $CL_USER 0
11088         if [ x$flags != "x0x1" ]; then
11089                 error "flag $flags is not 0x1"
11090         fi
11091         echo "rename overwrite a target having nlink = 1," \
11092                 "changelog record has flags of $flags"
11093
11094         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11095         touch $DIR/$tdir/foo_161c
11096         touch $DIR/$tdir/bar_161c
11097         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11098         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11099         $LFS changelog $MDT0 | grep RENME
11100         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11101         $LFS changelog_clear $MDT0 $CL_USER 0
11102         if [ x$flags != "x0x0" ]; then
11103                 error "flag $flags is not 0x0"
11104         fi
11105         echo "rename overwrite a target having nlink > 1," \
11106                 "changelog record has flags of $flags"
11107
11108         # rename doesn't overwrite a target (changelog flag 0x0)
11109         touch $DIR/$tdir/foo_161c
11110         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11111         $LFS changelog $MDT0 | grep RENME
11112         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11113         $LFS changelog_clear $MDT0 $CL_USER 0
11114         if [ x$flags != "x0x0" ]; then
11115                 error "flag $flags is not 0x0"
11116         fi
11117         echo "rename doesn't overwrite a target," \
11118                 "changelog record has flags of $flags"
11119
11120         # define CLF_UNLINK_LAST 0x0001
11121         # unlink a file having nlink = 1 (changelog flag 0x1)
11122         rm -f $DIR/$tdir/foo2_161c
11123         $LFS changelog $MDT0 | grep UNLNK
11124         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11125         $LFS changelog_clear $MDT0 $CL_USER 0
11126         if [ x$flags != "x0x1" ]; then
11127                 error "flag $flags is not 0x1"
11128         fi
11129         echo "unlink a file having nlink = 1," \
11130                 "changelog record has flags of $flags"
11131
11132         # unlink a file having nlink > 1 (changelog flag 0x0)
11133         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11134         rm -f $DIR/$tdir/foobar_161c
11135         $LFS changelog $MDT0 | grep UNLNK
11136         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11137         $LFS changelog_clear $MDT0 $CL_USER 0
11138         if [ x$flags != "x0x0" ]; then
11139                 error "flag $flags is not 0x0"
11140         fi
11141         echo "unlink a file having nlink > 1," \
11142                 "changelog record has flags of $flags"
11143         cleanup_changelog
11144 }
11145 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11146
11147 check_path() {
11148     local expected=$1
11149     shift
11150     local fid=$2
11151
11152     local path=$(${LFS} fid2path $*)
11153     # Remove the '//' indicating a remote directory
11154     path=$(echo $path | sed 's#//#/#g')
11155     RC=$?
11156
11157     if [ $RC -ne 0 ]; then
11158         err17935 "path looked up of $expected failed. Error $RC"
11159         return $RC
11160     elif [ "${path}" != "${expected}" ]; then
11161         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11162         return 2
11163     fi
11164     echo "fid $fid resolves to path $path (expected $expected)"
11165 }
11166
11167 test_162a() { # was test_162
11168         # Make changes to filesystem
11169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11170         test_mkdir -p -c1 $DIR/$tdir/d2
11171         touch $DIR/$tdir/d2/$tfile
11172         touch $DIR/$tdir/d2/x1
11173         touch $DIR/$tdir/d2/x2
11174         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11175         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11176         # regular file
11177         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11178         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11179                 error "check path $tdir/d2/$tfile failed"
11180
11181         # softlink
11182         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11183         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11184         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11185                 error "check path $tdir/d2/p/q/r/slink failed"
11186
11187         # softlink to wrong file
11188         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11189         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11190         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11191                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11192
11193         # hardlink
11194         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11195         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11196         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11197         # fid2path dir/fsname should both work
11198         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11199                 error "check path $tdir/d2/a/b/c/new_file failed"
11200         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11201                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11202
11203         # hardlink count: check that there are 2 links
11204         # Doesnt work with CMD yet: 17935
11205         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11206                 err17935 "expected 2 links"
11207
11208         # hardlink indexing: remove the first link
11209         rm $DIR/$tdir/d2/p/q/r/hlink
11210         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11211                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11212
11213         return 0
11214 }
11215 run_test 162a "path lookup sanity"
11216
11217 test_162b() {
11218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11219         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11220
11221         mkdir $DIR/$tdir
11222         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11223                                 error "create striped dir failed"
11224
11225         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11226                                         tail -n 1 | awk '{print $2}')
11227         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11228
11229         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11230         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11231
11232         # regular file
11233         for ((i=0;i<5;i++)); do
11234                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11235                         error "get fid for f$i failed"
11236                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11237                         error "check path $tdir/striped_dir/f$i failed"
11238
11239                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11240                         error "get fid for d$i failed"
11241                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11242                         error "check path $tdir/striped_dir/d$i failed"
11243         done
11244
11245         return 0
11246 }
11247 run_test 162b "striped directory path lookup sanity"
11248
11249 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11250 test_162c() {
11251         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11252                 skip "Need MDS version at least 2.7.51" && return
11253         test_mkdir $DIR/$tdir.local
11254         test_mkdir $DIR/$tdir.remote
11255         local lpath=$tdir.local
11256         local rpath=$tdir.remote
11257
11258         for ((i = 0; i <= 101; i++)); do
11259                 lpath="$lpath/$i"
11260                 mkdir $DIR/$lpath
11261                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11262                         error "get fid for local directory $DIR/$lpath failed"
11263                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11264                         error "check path for local directory $DIR/$lpath failed"
11265
11266                 rpath="$rpath/$i"
11267                 test_mkdir $DIR/$rpath
11268                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11269                         error "get fid for remote directory $DIR/$rpath failed"
11270                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11271                         error "check path for remote directory $DIR/$rpath failed"
11272         done
11273
11274         return 0
11275 }
11276 run_test 162c "fid2path works with paths 100 or more directories deep"
11277
11278 test_169() {
11279         # do directio so as not to populate the page cache
11280         log "creating a 10 Mb file"
11281         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11282         log "starting reads"
11283         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11284         log "truncating the file"
11285         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11286         log "killing dd"
11287         kill %+ || true # reads might have finished
11288         echo "wait until dd is finished"
11289         wait
11290         log "removing the temporary file"
11291         rm -rf $DIR/$tfile || error "tmp file removal failed"
11292 }
11293 run_test 169 "parallel read and truncate should not deadlock"
11294
11295 test_170() {
11296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11297         $LCTL clear     # bug 18514
11298         $LCTL debug_daemon start $TMP/${tfile}_log_good
11299         touch $DIR/$tfile
11300         $LCTL debug_daemon stop
11301         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11302                error "sed failed to read log_good"
11303
11304         $LCTL debug_daemon start $TMP/${tfile}_log_good
11305         rm -rf $DIR/$tfile
11306         $LCTL debug_daemon stop
11307
11308         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11309                error "lctl df log_bad failed"
11310
11311         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11312         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11313
11314         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11315         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11316
11317         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11318                 error "bad_line good_line1 good_line2 are empty"
11319
11320         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11321         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11322         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11323
11324         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11325         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11326         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11327
11328         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11329                 error "bad_line_new good_line_new are empty"
11330
11331         local expected_good=$((good_line1 + good_line2*2))
11332
11333         rm -f $TMP/${tfile}*
11334         # LU-231, short malformed line may not be counted into bad lines
11335         if [ $bad_line -ne $bad_line_new ] &&
11336                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11337                 error "expected $bad_line bad lines, but got $bad_line_new"
11338                 return 1
11339         fi
11340
11341         if [ $expected_good -ne $good_line_new ]; then
11342                 error "expected $expected_good good lines, but got $good_line_new"
11343                 return 2
11344         fi
11345         true
11346 }
11347 run_test 170 "test lctl df to handle corrupted log ====================="
11348
11349 test_171() { # bug20592
11350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11351 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11352         $LCTL set_param fail_loc=0x50e
11353         $LCTL set_param fail_val=3000
11354         multiop_bg_pause $DIR/$tfile O_s || true
11355         local MULTIPID=$!
11356         kill -USR1 $MULTIPID
11357         # cause log dump
11358         sleep 3
11359         wait $MULTIPID
11360         if dmesg | grep "recursive fault"; then
11361                 error "caught a recursive fault"
11362         fi
11363         $LCTL set_param fail_loc=0
11364         true
11365 }
11366 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11367
11368 # it would be good to share it with obdfilter-survey/iokit-libecho code
11369 setup_obdecho_osc () {
11370         local rc=0
11371         local ost_nid=$1
11372         local obdfilter_name=$2
11373         echo "Creating new osc for $obdfilter_name on $ost_nid"
11374         # make sure we can find loopback nid
11375         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11376
11377         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11378                            ${obdfilter_name}_osc_UUID || rc=2; }
11379         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11380                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11381         return $rc
11382 }
11383
11384 cleanup_obdecho_osc () {
11385         local obdfilter_name=$1
11386         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11387         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11388         return 0
11389 }
11390
11391 obdecho_test() {
11392         local OBD=$1
11393         local node=$2
11394         local pages=${3:-64}
11395         local rc=0
11396         local id
11397
11398         local count=10
11399         local obd_size=$(get_obd_size $node $OBD)
11400         local page_size=$(get_page_size $node)
11401         if [[ -n "$obd_size" ]]; then
11402                 local new_count=$((obd_size / (pages * page_size / 1024)))
11403                 [[ $new_count -ge $count ]] || count=$new_count
11404         fi
11405
11406         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11407         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11408                            rc=2; }
11409         if [ $rc -eq 0 ]; then
11410             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11411             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11412         fi
11413         echo "New object id is $id"
11414         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11415                            rc=4; }
11416         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11417                            "test_brw $count w v $pages $id" || rc=4; }
11418         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11419                            rc=4; }
11420         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11421                                         "cleanup" || rc=5; }
11422         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11423                                         "detach" || rc=6; }
11424         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11425         return $rc
11426 }
11427
11428 test_180a() {
11429         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11430         remote_ost_nodsh && skip "remote OST with nodsh" && return
11431         local rc=0
11432         local rmmod_local=0
11433
11434         if ! module_loaded obdecho; then
11435             load_module obdecho/obdecho
11436             rmmod_local=1
11437         fi
11438
11439         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11440         local host=$(lctl get_param -n osc.$osc.import |
11441                              awk '/current_connection:/ {print $2}' )
11442         local target=$(lctl get_param -n osc.$osc.import |
11443                              awk '/target:/ {print $2}' )
11444         target=${target%_UUID}
11445
11446         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11447         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11448         [[ -n $target ]] && cleanup_obdecho_osc $target
11449         [ $rmmod_local -eq 1 ] && rmmod obdecho
11450         return $rc
11451 }
11452 run_test 180a "test obdecho on osc"
11453
11454 test_180b() {
11455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11456         remote_ost_nodsh && skip "remote OST with nodsh" && return
11457         local rc=0
11458         local rmmod_remote=0
11459
11460         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11461                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11462                       "modprobe obdecho; }" && rmmod_remote=1
11463         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11464         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11465         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11466         return $rc
11467 }
11468 run_test 180b "test obdecho directly on obdfilter"
11469
11470 test_180c() { # LU-2598
11471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11472         remote_ost_nodsh && skip "remote OST with nodsh" && return
11473         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11474                 skip "Need MDS version at least 2.4.0" && return
11475
11476         local rc=0
11477         local rmmod_remote=false
11478         local pages=16384 # 64MB bulk I/O RPC size
11479         local target
11480
11481         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11482                 rmmod_remote=true || error "failed to load module obdecho"
11483
11484         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11485                 head -n1)
11486         if [ -n "$target" ]; then
11487                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11488         else
11489                 echo "there is no obdfilter target on ost1"
11490                 rc=2
11491         fi
11492         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11493         return $rc
11494 }
11495 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11496
11497 test_181() { # bug 22177
11498         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11499         # create enough files to index the directory
11500         createmany -o $DIR/$tdir/foobar 4000
11501         # print attributes for debug purpose
11502         lsattr -d .
11503         # open dir
11504         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11505         MULTIPID=$!
11506         # remove the files & current working dir
11507         unlinkmany $DIR/$tdir/foobar 4000
11508         rmdir $DIR/$tdir
11509         kill -USR1 $MULTIPID
11510         wait $MULTIPID
11511         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11512         return 0
11513 }
11514 run_test 181 "Test open-unlinked dir ========================"
11515
11516 test_182() {
11517         local fcount=1000
11518         local tcount=10
11519
11520         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11521
11522         $LCTL set_param mdc.*.rpc_stats=clear
11523
11524         for (( i = 0; i < $tcount; i++ )) ; do
11525                 mkdir $DIR/$tdir/$i
11526         done
11527
11528         for (( i = 0; i < $tcount; i++ )) ; do
11529                 createmany -o $DIR/$tdir/$i/f- $fcount &
11530         done
11531         wait
11532
11533         for (( i = 0; i < $tcount; i++ )) ; do
11534                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11535         done
11536         wait
11537
11538         $LCTL get_param mdc.*.rpc_stats
11539
11540         rm -rf $DIR/$tdir
11541 }
11542 run_test 182 "Test parallel modify metadata operations ================"
11543
11544 test_183() { # LU-2275
11545         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11546         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11547                 skip "Need MDS version at least 2.3.56" && return
11548
11549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11550         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11551         echo aaa > $DIR/$tdir/$tfile
11552
11553 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11554         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11555
11556         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11557         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11558
11559         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11560
11561         # Flush negative dentry cache
11562         touch $DIR/$tdir/$tfile
11563
11564         # We are not checking for any leaked references here, they'll
11565         # become evident next time we do cleanup with module unload.
11566         rm -rf $DIR/$tdir
11567 }
11568 run_test 183 "No crash or request leak in case of strange dispositions ========"
11569
11570 # test suite 184 is for LU-2016, LU-2017
11571 test_184a() {
11572         check_swap_layouts_support && return 0
11573
11574         dir0=$DIR/$tdir/$testnum
11575         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11576         ref1=/etc/passwd
11577         ref2=/etc/group
11578         file1=$dir0/f1
11579         file2=$dir0/f2
11580         $SETSTRIPE -c1 $file1
11581         cp $ref1 $file1
11582         $SETSTRIPE -c2 $file2
11583         cp $ref2 $file2
11584         gen1=$($GETSTRIPE -g $file1)
11585         gen2=$($GETSTRIPE -g $file2)
11586
11587         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11588         gen=$($GETSTRIPE -g $file1)
11589         [[ $gen1 != $gen ]] ||
11590                 "Layout generation on $file1 does not change"
11591         gen=$($GETSTRIPE -g $file2)
11592         [[ $gen2 != $gen ]] ||
11593                 "Layout generation on $file2 does not change"
11594
11595         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11596         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11597 }
11598 run_test 184a "Basic layout swap"
11599
11600 test_184b() {
11601         check_swap_layouts_support && return 0
11602
11603         dir0=$DIR/$tdir/$testnum
11604         mkdir -p $dir0 || error "creating dir $dir0"
11605         file1=$dir0/f1
11606         file2=$dir0/f2
11607         file3=$dir0/f3
11608         dir1=$dir0/d1
11609         dir2=$dir0/d2
11610         mkdir $dir1 $dir2
11611         $SETSTRIPE -c1 $file1
11612         $SETSTRIPE -c2 $file2
11613         $SETSTRIPE -c1 $file3
11614         chown $RUNAS_ID $file3
11615         gen1=$($GETSTRIPE -g $file1)
11616         gen2=$($GETSTRIPE -g $file2)
11617
11618         $LFS swap_layouts $dir1 $dir2 &&
11619                 error "swap of directories layouts should fail"
11620         $LFS swap_layouts $dir1 $file1 &&
11621                 error "swap of directory and file layouts should fail"
11622         $RUNAS $LFS swap_layouts $file1 $file2 &&
11623                 error "swap of file we cannot write should fail"
11624         $LFS swap_layouts $file1 $file3 &&
11625                 error "swap of file with different owner should fail"
11626         /bin/true # to clear error code
11627 }
11628 run_test 184b "Forbidden layout swap (will generate errors)"
11629
11630 test_184c() {
11631         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11632         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11633         check_swap_layouts_support && return 0
11634
11635         local dir0=$DIR/$tdir/$testnum
11636         mkdir -p $dir0 || error "creating dir $dir0"
11637
11638         local ref1=$dir0/ref1
11639         local ref2=$dir0/ref2
11640         local file1=$dir0/file1
11641         local file2=$dir0/file2
11642         # create a file large enough for the concurrent test
11643         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11644         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11645         echo "ref file size: ref1($(stat -c %s $ref1))," \
11646              "ref2($(stat -c %s $ref2))"
11647
11648         cp $ref2 $file2
11649         dd if=$ref1 of=$file1 bs=16k &
11650         local DD_PID=$!
11651
11652         # Make sure dd starts to copy file
11653         while [ ! -f $file1 ]; do sleep 0.1; done
11654
11655         $LFS swap_layouts $file1 $file2
11656         local rc=$?
11657         wait $DD_PID
11658         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11659         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11660
11661         # how many bytes copied before swapping layout
11662         local copied=$(stat -c %s $file2)
11663         local remaining=$(stat -c %s $ref1)
11664         remaining=$((remaining - copied))
11665         echo "Copied $copied bytes before swapping layout..."
11666
11667         cmp -n $copied $file1 $ref2 | grep differ &&
11668                 error "Content mismatch [0, $copied) of ref2 and file1"
11669         cmp -n $copied $file2 $ref1 ||
11670                 error "Content mismatch [0, $copied) of ref1 and file2"
11671         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11672                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11673
11674         # clean up
11675         rm -f $ref1 $ref2 $file1 $file2
11676 }
11677 run_test 184c "Concurrent write and layout swap"
11678
11679 test_184d() {
11680         check_swap_layouts_support && return 0
11681         [ -z "$(which getfattr 2>/dev/null)" ] &&
11682                 skip "no getfattr command" && return 0
11683
11684         local file1=$DIR/$tdir/$tfile-1
11685         local file2=$DIR/$tdir/$tfile-2
11686         local file3=$DIR/$tdir/$tfile-3
11687         local lovea1
11688         local lovea2
11689
11690         mkdir -p $DIR/$tdir
11691         touch $file1 || error "create $file1 failed"
11692         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11693                 error "create $file2 failed"
11694         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11695                 error "create $file3 failed"
11696         lovea1=$($LFS getstripe $file1 | sed 1d)
11697
11698         $LFS swap_layouts $file2 $file3 ||
11699                 error "swap $file2 $file3 layouts failed"
11700         $LFS swap_layouts $file1 $file2 ||
11701                 error "swap $file1 $file2 layouts failed"
11702
11703         lovea2=$($LFS getstripe $file2 | sed 1d)
11704         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11705
11706         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11707         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11708 }
11709 run_test 184d "allow stripeless layouts swap"
11710
11711 test_184e() {
11712         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11713                 { skip "Need MDS version at least 2.6.94"; return 0; }
11714         check_swap_layouts_support && return 0
11715         [ -z "$(which getfattr 2>/dev/null)" ] &&
11716                 skip "no getfattr command" && return 0
11717
11718         local file1=$DIR/$tdir/$tfile-1
11719         local file2=$DIR/$tdir/$tfile-2
11720         local file3=$DIR/$tdir/$tfile-3
11721         local lovea
11722
11723         mkdir -p $DIR/$tdir
11724         touch $file1 || error "create $file1 failed"
11725         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11726                 error "create $file2 failed"
11727         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11728                 error "create $file3 failed"
11729
11730         $LFS swap_layouts $file1 $file2 ||
11731                 error "swap $file1 $file2 layouts failed"
11732
11733         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11734         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11735
11736         echo 123 > $file1 || error "Should be able to write into $file1"
11737
11738         $LFS swap_layouts $file1 $file3 ||
11739                 error "swap $file1 $file3 layouts failed"
11740
11741         echo 123 > $file1 || error "Should be able to write into $file1"
11742
11743         rm -rf $file1 $file2 $file3
11744 }
11745 run_test 184e "Recreate layout after stripeless layout swaps"
11746
11747 test_185() { # LU-2441
11748         # LU-3553 - no volatile file support in old servers
11749         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11750                 { skip "Need MDS version at least 2.3.60"; return 0; }
11751
11752         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11753         touch $DIR/$tdir/spoo
11754         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11755         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11756                 error "cannot create/write a volatile file"
11757         [ "$FILESET" == "" ] &&
11758         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11759                 error "FID is still valid after close"
11760
11761         multiop_bg_pause $DIR/$tdir vVw4096_c
11762         local multi_pid=$!
11763
11764         local OLD_IFS=$IFS
11765         IFS=":"
11766         local fidv=($fid)
11767         IFS=$OLD_IFS
11768         # assume that the next FID for this client is sequential, since stdout
11769         # is unfortunately eaten by multiop_bg_pause
11770         local n=$((${fidv[1]} + 1))
11771         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11772         if [ "$FILESET" == "" ]; then
11773                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11774                         error "FID is missing before close"
11775         fi
11776         kill -USR1 $multi_pid
11777         # 1 second delay, so if mtime change we will see it
11778         sleep 1
11779         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11780         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11781 }
11782 run_test 185 "Volatile file support"
11783
11784 test_187a() {
11785         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11786         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11787                 skip "Need MDS version at least 2.3.0" && return
11788
11789         local dir0=$DIR/$tdir/$testnum
11790         mkdir -p $dir0 || error "creating dir $dir0"
11791
11792         local file=$dir0/file1
11793         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11794         local dv1=$($LFS data_version $file)
11795         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11796         local dv2=$($LFS data_version $file)
11797         [[ $dv1 != $dv2 ]] ||
11798                 error "data version did not change on write $dv1 == $dv2"
11799
11800         # clean up
11801         rm -f $file1
11802 }
11803 run_test 187a "Test data version change"
11804
11805 test_187b() {
11806         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11807         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11808                 skip "Need MDS version at least 2.3.0" && return
11809
11810         local dir0=$DIR/$tdir/$testnum
11811         mkdir -p $dir0 || error "creating dir $dir0"
11812
11813         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11814         [[ ${DV[0]} != ${DV[1]} ]] ||
11815                 error "data version did not change on write"\
11816                       " ${DV[0]} == ${DV[1]}"
11817
11818         # clean up
11819         rm -f $file1
11820 }
11821 run_test 187b "Test data version change on volatile file"
11822
11823 test_200() {
11824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11825         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11826         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11827
11828         local POOL=${POOL:-cea1}
11829         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11830         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11831         # Pool OST targets
11832         local first_ost=0
11833         local last_ost=$(($OSTCOUNT - 1))
11834         local ost_step=2
11835         local ost_list=$(seq $first_ost $ost_step $last_ost)
11836         local ost_range="$first_ost $last_ost $ost_step"
11837         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11838         local file_dir=$POOL_ROOT/file_tst
11839         local subdir=$test_path/subdir
11840
11841         local rc=0
11842         while : ; do
11843                 # former test_200a test_200b
11844                 pool_add $POOL                          || { rc=$? ; break; }
11845                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11846                 # former test_200c test_200d
11847                 mkdir -p $test_path
11848                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11849                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11850                 mkdir -p $subdir
11851                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11852                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11853                                                         || { rc=$? ; break; }
11854                 # former test_200e test_200f
11855                 local files=$((OSTCOUNT*3))
11856                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11857                                                         || { rc=$? ; break; }
11858                 pool_create_files $POOL $file_dir $files "$ost_list" \
11859                                                         || { rc=$? ; break; }
11860                 # former test_200g test_200h
11861                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11862                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11863
11864                 # former test_201a test_201b test_201c
11865                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11866
11867                 local f=$test_path/$tfile
11868                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11869                 pool_remove $POOL $f                    || { rc=$? ; break; }
11870                 break
11871         done
11872
11873         cleanup_pools
11874         return $rc
11875 }
11876 run_test 200 "OST pools"
11877
11878 # usage: default_attr <count | size | offset>
11879 default_attr() {
11880         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11881 }
11882
11883 # usage: check_default_stripe_attr
11884 check_default_stripe_attr() {
11885         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11886         case $1 in
11887         --stripe-count|--count)
11888                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11889         --stripe-size|--size)
11890                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11891         --stripe-index|--index)
11892                 EXPECTED=-1;;
11893         *)
11894                 error "unknown getstripe attr '$1'"
11895         esac
11896
11897         [ $ACTUAL != $EXPECTED ] &&
11898                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11899 }
11900
11901 test_204a() {
11902         test_mkdir -p $DIR/$tdir
11903         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11904
11905         check_default_stripe_attr --stripe-count
11906         check_default_stripe_attr --stripe-size
11907         check_default_stripe_attr --stripe-index
11908
11909         return 0
11910 }
11911 run_test 204a "Print default stripe attributes ================="
11912
11913 test_204b() {
11914         test_mkdir -p $DIR/$tdir
11915         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11916
11917         check_default_stripe_attr --stripe-size
11918         check_default_stripe_attr --stripe-index
11919
11920         return 0
11921 }
11922 run_test 204b "Print default stripe size and offset  ==========="
11923
11924 test_204c() {
11925         test_mkdir -p $DIR/$tdir
11926         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11927
11928         check_default_stripe_attr --stripe-count
11929         check_default_stripe_attr --stripe-index
11930
11931         return 0
11932 }
11933 run_test 204c "Print default stripe count and offset ==========="
11934
11935 test_204d() {
11936         test_mkdir -p $DIR/$tdir
11937         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11938
11939         check_default_stripe_attr --stripe-count
11940         check_default_stripe_attr --stripe-size
11941
11942         return 0
11943 }
11944 run_test 204d "Print default stripe count and size ============="
11945
11946 test_204e() {
11947         test_mkdir -p $DIR/$tdir
11948         $SETSTRIPE -d $DIR/$tdir
11949
11950         check_default_stripe_attr --stripe-count --raw
11951         check_default_stripe_attr --stripe-size --raw
11952         check_default_stripe_attr --stripe-index --raw
11953
11954         return 0
11955 }
11956 run_test 204e "Print raw stripe attributes ================="
11957
11958 test_204f() {
11959         test_mkdir -p $DIR/$tdir
11960         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11961
11962         check_default_stripe_attr --stripe-size --raw
11963         check_default_stripe_attr --stripe-index --raw
11964
11965         return 0
11966 }
11967 run_test 204f "Print raw stripe size and offset  ==========="
11968
11969 test_204g() {
11970         test_mkdir -p $DIR/$tdir
11971         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11972
11973         check_default_stripe_attr --stripe-count --raw
11974         check_default_stripe_attr --stripe-index --raw
11975
11976         return 0
11977 }
11978 run_test 204g "Print raw stripe count and offset ==========="
11979
11980 test_204h() {
11981         test_mkdir -p $DIR/$tdir
11982         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11983
11984         check_default_stripe_attr --stripe-count --raw
11985         check_default_stripe_attr --stripe-size --raw
11986
11987         return 0
11988 }
11989 run_test 204h "Print raw stripe count and size ============="
11990
11991 # Figure out which job scheduler is being used, if any,
11992 # or use a fake one
11993 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11994         JOBENV=SLURM_JOB_ID
11995 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11996         JOBENV=LSB_JOBID
11997 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11998         JOBENV=PBS_JOBID
11999 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12000         JOBENV=LOADL_STEP_ID
12001 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12002         JOBENV=JOB_ID
12003 else
12004         $LCTL list_param jobid_name > /dev/null 2>&1
12005         if [ $? -eq 0 ]; then
12006                 JOBENV=nodelocal
12007         else
12008                 JOBENV=FAKE_JOBID
12009         fi
12010 fi
12011
12012 verify_jobstats() {
12013         local cmd=($1)
12014         shift
12015         local facets="$@"
12016
12017 # we don't really need to clear the stats for this test to work, since each
12018 # command has a unique jobid, but it makes debugging easier if needed.
12019 #       for facet in $facets; do
12020 #               local dev=$(convert_facet2label $facet)
12021 #               # clear old jobstats
12022 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12023 #       done
12024
12025         # use a new JobID for each test, or we might see an old one
12026         [ "$JOBENV" = "FAKE_JOBID" ] &&
12027                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12028
12029         JOBVAL=${!JOBENV}
12030
12031         [ "$JOBENV" = "nodelocal" ] && {
12032                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12033                 $LCTL set_param jobid_name=$FAKE_JOBID
12034                 JOBVAL=$FAKE_JOBID
12035         }
12036
12037         log "Test: ${cmd[*]}"
12038         log "Using JobID environment variable $JOBENV=$JOBVAL"
12039
12040         if [ $JOBENV = "FAKE_JOBID" ]; then
12041                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12042         else
12043                 ${cmd[*]}
12044         fi
12045
12046         # all files are created on OST0000
12047         for facet in $facets; do
12048                 local stats="*.$(convert_facet2label $facet).job_stats"
12049                 if [ $(do_facet $facet lctl get_param $stats |
12050                        grep -c $JOBVAL) -ne 1 ]; then
12051                         do_facet $facet lctl get_param $stats
12052                         error "No jobstats for $JOBVAL found on $facet::$stats"
12053                 fi
12054         done
12055 }
12056
12057 jobstats_set() {
12058         trap 0
12059         NEW_JOBENV=${1:-$OLD_JOBENV}
12060         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12061         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12062 }
12063
12064 cleanup_205() {
12065         trap 0
12066         do_facet $SINGLEMDS \
12067                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12068         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12069         cleanup_changelog
12070 }
12071
12072 test_205() { # Job stats
12073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12074         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12075         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12076         remote_ost_nodsh && skip "remote OST with nodsh" && return
12077
12078         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12079                 skip "Server doesn't support jobstats" && return 0
12080         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12081
12082         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12083         if [ $OLD_JOBENV != $JOBENV ]; then
12084                 jobstats_set $JOBENV
12085                 trap cleanup_205 EXIT
12086         fi
12087
12088         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12089         echo "Registered as changelog user $CL_USER"
12090
12091         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12092                        lctl get_param -n mdt.*.job_cleanup_interval)
12093         local interval_new=5
12094         do_facet $SINGLEMDS \
12095                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12096         local start=$SECONDS
12097
12098         local cmd
12099         # mkdir
12100         cmd="mkdir $DIR/$tdir"
12101         verify_jobstats "$cmd" "$SINGLEMDS"
12102         # rmdir
12103         cmd="rmdir $DIR/$tdir"
12104         verify_jobstats "$cmd" "$SINGLEMDS"
12105         # mkdir on secondary MDT
12106         if [ $MDSCOUNT -gt 1 ]; then
12107                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12108                 verify_jobstats "$cmd" "mds2"
12109         fi
12110         # mknod
12111         cmd="mknod $DIR/$tfile c 1 3"
12112         verify_jobstats "$cmd" "$SINGLEMDS"
12113         # unlink
12114         cmd="rm -f $DIR/$tfile"
12115         verify_jobstats "$cmd" "$SINGLEMDS"
12116         # create all files on OST0000 so verify_jobstats can find OST stats
12117         # open & close
12118         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12119         verify_jobstats "$cmd" "$SINGLEMDS"
12120         # setattr
12121         cmd="touch $DIR/$tfile"
12122         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12123         # write
12124         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12125         verify_jobstats "$cmd" "ost1"
12126         # read
12127         cancel_lru_locks osc
12128         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12129         verify_jobstats "$cmd" "ost1"
12130         # truncate
12131         cmd="$TRUNCATE $DIR/$tfile 0"
12132         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12133         # rename
12134         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12135         verify_jobstats "$cmd" "$SINGLEMDS"
12136         # jobstats expiry - sleep until old stats should be expired
12137         local left=$((interval_new + 2 - (SECONDS - start)))
12138         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
12139         cmd="mkdir $DIR/$tdir.expire"
12140         verify_jobstats "$cmd" "$SINGLEMDS"
12141         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12142             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12143
12144         # Ensure that jobid are present in changelog (if supported by MDS)
12145         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12146         then
12147                 $LFS changelog $MDT0 | tail -9
12148                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12149                 [ $jobids -eq 9 ] ||
12150                         error "Wrong changelog jobid count $jobids != 9"
12151
12152                 # LU-5862
12153                 JOBENV="disable"
12154                 jobstats_set $JOBENV
12155                 touch $DIR/$tfile
12156                 $LFS changelog $MDT0 | tail -1
12157                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12158                 [ $jobids -eq 0 ] ||
12159                         error "Unexpected jobids when jobid_var=$JOBENV"
12160         fi
12161
12162         cleanup_205
12163 }
12164 run_test 205 "Verify job stats"
12165
12166 # LU-1480, LU-1773 and LU-1657
12167 test_206() {
12168         mkdir -p $DIR/$tdir
12169         $SETSTRIPE -c -1 $DIR/$tdir
12170 #define OBD_FAIL_LOV_INIT 0x1403
12171         $LCTL set_param fail_loc=0xa0001403
12172         $LCTL set_param fail_val=1
12173         touch $DIR/$tdir/$tfile || true
12174 }
12175 run_test 206 "fail lov_init_raid0() doesn't lbug"
12176
12177 test_207a() {
12178         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12179         local fsz=`stat -c %s $DIR/$tfile`
12180         cancel_lru_locks mdc
12181
12182         # do not return layout in getattr intent
12183 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12184         $LCTL set_param fail_loc=0x170
12185         local sz=`stat -c %s $DIR/$tfile`
12186
12187         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12188
12189         rm -rf $DIR/$tfile
12190 }
12191 run_test 207a "can refresh layout at glimpse"
12192
12193 test_207b() {
12194         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12195         local cksum=`md5sum $DIR/$tfile`
12196         local fsz=`stat -c %s $DIR/$tfile`
12197         cancel_lru_locks mdc
12198         cancel_lru_locks osc
12199
12200         # do not return layout in getattr intent
12201 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12202         $LCTL set_param fail_loc=0x171
12203
12204         # it will refresh layout after the file is opened but before read issues
12205         echo checksum is "$cksum"
12206         echo "$cksum" |md5sum -c --quiet || error "file differs"
12207
12208         rm -rf $DIR/$tfile
12209 }
12210 run_test 207b "can refresh layout at open"
12211
12212 test_208() {
12213         # FIXME: in this test suite, only RD lease is used. This is okay
12214         # for now as only exclusive open is supported. After generic lease
12215         # is done, this test suite should be revised. - Jinshan
12216
12217         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12218         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12219                 { skip "Need MDS version at least 2.4.52"; return 0; }
12220
12221         echo "==== test 1: verify get lease work"
12222         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12223
12224         echo "==== test 2: verify lease can be broken by upcoming open"
12225         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12226         local PID=$!
12227         sleep 1
12228
12229         $MULTIOP $DIR/$tfile oO_RDONLY:c
12230         kill -USR1 $PID && wait $PID || error "break lease error"
12231
12232         echo "==== test 3: verify lease can't be granted if an open already exists"
12233         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12234         local PID=$!
12235         sleep 1
12236
12237         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12238         kill -USR1 $PID && wait $PID || error "open file error"
12239
12240         echo "==== test 4: lease can sustain over recovery"
12241         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12242         PID=$!
12243         sleep 1
12244
12245         fail mds1
12246
12247         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12248
12249         echo "==== test 5: lease broken can't be regained by replay"
12250         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12251         PID=$!
12252         sleep 1
12253
12254         # open file to break lease and then recovery
12255         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12256         fail mds1
12257
12258         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12259
12260         rm -f $DIR/$tfile
12261 }
12262 run_test 208 "Exclusive open"
12263
12264 test_209() {
12265         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12266                 skip_env "must have disp_stripe" && return
12267
12268         touch $DIR/$tfile
12269         sync; sleep 5; sync;
12270
12271         echo 3 > /proc/sys/vm/drop_caches
12272         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12273
12274         # open/close 500 times
12275         for i in $(seq 500); do
12276                 cat $DIR/$tfile
12277         done
12278
12279         echo 3 > /proc/sys/vm/drop_caches
12280         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12281
12282         echo "before: $req_before, after: $req_after"
12283         [ $((req_after - req_before)) -ge 300 ] &&
12284                 error "open/close requests are not freed"
12285         return 0
12286 }
12287 run_test 209 "read-only open/close requests should be freed promptly"
12288
12289 test_212() {
12290         size=`date +%s`
12291         size=$((size % 8192 + 1))
12292         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12293         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12294         rm -f $DIR/f212 $DIR/f212.xyz
12295 }
12296 run_test 212 "Sendfile test ============================================"
12297
12298 test_213() {
12299         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12300         cancel_lru_locks osc
12301         lctl set_param fail_loc=0x8000040f
12302         # generate a read lock
12303         cat $DIR/$tfile > /dev/null
12304         # write to the file, it will try to cancel the above read lock.
12305         cat /etc/hosts >> $DIR/$tfile
12306 }
12307 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12308
12309 test_214() { # for bug 20133
12310         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12311         for (( i=0; i < 340; i++ )) ; do
12312                 touch $DIR/$tdir/d214c/a$i
12313         done
12314
12315         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12316         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12317         ls $DIR/d214c || error "ls $DIR/d214c failed"
12318         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12319         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12320 }
12321 run_test 214 "hash-indexed directory test - bug 20133"
12322
12323 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12324 create_lnet_proc_files() {
12325         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12326         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12327
12328         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12329         rm -f "$TMP/lnet_$1.sys_tmp"
12330 }
12331
12332 # counterpart of create_lnet_proc_files
12333 remove_lnet_proc_files() {
12334         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12335 }
12336
12337 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12338 # 3rd arg as regexp for body
12339 check_lnet_proc_stats() {
12340         local l=$(cat "$TMP/lnet_$1" |wc -l)
12341         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12342
12343         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12344 }
12345
12346 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12347 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12348 # optional and can be regexp for 2nd line (lnet.routes case)
12349 check_lnet_proc_entry() {
12350         local blp=2          # blp stands for 'position of 1st line of body'
12351         [ -z "$5" ] || blp=3 # lnet.routes case
12352
12353         local l=$(cat "$TMP/lnet_$1" |wc -l)
12354         # subtracting one from $blp because the body can be empty
12355         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12356
12357         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12358                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12359
12360         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12361                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12362
12363         # bail out if any unexpected line happened
12364         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12365         [ "$?" != 0 ] || error "$2 misformatted"
12366 }
12367
12368 test_215() { # for bugs 18102, 21079, 21517
12369         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12370         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12371         local P='[1-9][0-9]*'           # positive numeric
12372         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12373         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12374         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12375         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12376
12377         local L1 # regexp for 1st line
12378         local L2 # regexp for 2nd line (optional)
12379         local BR # regexp for the rest (body)
12380
12381         # lnet.stats should look as 11 space-separated non-negative numerics
12382         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12383         create_lnet_proc_files "stats"
12384         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12385         remove_lnet_proc_files "stats"
12386
12387         # lnet.routes should look like this:
12388         # Routing disabled/enabled
12389         # net hops priority state router
12390         # where net is a string like tcp0, hops > 0, priority >= 0,
12391         # state is up/down,
12392         # router is a string like 192.168.1.1@tcp2
12393         L1="^Routing (disabled|enabled)$"
12394         L2="^net +hops +priority +state +router$"
12395         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12396         create_lnet_proc_files "routes"
12397         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12398         remove_lnet_proc_files "routes"
12399
12400         # lnet.routers should look like this:
12401         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12402         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12403         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12404         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12405         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12406         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12407         create_lnet_proc_files "routers"
12408         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12409         remove_lnet_proc_files "routers"
12410
12411         # lnet.peers should look like this:
12412         # nid refs state last max rtr min tx min queue
12413         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12414         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12415         # numeric (0 or >0 or <0), queue >= 0.
12416         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12417         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12418         create_lnet_proc_files "peers"
12419         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12420         remove_lnet_proc_files "peers"
12421
12422         # lnet.buffers  should look like this:
12423         # pages count credits min
12424         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12425         L1="^pages +count +credits +min$"
12426         BR="^ +$N +$N +$I +$I$"
12427         create_lnet_proc_files "buffers"
12428         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12429         remove_lnet_proc_files "buffers"
12430
12431         # lnet.nis should look like this:
12432         # nid status alive refs peer rtr max tx min
12433         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12434         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12435         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12436         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12437         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12438         create_lnet_proc_files "nis"
12439         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12440         remove_lnet_proc_files "nis"
12441
12442         # can we successfully write to lnet.stats?
12443         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12444         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12445 }
12446 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12447
12448 test_216() { # bug 20317
12449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12450         remote_ost_nodsh && skip "remote OST with nodsh" && return
12451
12452         local node
12453         local facets=$(get_facets OST)
12454         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12455
12456         save_lustre_params client "osc.*.contention_seconds" > $p
12457         save_lustre_params $facets \
12458                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12459         save_lustre_params $facets \
12460                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12461         save_lustre_params $facets \
12462                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12463         clear_osc_stats
12464
12465         # agressive lockless i/o settings
12466         for node in $(osts_nodes); do
12467                 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'
12468         done
12469         lctl set_param -n osc.*.contention_seconds 60
12470
12471         $DIRECTIO write $DIR/$tfile 0 10 4096
12472         $CHECKSTAT -s 40960 $DIR/$tfile
12473
12474         # disable lockless i/o
12475         for node in $(osts_nodes); do
12476                 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'
12477         done
12478         lctl set_param -n osc.*.contention_seconds 0
12479         clear_osc_stats
12480
12481         dd if=/dev/zero of=$DIR/$tfile count=0
12482         $CHECKSTAT -s 0 $DIR/$tfile
12483
12484         restore_lustre_params <$p
12485         rm -f $p
12486         rm $DIR/$tfile
12487 }
12488 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12489
12490 test_217() { # bug 22430
12491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12492         local node
12493         local nid
12494
12495         for node in $(nodes_list); do
12496                 nid=$(host_nids_address $node $NETTYPE)
12497                 if [[ $nid = *-* ]] ; then
12498                         echo "lctl ping $nid@$NETTYPE"
12499                         lctl ping $nid@$NETTYPE
12500                 else
12501                         echo "skipping $node (no hyphen detected)"
12502                 fi
12503         done
12504 }
12505 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12506
12507 test_218() {
12508        # do directio so as not to populate the page cache
12509        log "creating a 10 Mb file"
12510        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12511        log "starting reads"
12512        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12513        log "truncating the file"
12514        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12515        log "killing dd"
12516        kill %+ || true # reads might have finished
12517        echo "wait until dd is finished"
12518        wait
12519        log "removing the temporary file"
12520        rm -rf $DIR/$tfile || error "tmp file removal failed"
12521 }
12522 run_test 218 "parallel read and truncate should not deadlock ======================="
12523
12524 test_219() {
12525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12526         # write one partial page
12527         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12528         # set no grant so vvp_io_commit_write will do sync write
12529         $LCTL set_param fail_loc=0x411
12530         # write a full page at the end of file
12531         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12532
12533         $LCTL set_param fail_loc=0
12534         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12535         $LCTL set_param fail_loc=0x411
12536         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12537
12538         # LU-4201
12539         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12540         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12541 }
12542 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12543
12544 test_220() { #LU-325
12545         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12546         remote_ost_nodsh && skip "remote OST with nodsh" && return
12547         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12548         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12549         local OSTIDX=0
12550
12551         # create on MDT0000 so the last_id and next_id are correct
12552         mkdir $DIR/$tdir
12553         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12554         OST=${OST%_UUID}
12555
12556         # on the mdt's osc
12557         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12558         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12559                         osc.$mdtosc_proc1.prealloc_last_id)
12560         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12561                         osc.$mdtosc_proc1.prealloc_next_id)
12562
12563         $LFS df -i
12564
12565         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12566         #define OBD_FAIL_OST_ENOINO              0x229
12567         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12568         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12569         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12570
12571         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12572
12573         MDSOBJS=$((last_id - next_id))
12574         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12575
12576         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12577         echo "OST still has $count kbytes free"
12578
12579         echo "create $MDSOBJS files @next_id..."
12580         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12581
12582         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12583                         osc.$mdtosc_proc1.prealloc_last_id)
12584         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12585                         osc.$mdtosc_proc1.prealloc_next_id)
12586
12587         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12588         $LFS df -i
12589
12590         echo "cleanup..."
12591
12592         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12593         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12594
12595         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12596         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12597         echo "unlink $MDSOBJS files @$next_id..."
12598         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12599 }
12600 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12601
12602 test_221() {
12603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12604         dd if=`which date` of=$MOUNT/date oflag=sync
12605         chmod +x $MOUNT/date
12606
12607         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12608         $LCTL set_param fail_loc=0x80001401
12609
12610         $MOUNT/date > /dev/null
12611         rm -f $MOUNT/date
12612 }
12613 run_test 221 "make sure fault and truncate race to not cause OOM"
12614
12615 test_222a () {
12616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12617        rm -rf $DIR/$tdir
12618        test_mkdir -p $DIR/$tdir
12619        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12620        createmany -o $DIR/$tdir/$tfile 10
12621        cancel_lru_locks mdc
12622        cancel_lru_locks osc
12623        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12624        $LCTL set_param fail_loc=0x31a
12625        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12626        $LCTL set_param fail_loc=0
12627        rm -r $DIR/$tdir
12628 }
12629 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12630
12631 test_222b () {
12632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12633         rm -rf $DIR/$tdir
12634         test_mkdir -p $DIR/$tdir
12635         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12636         createmany -o $DIR/$tdir/$tfile 10
12637         cancel_lru_locks mdc
12638         cancel_lru_locks osc
12639         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12640         $LCTL set_param fail_loc=0x31a
12641         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12642         $LCTL set_param fail_loc=0
12643 }
12644 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12645
12646 test_223 () {
12647         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12648        rm -rf $DIR/$tdir
12649        test_mkdir -p $DIR/$tdir
12650        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12651        createmany -o $DIR/$tdir/$tfile 10
12652        cancel_lru_locks mdc
12653        cancel_lru_locks osc
12654        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12655        $LCTL set_param fail_loc=0x31b
12656        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12657        $LCTL set_param fail_loc=0
12658        rm -r $DIR/$tdir
12659 }
12660 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12661
12662 test_224a() { # LU-1039, MRP-303
12663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12664         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12665         $LCTL set_param fail_loc=0x508
12666         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12667         $LCTL set_param fail_loc=0
12668         df $DIR
12669 }
12670 run_test 224a "Don't panic on bulk IO failure"
12671
12672 test_224b() { # LU-1039, MRP-303
12673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12674         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12675         cancel_lru_locks osc
12676         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12677         $LCTL set_param fail_loc=0x515
12678         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12679         $LCTL set_param fail_loc=0
12680         df $DIR
12681 }
12682 run_test 224b "Don't panic on bulk IO failure"
12683
12684 test_224c() { # LU-6441
12685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12686         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12687
12688         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12689         save_writethrough $p
12690         set_cache writethrough on
12691
12692         local pages_per_rpc=$($LCTL get_param \
12693                                 osc.*.max_pages_per_rpc)
12694         local at_max=$($LCTL get_param -n at_max)
12695         local timeout=$($LCTL get_param -n timeout)
12696         local test_at="$LCTL get_param -n at_max"
12697         local param_at="$FSNAME.sys.at_max"
12698         local test_timeout="$LCTL get_param -n timeout"
12699         local param_timeout="$FSNAME.sys.timeout"
12700
12701         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12702
12703         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12704                 error "conf_param at_max=0 failed"
12705         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12706                 error "conf_param timeout=5 failed"
12707
12708         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12709         do_facet ost1 $LCTL set_param fail_loc=0x520
12710         $LFS setstripe -c 1 -i 0 $DIR/$tfile
12711         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12712         sync
12713         do_facet ost1 $LCTL set_param fail_loc=0
12714
12715         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12716                 error "conf_param at_max=$at_max failed"
12717         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12718                 $timeout || error "conf_param timeout=$timeout failed"
12719
12720         $LCTL set_param -n $pages_per_rpc
12721         restore_lustre_params < $p
12722         rm -f $p
12723 }
12724 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12725
12726 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12727 test_225a () {
12728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12729         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12730         if [ -z ${MDSSURVEY} ]; then
12731               skip_env "mds-survey not found" && return
12732         fi
12733
12734         [ $MDSCOUNT -ge 2 ] &&
12735                 skip "skipping now for more than one MDT" && return
12736
12737        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12738             { skip "Need MDS version at least 2.2.51"; return; }
12739
12740        local mds=$(facet_host $SINGLEMDS)
12741        local target=$(do_nodes $mds 'lctl dl' | \
12742                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12743
12744        local cmd1="file_count=1000 thrhi=4"
12745        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12746        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12747        local cmd="$cmd1 $cmd2 $cmd3"
12748
12749        rm -f ${TMP}/mds_survey*
12750        echo + $cmd
12751        eval $cmd || error "mds-survey with zero-stripe failed"
12752        cat ${TMP}/mds_survey*
12753        rm -f ${TMP}/mds_survey*
12754 }
12755 run_test 225a "Metadata survey sanity with zero-stripe"
12756
12757 test_225b () {
12758         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12759         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12760         if [ -z ${MDSSURVEY} ]; then
12761               skip_env "mds-survey not found" && return
12762         fi
12763         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12764             { skip "Need MDS version at least 2.2.51"; return; }
12765
12766         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12767               skip_env "Need to mount OST to test" && return
12768         fi
12769
12770         [ $MDSCOUNT -ge 2 ] &&
12771                 skip "skipping now for more than one MDT" && return
12772        local mds=$(facet_host $SINGLEMDS)
12773        local target=$(do_nodes $mds 'lctl dl' | \
12774                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12775
12776        local cmd1="file_count=1000 thrhi=4"
12777        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12778        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12779        local cmd="$cmd1 $cmd2 $cmd3"
12780
12781        rm -f ${TMP}/mds_survey*
12782        echo + $cmd
12783        eval $cmd || error "mds-survey with stripe_count failed"
12784        cat ${TMP}/mds_survey*
12785        rm -f ${TMP}/mds_survey*
12786 }
12787 run_test 225b "Metadata survey sanity with stripe_count = 1"
12788
12789 mcreate_path2fid () {
12790         local mode=$1
12791         local major=$2
12792         local minor=$3
12793         local name=$4
12794         local desc=$5
12795         local path=$DIR/$tdir/$name
12796         local fid
12797         local rc
12798         local fid_path
12799
12800         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12801                 error "cannot create $desc"
12802
12803         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12804         rc=$?
12805         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12806
12807         fid_path=$($LFS fid2path $MOUNT $fid)
12808         rc=$?
12809         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12810
12811         [ "$path" == "$fid_path" ] ||
12812                 error "fid2path returned $fid_path, expected $path"
12813
12814         echo "pass with $path and $fid"
12815 }
12816
12817 test_226a () {
12818         rm -rf $DIR/$tdir
12819         mkdir -p $DIR/$tdir
12820
12821         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12822         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12823         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12824         mcreate_path2fid 0040666 0 0 dir "directory"
12825         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12826         mcreate_path2fid 0100666 0 0 file "regular file"
12827         mcreate_path2fid 0120666 0 0 link "symbolic link"
12828         mcreate_path2fid 0140666 0 0 sock "socket"
12829 }
12830 run_test 226a "call path2fid and fid2path on files of all type"
12831
12832 test_226b () {
12833         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12834         rm -rf $DIR/$tdir
12835         local MDTIDX=1
12836
12837         mkdir -p $DIR/$tdir
12838         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12839                 error "create remote directory failed"
12840         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12841         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12842                                 "character special file (null)"
12843         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12844                                 "character special file (no device)"
12845         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12846         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12847                                 "block special file (loop)"
12848         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12849         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12850         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12851 }
12852 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12853
12854 # LU-1299 Executing or running ldd on a truncated executable does not
12855 # cause an out-of-memory condition.
12856 test_227() {
12857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12858         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12859         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12860         chmod +x $MOUNT/date
12861
12862         $MOUNT/date > /dev/null
12863         ldd $MOUNT/date > /dev/null
12864         rm -f $MOUNT/date
12865 }
12866 run_test 227 "running truncated executable does not cause OOM"
12867
12868 # LU-1512 try to reuse idle OI blocks
12869 test_228a() {
12870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12871         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12872         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12873                 skip "non-ldiskfs backend" && return
12874
12875         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12876         local myDIR=$DIR/$tdir
12877
12878         mkdir -p $myDIR
12879         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12880         $LCTL set_param fail_loc=0x80001002
12881         createmany -o $myDIR/t- 10000
12882         $LCTL set_param fail_loc=0
12883         # The guard is current the largest FID holder
12884         touch $myDIR/guard
12885         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12886                     tr -d '[')
12887         local IDX=$(($SEQ % 64))
12888
12889         do_facet $SINGLEMDS sync
12890         # Make sure journal flushed.
12891         sleep 6
12892         local blk1=$(do_facet $SINGLEMDS \
12893                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12894                      grep Blockcount | awk '{print $4}')
12895
12896         # Remove old files, some OI blocks will become idle.
12897         unlinkmany $myDIR/t- 10000
12898         # Create new files, idle OI blocks should be reused.
12899         createmany -o $myDIR/t- 2000
12900         do_facet $SINGLEMDS sync
12901         # Make sure journal flushed.
12902         sleep 6
12903         local blk2=$(do_facet $SINGLEMDS \
12904                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12905                      grep Blockcount | awk '{print $4}')
12906
12907         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12908 }
12909 run_test 228a "try to reuse idle OI blocks"
12910
12911 test_228b() {
12912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12913         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12914         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12915                 skip "non-ldiskfs backend" && return
12916
12917         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12918         local myDIR=$DIR/$tdir
12919
12920         mkdir -p $myDIR
12921         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12922         $LCTL set_param fail_loc=0x80001002
12923         createmany -o $myDIR/t- 10000
12924         $LCTL set_param fail_loc=0
12925         # The guard is current the largest FID holder
12926         touch $myDIR/guard
12927         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12928                     tr -d '[')
12929         local IDX=$(($SEQ % 64))
12930
12931         do_facet $SINGLEMDS sync
12932         # Make sure journal flushed.
12933         sleep 6
12934         local blk1=$(do_facet $SINGLEMDS \
12935                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12936                      grep Blockcount | awk '{print $4}')
12937
12938         # Remove old files, some OI blocks will become idle.
12939         unlinkmany $myDIR/t- 10000
12940
12941         # stop the MDT
12942         stop $SINGLEMDS || error "Fail to stop MDT."
12943         # remount the MDT
12944         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12945
12946         df $MOUNT || error "Fail to df."
12947         # Create new files, idle OI blocks should be reused.
12948         createmany -o $myDIR/t- 2000
12949         do_facet $SINGLEMDS sync
12950         # Make sure journal flushed.
12951         sleep 6
12952         local blk2=$(do_facet $SINGLEMDS \
12953                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12954                      grep Blockcount | awk '{print $4}')
12955
12956         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12957 }
12958 run_test 228b "idle OI blocks can be reused after MDT restart"
12959
12960 #LU-1881
12961 test_228c() {
12962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12963         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12964         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12965                 skip "non-ldiskfs backend" && return
12966
12967         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12968         local myDIR=$DIR/$tdir
12969
12970         mkdir -p $myDIR
12971         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12972         $LCTL set_param fail_loc=0x80001002
12973         # 20000 files can guarantee there are index nodes in the OI file
12974         createmany -o $myDIR/t- 20000
12975         $LCTL set_param fail_loc=0
12976         # The guard is current the largest FID holder
12977         touch $myDIR/guard
12978         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12979                     tr -d '[')
12980         local IDX=$(($SEQ % 64))
12981
12982         do_facet $SINGLEMDS sync
12983         # Make sure journal flushed.
12984         sleep 6
12985         local blk1=$(do_facet $SINGLEMDS \
12986                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12987                      grep Blockcount | awk '{print $4}')
12988
12989         # Remove old files, some OI blocks will become idle.
12990         unlinkmany $myDIR/t- 20000
12991         rm -f $myDIR/guard
12992         # The OI file should become empty now
12993
12994         # Create new files, idle OI blocks should be reused.
12995         createmany -o $myDIR/t- 2000
12996         do_facet $SINGLEMDS sync
12997         # Make sure journal flushed.
12998         sleep 6
12999         local blk2=$(do_facet $SINGLEMDS \
13000                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13001                      grep Blockcount | awk '{print $4}')
13002
13003         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13004 }
13005 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13006
13007 test_229() { # LU-2482, LU-3448
13008         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13009                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13010                 return
13011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13012         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13013
13014         rm -f $DIR/$tfile
13015
13016         # Create a file with a released layout and stripe count 2.
13017         $MULTIOP $DIR/$tfile H2c ||
13018                 error "failed to create file with released layout"
13019
13020         $GETSTRIPE -v $DIR/$tfile
13021
13022         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13023         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13024
13025         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13026         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13027         stat $DIR/$tfile || error "failed to stat released file"
13028
13029         chown $RUNAS_ID $DIR/$tfile ||
13030                 error "chown $RUNAS_ID $DIR/$tfile failed"
13031
13032         chgrp $RUNAS_ID $DIR/$tfile ||
13033                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13034
13035         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13036         rm $DIR/$tfile || error "failed to remove released file"
13037 }
13038 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13039
13040 test_230a() {
13041         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13042         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13043         local MDTIDX=1
13044
13045         test_mkdir $DIR/$tdir
13046         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13047         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13048         [ $mdt_idx -ne 0 ] &&
13049                 error "create local directory on wrong MDT $mdt_idx"
13050
13051         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13052                         error "create remote directory failed"
13053         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13054         [ $mdt_idx -ne $MDTIDX ] &&
13055                 error "create remote directory on wrong MDT $mdt_idx"
13056
13057         createmany -o $DIR/$tdir/test_230/t- 10 ||
13058                 error "create files on remote directory failed"
13059         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13060         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13061         rm -r $DIR/$tdir || error "unlink remote directory failed"
13062 }
13063 run_test 230a "Create remote directory and files under the remote directory"
13064
13065 test_230b() {
13066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13067         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13068         local MDTIDX=1
13069         local mdt_index
13070         local i
13071         local file
13072         local pid
13073         local stripe_count
13074         local migrate_dir=$DIR/$tdir/migrate_dir
13075         local other_dir=$DIR/$tdir/other_dir
13076
13077         test_mkdir $DIR/$tdir
13078         test_mkdir -i0 -c1 $migrate_dir
13079         test_mkdir -i0 -c1 $other_dir
13080         for ((i=0; i<10; i++)); do
13081                 mkdir -p $migrate_dir/dir_${i}
13082                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13083                         error "create files under remote dir failed $i"
13084         done
13085
13086         cp /etc/passwd $migrate_dir/$tfile
13087         cp /etc/passwd $other_dir/$tfile
13088         chattr +SAD $migrate_dir
13089         chattr +SAD $migrate_dir/$tfile
13090
13091         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13092         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13093         local old_dir_mode=$(stat -c%f $migrate_dir)
13094         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13095
13096         mkdir -p $migrate_dir/dir_default_stripe2
13097         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13098         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13099
13100         mkdir -p $other_dir
13101         ln $migrate_dir/$tfile $other_dir/luna
13102         ln $migrate_dir/$tfile $migrate_dir/sofia
13103         ln $other_dir/$tfile $migrate_dir/david
13104         ln -s $migrate_dir/$tfile $other_dir/zachary
13105         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13106         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13107
13108         $LFS migrate -m $MDTIDX $migrate_dir ||
13109                 error "fails on migrating remote dir to MDT1"
13110
13111         echo "migratate to MDT1, then checking.."
13112         for ((i = 0; i < 10; i++)); do
13113                 for file in $(find $migrate_dir/dir_${i}); do
13114                         mdt_index=$($LFS getstripe -M $file)
13115                         [ $mdt_index == $MDTIDX ] ||
13116                                 error "$file is not on MDT${MDTIDX}"
13117                 done
13118         done
13119
13120         # the multiple link file should still in MDT0
13121         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13122         [ $mdt_index == 0 ] ||
13123                 error "$file is not on MDT${MDTIDX}"
13124
13125         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13126         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13127                 error " expect $old_dir_flag get $new_dir_flag"
13128
13129         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13130         [ "$old_file_flag" = "$new_file_flag" ] ||
13131                 error " expect $old_file_flag get $new_file_flag"
13132
13133         local new_dir_mode=$(stat -c%f $migrate_dir)
13134         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13135                 error "expect mode $old_dir_mode get $new_dir_mode"
13136
13137         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13138         [ "$old_file_mode" = "$new_file_mode" ] ||
13139                 error "expect mode $old_file_mode get $new_file_mode"
13140
13141         diff /etc/passwd $migrate_dir/$tfile ||
13142                 error "$tfile different after migration"
13143
13144         diff /etc/passwd $other_dir/luna ||
13145                 error "luna different after migration"
13146
13147         diff /etc/passwd $migrate_dir/sofia ||
13148                 error "sofia different after migration"
13149
13150         diff /etc/passwd $migrate_dir/david ||
13151                 error "david different after migration"
13152
13153         diff /etc/passwd $other_dir/zachary ||
13154                 error "zachary different after migration"
13155
13156         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13157                 error "${tfile}_ln different after migration"
13158
13159         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13160                 error "${tfile}_ln_other different after migration"
13161
13162         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13163         [ $stripe_count = 2 ] ||
13164                 error "dir strpe_count $d != 2 after migration."
13165
13166         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13167         [ $stripe_count = 2 ] ||
13168                 error "file strpe_count $d != 2 after migration."
13169
13170         #migrate back to MDT0
13171         MDTIDX=0
13172
13173         $LFS migrate -m $MDTIDX $migrate_dir ||
13174                 error "fails on migrating remote dir to MDT0"
13175
13176         echo "migrate back to MDT0, checking.."
13177         for file in $(find $migrate_dir); do
13178                 mdt_index=$($LFS getstripe -M $file)
13179                 [ $mdt_index == $MDTIDX ] ||
13180                         error "$file is not on MDT${MDTIDX}"
13181         done
13182
13183         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13184         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13185                 error " expect $old_dir_flag get $new_dir_flag"
13186
13187         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13188         [ "$old_file_flag" = "$new_file_flag" ] ||
13189                 error " expect $old_file_flag get $new_file_flag"
13190
13191         local new_dir_mode=$(stat -c%f $migrate_dir)
13192         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13193                 error "expect mode $old_dir_mode get $new_dir_mode"
13194
13195         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13196         [ "$old_file_mode" = "$new_file_mode" ] ||
13197                 error "expect mode $old_file_mode get $new_file_mode"
13198
13199         diff /etc/passwd ${migrate_dir}/$tfile ||
13200                 error "$tfile different after migration"
13201
13202         diff /etc/passwd ${other_dir}/luna ||
13203                 error "luna different after migration"
13204
13205         diff /etc/passwd ${migrate_dir}/sofia ||
13206                 error "sofia different after migration"
13207
13208         diff /etc/passwd ${other_dir}/zachary ||
13209                 error "zachary different after migration"
13210
13211         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13212                 error "${tfile}_ln different after migration"
13213
13214         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13215                 error "${tfile}_ln_other different after migration"
13216
13217         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13218         [ $stripe_count = 2 ] ||
13219                 error "dir strpe_count $d != 2 after migration."
13220
13221         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13222         [ $stripe_count = 2 ] ||
13223                 error "file strpe_count $d != 2 after migration."
13224
13225         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13226 }
13227 run_test 230b "migrate directory"
13228
13229 test_230c() {
13230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13231         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13232         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13233         local MDTIDX=1
13234         local mdt_index
13235         local file
13236         local migrate_dir=$DIR/$tdir/migrate_dir
13237
13238         #If migrating directory fails in the middle, all entries of
13239         #the directory is still accessiable.
13240         test_mkdir $DIR/$tdir
13241         test_mkdir -i0 -c1 $migrate_dir
13242         stat $migrate_dir
13243         createmany -o $migrate_dir/f 10 ||
13244                 error "create files under ${migrate_dir} failed"
13245
13246         #failed after migrating 5 entries
13247         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13248         do_facet mds1 lctl set_param fail_loc=0x20001801
13249         do_facet mds1 lctl  set_param fail_val=5
13250         local t=$(ls $migrate_dir | wc -l)
13251         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13252                 error "migrate should fail after 5 entries"
13253
13254         mkdir $migrate_dir/dir &&
13255                 error "mkdir succeeds under migrating directory"
13256         touch $migrate_dir/file &&
13257                 error "touch file succeeds under migrating directory"
13258
13259         local u=$(ls $migrate_dir | wc -l)
13260         [ "$u" == "$t" ] || error "$u != $t during migration"
13261
13262         for file in $(find $migrate_dir); do
13263                 stat $file || error "stat $file failed"
13264         done
13265
13266         do_facet mds1 lctl set_param fail_loc=0
13267         do_facet mds1 lctl set_param fail_val=0
13268
13269         $LFS migrate -m $MDTIDX $migrate_dir ||
13270                 error "migrate open files should failed with open files"
13271
13272         echo "Finish migration, then checking.."
13273         for file in $(find $migrate_dir); do
13274                 mdt_index=$($LFS getstripe -M $file)
13275                 [ $mdt_index == $MDTIDX ] ||
13276                         error "$file is not on MDT${MDTIDX}"
13277         done
13278
13279         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13280 }
13281 run_test 230c "check directory accessiblity if migration is failed"
13282
13283 test_230d() {
13284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13285         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13286         local MDTIDX=1
13287         local mdt_index
13288         local migrate_dir=$DIR/$tdir/migrate_dir
13289         local i
13290         local j
13291
13292         test_mkdir $DIR/$tdir
13293         test_mkdir -i0 -c1 $migrate_dir
13294
13295         for ((i=0; i<100; i++)); do
13296                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13297                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13298                         error "create files under remote dir failed $i"
13299         done
13300
13301         $LFS migrate -m $MDTIDX $migrate_dir ||
13302                 error "migrate remote dir error"
13303
13304         echo "Finish migration, then checking.."
13305         for file in $(find $migrate_dir); do
13306                 mdt_index=$($LFS getstripe -M $file)
13307                 [ $mdt_index == $MDTIDX ] ||
13308                         error "$file is not on MDT${MDTIDX}"
13309         done
13310
13311         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13312 }
13313 run_test 230d "check migrate big directory"
13314
13315 test_230e() {
13316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13317         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13318         local i
13319         local j
13320         local a_fid
13321         local b_fid
13322
13323         mkdir -p $DIR/$tdir
13324         mkdir $DIR/$tdir/migrate_dir
13325         mkdir $DIR/$tdir/other_dir
13326         touch $DIR/$tdir/migrate_dir/a
13327         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13328         ls $DIR/$tdir/other_dir
13329
13330         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13331                 error "migrate dir fails"
13332
13333         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13334         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13335
13336         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13337         [ $mdt_index == 0 ] || error "a is not on MDT0"
13338
13339         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13340                 error "migrate dir fails"
13341
13342         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13343         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13344
13345         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13346         [ $mdt_index == 1 ] || error "a is not on MDT1"
13347
13348         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13349         [ $mdt_index == 1 ] || error "b is not on MDT1"
13350
13351         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13352         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13353
13354         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13355
13356         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13357 }
13358 run_test 230e "migrate mulitple local link files"
13359
13360 test_230f() {
13361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13362         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13363         local a_fid
13364         local ln_fid
13365
13366         mkdir -p $DIR/$tdir
13367         mkdir $DIR/$tdir/migrate_dir
13368         $LFS mkdir -i1 $DIR/$tdir/other_dir
13369         touch $DIR/$tdir/migrate_dir/a
13370         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13371         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13372         ls $DIR/$tdir/other_dir
13373
13374         # a should be migrated to MDT1, since no other links on MDT0
13375         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13376                 error "#1 migrate dir fails"
13377         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13378         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13379         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13380         [ $mdt_index == 1 ] || error "a is not on MDT1"
13381
13382         # a should stay on MDT1, because it is a mulitple link file
13383         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13384                 error "#2 migrate dir fails"
13385         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13386         [ $mdt_index == 1 ] || error "a is not on MDT1"
13387
13388         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13389                 error "#3 migrate dir fails"
13390
13391         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13392         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13393         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13394
13395         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13396         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13397
13398         # a should be migrated to MDT0, since no other links on MDT1
13399         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13400                 error "#4 migrate dir fails"
13401         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13402         [ $mdt_index == 0 ] || error "a is not on MDT0"
13403
13404         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13405 }
13406 run_test 230f "migrate mulitple remote link files"
13407
13408 test_230g() {
13409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13410         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13411
13412         mkdir -p $DIR/$tdir/migrate_dir
13413
13414         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13415                 error "migrating dir to non-exist MDT succeeds"
13416         true
13417 }
13418 run_test 230g "migrate dir to non-exist MDT"
13419
13420 test_230h() {
13421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13422         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13423         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13424                 skip "Need MDS version at least 2.7.64" && return
13425         local mdt_index
13426
13427         mkdir -p $DIR/$tdir/migrate_dir
13428
13429         $LFS migrate -m1 $DIR &&
13430                 error "migrating mountpoint1 should fail"
13431
13432         $LFS migrate -m1 $DIR/$tdir/.. &&
13433                 error "migrating mountpoint2 should fail"
13434
13435         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13436                 error "migrating $tdir fail"
13437
13438         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13439         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13440
13441         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13442         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13443
13444 }
13445 run_test 230h "migrate .. and root"
13446
13447 test_230i() {
13448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13449         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13450
13451         mkdir -p $DIR/$tdir/migrate_dir
13452
13453         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13454                 error "migration fails with a tailing slash"
13455
13456         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13457                 error "migration fails with two tailing slashes"
13458 }
13459 run_test 230i "lfs migrate -m tolerates trailing slashes"
13460
13461 test_231a()
13462 {
13463         # For simplicity this test assumes that max_pages_per_rpc
13464         # is the same across all OSCs
13465         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13466         local bulk_size=$((max_pages * 4096))
13467
13468         mkdir -p $DIR/$tdir
13469
13470         # clear the OSC stats
13471         $LCTL set_param osc.*.stats=0 &>/dev/null
13472         stop_writeback
13473
13474         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13475         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13476                 oflag=direct &>/dev/null || error "dd failed"
13477
13478         sync; sleep 1; sync # just to be safe
13479         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13480         if [ x$nrpcs != "x1" ]; then
13481                 $LCTL get_param osc.*.stats
13482                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13483         fi
13484
13485         start_writeback
13486         # Drop the OSC cache, otherwise we will read from it
13487         cancel_lru_locks osc
13488
13489         # clear the OSC stats
13490         $LCTL set_param osc.*.stats=0 &>/dev/null
13491
13492         # Client reads $bulk_size.
13493         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13494                 iflag=direct &>/dev/null || error "dd failed"
13495
13496         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13497         if [ x$nrpcs != "x1" ]; then
13498                 $LCTL get_param osc.*.stats
13499                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13500         fi
13501 }
13502 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13503
13504 test_231b() {
13505         mkdir -p $DIR/$tdir
13506         local i
13507         for i in {0..1023}; do
13508                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13509                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13510                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13511         done
13512         sync
13513 }
13514 run_test 231b "must not assert on fully utilized OST request buffer"
13515
13516 test_232() {
13517         mkdir -p $DIR/$tdir
13518         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13519         $LCTL set_param fail_loc=0x31c
13520
13521         # ignore dd failure
13522         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13523
13524         $LCTL set_param fail_loc=0
13525         umount_client $MOUNT || error "umount failed"
13526         mount_client $MOUNT || error "mount failed"
13527 }
13528 run_test 232 "failed lock should not block umount"
13529
13530 test_233a() {
13531         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13532         { skip "Need MDS version at least 2.3.64"; return; }
13533         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13534
13535         local fid=$($LFS path2fid $MOUNT)
13536         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13537                 error "cannot access $MOUNT using its FID '$fid'"
13538 }
13539 run_test 233a "checking that OBF of the FS root succeeds"
13540
13541 test_233b() {
13542         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13543         { skip "Need MDS version at least 2.5.90"; return; }
13544         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13545
13546         local fid=$($LFS path2fid $MOUNT/.lustre)
13547         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13548                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13549
13550         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13551         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13552                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13553 }
13554 run_test 233b "checking that OBF of the FS .lustre succeeds"
13555
13556 test_234() {
13557         local p="$TMP/sanityN-$TESTNAME.parameters"
13558         save_lustre_params client "llite.*.xattr_cache" > $p
13559         lctl set_param llite.*.xattr_cache 1 ||
13560                 { skip "xattr cache is not supported"; return 0; }
13561
13562         mkdir -p $DIR/$tdir || error "mkdir failed"
13563         touch $DIR/$tdir/$tfile || error "touch failed"
13564         # OBD_FAIL_LLITE_XATTR_ENOMEM
13565         $LCTL set_param fail_loc=0x1405
13566         # output of the form: attr 2 4 44 3 fc13 x86_64
13567         V=($(IFS=".-" rpm -q attr))
13568         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13569               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13570                 # attr pre-2.4.44-7 had a bug with rc
13571                 # LU-3703 - SLES 11 and FC13 clients have older attr
13572                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13573                         error "getfattr should have failed with ENOMEM"
13574         else
13575                 skip "LU-3703: attr version $(getfattr --version) too old"
13576         fi
13577         $LCTL set_param fail_loc=0x0
13578         rm -rf $DIR/$tdir
13579
13580         restore_lustre_params < $p
13581         rm -f $p
13582 }
13583 run_test 234 "xattr cache should not crash on ENOMEM"
13584
13585 test_235() {
13586         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13587                 skip "Need MDS version at least 2.4.52" && return
13588         flock_deadlock $DIR/$tfile
13589         local RC=$?
13590         case $RC in
13591                 0)
13592                 ;;
13593                 124) error "process hangs on a deadlock"
13594                 ;;
13595                 *) error "error executing flock_deadlock $DIR/$tfile"
13596                 ;;
13597         esac
13598 }
13599 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13600
13601 #LU-2935
13602 test_236() {
13603         check_swap_layouts_support && return 0
13604         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13605
13606         local ref1=/etc/passwd
13607         local ref2=/etc/group
13608         local file1=$DIR/$tdir/f1
13609         local file2=$DIR/$tdir/f2
13610
13611         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13612         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13613         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13614         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13615         local fd=$(free_fd)
13616         local cmd="exec $fd<>$file2"
13617         eval $cmd
13618         rm $file2
13619         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13620                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13621         cmd="exec $fd>&-"
13622         eval $cmd
13623         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13624
13625         #cleanup
13626         rm -rf $DIR/$tdir
13627 }
13628 run_test 236 "Layout swap on open unlinked file"
13629
13630 # test to verify file handle related system calls
13631 # (name_to_handle_at/open_by_handle_at)
13632 # The new system calls are supported in glibc >= 2.14.
13633
13634 test_237() {
13635         echo "Test file_handle syscalls" > $DIR/$tfile ||
13636                 error "write failed"
13637         check_fhandle_syscalls $DIR/$tfile ||
13638                 error "check_fhandle_syscalls failed"
13639 }
13640 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13641
13642 # LU-4659 linkea consistency
13643 test_238() {
13644         local server_version=$(lustre_version_code $SINGLEMDS)
13645
13646         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13647                 [[ $server_version -gt $(version_code 2.5.1) &&
13648                    $server_version -lt $(version_code 2.5.50) ]] ||
13649                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13650
13651         touch $DIR/$tfile
13652         ln $DIR/$tfile $DIR/$tfile.lnk
13653         touch $DIR/$tfile.new
13654         mv $DIR/$tfile.new $DIR/$tfile
13655         local fid1=$($LFS path2fid $DIR/$tfile)
13656         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13657         local path1=$($LFS fid2path $FSNAME "$fid1")
13658         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13659         local path2=$($LFS fid2path $FSNAME "$fid2")
13660         [ $tfile.lnk == $path2 ] ||
13661                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13662         rm -f $DIR/$tfile*
13663 }
13664 run_test 238 "Verify linkea consistency"
13665
13666 test_239() {
13667         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13668                 skip "Need MDS version at least 2.5.60" && return
13669         local list=$(comma_list $(mdts_nodes))
13670
13671         mkdir -p $DIR/$tdir
13672         createmany -o $DIR/$tdir/f- 5000
13673         unlinkmany $DIR/$tdir/f- 5000
13674         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13675         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13676                         osc.*MDT*.sync_in_flight" | calc_sum)
13677         [ "$changes" -eq 0 ] || error "$changes not synced"
13678 }
13679 run_test 239 "osp_sync test"
13680
13681 test_239a() { #LU-5297
13682         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13683         touch $DIR/$tfile
13684         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13685         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13686         chgrp $RUNAS_GID $DIR/$tfile
13687         wait_delete_completed
13688 }
13689 run_test 239a "process invalid osp sync record correctly"
13690
13691 test_239b() { #LU-5297
13692         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13693         touch $DIR/$tfile1
13694         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13695         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13696         chgrp $RUNAS_GID $DIR/$tfile1
13697         wait_delete_completed
13698         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13699         touch $DIR/$tfile2
13700         chgrp $RUNAS_GID $DIR/$tfile2
13701         wait_delete_completed
13702 }
13703 run_test 239b "process osp sync record with ENOMEM error correctly"
13704
13705 test_240() {
13706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13707         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13708
13709         mkdir -p $DIR/$tdir
13710
13711         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13712                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13713         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13714                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13715
13716         umount_client $MOUNT || error "umount failed"
13717         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13718         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13719         mount_client $MOUNT || error "failed to mount client"
13720
13721         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13722         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13723 }
13724 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13725
13726 test_241_bio() {
13727         for LOOP in $(seq $1); do
13728                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13729                 cancel_lru_locks osc || true
13730         done
13731 }
13732
13733 test_241_dio() {
13734         for LOOP in $(seq $1); do
13735                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13736                                                 iflag=direct 2>/dev/null
13737         done
13738 }
13739
13740 test_241() {
13741         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13742         ls -la $DIR/$tfile
13743         cancel_lru_locks osc
13744         test_241_bio 1000 &
13745         PID=$!
13746         test_241_dio 1000
13747         wait $PID
13748 }
13749 run_test 241 "bio vs dio"
13750
13751 test_241b() {
13752         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13753         ls -la $DIR/$tfile
13754         test_241_dio 1000 &
13755         PID=$!
13756         test_241_dio 1000
13757         wait $PID
13758 }
13759 run_test 241b "dio vs dio"
13760
13761 test_242() {
13762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13763         mkdir -p $DIR/$tdir
13764         touch $DIR/$tdir/$tfile
13765
13766         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13767         do_facet mds1 lctl set_param fail_loc=0x105
13768         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13769
13770         do_facet mds1 lctl set_param fail_loc=0
13771         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13772 }
13773 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13774
13775 test_243()
13776 {
13777         test_mkdir -p $DIR/$tdir
13778         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13779 }
13780 run_test 243 "various group lock tests"
13781
13782 test_244()
13783 {
13784         test_mkdir -p $DIR/$tdir
13785         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13786         sendfile_grouplock $DIR/$tdir/$tfile || \
13787                 error "sendfile+grouplock failed"
13788         rm -rf $DIR/$tdir
13789 }
13790 run_test 244 "sendfile with group lock tests"
13791
13792 test_245() {
13793         local flagname="multi_mod_rpcs"
13794         local connect_data_name="max_mod_rpcs"
13795         local out
13796
13797         # check if multiple modify RPCs flag is set
13798         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13799                 grep "connect_flags:")
13800         echo "$out"
13801
13802         echo "$out" | grep -qw $flagname
13803         if [ $? -ne 0 ]; then
13804                 echo "connect flag $flagname is not set"
13805                 return
13806         fi
13807
13808         # check if multiple modify RPCs data is set
13809         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13810         echo "$out"
13811
13812         echo "$out" | grep -qw $connect_data_name ||
13813                 error "import should have connect data $connect_data_name"
13814 }
13815 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13816
13817 test_246() { # LU-7371
13818         remote_ost_nodsh && skip "remote OST with nodsh" && return
13819         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13820                 skip "Need OST version >= 2.7.62" && return 0
13821         do_facet ost1 $LCTL set_param fail_val=4095
13822 #define OBD_FAIL_OST_READ_SIZE          0x234
13823         do_facet ost1 $LCTL set_param fail_loc=0x234
13824         $LFS setstripe $DIR/$tfile -i 0 -c 1
13825         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13826         cancel_lru_locks $FSNAME-OST0000
13827         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13828 }
13829 run_test 246 "Read file of size 4095 should return right length"
13830
13831 test_247a() {
13832         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13833                 grep -q subtree ||
13834                 { skip "Fileset feature is not supported"; return; }
13835
13836         local submount=${MOUNT}_$tdir
13837
13838         mkdir $MOUNT/$tdir
13839         mkdir -p $submount || error "mkdir $submount failed"
13840         FILESET="$FILESET/$tdir" mount_client $submount ||
13841                 error "mount $submount failed"
13842         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
13843         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
13844                 error "read $MOUNT/$tdir/$tfile failed"
13845         umount_client $submount || error "umount $submount failed"
13846         rmdir $submount
13847 }
13848 run_test 247a "mount subdir as fileset"
13849
13850 test_247b() {
13851         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13852                 { skip "Fileset feature is not supported"; return; }
13853
13854         local submount=${MOUNT}_$tdir
13855
13856         rm -rf $MOUNT/$tdir
13857         mkdir -p $submount || error "mkdir $submount failed"
13858         SKIP_FILESET=1
13859         FILESET="$FILESET/$tdir" mount_client $submount &&
13860                 error "mount $submount should fail"
13861         rmdir $submount
13862 }
13863 run_test 247b "mount subdir that dose not exist"
13864
13865 test_247c() {
13866         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13867                 { skip "Fileset feature is not supported"; return; }
13868
13869         local submount=${MOUNT}_$tdir
13870
13871         mkdir -p $MOUNT/$tdir/dir1
13872         mkdir -p $submount || error "mkdir $submount failed"
13873         FILESET="$FILESET/$tdir" mount_client $submount ||
13874                 error "mount $submount failed"
13875         local fid=$($LFS path2fid $MOUNT/)
13876         $LFS fid2path $submount $fid && error "fid2path should fail"
13877         umount_client $submount || error "umount $submount failed"
13878         rmdir $submount
13879 }
13880 run_test 247c "running fid2path outside root"
13881
13882 test_247d() {
13883         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13884                 { skip "Fileset feature is not supported"; return; }
13885
13886         local submount=${MOUNT}_$tdir
13887
13888         mkdir -p $MOUNT/$tdir/dir1
13889         mkdir -p $submount || error "mkdir $submount failed"
13890         FILESET="$FILESET/$tdir" mount_client $submount ||
13891                 error "mount $submount failed"
13892         local fid=$($LFS path2fid $submount/dir1)
13893         $LFS fid2path $submount $fid || error "fid2path should succeed"
13894         umount_client $submount || error "umount $submount failed"
13895         rmdir $submount
13896 }
13897 run_test 247d "running fid2path inside root"
13898
13899 # LU-8037
13900 test_247e() {
13901         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13902                 grep -q subtree ||
13903                 { skip "Fileset feature is not supported"; return; }
13904
13905         local submount=${MOUNT}_$tdir
13906
13907         mkdir $MOUNT/$tdir
13908         mkdir -p $submount || error "mkdir $submount failed"
13909         FILESET="$FILESET/.." mount_client $submount &&
13910                 error "mount $submount should fail"
13911         rmdir $submount
13912 }
13913 run_test 247e "mount .. as fileset"
13914
13915 test_248() {
13916         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
13917         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
13918
13919         # create a large file for fast read verification
13920         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
13921
13922         # make sure the file is created correctly
13923         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
13924                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
13925
13926         echo "Test 1: verify that fast read is 4 times faster on cache read"
13927
13928         # small read with fast read enabled
13929         $LCTL set_param -n llite.*.fast_read=1
13930         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13931                 awk '/copied/ { print $6 }')
13932
13933         # small read with fast read disabled
13934         $LCTL set_param -n llite.*.fast_read=0
13935         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
13936                 awk '/copied/ { print $6 }')
13937
13938         # verify that fast read is 4 times faster for cache read
13939         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
13940                 error_not_in_vm "fast read was not 4 times faster: " \
13941                            "$t_fast vs $t_slow"
13942
13943         echo "Test 2: verify the performance between big and small read"
13944         $LCTL set_param -n llite.*.fast_read=1
13945
13946         # 1k non-cache read
13947         cancel_lru_locks osc
13948         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13949                 awk '/copied/ { print $6 }')
13950
13951         # 1M non-cache read
13952         cancel_lru_locks osc
13953         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
13954                 awk '/copied/ { print $6 }')
13955
13956         # verify that big IO is not 4 times faster than small IO
13957         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
13958                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
13959
13960         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
13961         rm -f $DIR/$tfile
13962 }
13963 run_test 248 "fast read verification"
13964
13965 test_249() { # LU-7890
13966         rm -f $DIR/$tfile
13967         $SETSTRIPE -c 1 $DIR/$tfile
13968
13969         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
13970         skip "Need at least version 2.8.54"
13971
13972         # Offset 2T == 4k * 512M
13973         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
13974                 error "dd to 2T offset failed"
13975 }
13976 run_test 249 "Write above 2T file size"
13977
13978 test_250() {
13979         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13980          && skip "no 16TB file size limit on ZFS" && return
13981
13982         $SETSTRIPE -c 1 $DIR/$tfile
13983         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13984         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13985         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13986         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13987                 conv=notrunc,fsync && error "append succeeded"
13988         return 0
13989 }
13990 run_test 250 "Write above 16T limit"
13991
13992 test_251() {
13993         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13994
13995         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13996         #Skip once - writing the first stripe will succeed
13997         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13998         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13999                 error "short write happened"
14000
14001         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14002         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14003                 error "short read happened"
14004
14005         rm -f $DIR/$tfile
14006 }
14007 run_test 251 "Handling short read and write correctly"
14008
14009 test_252() {
14010         local tgt
14011         local dev
14012         local out
14013         local uuid
14014         local num
14015         local gen
14016
14017         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14018         remote_ost_nodsh && skip "remote OST with nodsh" && return
14019         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14020              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14021                 skip "can only run lr_reader on ldiskfs target"
14022                 return
14023         fi
14024
14025         # check lr_reader on OST0000
14026         tgt=ost1
14027         dev=$(facet_device $tgt)
14028         out=$(do_facet $tgt $LR_READER $dev)
14029         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14030         echo "$out"
14031         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14032         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14033                 error "Invalid uuid returned by $LR_READER on target $tgt"
14034         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14035
14036         # check lr_reader -c on MDT0000
14037         tgt=mds1
14038         dev=$(facet_device $tgt)
14039         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14040                 echo "$LR_READER does not support additional options"
14041                 return 0
14042         fi
14043         out=$(do_facet $tgt $LR_READER -c $dev)
14044         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14045         echo "$out"
14046         num=$(echo "$out" | grep -c "mdtlov")
14047         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14048                 error "Invalid number of mdtlov clients returned by $LR_READER"
14049         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14050
14051         # check lr_reader -cr on MDT0000
14052         out=$(do_facet $tgt $LR_READER -cr $dev)
14053         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14054         echo "$out"
14055         echo "$out" | grep -q "^reply_data:$" ||
14056                 error "$LR_READER should have returned 'reply_data' section"
14057         num=$(echo "$out" | grep -c "client_generation")
14058         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14059 }
14060 run_test 252 "check lr_reader tool"
14061
14062 test_253_fill_ost() {
14063         local size_mb #how many MB should we write to pass watermark
14064         local lwm=$3  #low watermark
14065         local free_10mb #10% of free space
14066
14067         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14068         size_mb=$((free_kb / 1024 - lwm))
14069         free_10mb=$((free_kb / 10240))
14070         #If 10% of free space cross low watermark use it
14071         if (( free_10mb > size_mb )); then
14072                 size_mb=$free_10mb
14073         else
14074                 #At least we need to store 1.1 of difference between
14075                 #free space and low watermark
14076                 size_mb=$((size_mb + size_mb / 10))
14077         fi
14078         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14079                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14080                          oflag=append conv=notrunc
14081         fi
14082
14083         sleep_maxage
14084
14085         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14086         echo "OST still has $((free_kb / 1024)) mbytes free"
14087 }
14088
14089 test_253() {
14090         local ostidx=0
14091         local rc=0
14092
14093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14094         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14095         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14096
14097         local ost_name=$($LFS osts | grep ${ostidx}": " | \
14098                 awk '{print $2}' | sed -e 's/_UUID$//')
14099         # on the mdt's osc
14100         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14101         do_facet $SINGLEMDS $LCTL get_param -n \
14102                 osp.$mdtosc_proc1.reserved_mb_high ||
14103                 { skip  "remote MDS does not support reserved_mb_high" &&
14104                   return; }
14105
14106         rm -rf $DIR/$tdir
14107         wait_mds_ost_sync
14108         wait_delete_completed
14109         mkdir $DIR/$tdir
14110
14111         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14112                         osp.$mdtosc_proc1.reserved_mb_high)
14113         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14114                         osp.$mdtosc_proc1.reserved_mb_low)
14115         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14116
14117         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME ||
14118                 error "Pool creation failed"
14119         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14120                 error "Adding $ost_name to pool failed"
14121
14122         # Wait for client to see a OST at pool
14123         wait_update $HOSTNAME "$LCTL get_param -n
14124                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14125                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14126                 error "Client can not see the pool"
14127         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14128                 error "Setstripe failed"
14129
14130         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14131         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14132         echo "OST still has $((blocks/1024)) mbytes free"
14133
14134         local new_lwm=$((blocks/1024-10))
14135         do_facet $SINGLEMDS $LCTL set_param \
14136                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14137         do_facet $SINGLEMDS $LCTL set_param \
14138                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14139
14140         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14141
14142         #First enospc could execute orphan deletion so repeat.
14143         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14144
14145         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14146                         osp.$mdtosc_proc1.prealloc_status)
14147         echo "prealloc_status $oa_status"
14148
14149         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14150                 error "File creation should fail"
14151         #object allocation was stopped, but we still able to append files
14152         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14153                 error "Append failed"
14154         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14155
14156         wait_delete_completed
14157
14158         sleep_maxage
14159
14160         for i in $(seq 10 12); do
14161                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14162                         error "File creation failed after rm";
14163         done
14164
14165         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14166                         osp.$mdtosc_proc1.prealloc_status)
14167         echo "prealloc_status $oa_status"
14168
14169         if (( oa_status != 0 )); then
14170                 error "Object allocation still disable after rm"
14171         fi
14172         do_facet $SINGLEMDS $LCTL set_param \
14173                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14174         do_facet $SINGLEMDS $LCTL set_param \
14175                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14176
14177
14178         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14179                 error "Remove $ost_name from pool failed"
14180         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14181                 error "Pool destroy fialed"
14182 }
14183 run_test 253 "Check object allocation limit"
14184
14185 test_254() {
14186         local cl_user
14187
14188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14189         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14190         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14191                 { skip "MDS does not support changelog_size" && return; }
14192
14193         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14194         echo "Registered as changelog user $cl_user"
14195
14196         $LFS changelog_clear $MDT0 $cl_user 0
14197
14198         local size1=$(do_facet mds1 \
14199                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14200         echo "Changelog size $size1"
14201
14202         rm -rf $DIR/$tdir
14203         $LFS mkdir -i 0 $DIR/$tdir
14204         # change something
14205         mkdir -p $DIR/$tdir/pics/2008/zachy
14206         touch $DIR/$tdir/pics/2008/zachy/timestamp
14207         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14208         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14209         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14210         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14211         rm $DIR/$tdir/pics/desktop.jpg
14212
14213         local size2=$(do_facet mds1 \
14214                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14215         echo "Changelog size after work $size2"
14216
14217         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14218
14219         if (( size2 <= size1 )); then
14220                 error "Changelog size after work should be greater than original"
14221         fi
14222         return 0
14223 }
14224 run_test 254 "Check changelog size"
14225
14226 ladvise_no_type()
14227 {
14228         local type=$1
14229         local file=$2
14230
14231         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14232                 awk -F: '{print $2}' | grep $type > /dev/null
14233         if [ $? -ne 0 ]; then
14234                 return 0
14235         fi
14236         return 1
14237 }
14238
14239 ladvise_no_ioctl()
14240 {
14241         local file=$1
14242
14243         lfs ladvise -a willread $file > /dev/null 2>&1
14244         if [ $? -eq 0 ]; then
14245                 return 1
14246         fi
14247
14248         lfs ladvise -a willread $file 2>&1 |
14249                 grep "Inappropriate ioctl for device" > /dev/null
14250         if [ $? -eq 0 ]; then
14251                 return 0
14252         fi
14253         return 1
14254 }
14255
14256 ladvise_willread_performance()
14257 {
14258         local repeat=10
14259         local average_cache=0
14260         local average_ladvise=0
14261
14262         for ((i = 1; i <= $repeat; i++)); do
14263                 echo "Iter $i/$repeat: reading without willread hint"
14264                 cancel_lru_locks osc
14265                 do_nodes $(comma_list $(osts_nodes)) \
14266                         "echo 3 > /proc/sys/vm/drop_caches"
14267                 local speed_origin=$($READS -f $DIR/$tfile -s $size \
14268                         -b 4096 -n $((size / 4096)) -t 60 |
14269                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14270
14271                 echo "Iter $i/$repeat: Reading again without willread hint"
14272                 cancel_lru_locks osc
14273                 local speed_cache=$($READS -f $DIR/$tfile -s $size \
14274                         -b 4096 -n $((size / 4096)) -t 60 |
14275                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14276
14277                 echo "Iter $i/$repeat: reading with willread hint"
14278                 cancel_lru_locks osc
14279                 do_nodes $(comma_list $(osts_nodes)) \
14280                         "echo 3 > /proc/sys/vm/drop_caches"
14281                 lfs ladvise -a willread $DIR/$tfile ||
14282                         error "Ladvise failed"
14283                 local speed_ladvise=$($READS -f $DIR/$tfile -s $size \
14284                         -b 4096 -n $((size / 4096)) -t 60 |
14285                         sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##')
14286
14287                 local cache_speedup=$(echo "scale=2; \
14288                         ($speed_cache-$speed_origin)/$speed_origin*100" | bc)
14289                 cache_speedup=$(echo ${cache_speedup%.*})
14290                 echo "Iter $i/$repeat: cache speedup: $cache_speedup%"
14291                 average_cache=$((average_cache + cache_speedup))
14292
14293                 local ladvise_speedup=$(echo "scale=2; \
14294                         ($speed_ladvise-$speed_origin)/$speed_origin*100" | bc)
14295                 ladvise_speedup=$(echo ${ladvise_speedup%.*})
14296                 echo "Iter $i/$repeat: ladvise speedup: $ladvise_speedup%"
14297                 average_ladvise=$((average_ladvise + ladvise_speedup))
14298         done
14299         average_cache=$((average_cache / repeat))
14300         average_ladvise=$((average_ladvise / repeat))
14301
14302         if [ $average_cache -lt 20 ]; then
14303                 echo "Speedup with cache is less than 20% ($average_cache%),"\
14304                         "skipping check of speedup with willread:"\
14305                         "$average_ladvise%"
14306                 return 0
14307         fi
14308
14309         local lowest_speedup=$((average_cache / 2))
14310         [ $average_ladvise -gt $lowest_speedup ] ||
14311                 error_not_in_vm "Speedup with willread is less than " \
14312                            "$lowest_speedup%, got $average_ladvise%"
14313         echo "Speedup with willread ladvise: $average_ladvise%"
14314         echo "Speedup with cache: $average_cache%"
14315 }
14316
14317 test_255a() {
14318         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14319
14320         ladvise_no_type willread $DIR/$tfile &&
14321                 skip "willread ladvise is not supported" && return
14322
14323         ladvise_no_ioctl $DIR/$tfile &&
14324                 skip "ladvise ioctl is not supported" && return
14325
14326         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14327                 skip "lustre < 2.8.54 does not support ladvise " && return
14328
14329         local size_mb=100
14330         local size=$((size_mb * 1048576))
14331         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14332                 error "dd to $DIR/$tfile failed"
14333
14334         lfs ladvise -a willread $DIR/$tfile ||
14335                 error "Ladvise failed with no range argument"
14336
14337         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14338                 error "Ladvise failed with no -l or -e argument"
14339
14340         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14341                 error "Ladvise failed with only -e argument"
14342
14343         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14344                 error "Ladvise failed with only -l argument"
14345
14346         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14347                 error "End offset should not be smaller than start offset"
14348
14349         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14350                 error "End offset should not be equal to start offset"
14351
14352         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14353                 error "Ladvise failed with overflowing -s argument"
14354
14355         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14356                 error "Ladvise failed with overflowing -e argument"
14357
14358         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14359                 error "Ladvise failed with overflowing -l argument"
14360
14361         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14362                 error "Ladvise succeeded with conflicting -l and -e arguments"
14363
14364         echo "Synchronous ladvise should wait"
14365         local delay=4
14366 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14367         do_nodes $(comma_list $(osts_nodes)) \
14368                 $LCTL set_param fail_val=$delay fail_loc=0x237
14369
14370         local start_ts=$SECONDS
14371         lfs ladvise -a willread $DIR/$tfile ||
14372                 error "Ladvise failed with no range argument"
14373         local end_ts=$SECONDS
14374         local inteval_ts=$((end_ts - start_ts))
14375
14376         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14377                 error "Synchronous advice didn't wait reply"
14378         fi
14379
14380         echo "Asynchronous ladvise shouldn't wait"
14381         local start_ts=$SECONDS
14382         lfs ladvise -a willread -b $DIR/$tfile ||
14383                 error "Ladvise failed with no range argument"
14384         local end_ts=$SECONDS
14385         local inteval_ts=$((end_ts - start_ts))
14386
14387         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14388                 error "Asynchronous advice blocked"
14389         fi
14390
14391         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14392         ladvise_willread_performance
14393 }
14394 run_test 255a "check 'lfs ladvise -a willread'"
14395
14396 facet_meminfo() {
14397         local facet=$1
14398         local info=$2
14399
14400         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14401 }
14402
14403 test_255b() {
14404         lfs setstripe -c -1 -i 0 $DIR/$tfile
14405
14406         ladvise_no_type dontneed $DIR/$tfile &&
14407                 skip "dontneed ladvise is not supported" && return
14408
14409         ladvise_no_ioctl $DIR/$tfile &&
14410                 skip "ladvise ioctl is not supported" && return
14411
14412         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14413                 skip "lustre < 2.8.54 does not support ladvise" && return
14414
14415         [ "$(facet_fstype ost1)" = "zfs" ] &&
14416                 skip "zfs-osd does not support dontneed advice" && return
14417
14418         local size_mb=100
14419         local size=$((size_mb * 1048576))
14420         # In order to prevent disturbance of other processes, only check 3/4
14421         # of the memory usage
14422         local kibibytes=$((size_mb * 1024 * 3 / 4))
14423
14424         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14425                 error "dd to $DIR/$tfile failed"
14426
14427         local total=$(facet_meminfo ost1 MemTotal)
14428         echo "Total memory: $total KiB"
14429
14430         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14431         local before_read=$(facet_meminfo ost1 Cached)
14432         echo "Cache used before read: $before_read KiB"
14433
14434         lfs ladvise -a willread $DIR/$tfile ||
14435                 error "Ladvise willread failed"
14436         local after_read=$(facet_meminfo ost1 Cached)
14437         echo "Cache used after read: $after_read KiB"
14438
14439         lfs ladvise -a dontneed $DIR/$tfile ||
14440                 error "Ladvise dontneed again failed"
14441         local no_read=$(facet_meminfo ost1 Cached)
14442         echo "Cache used after dontneed ladvise: $no_read KiB"
14443
14444         if [ $total -lt $((before_read + kibibytes)) ]; then
14445                 echo "Memory is too small, abort checking"
14446                 return 0
14447         fi
14448
14449         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14450                 error "Ladvise willread should use more memory" \
14451                         "than $kibibytes KiB"
14452         fi
14453
14454         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14455                 error "Ladvise dontneed should release more memory" \
14456                         "than $kibibytes KiB"
14457         fi
14458 }
14459 run_test 255b "check 'lfs ladvise -a dontneed'"
14460
14461 test_256() {
14462         local cl_user
14463         local cat_sl
14464         local mdt_dev
14465
14466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14467         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14468         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14469                 skip "non-ldiskfs backend" && return
14470
14471         mdt_dev=$(mdsdevname 1)
14472         echo $mdt_dev
14473         cl_user=$(do_facet mds1 \
14474         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14475         if [[ -n $cl_user ]]; then
14476                 skip "active changelog user"
14477                 return
14478         fi
14479
14480         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14481         echo "Registered as changelog user $cl_user"
14482
14483         rm -rf $DIR/$tdir
14484         mkdir -p $DIR/$tdir
14485
14486         $LFS changelog_clear $MDT0 $cl_user 0
14487
14488         # change something
14489         touch $DIR/$tdir/{1..10}
14490
14491         # stop the MDT
14492         stop mds1 || error "Fail to stop MDT."
14493
14494         # remount the MDT
14495         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14496
14497         #after mount new plainllog is used
14498         touch $DIR/$tdir/{11..19}
14499         cat_sl=$(do_facet mds1 \
14500         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14501          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14502
14503         if (( cat_sl != 2 )); then
14504                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14505                 error "Changelog catalog has wrong number of slots $cat_sl"
14506         fi
14507
14508         $LFS changelog_clear $MDT0 $cl_user 0
14509
14510         cat_sl=$(do_facet mds1 \
14511         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14512          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14513
14514         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14515
14516         if (( cat_sl == 2 )); then
14517                 error "Empty plain llog was not deleted from changelog catalog"
14518         fi
14519         if (( cat_sl != 1 )); then
14520                 error "Active plain llog shouldn\`t be deleted from catalog"
14521         fi
14522 }
14523 run_test 256 "Check llog delete for empty and not full state"
14524
14525 test_257() {
14526         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14527         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14528                 skip "Need MDS version at least 2.8.55" && return
14529
14530         test_mkdir -p $DIR/$tdir
14531
14532         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14533                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14534         stat $DIR/$tdir
14535
14536 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14537         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14538         local facet=mds$((mdtidx + 1))
14539         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14540         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14541
14542         stop $facet || error "stop MDS failed"
14543         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14544                 error "start MDS fail"
14545 }
14546 run_test 257 "xattr locks are not lost"
14547
14548 test_260() {
14549 #define OBD_FAIL_MDC_CLOSE               0x806
14550         $LCTL set_param fail_loc=0x80000806
14551         touch $DIR/$tfile
14552
14553 }
14554 run_test 260 "Check mdc_close fail"
14555
14556 cleanup_test_300() {
14557         trap 0
14558         umask $SAVE_UMASK
14559 }
14560 test_striped_dir() {
14561         local mdt_index=$1
14562         local stripe_count
14563         local stripe_index
14564
14565         mkdir -p $DIR/$tdir
14566
14567         SAVE_UMASK=$(umask)
14568         trap cleanup_test_300 RETURN EXIT
14569
14570         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14571                                                 $DIR/$tdir/striped_dir ||
14572                 error "set striped dir error"
14573
14574         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14575         [ "$mode" = "755" ] || error "expect 755 got $mode"
14576
14577         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
14578                 error "getdirstripe failed"
14579         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
14580         if [ "$stripe_count" != "2" ]; then
14581                 error "stripe_count is $stripe_count, expect 2"
14582         fi
14583
14584         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
14585         if [ "$stripe_index" != "$mdt_index" ]; then
14586                 error "stripe_index is $stripe_index, expect $mdt_index"
14587         fi
14588
14589         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14590                 error "nlink error after create striped dir"
14591
14592         mkdir $DIR/$tdir/striped_dir/a
14593         mkdir $DIR/$tdir/striped_dir/b
14594
14595         stat $DIR/$tdir/striped_dir/a ||
14596                 error "create dir under striped dir failed"
14597         stat $DIR/$tdir/striped_dir/b ||
14598                 error "create dir under striped dir failed"
14599
14600         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
14601                 error "nlink error after mkdir"
14602
14603         rmdir $DIR/$tdir/striped_dir/a
14604         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
14605                 error "nlink error after rmdir"
14606
14607         rmdir $DIR/$tdir/striped_dir/b
14608         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
14609                 error "nlink error after rmdir"
14610
14611         chattr +i $DIR/$tdir/striped_dir
14612         createmany -o $DIR/$tdir/striped_dir/f 10 &&
14613                 error "immutable flags not working under striped dir!"
14614         chattr -i $DIR/$tdir/striped_dir
14615
14616         rmdir $DIR/$tdir/striped_dir ||
14617                 error "rmdir striped dir error"
14618
14619         cleanup_test_300
14620
14621         true
14622 }
14623
14624 test_300a() {
14625         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14626                 skip "skipped for lustre < 2.7.0" && return
14627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14628         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14629
14630         test_striped_dir 0 || error "failed on striped dir on MDT0"
14631         test_striped_dir 1 || error "failed on striped dir on MDT0"
14632 }
14633 run_test 300a "basic striped dir sanity test"
14634
14635 test_300b() {
14636         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14637                 skip "skipped for lustre < 2.7.0" && return
14638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14639         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14640         local i
14641         local mtime1
14642         local mtime2
14643         local mtime3
14644
14645         test_mkdir $DIR/$tdir || error "mkdir fail"
14646         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14647                 error "set striped dir error"
14648         for ((i=0; i<10; i++)); do
14649                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
14650                 sleep 1
14651                 touch $DIR/$tdir/striped_dir/file_$i ||
14652                                         error "touch error $i"
14653                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
14654                 [ $mtime1 -eq $mtime2 ] &&
14655                         error "mtime not change after create"
14656                 sleep 1
14657                 rm -f $DIR/$tdir/striped_dir/file_$i ||
14658                                         error "unlink error $i"
14659                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
14660                 [ $mtime2 -eq $mtime3 ] &&
14661                         error "mtime did not change after unlink"
14662         done
14663         true
14664 }
14665 run_test 300b "check ctime/mtime for striped dir"
14666
14667 test_300c() {
14668         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14669                 skip "skipped for lustre < 2.7.0" && return
14670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14671         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14672         local file_count
14673
14674         mkdir -p $DIR/$tdir
14675         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
14676                 error "set striped dir error"
14677
14678         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
14679                 error "chown striped dir failed"
14680
14681         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
14682                 error "create 5k files failed"
14683
14684         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
14685
14686         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
14687
14688         rm -rf $DIR/$tdir
14689 }
14690 run_test 300c "chown && check ls under striped directory"
14691
14692 test_300d() {
14693         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14694                 skip "skipped for lustre < 2.7.0" && return
14695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14696         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14697         local stripe_count
14698         local file
14699
14700         mkdir -p $DIR/$tdir
14701         $SETSTRIPE -c 2 $DIR/$tdir
14702
14703         #local striped directory
14704         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14705                 error "set striped dir error"
14706         createmany -o $DIR/$tdir/striped_dir/f 10 ||
14707                 error "create 10 files failed"
14708
14709         #remote striped directory
14710         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
14711                 error "set striped dir error"
14712         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
14713                 error "create 10 files failed"
14714
14715         for file in $(find $DIR/$tdir); do
14716                 stripe_count=$($GETSTRIPE -c $file)
14717                 [ $stripe_count -eq 2 ] ||
14718                         error "wrong stripe $stripe_count for $file"
14719         done
14720
14721         rm -rf $DIR/$tdir
14722 }
14723 run_test 300d "check default stripe under striped directory"
14724
14725 test_300e() {
14726         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14727                 skip "Need MDS version at least 2.7.55" && return
14728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14729         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14730         local stripe_count
14731         local file
14732
14733         mkdir -p $DIR/$tdir
14734
14735         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14736                 error "set striped dir error"
14737
14738         touch $DIR/$tdir/striped_dir/a
14739         touch $DIR/$tdir/striped_dir/b
14740         touch $DIR/$tdir/striped_dir/c
14741
14742         mkdir $DIR/$tdir/striped_dir/dir_a
14743         mkdir $DIR/$tdir/striped_dir/dir_b
14744         mkdir $DIR/$tdir/striped_dir/dir_c
14745
14746         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
14747                 error "set striped dir under striped dir error"
14748
14749         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
14750                 error "set striped dir under striped dir error"
14751
14752         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
14753                 error "set striped dir under striped dir error"
14754
14755         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
14756                 error "rename dir under striped dir fails"
14757
14758         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
14759                 error "rename dir under different stripes fails"
14760
14761         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
14762                 error "rename file under striped dir should succeed"
14763
14764         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
14765                 error "rename dir under striped dir should succeed"
14766
14767         rm -rf $DIR/$tdir
14768 }
14769 run_test 300e "check rename under striped directory"
14770
14771 test_300f() {
14772         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14773                 skip "Need MDS version at least 2.7.55" && return
14774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14775         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14776         local stripe_count
14777         local file
14778
14779         rm -rf $DIR/$tdir
14780         mkdir -p $DIR/$tdir
14781
14782         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14783                 error "set striped dir error"
14784
14785         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
14786                 error "set striped dir error"
14787
14788         touch $DIR/$tdir/striped_dir/a
14789         mkdir $DIR/$tdir/striped_dir/dir_a
14790         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
14791                 error "create striped dir under striped dir fails"
14792
14793         touch $DIR/$tdir/striped_dir1/b
14794         mkdir $DIR/$tdir/striped_dir1/dir_b
14795         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
14796                 error "create striped dir under striped dir fails"
14797
14798         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
14799                 error "rename dir under different striped dir should fail"
14800
14801         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
14802                 error "rename striped dir under diff striped dir should fail"
14803
14804         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
14805                 error "rename file under diff striped dirs fails"
14806
14807         rm -rf $DIR/$tdir
14808 }
14809 run_test 300f "check rename cross striped directory"
14810
14811 test_300_check_default_striped_dir()
14812 {
14813         local dirname=$1
14814         local default_count=$2
14815         local default_index=$3
14816         local stripe_count
14817         local stripe_index
14818         local dir_stripe_index
14819         local dir
14820
14821         echo "checking $dirname $default_count $default_index"
14822         $LFS setdirstripe -D -c $default_count -i $default_index \
14823                                 -t all_char $DIR/$tdir/$dirname ||
14824                 error "set default stripe on striped dir error"
14825         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
14826         [ $stripe_count -eq $default_count ] ||
14827                 error "expect $default_count get $stripe_count for $dirname"
14828
14829         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
14830         [ $stripe_index -eq $default_index ] ||
14831                 error "expect $default_index get $stripe_index for $dirname"
14832
14833         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
14834                                                 error "create dirs failed"
14835
14836         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
14837         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
14838         for dir in $(find $DIR/$tdir/$dirname/*); do
14839                 stripe_count=$($LFS getdirstripe -c $dir)
14840                 [ $stripe_count -eq $default_count ] ||
14841                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
14842                 error "stripe count $default_count != $stripe_count for $dir"
14843
14844                 stripe_index=$($LFS getdirstripe -i $dir)
14845                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
14846                         error "$stripe_index != $default_index for $dir"
14847
14848                 #check default stripe
14849                 stripe_count=$($LFS getdirstripe -D -c $dir)
14850                 [ $stripe_count -eq $default_count ] ||
14851                 error "default count $default_count != $stripe_count for $dir"
14852
14853                 stripe_index=$($LFS getdirstripe -D -i $dir)
14854                 [ $stripe_index -eq $default_index ] ||
14855                 error "default index $default_index != $stripe_index for $dir"
14856         done
14857         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
14858 }
14859
14860 test_300g() {
14861         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14862                 skip "Need MDS version at least 2.7.55" && return
14863         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14864         local dir
14865         local stripe_count
14866         local stripe_index
14867
14868         mkdir $DIR/$tdir
14869         mkdir $DIR/$tdir/normal_dir
14870
14871         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
14872         test_300_check_default_striped_dir normal_dir 1 0
14873         test_300_check_default_striped_dir normal_dir 2 1
14874         test_300_check_default_striped_dir normal_dir 2 -1
14875
14876         #delete default stripe information
14877         echo "delete default stripeEA"
14878         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
14879                 error "set default stripe on striped dir error"
14880
14881         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
14882         for dir in $(find $DIR/$tdir/normal_dir/*); do
14883                 stripe_count=$($LFS getdirstripe -c $dir)
14884                 [ $stripe_count -eq 0 ] ||
14885                         error "expect 1 get $stripe_count for $dir"
14886                 stripe_index=$($LFS getdirstripe -i $dir)
14887                 [ $stripe_index -eq 0 ] ||
14888                         error "expect 0 get $stripe_index for $dir"
14889         done
14890 }
14891 run_test 300g "check default striped directory for normal directory"
14892
14893 test_300h() {
14894         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14895                 skip "Need MDS version at least 2.7.55" && return
14896         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14897         local dir
14898         local stripe_count
14899
14900         mkdir $DIR/$tdir
14901         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
14902                                         $DIR/$tdir/striped_dir ||
14903                 error "set striped dir error"
14904
14905         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
14906         test_300_check_default_striped_dir striped_dir 1 0
14907         test_300_check_default_striped_dir striped_dir 2 1
14908         test_300_check_default_striped_dir striped_dir 2 -1
14909
14910         #delete default stripe information
14911         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
14912                 error "set default stripe on striped dir error"
14913
14914         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
14915         for dir in $(find $DIR/$tdir/striped_dir/*); do
14916                 stripe_count=$($LFS getdirstripe -c $dir)
14917                 [ $stripe_count -eq 0 ] ||
14918                         error "expect 1 get $stripe_count for $dir"
14919         done
14920 }
14921 run_test 300h "check default striped directory for striped directory"
14922
14923 test_300i() {
14924         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14925                 skip "Need MDS version at least 2.7.55" && return
14926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14927         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14928         local stripe_count
14929         local file
14930
14931         mkdir $DIR/$tdir
14932
14933         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14934                 error "set striped dir error"
14935
14936         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14937                 error "create files under striped dir failed"
14938
14939         # unfortunately, we need to umount to clear dir layout cache for now
14940         # once we fully implement dir layout, we can drop this
14941         umount_client $MOUNT || error "umount failed"
14942         mount_client $MOUNT || error "mount failed"
14943
14944         #set the stripe to be unknown hash type
14945         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14946         $LCTL set_param fail_loc=0x1901
14947         for ((i = 0; i < 10; i++)); do
14948                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14949                         error "stat f-$i failed"
14950                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14951         done
14952
14953         touch $DIR/$tdir/striped_dir/f0 &&
14954                 error "create under striped dir with unknown hash should fail"
14955
14956         $LCTL set_param fail_loc=0
14957
14958         umount_client $MOUNT || error "umount failed"
14959         mount_client $MOUNT || error "mount failed"
14960
14961         return 0
14962 }
14963 run_test 300i "client handle unknown hash type striped directory"
14964
14965 test_300j() {
14966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14967         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14968                 skip "Need MDS version at least 2.7.55" && return
14969         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14970         local stripe_count
14971         local file
14972
14973         mkdir $DIR/$tdir
14974
14975         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14976         $LCTL set_param fail_loc=0x1702
14977         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14978                 error "set striped dir error"
14979
14980         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14981                 error "create files under striped dir failed"
14982
14983         $LCTL set_param fail_loc=0
14984
14985         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14986
14987         return 0
14988 }
14989 run_test 300j "test large update record"
14990
14991 test_300k() {
14992         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14993                 skip "Need MDS version at least 2.7.55" && return
14994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14995         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14996         local stripe_count
14997         local file
14998
14999         mkdir $DIR/$tdir
15000
15001         #define OBD_FAIL_LARGE_STRIPE   0x1703
15002         $LCTL set_param fail_loc=0x1703
15003         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15004                 error "set striped dir error"
15005         $LCTL set_param fail_loc=0
15006
15007         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15008                 error "getstripeddir fails"
15009         rm -rf $DIR/$tdir/striped_dir ||
15010                 error "unlink striped dir fails"
15011
15012         return 0
15013 }
15014 run_test 300k "test large striped directory"
15015
15016 test_300l() {
15017         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15018                 skip "Need MDS version at least 2.7.55" && return
15019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15020         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15021         local stripe_index
15022
15023         test_mkdir -p $DIR/$tdir/striped_dir
15024         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15025                         error "chown $RUNAS_ID failed"
15026         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15027                 error "set default striped dir failed"
15028
15029         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15030         $LCTL set_param fail_loc=0x80000158
15031         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15032
15033         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15034         [ $stripe_index -eq 1 ] ||
15035                 error "expect 1 get $stripe_index for $dir"
15036 }
15037 run_test 300l "non-root user to create dir under striped dir with stale layout"
15038
15039 test_300m() {
15040         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15041                 skip "Need MDS version at least 2.7.55" && return
15042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15043         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15044
15045         mkdir -p $DIR/$tdir/striped_dir
15046         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15047                 error "set default stripes dir error"
15048
15049         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15050
15051         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15052         [ $stripe_count -eq 0 ] ||
15053                         error "expect 0 get $stripe_count for a"
15054
15055         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15056                 error "set default stripes dir error"
15057
15058         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15059
15060         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15061         [ $stripe_count -eq 0 ] ||
15062                         error "expect 0 get $stripe_count for b"
15063
15064         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15065                 error "set default stripes dir error"
15066
15067         mkdir $DIR/$tdir/striped_dir/c &&
15068                 error "default stripe_index is invalid, mkdir c should fails"
15069
15070         rm -rf $DIR/$tdir || error "rmdir fails"
15071 }
15072 run_test 300m "setstriped directory on single MDT FS"
15073
15074 cleanup_300n() {
15075         local list=$(comma_list $(mdts_nodes))
15076
15077         trap 0
15078         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15079 }
15080
15081 test_300n() {
15082         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15083                 skip "Need MDS version at least 2.7.55" && return
15084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15085         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15086         local stripe_index
15087         local list=$(comma_list $(mdts_nodes))
15088
15089         trap cleanup_300n RETURN EXIT
15090         mkdir -p $DIR/$tdir
15091         chmod 777 $DIR/$tdir
15092         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15093                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15094                 error "create striped dir succeeds with gid=0"
15095
15096         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15097         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15098                 error "create striped dir fails with gid=-1"
15099
15100         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15101         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15102                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15103                 error "set default striped dir succeeds with gid=0"
15104
15105
15106         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15107         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15108                 error "set default striped dir fails with gid=-1"
15109
15110
15111         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15112         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15113                                         error "create test_dir fails"
15114         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15115                                         error "create test_dir1 fails"
15116         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15117                                         error "create test_dir2 fails"
15118         cleanup_300n
15119 }
15120 run_test 300n "non-root user to create dir under striped dir with default EA"
15121
15122 test_300o() {
15123         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15124                 skip "Need MDS version at least 2.7.55" && return
15125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15126         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15127         local numfree1
15128         local numfree2
15129
15130         mkdir -p $DIR/$tdir
15131
15132         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15133         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15134         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15135                 skip "not enough free inodes $numfree1 $numfree2"
15136                 return
15137         fi
15138
15139         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15140         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15141         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15142                 skip "not enough free space $numfree1 $numfree2"
15143                 return
15144         fi
15145
15146         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15147                 error "setdirstripe fails"
15148
15149         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15150                 error "create dirs fails"
15151
15152         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15153         ls $DIR/$tdir/striped_dir > /dev/null ||
15154                 error "ls striped dir fails"
15155         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15156                 error "unlink big striped dir fails"
15157 }
15158 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15159
15160 test_300p() {
15161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15162         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15163         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15164
15165         mkdir -p $DIR/$tdir
15166
15167         #define OBD_FAIL_OUT_ENOSPC     0x1704
15168         do_facet mds2 lctl set_param fail_loc=0x80001704
15169         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15170                         error "create striped directory should fail"
15171
15172         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15173
15174         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15175         true
15176 }
15177 run_test 300p "create striped directory without space"
15178
15179 test_300q() {
15180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15181         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15182
15183         local fd=$(free_fd)
15184         local cmd="exec $fd<$tdir"
15185         cd $DIR
15186         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15187         eval $cmd
15188         cmd="exec $fd<&-"
15189         trap "eval $cmd" EXIT
15190         cd $tdir || error "cd $tdir fails"
15191         rmdir  ../$tdir || error "rmdir $tdir fails"
15192         mkdir local_dir && error "create dir succeeds"
15193         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15194         eval $cmd
15195         return 0
15196 }
15197 run_test 300q "create remote directory under orphan directory"
15198
15199 prepare_remote_file() {
15200         mkdir $DIR/$tdir/src_dir ||
15201                 error "create remote source failed"
15202
15203         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15204         touch $DIR/$tdir/src_dir/a
15205
15206         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15207                 error "create remote target dir failed"
15208
15209         touch $DIR/$tdir/tgt_dir/b
15210
15211         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15212                 error "rename dir cross MDT failed!"
15213
15214         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15215                 error "src_child still exists after rename"
15216
15217         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15218                 error "missing file(a) after rename"
15219
15220         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15221                 error "diff after rename"
15222 }
15223
15224 test_310a() {
15225         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15227         local remote_file=$DIR/$tdir/tgt_dir/b
15228
15229         mkdir -p $DIR/$tdir
15230
15231         prepare_remote_file || error "prepare remote file failed"
15232
15233         #open-unlink file
15234         $OPENUNLINK $remote_file $remote_file || error
15235         $CHECKSTAT -a $remote_file || error
15236 }
15237 run_test 310a "open unlink remote file"
15238
15239 test_310b() {
15240         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15242         local remote_file=$DIR/$tdir/tgt_dir/b
15243
15244         mkdir -p $DIR/$tdir
15245
15246         prepare_remote_file || error "prepare remote file failed"
15247
15248         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15249         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15250         $CHECKSTAT -t file $remote_file || error "check file failed"
15251 }
15252 run_test 310b "unlink remote file with multiple links while open"
15253
15254 test_310c() {
15255         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15257         local remote_file=$DIR/$tdir/tgt_dir/b
15258
15259         mkdir -p $DIR/$tdir
15260
15261         prepare_remote_file || error "prepare remote file failed"
15262
15263         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15264         multiop_bg_pause $remote_file O_uc ||
15265                         error "mulitop failed for remote file"
15266         MULTIPID=$!
15267         $MULTIOP $DIR/$tfile Ouc
15268         kill -USR1 $MULTIPID
15269         wait $MULTIPID
15270 }
15271 run_test 310c "open-unlink remote file with multiple links"
15272
15273 #LU-4825
15274 test_311() {
15275         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15276                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15278
15279         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15280
15281         mkdir -p $DIR/$tdir
15282         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15283         createmany -o $DIR/$tdir/$tfile. 1000
15284
15285         # statfs data is not real time, let's just calculate it
15286         old_iused=$((old_iused + 1000))
15287
15288         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15289                         osp.*OST0000*MDT0000.create_count")
15290         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15291                                 osp.*OST0000*MDT0000.max_create_count")
15292         for idx in $(seq $MDSCOUNT); do
15293                 do_facet mds$idx "lctl set_param -n \
15294                         osp.*OST0000*MDT000?.max_create_count=0"
15295         done
15296
15297         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15298         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15299         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15300
15301         unlinkmany $DIR/$tdir/$tfile. 1000
15302
15303         for idx in $(seq $MDSCOUNT); do
15304                 do_facet mds$idx "lctl set_param -n \
15305                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15306                 do_facet mds$idx "lctl set_param -n \
15307                         osp.*OST0000*MDT000?.create_count=$count"
15308         done
15309
15310         local new_iused
15311         for i in $(seq 120); do
15312                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15313                 [ $((old_iused - new_iused)) -gt 800 ] && break
15314                 sleep 1
15315         done
15316
15317         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15318         [ $((old_iused - new_iused)) -gt 800 ] ||
15319                 error "objs not destroyed after unlink"
15320 }
15321 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15322
15323 zfs_oid_to_objid()
15324 {
15325         local ost=$1
15326         local objid=$2
15327
15328         local vdevdir=$(dirname $(facet_vdevice $ost))
15329         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15330         local zfs_zapid=$(do_facet $ost $cmd |
15331                           grep -w "/O/0/d$((objid%32))" -C 5 |
15332                           awk '/Object/{getline; print $1}')
15333         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15334                           awk "/$objid = /"'{printf $3}')
15335
15336         echo $zfs_objid
15337 }
15338
15339 zfs_object_blksz() {
15340         local ost=$1
15341         local objid=$2
15342
15343         local vdevdir=$(dirname $(facet_vdevice $ost))
15344         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15345         local blksz=$(do_facet $ost $cmd $objid |
15346                       awk '/dblk/{getline; printf $4}')
15347
15348         case "${blksz: -1}" in
15349                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15350                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15351                 *) ;;
15352         esac
15353
15354         echo $blksz
15355 }
15356
15357 test_312() { # LU-4856
15358         [ $(facet_fstype ost1) = "zfs" ] ||
15359                 { skip "the test only applies to zfs" && return; }
15360
15361         local max_blksz=$(do_facet ost1 \
15362                           $ZFS get -p recordsize $(facet_device ost1) |
15363                           awk '!/VALUE/{print $3}')
15364
15365         # to make life a little bit easier
15366         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15367         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15368
15369         local tf=$DIR/$tdir/$tfile
15370         touch $tf
15371         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15372
15373         # Get ZFS object id
15374         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15375
15376         # block size change by sequential over write
15377         local blksz
15378         for ((bs=4096; bs <= max_blksz; bs <<= 2)); do
15379                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15380
15381                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15382                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15383         done
15384         rm -f $tf
15385
15386         # block size change by sequential append write
15387         dd if=/dev/zero of=$tf bs=4K count=1 oflag=sync conv=notrunc
15388         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15389         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15390
15391         for ((count = 1; count < $((max_blksz / 4096)); count *= 2)); do
15392                 dd if=/dev/zero of=$tf bs=4K count=$count seek=$count \
15393                         oflag=sync conv=notrunc
15394
15395                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15396                 blksz=$((blksz / 8192)) # in 2*4K unit
15397                 [ $blksz -eq $count ] ||
15398                         error "blksz error(in 8k): $blksz, expected: $count"
15399         done
15400         rm -f $tf
15401
15402         # random write
15403         touch $tf
15404         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15405         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15406
15407         dd if=/dev/zero of=$tf bs=8K count=1 oflag=sync conv=notrunc
15408         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15409         [ $blksz -eq 8192 ] || error "blksz error: $blksz, expected: 8k"
15410
15411         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15412         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15413         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15414
15415         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15416         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15417         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15418 }
15419 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15420
15421 test_399() { # LU-7655 for OST fake write
15422         # turn off debug for performance testing
15423         local saved_debug=$($LCTL get_param -n debug)
15424         $LCTL set_param debug=0
15425
15426         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15427
15428         # get ost1 size - lustre-OST0000
15429         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15430         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15431         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15432
15433         local start_time=$(date +%s.%N)
15434         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15435                 error "real dd writing error"
15436         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15437         rm -f $DIR/$tfile
15438
15439         # define OBD_FAIL_OST_FAKE_WRITE        0x238
15440         do_facet ost1 $LCTL set_param fail_loc=0x238
15441
15442         local start_time=$(date +%s.%N)
15443         dd if=/dev/zero of=$DIR/$tfile bs=1M count=$blocks oflag=sync ||
15444                 error "fake dd writing error"
15445         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15446
15447         # verify file size
15448         cancel_lru_locks osc
15449         $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15450                 error "$tfile size not $blocks MB"
15451
15452         do_facet ost1 $LCTL set_param fail_loc=0
15453
15454         echo "fake write $duration_fake vs. normal write $duration in seconds"
15455         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15456                 error_not_in_vm "fake write is slower"
15457
15458         $LCTL set_param -n debug="$saved_debug"
15459         rm -f $DIR/$tfile
15460 }
15461 run_test 399 "fake write should not be slower than normal write"
15462
15463 test_400a() { # LU-1606, was conf-sanity test_74
15464         local extra_flags=''
15465         local out=$TMP/$tfile
15466         local prefix=/usr/include/lustre
15467         local prog
15468
15469         if ! which $CC > /dev/null 2>&1; then
15470                 skip_env "$CC is not installed"
15471                 return 0
15472         fi
15473
15474         if ! [[ -d $prefix ]]; then
15475                 # Assume we're running in tree and fixup the include path.
15476                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15477                 extra_flags+=" -I$LUSTRE/include"
15478                 extra_flags+=" -L$LUSTRE/utils"
15479         fi
15480
15481         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15482                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15483                         error "client api broken"
15484         done
15485         rm -f $out
15486 }
15487 run_test 400a "Lustre client api program can compile and link"
15488
15489 test_400b() { # LU-1606, LU-5011
15490         local header
15491         local out=$TMP/$tfile
15492         local prefix=/usr/include/lustre
15493
15494         # We use a hard coded prefix so that this test will not fail
15495         # when run in tree. There are headers in lustre/include/lustre/
15496         # that are not packaged (like lustre_idl.h) and have more
15497         # complicated include dependencies (like config.h and lnet/types.h).
15498         # Since this test about correct packaging we just skip them when
15499         # they don't exist (see below) rather than try to fixup cppflags.
15500
15501         if ! which $CC > /dev/null 2>&1; then
15502                 skip_env "$CC is not installed"
15503                 return 0
15504         fi
15505
15506         for header in $prefix/*.h; do
15507                 if ! [[ -f "$header" ]]; then
15508                         continue
15509                 fi
15510
15511                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
15512                         continue # liblustreapi.h is deprecated.
15513                 fi
15514
15515                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
15516                         error "cannot compile '$header'"
15517         done
15518         rm -f $out
15519 }
15520 run_test 400b "packaged headers can be compiled"
15521
15522 test_401a() { #LU-7437
15523         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
15524         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
15525                 return
15526         #count the number of parameters by "list_param -R"
15527         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
15528         #count the number of parameters by listing proc files
15529         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
15530                       sort -u | wc -l)
15531
15532         [ $params -eq $procs ] ||
15533                 error "found $params parameters vs. $procs proc files"
15534
15535         # test the list_param -D option only returns directories
15536         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
15537         #count the number of parameters by listing proc directories
15538         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
15539                 sort -u | wc -l)
15540
15541         [ $params -eq $procs ] ||
15542                 error "found $params parameters vs. $procs proc files"
15543 }
15544 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
15545
15546 test_401b() {
15547         local save=$($LCTL get_param -n jobid_var)
15548         local tmp=testing
15549
15550         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
15551                 error "no error returned when setting bad parameters"
15552
15553         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
15554         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
15555
15556         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
15557         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
15558         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
15559 }
15560 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
15561
15562 test_401c() {
15563         local jobid_var_old=$($LCTL get_param -n jobid_var)
15564         local jobid_var_new
15565
15566         $LCTL set_param jobid_var= &&
15567                 error "no error returned for 'set_param a='"
15568
15569         jobid_var_new=$($LCTL get_param -n jobid_var)
15570         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15571                 error "jobid_var was changed by setting without value"
15572
15573         $LCTL set_param jobid_var &&
15574                 error "no error returned for 'set_param a'"
15575
15576         jobid_var_new=$($LCTL get_param -n jobid_var)
15577         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
15578                 error "jobid_var was changed by setting without value"
15579 }
15580 run_test 401c "Verify 'lctl set_param' without value fails in either format."
15581
15582 test_401d() {
15583         local jobid_var_old=$($LCTL get_param -n jobid_var)
15584         local jobid_var_new
15585         local new_value="foo=bar"
15586
15587         $LCTL set_param jobid_var=$new_value ||
15588                 error "'set_param a=b' did not accept a value containing '='"
15589
15590         jobid_var_new=$($LCTL get_param -n jobid_var)
15591         [[ "$jobid_var_new" == "$new_value" ]] ||
15592                 error "'set_param a=b' failed on a value containing '='"
15593
15594         # Reset the jobid_var to test the other format
15595         $LCTL set_param jobid_var=$jobid_var_old
15596         jobid_var_new=$($LCTL get_param -n jobid_var)
15597         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15598                 error "failed to reset jobid_var"
15599
15600         $LCTL set_param jobid_var $new_value ||
15601                 error "'set_param a b' did not accept a value containing '='"
15602
15603         jobid_var_new=$($LCTL get_param -n jobid_var)
15604         [[ "$jobid_var_new" == "$new_value" ]] ||
15605                 error "'set_param a b' failed on a value containing '='"
15606
15607         $LCTL set_param jobid_var $jobid_var_old
15608         jobid_var_new=$($LCTL get_param -n jobid_var)
15609         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
15610                 error "failed to reset jobid_var"
15611 }
15612 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
15613
15614 test_402() {
15615         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15616         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
15617 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
15618         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
15619         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
15620                 echo "Touch failed - OK"
15621 }
15622 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
15623
15624 test_403() {
15625         local file1=$DIR/$tfile.1
15626         local file2=$DIR/$tfile.2
15627         local tfile=$TMP/$tfile
15628
15629         rm -f $file1 $file2 $tfile
15630
15631         touch $file1
15632         ln $file1 $file2
15633
15634         # 30 sec OBD_TIMEOUT in ll_getattr()
15635         # right before populating st_nlink
15636         $LCTL set_param fail_loc=0x80001409
15637         stat -c %h $file1 > $tfile &
15638
15639         # create an alias, drop all locks and reclaim the dentry
15640         < $file2
15641         cancel_lru_locks mdc
15642         cancel_lru_locks osc
15643         sysctl -w vm.drop_caches=2
15644
15645         wait
15646
15647         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
15648
15649         rm -f $tfile $file1 $file2
15650 }
15651 run_test 403 "i_nlink should not drop to zero due to aliasing"
15652
15653 test_404() { # LU-6601
15654         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15655         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
15656                 awk '/osp .*-osc-MDT/ { print $4}')
15657
15658         local osp
15659         for osp in $mosps; do
15660                 echo "Deactivate: " $osp
15661                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
15662                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15663                         awk -vp=$osp '$4 == p { print $2 }')
15664                 [ $stat = IN ] || {
15665                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15666                         error "deactivate error"
15667                 }
15668                 echo "Activate: " $osp
15669                 do_facet $SINGLEMDS $LCTL --device %$osp activate
15670                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
15671                         awk -vp=$osp '$4 == p { print $2 }')
15672                 [ $stat = UP ] || {
15673                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
15674                         error "activate error"
15675                 }
15676         done
15677 }
15678 run_test 404 "validate manual {de}activated works properly for OSPs"
15679
15680 test_405() {
15681         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
15682                 skip "Layout swap lock is not supported" && return
15683
15684         check_swap_layouts_support && return 0
15685
15686         test_mkdir -p $DIR/$tdir
15687         swap_lock_test -d $DIR/$tdir ||
15688                 error "One layout swap locked test failed"
15689 }
15690 run_test 405 "Various layout swap lock tests"
15691
15692 test_406() {
15693         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15694         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
15695         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
15696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15697         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
15698                 skip "Need MDS version at least 2.8.50" && return
15699
15700         local def_stripenr=$($GETSTRIPE -c $MOUNT)
15701         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
15702         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
15703         local def_pool=$($GETSTRIPE -p $MOUNT)
15704
15705         local test_pool=$TESTNAME
15706         pool_add $test_pool || error "pool_add failed"
15707         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
15708                 error "pool_add_targets failed"
15709
15710         # parent set default stripe count only, child will stripe from both
15711         # parent and fs default
15712         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
15713                 error "setstripe $MOUNT failed"
15714         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
15715         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
15716         for i in $(seq 10); do
15717                 local f=$DIR/$tdir/$tfile.$i
15718                 touch $f || error "touch failed"
15719                 local count=$($GETSTRIPE -c $f)
15720                 [ $count -eq $OSTCOUNT ] ||
15721                         error "$f stripe count $count != $OSTCOUNT"
15722                 local offset=$($GETSTRIPE -i $f)
15723                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
15724                 local size=$($GETSTRIPE -S $f)
15725                 [ $size -eq $((def_stripe_size * 2)) ] ||
15726                         error "$f stripe size $size != $((def_stripe_size * 2))"
15727                 local pool=$($GETSTRIPE -p $f)
15728                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
15729         done
15730
15731         # change fs default striping, delete parent default striping, now child
15732         # will stripe from new fs default striping only
15733         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
15734                 error "change $MOUNT default stripe failed"
15735         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
15736         for i in $(seq 11 20); do
15737                 local f=$DIR/$tdir/$tfile.$i
15738                 touch $f || error "touch $f failed"
15739                 local count=$($GETSTRIPE -c $f)
15740                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
15741                 local offset=$($GETSTRIPE -i $f)
15742                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
15743                 local size=$($GETSTRIPE -S $f)
15744                 [ $size -eq $def_stripe_size ] ||
15745                         error "$f stripe size $size != $def_stripe_size"
15746                 local pool=$($GETSTRIPE -p $f)
15747                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
15748
15749         done
15750
15751         unlinkmany $DIR/$tdir/$tfile. 1 20
15752
15753         # restore FS default striping
15754         if [ -z $def_pool ]; then
15755                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
15756                         -i $def_stripe_offset $MOUNT ||
15757                         error "restore default striping failed"
15758         else
15759                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
15760                         -i $def_stripe_offset $MOUNT ||
15761                         error "restore default striping with $def_pool failed"
15762         fi
15763
15764         local f=$DIR/$tdir/$tfile
15765         pool_remove_all_targets $test_pool $f
15766         pool_remove $test_pool $f
15767 }
15768 run_test 406 "DNE support fs default striping"
15769
15770 test_407() {
15771         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15772
15773         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15774                 skip "Need MDS version at least 2.8.55" && return
15775
15776         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
15777                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
15778         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
15779                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
15780         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
15781
15782         #define OBD_FAIL_DT_TXN_STOP    0x2019
15783         for idx in $(seq $MDSCOUNT); do
15784                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
15785         done
15786         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
15787         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
15788                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
15789         true
15790 }
15791 run_test 407 "transaction fail should cause operation fail"
15792
15793 #
15794 # tests that do cleanup/setup should be run at the end
15795 #
15796
15797 test_900() {
15798         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15799         local ls
15800         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
15801         $LCTL set_param fail_loc=0x903
15802
15803         cancel_lru_locks MGC
15804
15805         FAIL_ON_ERROR=true cleanup
15806         FAIL_ON_ERROR=true setup
15807 }
15808 run_test 900 "umount should not race with any mgc requeue thread"
15809
15810 complete $SECONDS
15811 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
15812 check_and_cleanup_lustre
15813 if [ "$I_MOUNTED" != "yes" ]; then
15814         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
15815 fi
15816 exit_status