Whamcloud - gitweb
LU-4684 lmv: support accessing migrating directory
[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: LU-9693 LU-6493 LU-9693 LU-11058
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c     77k"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054 ..
16 ALWAYS_EXCEPT="  407     253     312     $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 SRCDIR=$(cd $(dirname $0); echo $PWD)
22 export PATH=$PATH:/sbin
23
24 TMP=${TMP:-/tmp}
25 OSC=${OSC:-"osc"}
26
27 CC=${CC:-cc}
28 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
29 CREATETEST=${CREATETEST:-createtest}
30 LFS=${LFS:-lfs}
31 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
32 LCTL=${LCTL:-lctl}
33 OPENFILE=${OPENFILE:-openfile}
34 OPENUNLINK=${OPENUNLINK:-openunlink}
35 export MULTIOP=${MULTIOP:-multiop}
36 READS=${READS:-"reads"}
37 MUNLINK=${MUNLINK:-munlink}
38 SOCKETSERVER=${SOCKETSERVER:-socketserver}
39 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
40 MEMHOG=${MEMHOG:-memhog}
41 DIRECTIO=${DIRECTIO:-directio}
42 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
43 DEF_STRIPE_COUNT=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
57 . $LUSTRE/tests/test-framework.sh
58 init_test_env $@
59 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
60 init_logging
61
62 if [[ $MDSCOUNT -gt 1 ]]; then
63         # bug number:    LU-11161
64         ALWAYS_EXCEPT+=" 160g"
65 fi
66
67 #                                  5          12          (min)"
68 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
69
70 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
71         # bug number for skipped test: LU-1957
72         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
73         #                                               13    (min)"
74         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
75 fi
76
77 # Get the SLES distro version
78 #
79 # Returns a version string that should only be used in comparing
80 # strings returned by version_code()
81 sles_version_code()
82 {
83         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
84
85         # All SuSE Linux versions have one decimal. version_code expects two
86         local sles_version=$version.0
87         version_code $sles_version
88 }
89
90 # Check if we are running on Ubuntu or SLES so we can make decisions on
91 # what tests to run
92 if [ -r /etc/SuSE-release ]; then
93         sles_version=$(sles_version_code)
94         [ $sles_version -lt $(version_code 11.4.0) ] &&
95                 # bug number for skipped test: LU-4341
96                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
97         [ $sles_version -lt $(version_code 12.0.0) ] &&
98                 # bug number for skipped test: LU-3703
99                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
100 elif [ -r /etc/os-release ]; then
101         if grep -qi ubuntu /etc/os-release; then
102                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
103                                                 -e 's/^VERSION=//p' \
104                                                 /etc/os-release |
105                                                 awk '{ print $1 }'))
106
107                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
108                         # bug number for skipped test:
109                         #                LU-10334 LU-10335 LU-10335 LU-10335
110                         ALWAYS_EXCEPT+=" 103a     130a     130b     130c"
111                         #                LU-10335 LU-10335 LU-10366
112                         ALWAYS_EXCEPT+=" 130d     130e     410"
113                 fi
114         fi
115 fi
116
117 FAIL_ON_ERROR=false
118
119 cleanup() {
120         echo -n "cln.."
121         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
122         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
123 }
124 setup() {
125         echo -n "mnt.."
126         load_modules
127         setupall || exit 10
128         echo "done"
129 }
130
131 check_swap_layouts_support()
132 {
133         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
134                 skip "Does not support layout lock."
135 }
136
137 check_and_setup_lustre
138 DIR=${DIR:-$MOUNT}
139 assert_DIR
140
141 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
142
143 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
144 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
145 rm -rf $DIR/[Rdfs][0-9]*
146
147 # $RUNAS_ID may get set incorrectly somewhere else
148 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
149
150 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
151
152 build_test_filter
153
154 if [ "${ONLY}" = "MOUNT" ] ; then
155         echo "Lustre is up, please go on"
156         exit
157 fi
158
159 echo "preparing for tests involving mounts"
160 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
161 touch $EXT2_DEV
162 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
163 echo # add a newline after mke2fs.
164
165 umask 077
166
167 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
168 lctl set_param debug=-1 2> /dev/null || true
169 test_0a() {
170         touch $DIR/$tfile
171         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
172         rm $DIR/$tfile
173         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
174 }
175 run_test 0a "touch; rm ====================="
176
177 test_0b() {
178         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
179         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
180 }
181 run_test 0b "chmod 0755 $DIR ============================="
182
183 test_0c() {
184         $LCTL get_param mdc.*.import | grep "state: FULL" ||
185                 error "import not FULL"
186         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
187                 error "bad target"
188 }
189 run_test 0c "check import proc"
190
191 test_0d() { # LU-3397
192         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
193                 skip "proc exports not supported before 2.10.57"
194
195         local mgs_exp="mgs.MGS.exports"
196         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
197         local exp_client_nid
198         local exp_client_version
199         local exp_val
200         local imp_val
201         local temp_imp=$DIR/$tfile.import
202         local temp_exp=$DIR/$tfile.export
203
204         # save mgc import file to $temp_imp
205         $LCTL get_param mgc.*.import | tee $temp_imp
206         # Check if client uuid is found in MGS export
207         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
208                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
209                         $client_uuid ] &&
210                         break;
211         done
212         # save mgs export file to $temp_exp
213         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
214
215         # Compare the value of field "connect_flags"
216         imp_val=$(grep "connect_flags" $temp_imp)
217         exp_val=$(grep "connect_flags" $temp_exp)
218         [ "$exp_val" == "$imp_val" ] ||
219                 error "export flags '$exp_val' != import flags '$imp_val'"
220
221         # Compare the value of client version
222         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
223         exp_val=$(version_code $exp_client_version)
224         imp_val=$(lustre_version_code client)
225         [ "$exp_val" == "$imp_val" ] ||
226                 error "export client version '$exp_val' != '$imp_val'"
227 }
228 run_test 0d "check export proc ============================="
229
230 test_1() {
231         test_mkdir $DIR/$tdir
232         test_mkdir $DIR/$tdir/d2
233         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
234         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
235         rmdir $DIR/$tdir/d2
236         rmdir $DIR/$tdir
237         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
238 }
239 run_test 1 "mkdir; remkdir; rmdir"
240
241 test_2() {
242         test_mkdir $DIR/$tdir
243         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
244         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
245         rm -r $DIR/$tdir
246         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
247 }
248 run_test 2 "mkdir; touch; rmdir; check file"
249
250 test_3() {
251         test_mkdir $DIR/$tdir
252         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
253         touch $DIR/$tdir/$tfile
254         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
255         rm -r $DIR/$tdir
256         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
257 }
258 run_test 3 "mkdir; touch; rmdir; check dir"
259
260 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
261 test_4() {
262         test_mkdir -i 1 $DIR/$tdir
263
264         touch $DIR/$tdir/$tfile ||
265                 error "Create file under remote directory failed"
266
267         rmdir $DIR/$tdir &&
268                 error "Expect error removing in-use dir $DIR/$tdir"
269
270         test -d $DIR/$tdir || error "Remote directory disappeared"
271
272         rm -rf $DIR/$tdir || error "remove remote dir error"
273 }
274 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
275
276 test_5() {
277         test_mkdir $DIR/$tdir
278         test_mkdir $DIR/$tdir/d2
279         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
280         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
281         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
282 }
283 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
284
285 test_6a() {
286         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
287         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
288         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
289                 error "$tfile does not have perm 0666 or UID $UID"
290         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
291         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
292                 error "$tfile should be 0666 and owned by UID $UID"
293 }
294 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
295
296 test_6c() {
297         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
298
299         touch $DIR/$tfile
300         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
301         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
302                 error "$tfile should be owned by UID $RUNAS_ID"
303         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
304         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
305                 error "$tfile should be owned by UID $RUNAS_ID"
306 }
307 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
308
309 test_6e() {
310         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
311
312         touch $DIR/$tfile
313         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
314         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
315                 error "$tfile should be owned by GID $UID"
316         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
317         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
318                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
319 }
320 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
321
322 test_6g() {
323         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
324
325         test_mkdir $DIR/$tdir
326         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
327         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
328         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
329         test_mkdir $DIR/$tdir/d/subdir
330         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
331                 error "$tdir/d/subdir should be GID $RUNAS_GID"
332         if [[ $MDSCOUNT -gt 1 ]]; then
333                 # check remote dir sgid inherite
334                 $LFS mkdir -i 0 $DIR/$tdir.local ||
335                         error "mkdir $tdir.local failed"
336                 chmod g+s $DIR/$tdir.local ||
337                         error "chmod $tdir.local failed"
338                 chgrp $RUNAS_GID $DIR/$tdir.local ||
339                         error "chgrp $tdir.local failed"
340                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
341                         error "mkdir $tdir.remote failed"
342                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
343                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
344                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
345                         error "$tdir.remote should be mode 02755"
346         fi
347 }
348 run_test 6g "verify new dir in sgid dir inherits group"
349
350 test_6h() { # bug 7331
351         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
352
353         touch $DIR/$tfile || error "touch failed"
354         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
355         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
356                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
357         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
358                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
359 }
360 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
361
362 test_7a() {
363         test_mkdir $DIR/$tdir
364         $MCREATE $DIR/$tdir/$tfile
365         chmod 0666 $DIR/$tdir/$tfile
366         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
367                 error "$tdir/$tfile should be mode 0666"
368 }
369 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
370
371 test_7b() {
372         if [ ! -d $DIR/$tdir ]; then
373                 test_mkdir $DIR/$tdir
374         fi
375         $MCREATE $DIR/$tdir/$tfile
376         echo -n foo > $DIR/$tdir/$tfile
377         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
378         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
379 }
380 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
381
382 test_8() {
383         test_mkdir $DIR/$tdir
384         touch $DIR/$tdir/$tfile
385         chmod 0666 $DIR/$tdir/$tfile
386         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
387                 error "$tfile mode not 0666"
388 }
389 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
390
391 test_9() {
392         test_mkdir $DIR/$tdir
393         test_mkdir $DIR/$tdir/d2
394         test_mkdir $DIR/$tdir/d2/d3
395         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
396 }
397 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
398
399 test_10() {
400         test_mkdir $DIR/$tdir
401         test_mkdir $DIR/$tdir/d2
402         touch $DIR/$tdir/d2/$tfile
403         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
404                 error "$tdir/d2/$tfile not a file"
405 }
406 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
407
408 test_11() {
409         test_mkdir $DIR/$tdir
410         test_mkdir $DIR/$tdir/d2
411         chmod 0666 $DIR/$tdir/d2
412         chmod 0705 $DIR/$tdir/d2
413         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
414                 error "$tdir/d2 mode not 0705"
415 }
416 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
417
418 test_12() {
419         test_mkdir $DIR/$tdir
420         touch $DIR/$tdir/$tfile
421         chmod 0666 $DIR/$tdir/$tfile
422         chmod 0654 $DIR/$tdir/$tfile
423         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
424                 error "$tdir/d2 mode not 0654"
425 }
426 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
427
428 test_13() {
429         test_mkdir $DIR/$tdir
430         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
431         >  $DIR/$tdir/$tfile
432         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
433                 error "$tdir/$tfile size not 0 after truncate"
434 }
435 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
436
437 test_14() {
438         test_mkdir $DIR/$tdir
439         touch $DIR/$tdir/$tfile
440         rm $DIR/$tdir/$tfile
441         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
442 }
443 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
444
445 test_15() {
446         test_mkdir $DIR/$tdir
447         touch $DIR/$tdir/$tfile
448         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
449         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
450                 error "$tdir/${tfile_2} not a file after rename"
451         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
452 }
453 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
454
455 test_16() {
456         test_mkdir $DIR/$tdir
457         touch $DIR/$tdir/$tfile
458         rm -rf $DIR/$tdir/$tfile
459         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
460 }
461 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
462
463 test_17a() {
464         test_mkdir $DIR/$tdir
465         touch $DIR/$tdir/$tfile
466         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
467         ls -l $DIR/$tdir
468         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
469                 error "$tdir/l-exist not a symlink"
470         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
471                 error "$tdir/l-exist not referencing a file"
472         rm -f $DIR/$tdir/l-exist
473         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
474 }
475 run_test 17a "symlinks: create, remove (real)"
476
477 test_17b() {
478         test_mkdir $DIR/$tdir
479         ln -s no-such-file $DIR/$tdir/l-dangle
480         ls -l $DIR/$tdir
481         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
482                 error "$tdir/l-dangle not referencing no-such-file"
483         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
484                 error "$tdir/l-dangle not referencing non-existent file"
485         rm -f $DIR/$tdir/l-dangle
486         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
487 }
488 run_test 17b "symlinks: create, remove (dangling)"
489
490 test_17c() { # bug 3440 - don't save failed open RPC for replay
491         test_mkdir $DIR/$tdir
492         ln -s foo $DIR/$tdir/$tfile
493         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
494 }
495 run_test 17c "symlinks: open dangling (should return error)"
496
497 test_17d() {
498         test_mkdir $DIR/$tdir
499         ln -s foo $DIR/$tdir/$tfile
500         touch $DIR/$tdir/$tfile || error "creating to new symlink"
501 }
502 run_test 17d "symlinks: create dangling"
503
504 test_17e() {
505         test_mkdir $DIR/$tdir
506         local foo=$DIR/$tdir/$tfile
507         ln -s $foo $foo || error "create symlink failed"
508         ls -l $foo || error "ls -l failed"
509         ls $foo && error "ls not failed" || true
510 }
511 run_test 17e "symlinks: create recursive symlink (should return error)"
512
513 test_17f() {
514         test_mkdir $DIR/$tdir
515         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
516         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
517         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
518         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
519         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
520         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
521         ls -l  $DIR/$tdir
522 }
523 run_test 17f "symlinks: long and very long symlink name"
524
525 # str_repeat(S, N) generate a string that is string S repeated N times
526 str_repeat() {
527         local s=$1
528         local n=$2
529         local ret=''
530         while [ $((n -= 1)) -ge 0 ]; do
531                 ret=$ret$s
532         done
533         echo $ret
534 }
535
536 # Long symlinks and LU-2241
537 test_17g() {
538         test_mkdir $DIR/$tdir
539         local TESTS="59 60 61 4094 4095"
540
541         # Fix for inode size boundary in 2.1.4
542         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
543                 TESTS="4094 4095"
544
545         # Patch not applied to 2.2 or 2.3 branches
546         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
547         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
548                 TESTS="4094 4095"
549
550         # skip long symlink name for rhel6.5.
551         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
552         grep -q '6.5' /etc/redhat-release &>/dev/null &&
553                 TESTS="59 60 61 4062 4063"
554
555         for i in $TESTS; do
556                 local SYMNAME=$(str_repeat 'x' $i)
557                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
558                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
559         done
560 }
561 run_test 17g "symlinks: really long symlink name and inode boundaries"
562
563 test_17h() { #bug 17378
564         [ $PARALLEL == "yes" ] && skip "skip parallel run"
565         remote_mds_nodsh && skip "remote MDS with nodsh"
566
567         local mdt_idx
568
569         test_mkdir $DIR/$tdir
570         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
571         $LFS setstripe -c -1 $DIR/$tdir
572         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
573         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
574         touch $DIR/$tdir/$tfile || true
575 }
576 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
577
578 test_17i() { #bug 20018
579         [ $PARALLEL == "yes" ] && skip "skip parallel run"
580         remote_mds_nodsh && skip "remote MDS with nodsh"
581
582         local foo=$DIR/$tdir/$tfile
583         local mdt_idx
584
585         test_mkdir -c1 $DIR/$tdir
586         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
587         ln -s $foo $foo || error "create symlink failed"
588 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
589         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
590         ls -l $foo && error "error not detected"
591         return 0
592 }
593 run_test 17i "don't panic on short symlink (should return error)"
594
595 test_17k() { #bug 22301
596         [ $PARALLEL == "yes" ] && skip "skip parallel run"
597         [[ -z "$(which rsync 2>/dev/null)" ]] &&
598                 skip "no rsync command"
599         rsync --help | grep -q xattr ||
600                 skip_env "$(rsync --version | head -n1) does not support xattrs"
601         test_mkdir $DIR/$tdir
602         test_mkdir $DIR/$tdir.new
603         touch $DIR/$tdir/$tfile
604         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
605         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
606                 error "rsync failed with xattrs enabled"
607 }
608 run_test 17k "symlinks: rsync with xattrs enabled"
609
610 test_17l() { # LU-279
611         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
612                 skip "no getfattr command"
613
614         test_mkdir $DIR/$tdir
615         touch $DIR/$tdir/$tfile
616         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
617         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
618                 # -h to not follow symlinks. -m '' to list all the xattrs.
619                 # grep to remove first line: '# file: $path'.
620                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
621                 do
622                         lgetxattr_size_check $path $xattr ||
623                                 error "lgetxattr_size_check $path $xattr failed"
624                 done
625         done
626 }
627 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
628
629 # LU-1540
630 test_17m() {
631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
632         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
633                 skip_env "ldiskfs only test"
634         remote_mds_nodsh && skip "remote MDS with nodsh"
635         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
636         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
637                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
638
639         local short_sym="0123456789"
640         local wdir=$DIR/$tdir
641         local i
642
643         test_mkdir $wdir
644         long_sym=$short_sym
645         # create a long symlink file
646         for ((i = 0; i < 4; ++i)); do
647                 long_sym=${long_sym}${long_sym}
648         done
649
650         echo "create 512 short and long symlink files under $wdir"
651         for ((i = 0; i < 256; ++i)); do
652                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
653                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
654         done
655
656         echo "erase them"
657         rm -f $wdir/*
658         sync
659         wait_delete_completed
660
661         echo "recreate the 512 symlink files with a shorter string"
662         for ((i = 0; i < 512; ++i)); do
663                 # rewrite the symlink file with a shorter string
664                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
665                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
666         done
667
668         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
669         local devname=$(mdsdevname $mds_index)
670
671         echo "stop and checking mds${mds_index}:"
672         # e2fsck should not return error
673         stop mds${mds_index}
674         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
675         rc=$?
676
677         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
678                 error "start mds${mds_index} failed"
679         df $MOUNT > /dev/null 2>&1
680         [ $rc -eq 0 ] ||
681                 error "e2fsck detected error for short/long symlink: rc=$rc"
682         rm -f $wdir/*
683 }
684 run_test 17m "run e2fsck against MDT which contains short/long symlink"
685
686 check_fs_consistency_17n() {
687         local mdt_index
688         local rc=0
689
690         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
691         # so it only check MDT1/MDT2 instead of all of MDTs.
692         for mdt_index in 1 2; do
693                 local devname=$(mdsdevname $mdt_index)
694                 # e2fsck should not return error
695                 stop mds${mdt_index}
696                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
697                         rc=$((rc + $?))
698
699                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
700                         error "mount mds$mdt_index failed"
701                 df $MOUNT > /dev/null 2>&1
702         done
703         return $rc
704 }
705
706 test_17n() {
707         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
708         [ $PARALLEL == "yes" ] && skip "skip parallel run"
709         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
710                 skip_env "ldiskfs only test"
711         remote_mds_nodsh && skip "remote MDS with nodsh"
712         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
713         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
714                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
715
716         local i
717
718         test_mkdir $DIR/$tdir
719         for ((i=0; i<10; i++)); do
720                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
721                         error "create remote dir error $i"
722                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
723                         error "create files under remote dir failed $i"
724         done
725
726         check_fs_consistency_17n ||
727                 error "e2fsck report error after create files under remote dir"
728
729         for ((i = 0; i < 10; i++)); do
730                 rm -rf $DIR/$tdir/remote_dir_${i} ||
731                         error "destroy remote dir error $i"
732         done
733
734         check_fs_consistency_17n ||
735                 error "e2fsck report error after unlink files under remote dir"
736
737         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
738                 skip "lustre < 2.4.50 does not support migrate mv"
739
740         for ((i = 0; i < 10; i++)); do
741                 mkdir -p $DIR/$tdir/remote_dir_${i}
742                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
743                         error "create files under remote dir failed $i"
744                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
745                         error "migrate remote dir error $i"
746         done
747         check_fs_consistency_17n || error "e2fsck report error after migration"
748
749         for ((i = 0; i < 10; i++)); do
750                 rm -rf $DIR/$tdir/remote_dir_${i} ||
751                         error "destroy remote dir error $i"
752         done
753
754         check_fs_consistency_17n || error "e2fsck report error after unlink"
755 }
756 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
757
758 test_17o() {
759         remote_mds_nodsh && skip "remote MDS with nodsh"
760         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
761                 skip "Need MDS version at least 2.3.64"
762
763         local wdir=$DIR/${tdir}o
764         local mdt_index
765         local rc=0
766
767         test_mkdir $wdir
768         touch $wdir/$tfile
769         mdt_index=$($LFS getstripe -m $wdir/$tfile)
770         mdt_index=$((mdt_index + 1))
771
772         cancel_lru_locks mdc
773         #fail mds will wait the failover finish then set
774         #following fail_loc to avoid interfer the recovery process.
775         fail mds${mdt_index}
776
777         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
778         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
779         ls -l $wdir/$tfile && rc=1
780         do_facet mds${mdt_index} lctl set_param fail_loc=0
781         [[ $rc -eq 0 ]] || error "stat file should fail"
782 }
783 run_test 17o "stat file with incompat LMA feature"
784
785 test_18() {
786         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
787         ls $DIR || error "Failed to ls $DIR: $?"
788 }
789 run_test 18 "touch .../f ; ls ... =============================="
790
791 test_19a() {
792         touch $DIR/$tfile
793         ls -l $DIR
794         rm $DIR/$tfile
795         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
796 }
797 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
798
799 test_19b() {
800         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
801 }
802 run_test 19b "ls -l .../f19 (should return error) =============="
803
804 test_19c() {
805         [ $RUNAS_ID -eq $UID ] &&
806                 skip_env "RUNAS_ID = UID = $UID -- skipping"
807
808         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
809 }
810 run_test 19c "$RUNAS touch .../f19 (should return error) =="
811
812 test_19d() {
813         cat $DIR/f19 && error || true
814 }
815 run_test 19d "cat .../f19 (should return error) =============="
816
817 test_20() {
818         touch $DIR/$tfile
819         rm $DIR/$tfile
820         touch $DIR/$tfile
821         rm $DIR/$tfile
822         touch $DIR/$tfile
823         rm $DIR/$tfile
824         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
825 }
826 run_test 20 "touch .../f ; ls -l ..."
827
828 test_21() {
829         test_mkdir $DIR/$tdir
830         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
831         ln -s dangle $DIR/$tdir/link
832         echo foo >> $DIR/$tdir/link
833         cat $DIR/$tdir/dangle
834         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
835         $CHECKSTAT -f -t file $DIR/$tdir/link ||
836                 error "$tdir/link not linked to a file"
837 }
838 run_test 21 "write to dangling link"
839
840 test_22() {
841         local wdir=$DIR/$tdir
842         test_mkdir $wdir
843         chown $RUNAS_ID:$RUNAS_GID $wdir
844         (cd $wdir || error "cd $wdir failed";
845                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
846                 $RUNAS tar xf -)
847         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
848         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
849         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
850                 error "checkstat -u failed"
851 }
852 run_test 22 "unpack tar archive as non-root user"
853
854 # was test_23
855 test_23a() {
856         test_mkdir $DIR/$tdir
857         local file=$DIR/$tdir/$tfile
858
859         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
860         openfile -f O_CREAT:O_EXCL $file &&
861                 error "$file recreate succeeded" || true
862 }
863 run_test 23a "O_CREAT|O_EXCL in subdir"
864
865 test_23b() { # bug 18988
866         test_mkdir $DIR/$tdir
867         local file=$DIR/$tdir/$tfile
868
869         rm -f $file
870         echo foo > $file || error "write filed"
871         echo bar >> $file || error "append filed"
872         $CHECKSTAT -s 8 $file || error "wrong size"
873         rm $file
874 }
875 run_test 23b "O_APPEND check"
876
877 # LU-9409, size with O_APPEND and tiny writes
878 test_23c() {
879         local file=$DIR/$tfile
880
881         # single dd
882         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
883         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
884         rm -f $file
885
886         # racing tiny writes
887         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
888         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
889         wait
890         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
891         rm -f $file
892
893         #racing tiny & normal writes
894         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
895         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
896         wait
897         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
898         rm -f $file
899
900         #racing tiny & normal writes 2, ugly numbers
901         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
902         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
903         wait
904         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
905         rm -f $file
906 }
907 run_test 23c "O_APPEND size checks for tiny writes"
908
909 # LU-11069 file offset is correct after appending writes
910 test_23d() {
911         local file=$DIR/$tfile
912         local offset
913
914         echo CentaurHauls > $file
915         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
916         if ((offset != 26)); then
917                 error "wrong offset, expected 26, got '$offset'"
918         fi
919 }
920 run_test 23d "file offset is correct after appending writes"
921
922 # rename sanity
923 test_24a() {
924         echo '-- same directory rename'
925         test_mkdir $DIR/$tdir
926         touch $DIR/$tdir/$tfile.1
927         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
928         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
929 }
930 run_test 24a "rename file to non-existent target"
931
932 test_24b() {
933         test_mkdir $DIR/$tdir
934         touch $DIR/$tdir/$tfile.{1,2}
935         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
936         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
937         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
938 }
939 run_test 24b "rename file to existing target"
940
941 test_24c() {
942         test_mkdir $DIR/$tdir
943         test_mkdir $DIR/$tdir/d$testnum.1
944         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
945         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
946         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
947 }
948 run_test 24c "rename directory to non-existent target"
949
950 test_24d() {
951         test_mkdir -c1 $DIR/$tdir
952         test_mkdir -c1 $DIR/$tdir/d$testnum.1
953         test_mkdir -c1 $DIR/$tdir/d$testnum.2
954         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
955         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
956         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
957 }
958 run_test 24d "rename directory to existing target"
959
960 test_24e() {
961         echo '-- cross directory renames --'
962         test_mkdir $DIR/R5a
963         test_mkdir $DIR/R5b
964         touch $DIR/R5a/f
965         mv $DIR/R5a/f $DIR/R5b/g
966         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
967         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
968 }
969 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
970
971 test_24f() {
972         test_mkdir $DIR/R6a
973         test_mkdir $DIR/R6b
974         touch $DIR/R6a/f $DIR/R6b/g
975         mv $DIR/R6a/f $DIR/R6b/g
976         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
977         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
978 }
979 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
980
981 test_24g() {
982         test_mkdir $DIR/R7a
983         test_mkdir $DIR/R7b
984         test_mkdir $DIR/R7a/d
985         mv $DIR/R7a/d $DIR/R7b/e
986         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
987         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
988 }
989 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
990
991 test_24h() {
992         test_mkdir -c1 $DIR/R8a
993         test_mkdir -c1 $DIR/R8b
994         test_mkdir -c1 $DIR/R8a/d
995         test_mkdir -c1 $DIR/R8b/e
996         mrename $DIR/R8a/d $DIR/R8b/e
997         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
998         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
999 }
1000 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1001
1002 test_24i() {
1003         echo "-- rename error cases"
1004         test_mkdir $DIR/R9
1005         test_mkdir $DIR/R9/a
1006         touch $DIR/R9/f
1007         mrename $DIR/R9/f $DIR/R9/a
1008         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1009         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1010         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1011 }
1012 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1013
1014 test_24j() {
1015         test_mkdir $DIR/R10
1016         mrename $DIR/R10/f $DIR/R10/g
1017         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1018         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1019         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1020 }
1021 run_test 24j "source does not exist ============================"
1022
1023 test_24k() {
1024         test_mkdir $DIR/R11a
1025         test_mkdir $DIR/R11a/d
1026         touch $DIR/R11a/f
1027         mv $DIR/R11a/f $DIR/R11a/d
1028         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1029         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1030 }
1031 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1032
1033 # bug 2429 - rename foo foo foo creates invalid file
1034 test_24l() {
1035         f="$DIR/f24l"
1036         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1037 }
1038 run_test 24l "Renaming a file to itself ========================"
1039
1040 test_24m() {
1041         f="$DIR/f24m"
1042         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1043         # on ext3 this does not remove either the source or target files
1044         # though the "expected" operation would be to remove the source
1045         $CHECKSTAT -t file ${f} || error "${f} missing"
1046         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1047 }
1048 run_test 24m "Renaming a file to a hard link to itself ========="
1049
1050 test_24n() {
1051     f="$DIR/f24n"
1052     # this stats the old file after it was renamed, so it should fail
1053     touch ${f}
1054     $CHECKSTAT ${f} || error "${f} missing"
1055     mv ${f} ${f}.rename
1056     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1057     $CHECKSTAT -a ${f} || error "${f} exists"
1058 }
1059 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1060
1061 test_24o() {
1062         test_mkdir $DIR/$tdir
1063         rename_many -s random -v -n 10 $DIR/$tdir
1064 }
1065 run_test 24o "rename of files during htree split"
1066
1067 test_24p() {
1068         test_mkdir $DIR/R12a
1069         test_mkdir $DIR/R12b
1070         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1071         mrename $DIR/R12a $DIR/R12b
1072         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1073         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1074         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1075         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1076 }
1077 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1078
1079 cleanup_multiop_pause() {
1080         trap 0
1081         kill -USR1 $MULTIPID
1082 }
1083
1084 test_24q() {
1085         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1086
1087         test_mkdir $DIR/R13a
1088         test_mkdir $DIR/R13b
1089         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1090         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1091         MULTIPID=$!
1092
1093         trap cleanup_multiop_pause EXIT
1094         mrename $DIR/R13a $DIR/R13b
1095         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1096         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1097         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1098         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1099         cleanup_multiop_pause
1100         wait $MULTIPID || error "multiop close failed"
1101 }
1102 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1103
1104 test_24r() { #bug 3789
1105         test_mkdir $DIR/R14a
1106         test_mkdir $DIR/R14a/b
1107         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1108         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1109         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1110 }
1111 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1112
1113 test_24s() {
1114         test_mkdir $DIR/R15a
1115         test_mkdir $DIR/R15a/b
1116         test_mkdir $DIR/R15a/b/c
1117         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1118         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1119         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1120 }
1121 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1122 test_24t() {
1123         test_mkdir $DIR/R16a
1124         test_mkdir $DIR/R16a/b
1125         test_mkdir $DIR/R16a/b/c
1126         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1127         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1128         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1129 }
1130 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1131
1132 test_24u() { # bug12192
1133         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1134         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1135 }
1136 run_test 24u "create stripe file"
1137
1138 page_size() {
1139         local size
1140         size=$(getconf PAGE_SIZE 2>/dev/null)
1141         echo -n ${size:-4096}
1142 }
1143
1144 simple_cleanup_common() {
1145         local rc=0
1146         trap 0
1147         [ -z "$DIR" -o -z "$tdir" ] && return 0
1148
1149         local start=$SECONDS
1150         rm -rf $DIR/$tdir
1151         rc=$?
1152         wait_delete_completed
1153         echo "cleanup time $((SECONDS - start))"
1154         return $rc
1155 }
1156
1157 max_pages_per_rpc() {
1158         local mdtname="$(printf "MDT%04x" ${1:-0})"
1159         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1160 }
1161
1162 test_24v() {
1163         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1164
1165         local nrfiles=${COUNT:-100000}
1166         local fname="$DIR/$tdir/$tfile"
1167
1168         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1169         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1170
1171         test_mkdir "$(dirname $fname)"
1172         # assume MDT0000 has the fewest inodes
1173         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1174         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1175         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1176
1177         trap simple_cleanup_common EXIT
1178
1179         createmany -m "$fname" $nrfiles
1180
1181         cancel_lru_locks mdc
1182         lctl set_param mdc.*.stats clear
1183
1184         # was previously test_24D: LU-6101
1185         # readdir() returns correct number of entries after cursor reload
1186         local num_ls=$(ls $DIR/$tdir | wc -l)
1187         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1188         local num_all=$(ls -a $DIR/$tdir | wc -l)
1189         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1190              $num_all -ne $((nrfiles + 2)) ]; then
1191                 error "Expected $nrfiles files, got $num_ls " \
1192                         "($num_uniq unique $num_all .&..)"
1193         fi
1194         # LU-5 large readdir
1195         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1196         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1197         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1198         # take into account of overhead in lu_dirpage header and end mark in
1199         # each page, plus one in rpc_num calculation.
1200         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1201         local page_entries=$((($(page_size) - 24) / dirent_size))
1202         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1203         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1204         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1205         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1206         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1207         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1208                 error "large readdir doesn't take effect: " \
1209                       "$mds_readpage should be about $rpc_max"
1210
1211         simple_cleanup_common
1212 }
1213 run_test 24v "list large directory (test hash collision, b=17560)"
1214
1215 test_24w() { # bug21506
1216         SZ1=234852
1217         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1218         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1219         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1220         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1221         [[ "$SZ1" -eq "$SZ2" ]] ||
1222                 error "Error reading at the end of the file $tfile"
1223 }
1224 run_test 24w "Reading a file larger than 4Gb"
1225
1226 test_24x() {
1227         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1228         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1229         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1230                 skip "Need MDS version at least 2.7.56"
1231
1232         local MDTIDX=1
1233         local remote_dir=$DIR/$tdir/remote_dir
1234
1235         test_mkdir $DIR/$tdir
1236         $LFS mkdir -i $MDTIDX $remote_dir ||
1237                 error "create remote directory failed"
1238
1239         test_mkdir $DIR/$tdir/src_dir
1240         touch $DIR/$tdir/src_file
1241         test_mkdir $remote_dir/tgt_dir
1242         touch $remote_dir/tgt_file
1243
1244         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1245                 error "rename dir cross MDT failed!"
1246
1247         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1248                 error "rename file cross MDT failed!"
1249
1250         touch $DIR/$tdir/ln_file
1251         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1252                 error "ln file cross MDT failed"
1253
1254         rm -rf $DIR/$tdir || error "Can not delete directories"
1255 }
1256 run_test 24x "cross MDT rename/link"
1257
1258 test_24y() {
1259         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1261
1262         local remote_dir=$DIR/$tdir/remote_dir
1263         local mdtidx=1
1264
1265         test_mkdir $DIR/$tdir
1266         $LFS mkdir -i $mdtidx $remote_dir ||
1267                 error "create remote directory failed"
1268
1269         test_mkdir $remote_dir/src_dir
1270         touch $remote_dir/src_file
1271         test_mkdir $remote_dir/tgt_dir
1272         touch $remote_dir/tgt_file
1273
1274         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1275                 error "rename subdir in the same remote dir failed!"
1276
1277         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1278                 error "rename files in the same remote dir failed!"
1279
1280         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1281                 error "link files in the same remote dir failed!"
1282
1283         rm -rf $DIR/$tdir || error "Can not delete directories"
1284 }
1285 run_test 24y "rename/link on the same dir should succeed"
1286
1287 test_24A() { # LU-3182
1288         local NFILES=5000
1289
1290         rm -rf $DIR/$tdir
1291         test_mkdir $DIR/$tdir
1292         trap simple_cleanup_common EXIT
1293         createmany -m $DIR/$tdir/$tfile $NFILES
1294         local t=$(ls $DIR/$tdir | wc -l)
1295         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1296         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1297         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1298                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1299         fi
1300
1301         simple_cleanup_common || error "Can not delete directories"
1302 }
1303 run_test 24A "readdir() returns correct number of entries."
1304
1305 test_24B() { # LU-4805
1306         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1307
1308         local count
1309
1310         test_mkdir $DIR/$tdir
1311         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1312                 error "create striped dir failed"
1313
1314         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1315         [ $count -eq 2 ] || error "Expected 2, got $count"
1316
1317         touch $DIR/$tdir/striped_dir/a
1318
1319         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1320         [ $count -eq 3 ] || error "Expected 3, got $count"
1321
1322         touch $DIR/$tdir/striped_dir/.f
1323
1324         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1325         [ $count -eq 4 ] || error "Expected 4, got $count"
1326
1327         rm -rf $DIR/$tdir || error "Can not delete directories"
1328 }
1329 run_test 24B "readdir for striped dir return correct number of entries"
1330
1331 test_24C() {
1332         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1333
1334         mkdir $DIR/$tdir
1335         mkdir $DIR/$tdir/d0
1336         mkdir $DIR/$tdir/d1
1337
1338         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1339                 error "create striped dir failed"
1340
1341         cd $DIR/$tdir/d0/striped_dir
1342
1343         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1344         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1345         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1346
1347         [ "$d0_ino" = "$parent_ino" ] ||
1348                 error ".. wrong, expect $d0_ino, get $parent_ino"
1349
1350         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1351                 error "mv striped dir failed"
1352
1353         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1354
1355         [ "$d1_ino" = "$parent_ino" ] ||
1356                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1357 }
1358 run_test 24C "check .. in striped dir"
1359
1360 test_24E() {
1361         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1362         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1363
1364         mkdir -p $DIR/$tdir
1365         mkdir $DIR/$tdir/src_dir
1366         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1367                 error "create remote source failed"
1368
1369         touch $DIR/$tdir/src_dir/src_child/a
1370
1371         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1372                 error "create remote target dir failed"
1373
1374         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1375                 error "create remote target child failed"
1376
1377         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1378                 error "rename dir cross MDT failed!"
1379
1380         find $DIR/$tdir
1381
1382         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1383                 error "src_child still exists after rename"
1384
1385         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1386                 error "missing file(a) after rename"
1387
1388         rm -rf $DIR/$tdir || error "Can not delete directories"
1389 }
1390 run_test 24E "cross MDT rename/link"
1391
1392 test_25a() {
1393         echo '== symlink sanity ============================================='
1394
1395         test_mkdir $DIR/d25
1396         ln -s d25 $DIR/s25
1397         touch $DIR/s25/foo ||
1398                 error "File creation in symlinked directory failed"
1399 }
1400 run_test 25a "create file in symlinked directory ==============="
1401
1402 test_25b() {
1403         [ ! -d $DIR/d25 ] && test_25a
1404         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1405 }
1406 run_test 25b "lookup file in symlinked directory ==============="
1407
1408 test_26a() {
1409         test_mkdir $DIR/d26
1410         test_mkdir $DIR/d26/d26-2
1411         ln -s d26/d26-2 $DIR/s26
1412         touch $DIR/s26/foo || error "File creation failed"
1413 }
1414 run_test 26a "multiple component symlink ======================="
1415
1416 test_26b() {
1417         test_mkdir -p $DIR/$tdir/d26-2
1418         ln -s $tdir/d26-2/foo $DIR/s26-2
1419         touch $DIR/s26-2 || error "File creation failed"
1420 }
1421 run_test 26b "multiple component symlink at end of lookup ======"
1422
1423 test_26c() {
1424         test_mkdir $DIR/d26.2
1425         touch $DIR/d26.2/foo
1426         ln -s d26.2 $DIR/s26.2-1
1427         ln -s s26.2-1 $DIR/s26.2-2
1428         ln -s s26.2-2 $DIR/s26.2-3
1429         chmod 0666 $DIR/s26.2-3/foo
1430 }
1431 run_test 26c "chain of symlinks"
1432
1433 # recursive symlinks (bug 439)
1434 test_26d() {
1435         ln -s d26-3/foo $DIR/d26-3
1436 }
1437 run_test 26d "create multiple component recursive symlink"
1438
1439 test_26e() {
1440         [ ! -h $DIR/d26-3 ] && test_26d
1441         rm $DIR/d26-3
1442 }
1443 run_test 26e "unlink multiple component recursive symlink"
1444
1445 # recursive symlinks (bug 7022)
1446 test_26f() {
1447         test_mkdir $DIR/$tdir
1448         test_mkdir $DIR/$tdir/$tfile
1449         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1450         test_mkdir -p lndir/bar1
1451         test_mkdir $DIR/$tdir/$tfile/$tfile
1452         cd $tfile                || error "cd $tfile failed"
1453         ln -s .. dotdot          || error "ln dotdot failed"
1454         ln -s dotdot/lndir lndir || error "ln lndir failed"
1455         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1456         output=`ls $tfile/$tfile/lndir/bar1`
1457         [ "$output" = bar1 ] && error "unexpected output"
1458         rm -r $tfile             || error "rm $tfile failed"
1459         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1460 }
1461 run_test 26f "rm -r of a directory which has recursive symlink"
1462
1463 test_27a() {
1464         test_mkdir $DIR/$tdir
1465         $LFS getstripe $DIR/$tdir
1466         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1467         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1468         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1469 }
1470 run_test 27a "one stripe file"
1471
1472 test_27b() {
1473         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1474
1475         test_mkdir $DIR/$tdir
1476         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1477         $LFS getstripe -c $DIR/$tdir/$tfile
1478         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1479                 error "two-stripe file doesn't have two stripes"
1480
1481         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1482 }
1483 run_test 27b "create and write to two stripe file"
1484
1485 test_27d() {
1486         test_mkdir $DIR/$tdir
1487         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1488                 error "setstripe failed"
1489         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1490         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1491 }
1492 run_test 27d "create file with default settings"
1493
1494 test_27e() {
1495         # LU-5839 adds check for existed layout before setting it
1496         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1497                 skip "Need MDS version at least 2.7.56"
1498
1499         test_mkdir $DIR/$tdir
1500         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1501         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1502         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1503 }
1504 run_test 27e "setstripe existing file (should return error)"
1505
1506 test_27f() {
1507         test_mkdir $DIR/$tdir
1508         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1509                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1510         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1511                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1512         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1513         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1514 }
1515 run_test 27f "setstripe with bad stripe size (should return error)"
1516
1517 test_27g() {
1518         test_mkdir $DIR/$tdir
1519         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1520         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1521                 error "$DIR/$tdir/$tfile has object"
1522 }
1523 run_test 27g "$LFS getstripe with no objects"
1524
1525 test_27i() {
1526         test_mkdir $DIR/$tdir
1527         touch $DIR/$tdir/$tfile || error "touch failed"
1528         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1529                 error "missing objects"
1530 }
1531 run_test 27i "$LFS getstripe with some objects"
1532
1533 test_27j() {
1534         test_mkdir $DIR/$tdir
1535         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1536                 error "setstripe failed" || true
1537 }
1538 run_test 27j "setstripe with bad stripe offset (should return error)"
1539
1540 test_27k() { # bug 2844
1541         test_mkdir $DIR/$tdir
1542         local file=$DIR/$tdir/$tfile
1543         local ll_max_blksize=$((4 * 1024 * 1024))
1544         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1545         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1546         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1547         dd if=/dev/zero of=$file bs=4k count=1
1548         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1549         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1550 }
1551 run_test 27k "limit i_blksize for broken user apps"
1552
1553 test_27l() {
1554         mcreate $DIR/$tfile || error "creating file"
1555         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1556                 error "setstripe should have failed" || true
1557 }
1558 run_test 27l "check setstripe permissions (should return error)"
1559
1560 test_27m() {
1561         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1562
1563         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1564                    head -n1)
1565         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1566                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1567         fi
1568         trap simple_cleanup_common EXIT
1569         test_mkdir $DIR/$tdir
1570         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1571         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1572                 error "dd should fill OST0"
1573         i=2
1574         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1575                 i=$((i + 1))
1576                 [ $i -gt 256 ] && break
1577         done
1578         i=$((i + 1))
1579         touch $DIR/$tdir/$tfile.$i
1580         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1581             awk '{print $1}'| grep -w "0") ] &&
1582                 error "OST0 was full but new created file still use it"
1583         i=$((i + 1))
1584         touch $DIR/$tdir/$tfile.$i
1585         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1586             awk '{print $1}'| grep -w "0") ] &&
1587                 error "OST0 was full but new created file still use it"
1588         simple_cleanup_common
1589 }
1590 run_test 27m "create file while OST0 was full"
1591
1592 sleep_maxage() {
1593         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1594                       awk '{ print $1 * 2; exit; }')
1595         sleep $delay
1596 }
1597
1598 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1599 # if the OST isn't full anymore.
1600 reset_enospc() {
1601         local OSTIDX=${1:-""}
1602
1603         local list=$(comma_list $(osts_nodes))
1604         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1605
1606         do_nodes $list lctl set_param fail_loc=0
1607         sync    # initiate all OST_DESTROYs from MDS to OST
1608         sleep_maxage
1609 }
1610
1611 exhaust_precreations() {
1612         local OSTIDX=$1
1613         local FAILLOC=$2
1614         local FAILIDX=${3:-$OSTIDX}
1615         local ofacet=ost$((OSTIDX + 1))
1616
1617         test_mkdir -p -c1 $DIR/$tdir
1618         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1619         local mfacet=mds$((mdtidx + 1))
1620         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1621
1622         local OST=$(ostname_from_index $OSTIDX)
1623
1624         # on the mdt's osc
1625         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1626         local last_id=$(do_facet $mfacet lctl get_param -n \
1627                         osc.$mdtosc_proc1.prealloc_last_id)
1628         local next_id=$(do_facet $mfacet lctl get_param -n \
1629                         osc.$mdtosc_proc1.prealloc_next_id)
1630
1631         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1632         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1633
1634         test_mkdir -p $DIR/$tdir/${OST}
1635         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1636 #define OBD_FAIL_OST_ENOSPC              0x215
1637         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1638         echo "Creating to objid $last_id on ost $OST..."
1639         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1640         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1641         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1642         sleep_maxage
1643 }
1644
1645 exhaust_all_precreations() {
1646         local i
1647         for (( i=0; i < OSTCOUNT; i++ )) ; do
1648                 exhaust_precreations $i $1 -1
1649         done
1650 }
1651
1652 test_27n() {
1653         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1654         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1655         remote_mds_nodsh && skip "remote MDS with nodsh"
1656         remote_ost_nodsh && skip "remote OST with nodsh"
1657
1658         reset_enospc
1659         rm -f $DIR/$tdir/$tfile
1660         exhaust_precreations 0 0x80000215
1661         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1662         touch $DIR/$tdir/$tfile || error "touch failed"
1663         $LFS getstripe $DIR/$tdir/$tfile
1664         reset_enospc
1665 }
1666 run_test 27n "create file with some full OSTs"
1667
1668 test_27o() {
1669         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1671         remote_mds_nodsh && skip "remote MDS with nodsh"
1672         remote_ost_nodsh && skip "remote OST with nodsh"
1673
1674         reset_enospc
1675         rm -f $DIR/$tdir/$tfile
1676         exhaust_all_precreations 0x215
1677
1678         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1679
1680         reset_enospc
1681         rm -rf $DIR/$tdir/*
1682 }
1683 run_test 27o "create file with all full OSTs (should error)"
1684
1685 test_27p() {
1686         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1687         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1688         remote_mds_nodsh && skip "remote MDS with nodsh"
1689         remote_ost_nodsh && skip "remote OST with nodsh"
1690
1691         reset_enospc
1692         rm -f $DIR/$tdir/$tfile
1693         test_mkdir $DIR/$tdir
1694
1695         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1696         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1697         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1698
1699         exhaust_precreations 0 0x80000215
1700         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1701         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1702         $LFS getstripe $DIR/$tdir/$tfile
1703
1704         reset_enospc
1705 }
1706 run_test 27p "append to a truncated file with some full OSTs"
1707
1708 test_27q() {
1709         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1711         remote_mds_nodsh && skip "remote MDS with nodsh"
1712         remote_ost_nodsh && skip "remote OST with nodsh"
1713
1714         reset_enospc
1715         rm -f $DIR/$tdir/$tfile
1716
1717         test_mkdir $DIR/$tdir
1718         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1719         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1720                 error "truncate $DIR/$tdir/$tfile failed"
1721         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1722
1723         exhaust_all_precreations 0x215
1724
1725         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1726         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1727
1728         reset_enospc
1729 }
1730 run_test 27q "append to truncated file with all OSTs full (should error)"
1731
1732 test_27r() {
1733         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1734         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1735         remote_mds_nodsh && skip "remote MDS with nodsh"
1736         remote_ost_nodsh && skip "remote OST with nodsh"
1737
1738         reset_enospc
1739         rm -f $DIR/$tdir/$tfile
1740         exhaust_precreations 0 0x80000215
1741
1742         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1743
1744         reset_enospc
1745 }
1746 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1747
1748 test_27s() { # bug 10725
1749         test_mkdir $DIR/$tdir
1750         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1751         local stripe_count=0
1752         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1753         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1754                 error "stripe width >= 2^32 succeeded" || true
1755
1756 }
1757 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1758
1759 test_27t() { # bug 10864
1760         WDIR=$(pwd)
1761         WLFS=$(which lfs)
1762         cd $DIR
1763         touch $tfile
1764         $WLFS getstripe $tfile
1765         cd $WDIR
1766 }
1767 run_test 27t "check that utils parse path correctly"
1768
1769 test_27u() { # bug 4900
1770         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1771         remote_mds_nodsh && skip "remote MDS with nodsh"
1772
1773         local index
1774         local list=$(comma_list $(mdts_nodes))
1775
1776 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1777         do_nodes $list $LCTL set_param fail_loc=0x139
1778         test_mkdir -p $DIR/$tdir
1779         trap simple_cleanup_common EXIT
1780         createmany -o $DIR/$tdir/t- 1000
1781         do_nodes $list $LCTL set_param fail_loc=0
1782
1783         TLOG=$TMP/$tfile.getstripe
1784         $LFS getstripe $DIR/$tdir > $TLOG
1785         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1786         unlinkmany $DIR/$tdir/t- 1000
1787         trap 0
1788         [[ $OBJS -gt 0 ]] &&
1789                 error "$OBJS objects created on OST-0. See $TLOG" ||
1790                 rm -f $TLOG
1791 }
1792 run_test 27u "skip object creation on OSC w/o objects"
1793
1794 test_27v() { # bug 4900
1795         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1796         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1797         remote_mds_nodsh && skip "remote MDS with nodsh"
1798         remote_ost_nodsh && skip "remote OST with nodsh"
1799
1800         exhaust_all_precreations 0x215
1801         reset_enospc
1802
1803         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1804
1805         touch $DIR/$tdir/$tfile
1806         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1807         # all except ost1
1808         for (( i=1; i < OSTCOUNT; i++ )); do
1809                 do_facet ost$i lctl set_param fail_loc=0x705
1810         done
1811         local START=`date +%s`
1812         createmany -o $DIR/$tdir/$tfile 32
1813
1814         local FINISH=`date +%s`
1815         local TIMEOUT=`lctl get_param -n timeout`
1816         local PROCESS=$((FINISH - START))
1817         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1818                error "$FINISH - $START >= $TIMEOUT / 2"
1819         sleep $((TIMEOUT / 2 - PROCESS))
1820         reset_enospc
1821 }
1822 run_test 27v "skip object creation on slow OST"
1823
1824 test_27w() { # bug 10997
1825         test_mkdir $DIR/$tdir
1826         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1827         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1828                 error "stripe size $size != 65536" || true
1829         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1830                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1831 }
1832 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1833
1834 test_27wa() {
1835         [[ $OSTCOUNT -lt 2 ]] &&
1836                 skip_env "skipping multiple stripe count/offset test"
1837
1838         test_mkdir $DIR/$tdir
1839         for i in $(seq 1 $OSTCOUNT); do
1840                 offset=$((i - 1))
1841                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1842                         error "setstripe -c $i -i $offset failed"
1843                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1844                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1845                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1846                 [ $index -ne $offset ] &&
1847                         error "stripe offset $index != $offset" || true
1848         done
1849 }
1850 run_test 27wa "check $LFS setstripe -c -i options"
1851
1852 test_27x() {
1853         remote_ost_nodsh && skip "remote OST with nodsh"
1854         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1855         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1856
1857         OFFSET=$(($OSTCOUNT - 1))
1858         OSTIDX=0
1859         local OST=$(ostname_from_index $OSTIDX)
1860
1861         test_mkdir $DIR/$tdir
1862         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1863         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1864         sleep_maxage
1865         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1866         for i in $(seq 0 $OFFSET); do
1867                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1868                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1869                 error "OST0 was degraded but new created file still use it"
1870         done
1871         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1872 }
1873 run_test 27x "create files while OST0 is degraded"
1874
1875 test_27y() {
1876         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1877         remote_mds_nodsh && skip "remote MDS with nodsh"
1878         remote_ost_nodsh && skip "remote OST with nodsh"
1879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1880
1881         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1882         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1883                 osc.$mdtosc.prealloc_last_id)
1884         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1885                 osc.$mdtosc.prealloc_next_id)
1886         local fcount=$((last_id - next_id))
1887         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1888         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1889
1890         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1891                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1892         local OST_DEACTIVE_IDX=-1
1893         local OSC
1894         local OSTIDX
1895         local OST
1896
1897         for OSC in $MDS_OSCS; do
1898                 OST=$(osc_to_ost $OSC)
1899                 OSTIDX=$(index_from_ostuuid $OST)
1900                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1901                         OST_DEACTIVE_IDX=$OSTIDX
1902                 fi
1903                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1904                         echo $OSC "is Deactivated:"
1905                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1906                 fi
1907         done
1908
1909         OSTIDX=$(index_from_ostuuid $OST)
1910         test_mkdir $DIR/$tdir
1911         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1912
1913         for OSC in $MDS_OSCS; do
1914                 OST=$(osc_to_ost $OSC)
1915                 OSTIDX=$(index_from_ostuuid $OST)
1916                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1917                         echo $OST "is degraded:"
1918                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1919                                                 obdfilter.$OST.degraded=1
1920                 fi
1921         done
1922
1923         sleep_maxage
1924         createmany -o $DIR/$tdir/$tfile $fcount
1925
1926         for OSC in $MDS_OSCS; do
1927                 OST=$(osc_to_ost $OSC)
1928                 OSTIDX=$(index_from_ostuuid $OST)
1929                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1930                         echo $OST "is recovered from degraded:"
1931                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1932                                                 obdfilter.$OST.degraded=0
1933                 else
1934                         do_facet $SINGLEMDS lctl --device %$OSC activate
1935                 fi
1936         done
1937
1938         # all osp devices get activated, hence -1 stripe count restored
1939         local stripe_count=0
1940
1941         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1942         # devices get activated.
1943         sleep_maxage
1944         $LFS setstripe -c -1 $DIR/$tfile
1945         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1946         rm -f $DIR/$tfile
1947         [ $stripe_count -ne $OSTCOUNT ] &&
1948                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1949         return 0
1950 }
1951 run_test 27y "create files while OST0 is degraded and the rest inactive"
1952
1953 check_seq_oid()
1954 {
1955         log "check file $1"
1956
1957         lmm_count=$($GETSTRIPE -c $1)
1958         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1959         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1960
1961         local old_ifs="$IFS"
1962         IFS=$'[:]'
1963         fid=($($LFS path2fid $1))
1964         IFS="$old_ifs"
1965
1966         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1967         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1968
1969         # compare lmm_seq and lu_fid->f_seq
1970         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1971         # compare lmm_object_id and lu_fid->oid
1972         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1973
1974         # check the trusted.fid attribute of the OST objects of the file
1975         local have_obdidx=false
1976         local stripe_nr=0
1977         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1978                 # skip lines up to and including "obdidx"
1979                 [ -z "$obdidx" ] && break
1980                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1981                 $have_obdidx || continue
1982
1983                 local ost=$((obdidx + 1))
1984                 local dev=$(ostdevname $ost)
1985                 local oid_hex
1986
1987                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1988
1989                 seq=$(echo $seq | sed -e "s/^0x//g")
1990                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1991                         oid_hex=$(echo $oid)
1992                 else
1993                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1994                 fi
1995                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1996
1997                 local ff=""
1998                 #
1999                 # Don't unmount/remount the OSTs if we don't need to do that.
2000                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2001                 # update too, until that use mount/ll_decode_filter_fid/mount.
2002                 # Re-enable when debugfs will understand new filter_fid.
2003                 #
2004                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2005                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2006                                 $dev 2>/dev/null" | grep "parent=")
2007                 fi
2008                 if [ -z "$ff" ]; then
2009                         stop ost$ost
2010                         mount_fstype ost$ost
2011                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2012                                 $(facet_mntpt ost$ost)/$obj_file)
2013                         unmount_fstype ost$ost
2014                         start ost$ost $dev $OST_MOUNT_OPTS
2015                         clients_up
2016                 fi
2017
2018                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2019
2020                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2021
2022                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2023                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2024                 #
2025                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2026                 #       stripe_size=1048576 component_id=1 component_start=0 \
2027                 #       component_end=33554432
2028                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2029                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2030                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2031                 local ff_pstripe
2032                 if grep -q 'stripe=' <<<$ff; then
2033                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2034                 else
2035                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2036                         # into f_ver in this case.  See comment on ff_parent.
2037                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2038                 fi
2039
2040                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2041                 [ $ff_pseq = $lmm_seq ] ||
2042                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2043                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2044                 [ $ff_poid = $lmm_oid ] ||
2045                         error "FF parent OID $ff_poid != $lmm_oid"
2046                 (($ff_pstripe == $stripe_nr)) ||
2047                         error "FF stripe $ff_pstripe != $stripe_nr"
2048
2049                 stripe_nr=$((stripe_nr + 1))
2050                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2051                         continue
2052                 if grep -q 'stripe_count=' <<<$ff; then
2053                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2054                                             -e 's/ .*//' <<<$ff)
2055                         [ $lmm_count = $ff_scnt ] ||
2056                                 error "FF stripe count $lmm_count != $ff_scnt"
2057                 fi
2058         done
2059 }
2060
2061 test_27z() {
2062         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2063         remote_ost_nodsh && skip "remote OST with nodsh"
2064
2065         test_mkdir $DIR/$tdir
2066         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2067                 { error "setstripe -c -1 failed"; return 1; }
2068         # We need to send a write to every object to get parent FID info set.
2069         # This _should_ also work for setattr, but does not currently.
2070         # touch $DIR/$tdir/$tfile-1 ||
2071         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2072                 { error "dd $tfile-1 failed"; return 2; }
2073         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2074                 { error "setstripe -c -1 failed"; return 3; }
2075         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2076                 { error "dd $tfile-2 failed"; return 4; }
2077
2078         # make sure write RPCs have been sent to OSTs
2079         sync; sleep 5; sync
2080
2081         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2082         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2083 }
2084 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2085
2086 test_27A() { # b=19102
2087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2088
2089         save_layout_restore_at_exit $MOUNT
2090         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2091         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2092                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2093         local default_size=$($GETSTRIPE -S $MOUNT)
2094         local default_offset=$($GETSTRIPE -i $MOUNT)
2095         local dsize=$(do_facet $SINGLEMDS \
2096                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2097         [ $default_size -eq $dsize ] ||
2098                 error "stripe size $default_size != $dsize"
2099         [ $default_offset -eq -1 ] ||
2100                 error "stripe offset $default_offset != -1"
2101 }
2102 run_test 27A "check filesystem-wide default LOV EA values"
2103
2104 test_27B() { # LU-2523
2105         test_mkdir $DIR/$tdir
2106         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2107         touch $DIR/$tdir/f0
2108         # open f1 with O_LOV_DELAY_CREATE
2109         # rename f0 onto f1
2110         # call setstripe ioctl on open file descriptor for f1
2111         # close
2112         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2113                 $DIR/$tdir/f0
2114
2115         rm -f $DIR/$tdir/f1
2116         # open f1 with O_LOV_DELAY_CREATE
2117         # unlink f1
2118         # call setstripe ioctl on open file descriptor for f1
2119         # close
2120         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2121
2122         # Allow multiop to fail in imitation of NFS's busted semantics.
2123         true
2124 }
2125 run_test 27B "call setstripe on open unlinked file/rename victim"
2126
2127 test_27C() { #LU-2871
2128         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2129
2130         declare -a ost_idx
2131         local index
2132         local found
2133         local i
2134         local j
2135
2136         test_mkdir $DIR/$tdir
2137         cd $DIR/$tdir
2138         for i in $(seq 0 $((OSTCOUNT - 1))); do
2139                 # set stripe across all OSTs starting from OST$i
2140                 $SETSTRIPE -i $i -c -1 $tfile$i
2141                 # get striping information
2142                 ost_idx=($($GETSTRIPE $tfile$i |
2143                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2144                 echo ${ost_idx[@]}
2145
2146                 # check the layout
2147                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2148                         error "${#ost_idx[@]} != $OSTCOUNT"
2149
2150                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2151                         found=0
2152                         for j in $(echo ${ost_idx[@]}); do
2153                                 if [ $index -eq $j ]; then
2154                                         found=1
2155                                         break
2156                                 fi
2157                         done
2158                         [ $found = 1 ] ||
2159                                 error "Can not find $index in ${ost_idx[@]}"
2160                 done
2161         done
2162 }
2163 run_test 27C "check full striping across all OSTs"
2164
2165 test_27D() {
2166         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2167         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2168         remote_mds_nodsh && skip "remote MDS with nodsh"
2169
2170         local POOL=${POOL:-testpool}
2171         local first_ost=0
2172         local last_ost=$(($OSTCOUNT - 1))
2173         local ost_step=1
2174         local ost_list=$(seq $first_ost $ost_step $last_ost)
2175         local ost_range="$first_ost $last_ost $ost_step"
2176
2177         if ! combined_mgs_mds ; then
2178                 mount_mgs_client
2179         fi
2180
2181         test_mkdir $DIR/$tdir
2182         pool_add $POOL || error "pool_add failed"
2183         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2184
2185         local skip27D
2186         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2187                 skip27D+="-s 29"
2188         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2189           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2190                 skip27D+=" -s 30,31"
2191         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2192                 error "llapi_layout_test failed"
2193
2194         destroy_test_pools || error "destroy test pools failed"
2195
2196         if ! combined_mgs_mds ; then
2197                 umount_mgs_client
2198         fi
2199 }
2200 run_test 27D "validate llapi_layout API"
2201
2202 # Verify that default_easize is increased from its initial value after
2203 # accessing a widely striped file.
2204 test_27E() {
2205         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2206         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2207                 skip "client does not have LU-3338 fix"
2208
2209         # 72 bytes is the minimum space required to store striping
2210         # information for a file striped across one OST:
2211         # (sizeof(struct lov_user_md_v3) +
2212         #  sizeof(struct lov_user_ost_data_v1))
2213         local min_easize=72
2214         $LCTL set_param -n llite.*.default_easize $min_easize ||
2215                 error "lctl set_param failed"
2216         local easize=$($LCTL get_param -n llite.*.default_easize)
2217
2218         [ $easize -eq $min_easize ] ||
2219                 error "failed to set default_easize"
2220
2221         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2222                 error "setstripe failed"
2223         cat $DIR/$tfile
2224         rm $DIR/$tfile
2225
2226         easize=$($LCTL get_param -n llite.*.default_easize)
2227
2228         [ $easize -gt $min_easize ] ||
2229                 error "default_easize not updated"
2230 }
2231 run_test 27E "check that default extended attribute size properly increases"
2232
2233 test_27F() { # LU-5346/LU-7975
2234         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2235         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2236         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2237                 skip "Need MDS version at least 2.8.51"
2238         remote_ost_nodsh && skip "remote OST with nodsh"
2239
2240         test_mkdir $DIR/$tdir
2241         rm -f $DIR/$tdir/f0
2242         $SETSTRIPE -c 2 $DIR/$tdir
2243
2244         # stop all OSTs to reproduce situation for LU-7975 ticket
2245         for num in $(seq $OSTCOUNT); do
2246                 stop ost$num
2247         done
2248
2249         # open/create f0 with O_LOV_DELAY_CREATE
2250         # truncate f0 to a non-0 size
2251         # close
2252         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2253
2254         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2255         # open/write it again to force delayed layout creation
2256         cat /etc/hosts > $DIR/$tdir/f0 &
2257         catpid=$!
2258
2259         # restart OSTs
2260         for num in $(seq $OSTCOUNT); do
2261                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2262                         error "ost$num failed to start"
2263         done
2264
2265         wait $catpid || error "cat failed"
2266
2267         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2268         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2269
2270 }
2271 run_test 27F "Client resend delayed layout creation with non-zero size"
2272
2273 test_27G() { #LU-10629
2274         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2275         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2276         local POOL=${POOL:-testpool}
2277         local ostrange="0 0 1"
2278
2279         test_mkdir $DIR/$tdir
2280         pool_add $POOL || error "pool_add failed"
2281         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2282         $LFS setstripe -p $POOL $DIR/$tdir
2283
2284         local pool=$($LFS getstripe -p $DIR/$tdir)
2285
2286         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2287
2288         $LFS setstripe -d $DIR/$tdir
2289
2290         pool=$($LFS getstripe -p $DIR/$tdir)
2291
2292         rmdir $DIR/$tdir
2293
2294         [ -z "$pool" ] || error "'$pool' is not empty"
2295 }
2296 run_test 27G "Clear OST pool from stripe"
2297
2298 test_27H() {
2299         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.11.54) ]] &&
2300                 skip "Need MDS version newer than 2.11.54"
2301         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2302         test_mkdir $DIR/$tdir
2303         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2304         touch $DIR/$tdir/$tfile
2305         $LFS getstripe -c $DIR/$tdir/$tfile
2306         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2307                 error "two-stripe file doesn't have two stripes"
2308
2309         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2310         $LFS getstripe -y $DIR/$tdir/$tfile
2311         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2312              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2313                 error "expected l_ost_idx: [02]$ not matched"
2314
2315         # make sure ost list have been cleared
2316         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
2317         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2318                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2319         touch $DIR/$tdir/f3
2320         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2321 }
2322 run_test 27H "Set specific OSTs stripe"
2323
2324 # createtest also checks that device nodes are created and
2325 # then visible correctly (#2091)
2326 test_28() { # bug 2091
2327         test_mkdir $DIR/d28
2328         $CREATETEST $DIR/d28/ct || error "createtest failed"
2329 }
2330 run_test 28 "create/mknod/mkdir with bad file types ============"
2331
2332 test_29() {
2333         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2334
2335         sync; sleep 1; sync # flush out any dirty pages from previous tests
2336         cancel_lru_locks
2337         test_mkdir $DIR/d29
2338         touch $DIR/d29/foo
2339         log 'first d29'
2340         ls -l $DIR/d29
2341
2342         declare -i LOCKCOUNTORIG=0
2343         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2344                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2345         done
2346         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2347
2348         declare -i LOCKUNUSEDCOUNTORIG=0
2349         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2350                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2351         done
2352
2353         log 'second d29'
2354         ls -l $DIR/d29
2355         log 'done'
2356
2357         declare -i LOCKCOUNTCURRENT=0
2358         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2359                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2360         done
2361
2362         declare -i LOCKUNUSEDCOUNTCURRENT=0
2363         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2364                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2365         done
2366
2367         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2368                 $LCTL set_param -n ldlm.dump_namespaces ""
2369                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2370                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2371                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2372                 return 2
2373         fi
2374         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2375                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2376                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2377                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2378                 return 3
2379         fi
2380 }
2381 run_test 29 "IT_GETATTR regression  ============================"
2382
2383 test_30a() { # was test_30
2384         cp $(which ls) $DIR || cp /bin/ls $DIR
2385         $DIR/ls / || error "Can't execute binary from lustre"
2386         rm $DIR/ls
2387 }
2388 run_test 30a "execute binary from Lustre (execve) =============="
2389
2390 test_30b() {
2391         cp `which ls` $DIR || cp /bin/ls $DIR
2392         chmod go+rx $DIR/ls
2393         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2394         rm $DIR/ls
2395 }
2396 run_test 30b "execute binary from Lustre as non-root ==========="
2397
2398 test_30c() { # b=22376
2399         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2400
2401         cp `which ls` $DIR || cp /bin/ls $DIR
2402         chmod a-rw $DIR/ls
2403         cancel_lru_locks mdc
2404         cancel_lru_locks osc
2405         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2406         rm -f $DIR/ls
2407 }
2408 run_test 30c "execute binary from Lustre without read perms ===="
2409
2410 test_31a() {
2411         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2412         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2413 }
2414 run_test 31a "open-unlink file =================================="
2415
2416 test_31b() {
2417         touch $DIR/f31 || error "touch $DIR/f31 failed"
2418         ln $DIR/f31 $DIR/f31b || error "ln failed"
2419         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2420         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2421 }
2422 run_test 31b "unlink file with multiple links while open ======="
2423
2424 test_31c() {
2425         touch $DIR/f31 || error "touch $DIR/f31 failed"
2426         ln $DIR/f31 $DIR/f31c || error "ln failed"
2427         multiop_bg_pause $DIR/f31 O_uc ||
2428                 error "multiop_bg_pause for $DIR/f31 failed"
2429         MULTIPID=$!
2430         $MULTIOP $DIR/f31c Ouc
2431         kill -USR1 $MULTIPID
2432         wait $MULTIPID
2433 }
2434 run_test 31c "open-unlink file with multiple links ============="
2435
2436 test_31d() {
2437         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2438         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2439 }
2440 run_test 31d "remove of open directory ========================="
2441
2442 test_31e() { # bug 2904
2443         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2444 }
2445 run_test 31e "remove of open non-empty directory ==============="
2446
2447 test_31f() { # bug 4554
2448         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2449
2450         set -vx
2451         test_mkdir $DIR/d31f
2452         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2453         cp /etc/hosts $DIR/d31f
2454         ls -l $DIR/d31f
2455         $GETSTRIPE $DIR/d31f/hosts
2456         multiop_bg_pause $DIR/d31f D_c || return 1
2457         MULTIPID=$!
2458
2459         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2460         test_mkdir $DIR/d31f
2461         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2462         cp /etc/hosts $DIR/d31f
2463         ls -l $DIR/d31f
2464         $GETSTRIPE $DIR/d31f/hosts
2465         multiop_bg_pause $DIR/d31f D_c || return 1
2466         MULTIPID2=$!
2467
2468         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2469         wait $MULTIPID || error "first opendir $MULTIPID failed"
2470
2471         sleep 6
2472
2473         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2474         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2475         set +vx
2476 }
2477 run_test 31f "remove of open directory with open-unlink file ==="
2478
2479 test_31g() {
2480         echo "-- cross directory link --"
2481         test_mkdir -c1 $DIR/${tdir}ga
2482         test_mkdir -c1 $DIR/${tdir}gb
2483         touch $DIR/${tdir}ga/f
2484         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2485         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2486         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2487         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2488         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2489 }
2490 run_test 31g "cross directory link==============="
2491
2492 test_31h() {
2493         echo "-- cross directory link --"
2494         test_mkdir -c1 $DIR/${tdir}
2495         test_mkdir -c1 $DIR/${tdir}/dir
2496         touch $DIR/${tdir}/f
2497         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2498         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2499         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2500         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2501         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2502 }
2503 run_test 31h "cross directory link under child==============="
2504
2505 test_31i() {
2506         echo "-- cross directory link --"
2507         test_mkdir -c1 $DIR/$tdir
2508         test_mkdir -c1 $DIR/$tdir/dir
2509         touch $DIR/$tdir/dir/f
2510         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2511         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2512         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2513         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2514         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2515 }
2516 run_test 31i "cross directory link under parent==============="
2517
2518 test_31j() {
2519         test_mkdir -c1 -p $DIR/$tdir
2520         test_mkdir -c1 -p $DIR/$tdir/dir1
2521         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2522         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2523         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2524         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2525         return 0
2526 }
2527 run_test 31j "link for directory==============="
2528
2529 test_31k() {
2530         test_mkdir -c1 -p $DIR/$tdir
2531         touch $DIR/$tdir/s
2532         touch $DIR/$tdir/exist
2533         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2534         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2535         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2536         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2537         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2538         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2539         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2540         return 0
2541 }
2542 run_test 31k "link to file: the same, non-existing, dir==============="
2543
2544 test_31m() {
2545         mkdir $DIR/d31m
2546         touch $DIR/d31m/s
2547         mkdir $DIR/d31m2
2548         touch $DIR/d31m2/exist
2549         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2550         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2551         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2552         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2553         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2554         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2555         return 0
2556 }
2557 run_test 31m "link to file: the same, non-existing, dir==============="
2558
2559 test_31n() {
2560         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2561         nlink=$(stat --format=%h $DIR/$tfile)
2562         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2563         local fd=$(free_fd)
2564         local cmd="exec $fd<$DIR/$tfile"
2565         eval $cmd
2566         cmd="exec $fd<&-"
2567         trap "eval $cmd" EXIT
2568         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2569         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2570         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2571         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2572         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2573         eval $cmd
2574 }
2575 run_test 31n "check link count of unlinked file"
2576
2577 link_one() {
2578         local TEMPNAME=$(mktemp $1_XXXXXX)
2579         mlink $TEMPNAME $1 2> /dev/null &&
2580                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2581         munlink $TEMPNAME
2582 }
2583
2584 test_31o() { # LU-2901
2585         test_mkdir $DIR/$tdir
2586         for LOOP in $(seq 100); do
2587                 rm -f $DIR/$tdir/$tfile*
2588                 for THREAD in $(seq 8); do
2589                         link_one $DIR/$tdir/$tfile.$LOOP &
2590                 done
2591                 wait
2592                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2593                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2594                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2595                         break || true
2596         done
2597 }
2598 run_test 31o "duplicate hard links with same filename"
2599
2600 test_31p() {
2601         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2602
2603         test_mkdir $DIR/$tdir
2604         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2605         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2606
2607         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2608                 error "open unlink test1 failed"
2609         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2610                 error "open unlink test2 failed"
2611
2612         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2613                 error "test1 still exists"
2614         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2615                 error "test2 still exists"
2616 }
2617 run_test 31p "remove of open striped directory"
2618
2619 cleanup_test32_mount() {
2620         local rc=0
2621         trap 0
2622         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2623         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2624         losetup -d $loopdev || true
2625         rm -rf $DIR/$tdir
2626         return $rc
2627 }
2628
2629 test_32a() {
2630         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2631
2632         echo "== more mountpoints and symlinks ================="
2633         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2634         trap cleanup_test32_mount EXIT
2635         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2636         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2637                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2638         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2639                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2640         cleanup_test32_mount
2641 }
2642 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2643
2644 test_32b() {
2645         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2646
2647         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2648         trap cleanup_test32_mount EXIT
2649         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2650         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2651                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2652         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2653                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2654         cleanup_test32_mount
2655 }
2656 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2657
2658 test_32c() {
2659         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2660
2661         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2662         trap cleanup_test32_mount EXIT
2663         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2664         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2665                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2666         test_mkdir -p $DIR/$tdir/d2/test_dir
2667         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2668                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2669         cleanup_test32_mount
2670 }
2671 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2672
2673 test_32d() {
2674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2675
2676         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2677         trap cleanup_test32_mount EXIT
2678         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2679         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2680                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2681         test_mkdir -p $DIR/$tdir/d2/test_dir
2682         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2683                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2684         cleanup_test32_mount
2685 }
2686 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2687
2688 test_32e() {
2689         rm -fr $DIR/$tdir
2690         test_mkdir -p $DIR/$tdir/tmp
2691         local tmp_dir=$DIR/$tdir/tmp
2692         ln -s $DIR/$tdir $tmp_dir/symlink11
2693         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2694         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2695         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2696 }
2697 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2698
2699 test_32f() {
2700         rm -fr $DIR/$tdir
2701         test_mkdir -p $DIR/$tdir/tmp
2702         local tmp_dir=$DIR/$tdir/tmp
2703         ln -s $DIR/$tdir $tmp_dir/symlink11
2704         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2705         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2706         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2707 }
2708 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2709
2710 test_32g() {
2711         local tmp_dir=$DIR/$tdir/tmp
2712         test_mkdir -p $tmp_dir
2713         test_mkdir $DIR/${tdir}2
2714         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2715         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2716         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2717         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2718         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2719         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2720 }
2721 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2722
2723 test_32h() {
2724         rm -fr $DIR/$tdir $DIR/${tdir}2
2725         tmp_dir=$DIR/$tdir/tmp
2726         test_mkdir -p $tmp_dir
2727         test_mkdir $DIR/${tdir}2
2728         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2729         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2730         ls $tmp_dir/symlink12 || error "listing symlink12"
2731         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2732 }
2733 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2734
2735 test_32i() {
2736         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2737
2738         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2739         trap cleanup_test32_mount EXIT
2740         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2741         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2742                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2743         touch $DIR/$tdir/test_file
2744         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2745                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2746         cleanup_test32_mount
2747 }
2748 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2749
2750 test_32j() {
2751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2752
2753         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2754         trap cleanup_test32_mount EXIT
2755         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2756         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2757                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2758         touch $DIR/$tdir/test_file
2759         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2760                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2761         cleanup_test32_mount
2762 }
2763 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2764
2765 test_32k() {
2766         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2767
2768         rm -fr $DIR/$tdir
2769         trap cleanup_test32_mount EXIT
2770         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2771         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2772                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2773         test_mkdir -p $DIR/$tdir/d2
2774         touch $DIR/$tdir/d2/test_file || error "touch failed"
2775         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2776                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2777         cleanup_test32_mount
2778 }
2779 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2780
2781 test_32l() {
2782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2783
2784         rm -fr $DIR/$tdir
2785         trap cleanup_test32_mount EXIT
2786         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2787         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2788                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2789         test_mkdir -p $DIR/$tdir/d2
2790         touch $DIR/$tdir/d2/test_file || error "touch failed"
2791         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2792                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2793         cleanup_test32_mount
2794 }
2795 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2796
2797 test_32m() {
2798         rm -fr $DIR/d32m
2799         test_mkdir -p $DIR/d32m/tmp
2800         TMP_DIR=$DIR/d32m/tmp
2801         ln -s $DIR $TMP_DIR/symlink11
2802         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2803         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2804                 error "symlink11 not a link"
2805         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2806                 error "symlink01 not a link"
2807 }
2808 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2809
2810 test_32n() {
2811         rm -fr $DIR/d32n
2812         test_mkdir -p $DIR/d32n/tmp
2813         TMP_DIR=$DIR/d32n/tmp
2814         ln -s $DIR $TMP_DIR/symlink11
2815         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2816         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2817         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2818 }
2819 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2820
2821 test_32o() {
2822         touch $DIR/$tfile
2823         test_mkdir -p $DIR/d32o/tmp
2824         TMP_DIR=$DIR/d32o/tmp
2825         ln -s $DIR/$tfile $TMP_DIR/symlink12
2826         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2827         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2828                 error "symlink12 not a link"
2829         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2830         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2831                 error "$DIR/d32o/tmp/symlink12 not file type"
2832         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2833                 error "$DIR/d32o/symlink02 not file type"
2834 }
2835 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2836
2837 test_32p() {
2838         log 32p_1
2839         rm -fr $DIR/d32p
2840         log 32p_2
2841         rm -f $DIR/$tfile
2842         log 32p_3
2843         touch $DIR/$tfile
2844         log 32p_4
2845         test_mkdir -p $DIR/d32p/tmp
2846         log 32p_5
2847         TMP_DIR=$DIR/d32p/tmp
2848         log 32p_6
2849         ln -s $DIR/$tfile $TMP_DIR/symlink12
2850         log 32p_7
2851         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2852         log 32p_8
2853         cat $DIR/d32p/tmp/symlink12 ||
2854                 error "Can't open $DIR/d32p/tmp/symlink12"
2855         log 32p_9
2856         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2857         log 32p_10
2858 }
2859 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2860
2861 test_32q() {
2862         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2863
2864         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2865         trap cleanup_test32_mount EXIT
2866         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2867         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2868         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2869                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2870         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2871         cleanup_test32_mount
2872 }
2873 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2874
2875 test_32r() {
2876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2877
2878         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2879         trap cleanup_test32_mount EXIT
2880         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2881         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2882         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2883                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2884         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2885         cleanup_test32_mount
2886 }
2887 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2888
2889 test_33aa() {
2890         rm -f $DIR/$tfile
2891         touch $DIR/$tfile
2892         chmod 444 $DIR/$tfile
2893         chown $RUNAS_ID $DIR/$tfile
2894         log 33_1
2895         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2896         log 33_2
2897 }
2898 run_test 33aa "write file with mode 444 (should return error)"
2899
2900 test_33a() {
2901         rm -fr $DIR/$tdir
2902         test_mkdir $DIR/$tdir
2903         chown $RUNAS_ID $DIR/$tdir
2904         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2905                 error "$RUNAS create $tdir/$tfile failed"
2906         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2907                 error "open RDWR" || true
2908 }
2909 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2910
2911 test_33b() {
2912         rm -fr $DIR/$tdir
2913         test_mkdir $DIR/$tdir
2914         chown $RUNAS_ID $DIR/$tdir
2915         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2916 }
2917 run_test 33b "test open file with malformed flags (No panic)"
2918
2919 test_33c() {
2920         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2921         remote_ost_nodsh && skip "remote OST with nodsh"
2922
2923         local ostnum
2924         local ostname
2925         local write_bytes
2926         local all_zeros
2927
2928         all_zeros=:
2929         rm -fr $DIR/$tdir
2930         test_mkdir $DIR/$tdir
2931         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2932
2933         sync
2934         for ostnum in $(seq $OSTCOUNT); do
2935                 # test-framework's OST numbering is one-based, while Lustre's
2936                 # is zero-based
2937                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2938                 # Parsing llobdstat's output sucks; we could grep the /proc
2939                 # path, but that's likely to not be as portable as using the
2940                 # llobdstat utility.  So we parse lctl output instead.
2941                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2942                         obdfilter/$ostname/stats |
2943                         awk '/^write_bytes/ {print $7}' )
2944                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2945                 if (( ${write_bytes:-0} > 0 ))
2946                 then
2947                         all_zeros=false
2948                         break;
2949                 fi
2950         done
2951
2952         $all_zeros || return 0
2953
2954         # Write four bytes
2955         echo foo > $DIR/$tdir/bar
2956         # Really write them
2957         sync
2958
2959         # Total up write_bytes after writing.  We'd better find non-zeros.
2960         for ostnum in $(seq $OSTCOUNT); do
2961                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2962                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2963                         obdfilter/$ostname/stats |
2964                         awk '/^write_bytes/ {print $7}' )
2965                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2966                 if (( ${write_bytes:-0} > 0 ))
2967                 then
2968                         all_zeros=false
2969                         break;
2970                 fi
2971         done
2972
2973         if $all_zeros
2974         then
2975                 for ostnum in $(seq $OSTCOUNT); do
2976                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2977                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2978                         do_facet ost$ostnum lctl get_param -n \
2979                                 obdfilter/$ostname/stats
2980                 done
2981                 error "OST not keeping write_bytes stats (b22312)"
2982         fi
2983 }
2984 run_test 33c "test llobdstat and write_bytes"
2985
2986 test_33d() {
2987         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2988         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2989
2990         local MDTIDX=1
2991         local remote_dir=$DIR/$tdir/remote_dir
2992
2993         test_mkdir $DIR/$tdir
2994         $LFS mkdir -i $MDTIDX $remote_dir ||
2995                 error "create remote directory failed"
2996
2997         touch $remote_dir/$tfile
2998         chmod 444 $remote_dir/$tfile
2999         chown $RUNAS_ID $remote_dir/$tfile
3000
3001         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3002
3003         chown $RUNAS_ID $remote_dir
3004         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3005                                         error "create" || true
3006         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3007                                     error "open RDWR" || true
3008         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3009 }
3010 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3011
3012 test_33e() {
3013         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3014
3015         mkdir $DIR/$tdir
3016
3017         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3018         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3019         mkdir $DIR/$tdir/local_dir
3020
3021         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3022         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3023         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3024
3025         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3026                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3027
3028         rmdir $DIR/$tdir/* || error "rmdir failed"
3029
3030         umask 777
3031         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3032         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3033         mkdir $DIR/$tdir/local_dir
3034
3035         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3036         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3037         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3038
3039         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3040                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3041
3042         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3043
3044         umask 000
3045         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3046         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3047         mkdir $DIR/$tdir/local_dir
3048
3049         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3050         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3051         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3052
3053         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3054                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3055 }
3056 run_test 33e "mkdir and striped directory should have same mode"
3057
3058 cleanup_33f() {
3059         trap 0
3060         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3061 }
3062
3063 test_33f() {
3064         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3065         remote_mds_nodsh && skip "remote MDS with nodsh"
3066
3067         mkdir $DIR/$tdir
3068         chmod go+rwx $DIR/$tdir
3069         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3070         trap cleanup_33f EXIT
3071
3072         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3073                 error "cannot create striped directory"
3074
3075         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3076                 error "cannot create files in striped directory"
3077
3078         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3079                 error "cannot remove files in striped directory"
3080
3081         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3082                 error "cannot remove striped directory"
3083
3084         cleanup_33f
3085 }
3086 run_test 33f "nonroot user can create, access, and remove a striped directory"
3087
3088 test_33g() {
3089         mkdir -p $DIR/$tdir/dir2
3090
3091         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3092         echo $err
3093         [[ $err =~ "exists" ]] || error "Not exists error"
3094 }
3095 run_test 33g "nonroot user create already existing root created file"
3096
3097 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3098 test_34a() {
3099         rm -f $DIR/f34
3100         $MCREATE $DIR/f34 || error "mcreate failed"
3101         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3102                 error "getstripe failed"
3103         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3104         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3105                 error "getstripe failed"
3106         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3107                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3108 }
3109 run_test 34a "truncate file that has not been opened ==========="
3110
3111 test_34b() {
3112         [ ! -f $DIR/f34 ] && test_34a
3113         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3114                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3115         $OPENFILE -f O_RDONLY $DIR/f34
3116         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3117                 error "getstripe failed"
3118         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3119                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3120 }
3121 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3122
3123 test_34c() {
3124         [ ! -f $DIR/f34 ] && test_34a
3125         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3126                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3127         $OPENFILE -f O_RDWR $DIR/f34
3128         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3129         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3130                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3131 }
3132 run_test 34c "O_RDWR opening file-with-size works =============="
3133
3134 test_34d() {
3135         [ ! -f $DIR/f34 ] && test_34a
3136         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3137                 error "dd failed"
3138         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3139                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3140         rm $DIR/f34
3141 }
3142 run_test 34d "write to sparse file ============================="
3143
3144 test_34e() {
3145         rm -f $DIR/f34e
3146         $MCREATE $DIR/f34e || error "mcreate failed"
3147         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3148         $CHECKSTAT -s 1000 $DIR/f34e ||
3149                 error "Size of $DIR/f34e not equal to 1000 bytes"
3150         $OPENFILE -f O_RDWR $DIR/f34e
3151         $CHECKSTAT -s 1000 $DIR/f34e ||
3152                 error "Size of $DIR/f34e not equal to 1000 bytes"
3153 }
3154 run_test 34e "create objects, some with size and some without =="
3155
3156 test_34f() { # bug 6242, 6243
3157         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3158
3159         SIZE34F=48000
3160         rm -f $DIR/f34f
3161         $MCREATE $DIR/f34f || error "mcreate failed"
3162         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3163         dd if=$DIR/f34f of=$TMP/f34f
3164         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3165         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3166         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3167         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3168         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3169 }
3170 run_test 34f "read from a file with no objects until EOF ======="
3171
3172 test_34g() {
3173         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3174
3175         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3176                 error "dd failed"
3177         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3178         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3179                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3180         cancel_lru_locks osc
3181         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3182                 error "wrong size after lock cancel"
3183
3184         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3185         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3186                 error "expanding truncate failed"
3187         cancel_lru_locks osc
3188         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3189                 error "wrong expanded size after lock cancel"
3190 }
3191 run_test 34g "truncate long file ==============================="
3192
3193 test_34h() {
3194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3195
3196         local gid=10
3197         local sz=1000
3198
3199         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3200         sync # Flush the cache so that multiop below does not block on cache
3201              # flush when getting the group lock
3202         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3203         MULTIPID=$!
3204
3205         # Since just timed wait is not good enough, let's do a sync write
3206         # that way we are sure enough time for a roundtrip + processing
3207         # passed + 2 seconds of extra margin.
3208         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
3209         rm $DIR/${tfile}-1
3210         sleep 2
3211
3212         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3213                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3214                 kill -9 $MULTIPID
3215         fi
3216         wait $MULTIPID
3217         local nsz=`stat -c %s $DIR/$tfile`
3218         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3219 }
3220 run_test 34h "ftruncate file under grouplock should not block"
3221
3222 test_35a() {
3223         cp /bin/sh $DIR/f35a
3224         chmod 444 $DIR/f35a
3225         chown $RUNAS_ID $DIR/f35a
3226         $RUNAS $DIR/f35a && error || true
3227         rm $DIR/f35a
3228 }
3229 run_test 35a "exec file with mode 444 (should return and not leak)"
3230
3231 test_36a() {
3232         rm -f $DIR/f36
3233         utime $DIR/f36 || error "utime failed for MDS"
3234 }
3235 run_test 36a "MDS utime check (mknod, utime)"
3236
3237 test_36b() {
3238         echo "" > $DIR/f36
3239         utime $DIR/f36 || error "utime failed for OST"
3240 }
3241 run_test 36b "OST utime check (open, utime)"
3242
3243 test_36c() {
3244         rm -f $DIR/d36/f36
3245         test_mkdir $DIR/d36
3246         chown $RUNAS_ID $DIR/d36
3247         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3248 }
3249 run_test 36c "non-root MDS utime check (mknod, utime)"
3250
3251 test_36d() {
3252         [ ! -d $DIR/d36 ] && test_36c
3253         echo "" > $DIR/d36/f36
3254         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3255 }
3256 run_test 36d "non-root OST utime check (open, utime)"
3257
3258 test_36e() {
3259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3260
3261         test_mkdir $DIR/$tdir
3262         touch $DIR/$tdir/$tfile
3263         $RUNAS utime $DIR/$tdir/$tfile &&
3264                 error "utime worked, expected failure" || true
3265 }
3266 run_test 36e "utime on non-owned file (should return error)"
3267
3268 subr_36fh() {
3269         local fl="$1"
3270         local LANG_SAVE=$LANG
3271         local LC_LANG_SAVE=$LC_LANG
3272         export LANG=C LC_LANG=C # for date language
3273
3274         DATESTR="Dec 20  2000"
3275         test_mkdir $DIR/$tdir
3276         lctl set_param fail_loc=$fl
3277         date; date +%s
3278         cp /etc/hosts $DIR/$tdir/$tfile
3279         sync & # write RPC generated with "current" inode timestamp, but delayed
3280         sleep 1
3281         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3282         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3283         cancel_lru_locks osc
3284         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3285         date; date +%s
3286         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3287                 echo "BEFORE: $LS_BEFORE" && \
3288                 echo "AFTER : $LS_AFTER" && \
3289                 echo "WANT  : $DATESTR" && \
3290                 error "$DIR/$tdir/$tfile timestamps changed" || true
3291
3292         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3293 }
3294
3295 test_36f() {
3296         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3297
3298         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3299         subr_36fh "0x80000214"
3300 }
3301 run_test 36f "utime on file racing with OST BRW write =========="
3302
3303 test_36g() {
3304         remote_ost_nodsh && skip "remote OST with nodsh"
3305         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3306
3307         local fmd_max_age
3308         local fmd_before
3309         local fmd_after
3310
3311         test_mkdir $DIR/$tdir
3312         fmd_max_age=$(do_facet ost1 \
3313                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3314                 head -n 1")
3315
3316         fmd_before=$(do_facet ost1 \
3317                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3318         touch $DIR/$tdir/$tfile
3319         sleep $((fmd_max_age + 12))
3320         fmd_after=$(do_facet ost1 \
3321                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3322
3323         echo "fmd_before: $fmd_before"
3324         echo "fmd_after: $fmd_after"
3325         [[ $fmd_after -gt $fmd_before ]] &&
3326                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3327                 error "fmd didn't expire after ping" || true
3328 }
3329 run_test 36g "filter mod data cache expiry ====================="
3330
3331 test_36h() {
3332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3333
3334         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3335         subr_36fh "0x80000227"
3336 }
3337 run_test 36h "utime on file racing with OST BRW write =========="
3338
3339 test_36i() {
3340         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3341
3342         test_mkdir $DIR/$tdir
3343         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3344
3345         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3346         local new_mtime=$((mtime + 200))
3347
3348         #change Modify time of striped dir
3349         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3350                         error "change mtime failed"
3351
3352         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3353
3354         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3355 }
3356 run_test 36i "change mtime on striped directory"
3357
3358 # test_37 - duplicate with tests 32q 32r
3359
3360 test_38() {
3361         local file=$DIR/$tfile
3362         touch $file
3363         openfile -f O_DIRECTORY $file
3364         local RC=$?
3365         local ENOTDIR=20
3366         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3367         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3368 }
3369 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3370
3371 test_39a() { # was test_39
3372         touch $DIR/$tfile
3373         touch $DIR/${tfile}2
3374 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3375 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3376 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3377         sleep 2
3378         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3379         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3380                 echo "mtime"
3381                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3382                 echo "atime"
3383                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3384                 echo "ctime"
3385                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3386                 error "O_TRUNC didn't change timestamps"
3387         fi
3388 }
3389 run_test 39a "mtime changed on create"
3390
3391 test_39b() {
3392         test_mkdir -c1 $DIR/$tdir
3393         cp -p /etc/passwd $DIR/$tdir/fopen
3394         cp -p /etc/passwd $DIR/$tdir/flink
3395         cp -p /etc/passwd $DIR/$tdir/funlink
3396         cp -p /etc/passwd $DIR/$tdir/frename
3397         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3398
3399         sleep 1
3400         echo "aaaaaa" >> $DIR/$tdir/fopen
3401         echo "aaaaaa" >> $DIR/$tdir/flink
3402         echo "aaaaaa" >> $DIR/$tdir/funlink
3403         echo "aaaaaa" >> $DIR/$tdir/frename
3404
3405         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3406         local link_new=`stat -c %Y $DIR/$tdir/flink`
3407         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3408         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3409
3410         cat $DIR/$tdir/fopen > /dev/null
3411         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3412         rm -f $DIR/$tdir/funlink2
3413         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3414
3415         for (( i=0; i < 2; i++ )) ; do
3416                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3417                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3418                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3419                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3420
3421                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3422                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3423                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3424                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3425
3426                 cancel_lru_locks osc
3427                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3428         done
3429 }
3430 run_test 39b "mtime change on open, link, unlink, rename  ======"
3431
3432 # this should be set to past
3433 TEST_39_MTIME=`date -d "1 year ago" +%s`
3434
3435 # bug 11063
3436 test_39c() {
3437         touch $DIR1/$tfile
3438         sleep 2
3439         local mtime0=`stat -c %Y $DIR1/$tfile`
3440
3441         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3442         local mtime1=`stat -c %Y $DIR1/$tfile`
3443         [ "$mtime1" = $TEST_39_MTIME ] || \
3444                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3445
3446         local d1=`date +%s`
3447         echo hello >> $DIR1/$tfile
3448         local d2=`date +%s`
3449         local mtime2=`stat -c %Y $DIR1/$tfile`
3450         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3451                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3452
3453         mv $DIR1/$tfile $DIR1/$tfile-1
3454
3455         for (( i=0; i < 2; i++ )) ; do
3456                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3457                 [ "$mtime2" = "$mtime3" ] || \
3458                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3459
3460                 cancel_lru_locks osc
3461                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3462         done
3463 }
3464 run_test 39c "mtime change on rename ==========================="
3465
3466 # bug 21114
3467 test_39d() {
3468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3469
3470         touch $DIR1/$tfile
3471         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3472
3473         for (( i=0; i < 2; i++ )) ; do
3474                 local mtime=`stat -c %Y $DIR1/$tfile`
3475                 [ $mtime = $TEST_39_MTIME ] || \
3476                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3477
3478                 cancel_lru_locks osc
3479                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3480         done
3481 }
3482 run_test 39d "create, utime, stat =============================="
3483
3484 # bug 21114
3485 test_39e() {
3486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3487
3488         touch $DIR1/$tfile
3489         local mtime1=`stat -c %Y $DIR1/$tfile`
3490
3491         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3492
3493         for (( i=0; i < 2; i++ )) ; do
3494                 local mtime2=`stat -c %Y $DIR1/$tfile`
3495                 [ $mtime2 = $TEST_39_MTIME ] || \
3496                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3497
3498                 cancel_lru_locks osc
3499                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3500         done
3501 }
3502 run_test 39e "create, stat, utime, stat ========================"
3503
3504 # bug 21114
3505 test_39f() {
3506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3507
3508         touch $DIR1/$tfile
3509         mtime1=`stat -c %Y $DIR1/$tfile`
3510
3511         sleep 2
3512         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3513
3514         for (( i=0; i < 2; i++ )) ; do
3515                 local mtime2=`stat -c %Y $DIR1/$tfile`
3516                 [ $mtime2 = $TEST_39_MTIME ] || \
3517                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3518
3519                 cancel_lru_locks osc
3520                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3521         done
3522 }
3523 run_test 39f "create, stat, sleep, utime, stat ================="
3524
3525 # bug 11063
3526 test_39g() {
3527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3528
3529         echo hello >> $DIR1/$tfile
3530         local mtime1=`stat -c %Y $DIR1/$tfile`
3531
3532         sleep 2
3533         chmod o+r $DIR1/$tfile
3534
3535         for (( i=0; i < 2; i++ )) ; do
3536                 local mtime2=`stat -c %Y $DIR1/$tfile`
3537                 [ "$mtime1" = "$mtime2" ] || \
3538                         error "lost mtime: $mtime2, should be $mtime1"
3539
3540                 cancel_lru_locks osc
3541                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3542         done
3543 }
3544 run_test 39g "write, chmod, stat ==============================="
3545
3546 # bug 11063
3547 test_39h() {
3548         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3549
3550         touch $DIR1/$tfile
3551         sleep 1
3552
3553         local d1=`date`
3554         echo hello >> $DIR1/$tfile
3555         local mtime1=`stat -c %Y $DIR1/$tfile`
3556
3557         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3558         local d2=`date`
3559         if [ "$d1" != "$d2" ]; then
3560                 echo "write and touch not within one second"
3561         else
3562                 for (( i=0; i < 2; i++ )) ; do
3563                         local mtime2=`stat -c %Y $DIR1/$tfile`
3564                         [ "$mtime2" = $TEST_39_MTIME ] || \
3565                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3566
3567                         cancel_lru_locks osc
3568                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3569                 done
3570         fi
3571 }
3572 run_test 39h "write, utime within one second, stat ============="
3573
3574 test_39i() {
3575         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3576
3577         touch $DIR1/$tfile
3578         sleep 1
3579
3580         echo hello >> $DIR1/$tfile
3581         local mtime1=`stat -c %Y $DIR1/$tfile`
3582
3583         mv $DIR1/$tfile $DIR1/$tfile-1
3584
3585         for (( i=0; i < 2; i++ )) ; do
3586                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3587
3588                 [ "$mtime1" = "$mtime2" ] || \
3589                         error "lost mtime: $mtime2, should be $mtime1"
3590
3591                 cancel_lru_locks osc
3592                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3593         done
3594 }
3595 run_test 39i "write, rename, stat =============================="
3596
3597 test_39j() {
3598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3599
3600         start_full_debug_logging
3601         touch $DIR1/$tfile
3602         sleep 1
3603
3604         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3605         lctl set_param fail_loc=0x80000412
3606         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3607                 error "multiop failed"
3608         local multipid=$!
3609         local mtime1=`stat -c %Y $DIR1/$tfile`
3610
3611         mv $DIR1/$tfile $DIR1/$tfile-1
3612
3613         kill -USR1 $multipid
3614         wait $multipid || error "multiop close failed"
3615
3616         for (( i=0; i < 2; i++ )) ; do
3617                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3618                 [ "$mtime1" = "$mtime2" ] ||
3619                         error "mtime is lost on close: $mtime2, " \
3620                               "should be $mtime1"
3621
3622                 cancel_lru_locks osc
3623                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3624         done
3625         lctl set_param fail_loc=0
3626         stop_full_debug_logging
3627 }
3628 run_test 39j "write, rename, close, stat ======================="
3629
3630 test_39k() {
3631         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3632
3633         touch $DIR1/$tfile
3634         sleep 1
3635
3636         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3637         local multipid=$!
3638         local mtime1=`stat -c %Y $DIR1/$tfile`
3639
3640         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3641
3642         kill -USR1 $multipid
3643         wait $multipid || error "multiop close failed"
3644
3645         for (( i=0; i < 2; i++ )) ; do
3646                 local mtime2=`stat -c %Y $DIR1/$tfile`
3647
3648                 [ "$mtime2" = $TEST_39_MTIME ] || \
3649                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3650
3651                 cancel_lru_locks osc
3652                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3653         done
3654 }
3655 run_test 39k "write, utime, close, stat ========================"
3656
3657 # this should be set to future
3658 TEST_39_ATIME=`date -d "1 year" +%s`
3659
3660 test_39l() {
3661         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3662         remote_mds_nodsh && skip "remote MDS with nodsh"
3663
3664         local atime_diff=$(do_facet $SINGLEMDS \
3665                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3666         rm -rf $DIR/$tdir
3667         mkdir -p $DIR/$tdir
3668
3669         # test setting directory atime to future
3670         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3671         local atime=$(stat -c %X $DIR/$tdir)
3672         [ "$atime" = $TEST_39_ATIME ] ||
3673                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3674
3675         # test setting directory atime from future to now
3676         local now=$(date +%s)
3677         touch -a -d @$now $DIR/$tdir
3678
3679         atime=$(stat -c %X $DIR/$tdir)
3680         [ "$atime" -eq "$now"  ] ||
3681                 error "atime is not updated from future: $atime, $now"
3682
3683         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3684         sleep 3
3685
3686         # test setting directory atime when now > dir atime + atime_diff
3687         local d1=$(date +%s)
3688         ls $DIR/$tdir
3689         local d2=$(date +%s)
3690         cancel_lru_locks mdc
3691         atime=$(stat -c %X $DIR/$tdir)
3692         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3693                 error "atime is not updated  : $atime, should be $d2"
3694
3695         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3696         sleep 3
3697
3698         # test not setting directory atime when now < dir atime + atime_diff
3699         ls $DIR/$tdir
3700         cancel_lru_locks mdc
3701         atime=$(stat -c %X $DIR/$tdir)
3702         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3703                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3704
3705         do_facet $SINGLEMDS \
3706                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3707 }
3708 run_test 39l "directory atime update ==========================="
3709
3710 test_39m() {
3711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3712
3713         touch $DIR1/$tfile
3714         sleep 2
3715         local far_past_mtime=$(date -d "May 29 1953" +%s)
3716         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3717
3718         touch -m -d @$far_past_mtime $DIR1/$tfile
3719         touch -a -d @$far_past_atime $DIR1/$tfile
3720
3721         for (( i=0; i < 2; i++ )) ; do
3722                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3723                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3724                         error "atime or mtime set incorrectly"
3725
3726                 cancel_lru_locks osc
3727                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3728         done
3729 }
3730 run_test 39m "test atime and mtime before 1970"
3731
3732 test_39n() { # LU-3832
3733         remote_mds_nodsh && skip "remote MDS with nodsh"
3734
3735         local atime_diff=$(do_facet $SINGLEMDS \
3736                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3737         local atime0
3738         local atime1
3739         local atime2
3740
3741         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3742
3743         rm -rf $DIR/$tfile
3744         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3745         atime0=$(stat -c %X $DIR/$tfile)
3746
3747         sleep 5
3748         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3749         atime1=$(stat -c %X $DIR/$tfile)
3750
3751         sleep 5
3752         cancel_lru_locks mdc
3753         cancel_lru_locks osc
3754         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3755         atime2=$(stat -c %X $DIR/$tfile)
3756
3757         do_facet $SINGLEMDS \
3758                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3759
3760         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3761         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3762 }
3763 run_test 39n "check that O_NOATIME is honored"
3764
3765 test_39o() {
3766         TESTDIR=$DIR/$tdir/$tfile
3767         [ -e $TESTDIR ] && rm -rf $TESTDIR
3768         mkdir -p $TESTDIR
3769         cd $TESTDIR
3770         links1=2
3771         ls
3772         mkdir a b
3773         ls
3774         links2=$(stat -c %h .)
3775         [ $(($links1 + 2)) != $links2 ] &&
3776                 error "wrong links count $(($links1 + 2)) != $links2"
3777         rmdir b
3778         links3=$(stat -c %h .)
3779         [ $(($links1 + 1)) != $links3 ] &&
3780                 error "wrong links count $links1 != $links3"
3781         return 0
3782 }
3783 run_test 39o "directory cached attributes updated after create"
3784
3785 test_39p() {
3786         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3787
3788         local MDTIDX=1
3789         TESTDIR=$DIR/$tdir/$tdir
3790         [ -e $TESTDIR ] && rm -rf $TESTDIR
3791         test_mkdir -p $TESTDIR
3792         cd $TESTDIR
3793         links1=2
3794         ls
3795         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3796         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3797         ls
3798         links2=$(stat -c %h .)
3799         [ $(($links1 + 2)) != $links2 ] &&
3800                 error "wrong links count $(($links1 + 2)) != $links2"
3801         rmdir remote_dir2
3802         links3=$(stat -c %h .)
3803         [ $(($links1 + 1)) != $links3 ] &&
3804                 error "wrong links count $links1 != $links3"
3805         return 0
3806 }
3807 run_test 39p "remote directory cached attributes updated after create ========"
3808
3809
3810 test_39q() { # LU-8041
3811         local testdir=$DIR/$tdir
3812         mkdir -p $testdir
3813         multiop_bg_pause $testdir D_c || error "multiop failed"
3814         local multipid=$!
3815         cancel_lru_locks mdc
3816         kill -USR1 $multipid
3817         local atime=$(stat -c %X $testdir)
3818         [ "$atime" -ne 0 ] || error "atime is zero"
3819 }
3820 run_test 39q "close won't zero out atime"
3821
3822 test_40() {
3823         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3824         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3825                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3826         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3827                 error "$tfile is not 4096 bytes in size"
3828 }
3829 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3830
3831 test_41() {
3832         # bug 1553
3833         small_write $DIR/f41 18
3834 }
3835 run_test 41 "test small file write + fstat ====================="
3836
3837 count_ost_writes() {
3838         lctl get_param -n ${OSC}.*.stats |
3839                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3840                         END { printf("%0.0f", writes) }'
3841 }
3842
3843 # decent default
3844 WRITEBACK_SAVE=500
3845 DIRTY_RATIO_SAVE=40
3846 MAX_DIRTY_RATIO=50
3847 BG_DIRTY_RATIO_SAVE=10
3848 MAX_BG_DIRTY_RATIO=25
3849
3850 start_writeback() {
3851         trap 0
3852         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3853         # dirty_ratio, dirty_background_ratio
3854         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3855                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3856                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3857                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3858         else
3859                 # if file not here, we are a 2.4 kernel
3860                 kill -CONT `pidof kupdated`
3861         fi
3862 }
3863
3864 stop_writeback() {
3865         # setup the trap first, so someone cannot exit the test at the
3866         # exact wrong time and mess up a machine
3867         trap start_writeback EXIT
3868         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3869         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3870                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3871                 sysctl -w vm.dirty_writeback_centisecs=0
3872                 sysctl -w vm.dirty_writeback_centisecs=0
3873                 # save and increase /proc/sys/vm/dirty_ratio
3874                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3875                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3876                 # save and increase /proc/sys/vm/dirty_background_ratio
3877                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3878                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3879         else
3880                 # if file not here, we are a 2.4 kernel
3881                 kill -STOP `pidof kupdated`
3882         fi
3883 }
3884
3885 # ensure that all stripes have some grant before we test client-side cache
3886 setup_test42() {
3887         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3888                 dd if=/dev/zero of=$i bs=4k count=1
3889                 rm $i
3890         done
3891 }
3892
3893 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3894 # file truncation, and file removal.
3895 test_42a() {
3896         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3897
3898         setup_test42
3899         cancel_lru_locks $OSC
3900         stop_writeback
3901         sync; sleep 1; sync # just to be safe
3902         BEFOREWRITES=`count_ost_writes`
3903         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3904         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3905         AFTERWRITES=`count_ost_writes`
3906         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3907                 error "$BEFOREWRITES < $AFTERWRITES"
3908         start_writeback
3909 }
3910 run_test 42a "ensure that we don't flush on close"
3911
3912 test_42b() {
3913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3914
3915         setup_test42
3916         cancel_lru_locks $OSC
3917         stop_writeback
3918         sync
3919         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3920         BEFOREWRITES=$(count_ost_writes)
3921         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3922         AFTERWRITES=$(count_ost_writes)
3923         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3924                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3925         fi
3926         BEFOREWRITES=$(count_ost_writes)
3927         sync || error "sync: $?"
3928         AFTERWRITES=$(count_ost_writes)
3929         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3930                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3931         fi
3932         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3933         start_writeback
3934         return 0
3935 }
3936 run_test 42b "test destroy of file with cached dirty data ======"
3937
3938 # if these tests just want to test the effect of truncation,
3939 # they have to be very careful.  consider:
3940 # - the first open gets a {0,EOF}PR lock
3941 # - the first write conflicts and gets a {0, count-1}PW
3942 # - the rest of the writes are under {count,EOF}PW
3943 # - the open for truncate tries to match a {0,EOF}PR
3944 #   for the filesize and cancels the PWs.
3945 # any number of fixes (don't get {0,EOF} on open, match
3946 # composite locks, do smarter file size management) fix
3947 # this, but for now we want these tests to verify that
3948 # the cancellation with truncate intent works, so we
3949 # start the file with a full-file pw lock to match against
3950 # until the truncate.
3951 trunc_test() {
3952         test=$1
3953         file=$DIR/$test
3954         offset=$2
3955         cancel_lru_locks $OSC
3956         stop_writeback
3957         # prime the file with 0,EOF PW to match
3958         touch $file
3959         $TRUNCATE $file 0
3960         sync; sync
3961         # now the real test..
3962         dd if=/dev/zero of=$file bs=1024 count=100
3963         BEFOREWRITES=`count_ost_writes`
3964         $TRUNCATE $file $offset
3965         cancel_lru_locks $OSC
3966         AFTERWRITES=`count_ost_writes`
3967         start_writeback
3968 }
3969
3970 test_42c() {
3971         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3972
3973         trunc_test 42c 1024
3974         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3975                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3976         rm $file
3977 }
3978 run_test 42c "test partial truncate of file with cached dirty data"
3979
3980 test_42d() {
3981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3982
3983         trunc_test 42d 0
3984         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3985                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3986         rm $file
3987 }
3988 run_test 42d "test complete truncate of file with cached dirty data"
3989
3990 test_42e() { # bug22074
3991         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3992
3993         local TDIR=$DIR/${tdir}e
3994         local pagesz=$(page_size)
3995         local pages=16 # hardcoded 16 pages, don't change it.
3996         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3997         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3998         local max_dirty_mb
3999         local warmup_files
4000
4001         test_mkdir $DIR/${tdir}e
4002         $SETSTRIPE -c 1 $TDIR
4003         createmany -o $TDIR/f $files
4004
4005         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4006
4007         # we assume that with $OSTCOUNT files, at least one of them will
4008         # be allocated on OST0.
4009         warmup_files=$((OSTCOUNT * max_dirty_mb))
4010         createmany -o $TDIR/w $warmup_files
4011
4012         # write a large amount of data into one file and sync, to get good
4013         # avail_grant number from OST.
4014         for ((i=0; i<$warmup_files; i++)); do
4015                 idx=$($GETSTRIPE -i $TDIR/w$i)
4016                 [ $idx -ne 0 ] && continue
4017                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4018                 break
4019         done
4020         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4021         sync
4022         $LCTL get_param $proc_osc0/cur_dirty_bytes
4023         $LCTL get_param $proc_osc0/cur_grant_bytes
4024
4025         # create as much dirty pages as we can while not to trigger the actual
4026         # RPCs directly. but depends on the env, VFS may trigger flush during this
4027         # period, hopefully we are good.
4028         for ((i=0; i<$warmup_files; i++)); do
4029                 idx=$($GETSTRIPE -i $TDIR/w$i)
4030                 [ $idx -ne 0 ] && continue
4031                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4032         done
4033         $LCTL get_param $proc_osc0/cur_dirty_bytes
4034         $LCTL get_param $proc_osc0/cur_grant_bytes
4035
4036         # perform the real test
4037         $LCTL set_param $proc_osc0/rpc_stats 0
4038         for ((;i<$files; i++)); do
4039                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4040                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
4041         done
4042         sync
4043         $LCTL get_param $proc_osc0/rpc_stats
4044
4045         local percent=0
4046         local have_ppr=false
4047         $LCTL get_param $proc_osc0/rpc_stats |
4048                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4049                         # skip lines until we are at the RPC histogram data
4050                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4051                         $have_ppr || continue
4052
4053                         # we only want the percent stat for < 16 pages
4054                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4055
4056                         percent=$((percent + WPCT))
4057                         if [[ $percent -gt 15 ]]; then
4058                                 error "less than 16-pages write RPCs" \
4059                                       "$percent% > 15%"
4060                                 break
4061                         fi
4062                 done
4063         rm -rf $TDIR
4064 }
4065 run_test 42e "verify sub-RPC writes are not done synchronously"
4066
4067 test_43A() { # was test_43
4068         test_mkdir $DIR/$tdir
4069         cp -p /bin/ls $DIR/$tdir/$tfile
4070         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4071         pid=$!
4072         # give multiop a chance to open
4073         sleep 1
4074
4075         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4076         kill -USR1 $pid
4077 }
4078 run_test 43A "execution of file opened for write should return -ETXTBSY"
4079
4080 test_43a() {
4081         test_mkdir $DIR/$tdir
4082         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4083                 cp -p multiop $DIR/$tdir/multiop
4084         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4085                 error "multiop open $TMP/$tfile.junk failed"
4086         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4087         MULTIOP_PID=$!
4088         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4089         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4090         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4091 }
4092 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4093
4094 test_43b() {
4095         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4096
4097         test_mkdir $DIR/$tdir
4098         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4099                 cp -p multiop $DIR/$tdir/multiop
4100         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4101                 error "multiop open $TMP/$tfile.junk failed"
4102         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4103         MULTIOP_PID=$!
4104         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4105         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4106         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4107 }
4108 run_test 43b "truncate of file being executed should return -ETXTBSY"
4109
4110 test_43c() {
4111         local testdir="$DIR/$tdir"
4112         test_mkdir $testdir
4113         cp $SHELL $testdir/
4114         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4115                 ( cd $testdir && md5sum -c )
4116 }
4117 run_test 43c "md5sum of copy into lustre"
4118
4119 test_44A() { # was test_44
4120         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4121
4122         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4123         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4124 }
4125 run_test 44A "zero length read from a sparse stripe"
4126
4127 test_44a() {
4128         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4129                 awk '{ print $2 }')
4130         [ -z "$nstripe" ] && skip "can't get stripe info"
4131         [[ $nstripe -gt $OSTCOUNT ]] &&
4132                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4133
4134         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4135                 awk '{ print $2 }')
4136         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4137                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4138                         awk '{ print $2 }')
4139         fi
4140
4141         OFFSETS="0 $((stride/2)) $((stride-1))"
4142         for offset in $OFFSETS; do
4143                 for i in $(seq 0 $((nstripe-1))); do
4144                         local GLOBALOFFSETS=""
4145                         # size in Bytes
4146                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4147                         local myfn=$DIR/d44a-$size
4148                         echo "--------writing $myfn at $size"
4149                         ll_sparseness_write $myfn $size ||
4150                                 error "ll_sparseness_write"
4151                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4152                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4153                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4154
4155                         for j in $(seq 0 $((nstripe-1))); do
4156                                 # size in Bytes
4157                                 size=$((((j + $nstripe )*$stride + $offset)))
4158                                 ll_sparseness_write $myfn $size ||
4159                                         error "ll_sparseness_write"
4160                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4161                         done
4162                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4163                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4164                         rm -f $myfn
4165                 done
4166         done
4167 }
4168 run_test 44a "test sparse pwrite ==============================="
4169
4170 dirty_osc_total() {
4171         tot=0
4172         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4173                 tot=$(($tot + $d))
4174         done
4175         echo $tot
4176 }
4177 do_dirty_record() {
4178         before=`dirty_osc_total`
4179         echo executing "\"$*\""
4180         eval $*
4181         after=`dirty_osc_total`
4182         echo before $before, after $after
4183 }
4184 test_45() {
4185         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4186
4187         f="$DIR/f45"
4188         # Obtain grants from OST if it supports it
4189         echo blah > ${f}_grant
4190         stop_writeback
4191         sync
4192         do_dirty_record "echo blah > $f"
4193         [[ $before -eq $after ]] && error "write wasn't cached"
4194         do_dirty_record "> $f"
4195         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4196         do_dirty_record "echo blah > $f"
4197         [[ $before -eq $after ]] && error "write wasn't cached"
4198         do_dirty_record "sync"
4199         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4200         do_dirty_record "echo blah > $f"
4201         [[ $before -eq $after ]] && error "write wasn't cached"
4202         do_dirty_record "cancel_lru_locks osc"
4203         [[ $before -gt $after ]] ||
4204                 error "lock cancellation didn't lower dirty count"
4205         start_writeback
4206 }
4207 run_test 45 "osc io page accounting ============================"
4208
4209 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4210 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4211 # objects offset and an assert hit when an rpc was built with 1023's mapped
4212 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4213 test_46() {
4214         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4215
4216         f="$DIR/f46"
4217         stop_writeback
4218         sync
4219         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4220         sync
4221         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
4222         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
4223         sync
4224         start_writeback
4225 }
4226 run_test 46 "dirtying a previously written page ================"
4227
4228 # test_47 is removed "Device nodes check" is moved to test_28
4229
4230 test_48a() { # bug 2399
4231         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4232         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4233                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4234
4235         test_mkdir $DIR/$tdir
4236         cd $DIR/$tdir
4237         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4238         test_mkdir $DIR/$tdir
4239         touch foo || error "'touch foo' failed after recreating cwd"
4240         test_mkdir bar
4241         touch .foo || error "'touch .foo' failed after recreating cwd"
4242         test_mkdir .bar
4243         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4244         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4245         cd . || error "'cd .' failed after recreating cwd"
4246         mkdir . && error "'mkdir .' worked after recreating cwd"
4247         rmdir . && error "'rmdir .' worked after recreating cwd"
4248         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4249         cd .. || error "'cd ..' failed after recreating cwd"
4250 }
4251 run_test 48a "Access renamed working dir (should return errors)="
4252
4253 test_48b() { # bug 2399
4254         rm -rf $DIR/$tdir
4255         test_mkdir $DIR/$tdir
4256         cd $DIR/$tdir
4257         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4258         touch foo && error "'touch foo' worked after removing cwd"
4259         mkdir foo && error "'mkdir foo' worked after removing cwd"
4260         touch .foo && error "'touch .foo' worked after removing cwd"
4261         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4262         ls . > /dev/null && error "'ls .' worked after removing cwd"
4263         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4264         mkdir . && error "'mkdir .' worked after removing cwd"
4265         rmdir . && error "'rmdir .' worked after removing cwd"
4266         ln -s . foo && error "'ln -s .' worked after removing cwd"
4267         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4268 }
4269 run_test 48b "Access removed working dir (should return errors)="
4270
4271 test_48c() { # bug 2350
4272         #lctl set_param debug=-1
4273         #set -vx
4274         rm -rf $DIR/$tdir
4275         test_mkdir -p $DIR/$tdir/dir
4276         cd $DIR/$tdir/dir
4277         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4278         $TRACE touch foo && error "touch foo worked after removing cwd"
4279         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4280         touch .foo && error "touch .foo worked after removing cwd"
4281         mkdir .foo && error "mkdir .foo worked after removing cwd"
4282         $TRACE ls . && error "'ls .' worked after removing cwd"
4283         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4284         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4285         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4286         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4287         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4288 }
4289 run_test 48c "Access removed working subdir (should return errors)"
4290
4291 test_48d() { # bug 2350
4292         #lctl set_param debug=-1
4293         #set -vx
4294         rm -rf $DIR/$tdir
4295         test_mkdir -p $DIR/$tdir/dir
4296         cd $DIR/$tdir/dir
4297         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4298         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4299         $TRACE touch foo && error "'touch foo' worked after removing parent"
4300         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4301         touch .foo && error "'touch .foo' worked after removing parent"
4302         mkdir .foo && error "mkdir .foo worked after removing parent"
4303         $TRACE ls . && error "'ls .' worked after removing parent"
4304         $TRACE ls .. && error "'ls ..' worked after removing parent"
4305         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4306         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4307         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4308         true
4309 }
4310 run_test 48d "Access removed parent subdir (should return errors)"
4311
4312 test_48e() { # bug 4134
4313         #lctl set_param debug=-1
4314         #set -vx
4315         rm -rf $DIR/$tdir
4316         test_mkdir -p $DIR/$tdir/dir
4317         cd $DIR/$tdir/dir
4318         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4319         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4320         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4321         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4322         # On a buggy kernel addition of "touch foo" after cd .. will
4323         # produce kernel oops in lookup_hash_it
4324         touch ../foo && error "'cd ..' worked after recreate parent"
4325         cd $DIR
4326         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4327 }
4328 run_test 48e "Access to recreated parent subdir (should return errors)"
4329
4330 test_49() { # LU-1030
4331         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4332         remote_ost_nodsh && skip "remote OST with nodsh"
4333
4334         # get ost1 size - lustre-OST0000
4335         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4336                 awk '{ print $4 }')
4337         # write 800M at maximum
4338         [[ $ost1_size -lt 2 ]] && ost1_size=2
4339         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4340
4341         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4342         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4343         local dd_pid=$!
4344
4345         # change max_pages_per_rpc while writing the file
4346         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4347         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4348         # loop until dd process exits
4349         while ps ax -opid | grep -wq $dd_pid; do
4350                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4351                 sleep $((RANDOM % 5 + 1))
4352         done
4353         # restore original max_pages_per_rpc
4354         $LCTL set_param $osc1_mppc=$orig_mppc
4355         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4356 }
4357 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4358
4359 test_50() {
4360         # bug 1485
4361         test_mkdir $DIR/$tdir
4362         cd $DIR/$tdir
4363         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4364 }
4365 run_test 50 "special situations: /proc symlinks  ==============="
4366
4367 test_51a() {    # was test_51
4368         # bug 1516 - create an empty entry right after ".." then split dir
4369         test_mkdir -c1 $DIR/$tdir
4370         touch $DIR/$tdir/foo
4371         $MCREATE $DIR/$tdir/bar
4372         rm $DIR/$tdir/foo
4373         createmany -m $DIR/$tdir/longfile 201
4374         FNUM=202
4375         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4376                 $MCREATE $DIR/$tdir/longfile$FNUM
4377                 FNUM=$(($FNUM + 1))
4378                 echo -n "+"
4379         done
4380         echo
4381         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4382 }
4383 run_test 51a "special situations: split htree with empty entry =="
4384
4385 cleanup_print_lfs_df () {
4386         trap 0
4387         $LFS df
4388         $LFS df -i
4389 }
4390
4391 test_51b() {
4392         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4393
4394         local dir=$DIR/$tdir
4395         local nrdirs=$((65536 + 100))
4396
4397         # cleanup the directory
4398         rm -fr $dir
4399
4400         test_mkdir -c1 $dir
4401
4402         $LFS df
4403         $LFS df -i
4404         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4405         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4406         [[ $numfree -lt $nrdirs ]] &&
4407                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4408
4409         # need to check free space for the directories as well
4410         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4411         numfree=$(( blkfree / $(fs_inode_ksize) ))
4412         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4413
4414         trap cleanup_print_lfs_df EXIT
4415
4416         # create files
4417         createmany -d $dir/d $nrdirs || {
4418                 unlinkmany $dir/d $nrdirs
4419                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4420         }
4421
4422         # really created :
4423         nrdirs=$(ls -U $dir | wc -l)
4424
4425         # unlink all but 100 subdirectories, then check it still works
4426         local left=100
4427         local delete=$((nrdirs - left))
4428
4429         $LFS df
4430         $LFS df -i
4431
4432         # for ldiskfs the nlink count should be 1, but this is OSD specific
4433         # and so this is listed for informational purposes only
4434         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4435         unlinkmany -d $dir/d $delete ||
4436                 error "unlink of first $delete subdirs failed"
4437
4438         echo "nlink between: $(stat -c %h $dir)"
4439         local found=$(ls -U $dir | wc -l)
4440         [ $found -ne $left ] &&
4441                 error "can't find subdirs: found only $found, expected $left"
4442
4443         unlinkmany -d $dir/d $delete $left ||
4444                 error "unlink of second $left subdirs failed"
4445         # regardless of whether the backing filesystem tracks nlink accurately
4446         # or not, the nlink count shouldn't be more than "." and ".." here
4447         local after=$(stat -c %h $dir)
4448         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4449                 echo "nlink after: $after"
4450
4451         cleanup_print_lfs_df
4452 }
4453 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4454
4455 test_51d() {
4456         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4457         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4458
4459         test_mkdir $DIR/$tdir
4460         createmany -o $DIR/$tdir/t- 1000
4461         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4462         for N in $(seq 0 $((OSTCOUNT - 1))); do
4463                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4464                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4465                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4466                         '($1 == '$N') { objs += 1 } \
4467                         END { printf("%0.0f", objs) }')
4468                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4469         done
4470         unlinkmany $DIR/$tdir/t- 1000
4471
4472         NLAST=0
4473         for N in $(seq 1 $((OSTCOUNT - 1))); do
4474                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4475                         error "OST $N has less objects vs OST $NLAST" \
4476                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4477                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4478                         error "OST $N has less objects vs OST $NLAST" \
4479                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4480
4481                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4482                         error "OST $N has less #0 objects vs OST $NLAST" \
4483                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4484                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4485                         error "OST $N has less #0 objects vs OST $NLAST" \
4486                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4487                 NLAST=$N
4488         done
4489         rm -f $TMP/$tfile
4490 }
4491 run_test 51d "check object distribution"
4492
4493 test_51e() {
4494         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4495                 skip_env "ldiskfs only test"
4496         fi
4497
4498         test_mkdir -c1 $DIR/$tdir
4499         test_mkdir -c1 $DIR/$tdir/d0
4500
4501         touch $DIR/$tdir/d0/foo
4502         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4503                 error "file exceed 65000 nlink limit!"
4504         unlinkmany $DIR/$tdir/d0/f- 65001
4505         return 0
4506 }
4507 run_test 51e "check file nlink limit"
4508
4509 test_51f() {
4510         test_mkdir $DIR/$tdir
4511
4512         local max=100000
4513         local ulimit_old=$(ulimit -n)
4514         local spare=20 # number of spare fd's for scripts/libraries, etc.
4515         local mdt=$($LFS getstripe -m $DIR/$tdir)
4516         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4517
4518         echo "MDT$mdt numfree=$numfree, max=$max"
4519         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4520         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4521                 while ! ulimit -n $((numfree + spare)); do
4522                         numfree=$((numfree * 3 / 4))
4523                 done
4524                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4525         else
4526                 echo "left ulimit at $ulimit_old"
4527         fi
4528
4529         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4530                 unlinkmany $DIR/$tdir/f $numfree
4531                 error "create+open $numfree files in $DIR/$tdir failed"
4532         }
4533         ulimit -n $ulimit_old
4534
4535         # if createmany exits at 120s there will be fewer than $numfree files
4536         unlinkmany $DIR/$tdir/f $numfree || true
4537 }
4538 run_test 51f "check many open files limit"
4539
4540 test_52a() {
4541         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4542         test_mkdir $DIR/$tdir
4543         touch $DIR/$tdir/foo
4544         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4545         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4546         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4547         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4548         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4549                                         error "link worked"
4550         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4551         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4552         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4553                                                      error "lsattr"
4554         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4555         cp -r $DIR/$tdir $TMP/
4556         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4557 }
4558 run_test 52a "append-only flag test (should return errors)"
4559
4560 test_52b() {
4561         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4562         test_mkdir $DIR/$tdir
4563         touch $DIR/$tdir/foo
4564         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4565         cat test > $DIR/$tdir/foo && error "cat test worked"
4566         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4567         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4568         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4569                                         error "link worked"
4570         echo foo >> $DIR/$tdir/foo && error "echo worked"
4571         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4572         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4573         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4574         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4575                                                         error "lsattr"
4576         chattr -i $DIR/$tdir/foo || error "chattr failed"
4577
4578         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4579 }
4580 run_test 52b "immutable flag test (should return errors) ======="
4581
4582 test_53() {
4583         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4584         remote_mds_nodsh && skip "remote MDS with nodsh"
4585         remote_ost_nodsh && skip "remote OST with nodsh"
4586
4587         local param
4588         local param_seq
4589         local ostname
4590         local mds_last
4591         local mds_last_seq
4592         local ost_last
4593         local ost_last_seq
4594         local ost_last_id
4595         local ostnum
4596         local node
4597         local found=false
4598         local support_last_seq=true
4599
4600         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4601                 support_last_seq=false
4602
4603         # only test MDT0000
4604         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4605         local value
4606         for value in $(do_facet $SINGLEMDS \
4607                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4608                 param=$(echo ${value[0]} | cut -d "=" -f1)
4609                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4610
4611                 if $support_last_seq; then
4612                         param_seq=$(echo $param |
4613                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4614                         mds_last_seq=$(do_facet $SINGLEMDS \
4615                                        $LCTL get_param -n $param_seq)
4616                 fi
4617                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4618
4619                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4620                 node=$(facet_active_host ost$((ostnum+1)))
4621                 param="obdfilter.$ostname.last_id"
4622                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4623                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4624                         ost_last_id=$ost_last
4625
4626                         if $support_last_seq; then
4627                                 ost_last_id=$(echo $ost_last |
4628                                               awk -F':' '{print $2}' |
4629                                               sed -e "s/^0x//g")
4630                                 ost_last_seq=$(echo $ost_last |
4631                                                awk -F':' '{print $1}')
4632                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4633                         fi
4634
4635                         if [[ $ost_last_id != $mds_last ]]; then
4636                                 error "$ost_last_id != $mds_last"
4637                         else
4638                                 found=true
4639                                 break
4640                         fi
4641                 done
4642         done
4643         $found || error "can not match last_seq/last_id for $mdtosc"
4644         return 0
4645 }
4646 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4647
4648 test_54a() {
4649         perl -MSocket -e ';' || skip "no Socket perl module installed"
4650
4651         $SOCKETSERVER $DIR/socket ||
4652                 error "$SOCKETSERVER $DIR/socket failed: $?"
4653         $SOCKETCLIENT $DIR/socket ||
4654                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4655         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4656 }
4657 run_test 54a "unix domain socket test =========================="
4658
4659 test_54b() {
4660         f="$DIR/f54b"
4661         mknod $f c 1 3
4662         chmod 0666 $f
4663         dd if=/dev/zero of=$f bs=$(page_size) count=1
4664 }
4665 run_test 54b "char device works in lustre ======================"
4666
4667 find_loop_dev() {
4668         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4669         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4670         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4671
4672         for i in $(seq 3 7); do
4673                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4674                 LOOPDEV=$LOOPBASE$i
4675                 LOOPNUM=$i
4676                 break
4677         done
4678 }
4679
4680 cleanup_54c() {
4681         local rc=0
4682         loopdev="$DIR/loop54c"
4683
4684         trap 0
4685         $UMOUNT $DIR/$tdir || rc=$?
4686         losetup -d $loopdev || true
4687         losetup -d $LOOPDEV || true
4688         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4689         return $rc
4690 }
4691
4692 test_54c() {
4693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4694
4695         loopdev="$DIR/loop54c"
4696
4697         find_loop_dev
4698         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4699         trap cleanup_54c EXIT
4700         mknod $loopdev b 7 $LOOPNUM
4701         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4702         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4703         losetup $loopdev $DIR/$tfile ||
4704                 error "can't set up $loopdev for $DIR/$tfile"
4705         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4706         test_mkdir $DIR/$tdir
4707         mount -t ext2 $loopdev $DIR/$tdir ||
4708                 error "error mounting $loopdev on $DIR/$tdir"
4709         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4710                 error "dd write"
4711         df $DIR/$tdir
4712         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4713                 error "dd read"
4714         cleanup_54c
4715 }
4716 run_test 54c "block device works in lustre ====================="
4717
4718 test_54d() {
4719         f="$DIR/f54d"
4720         string="aaaaaa"
4721         mknod $f p
4722         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4723 }
4724 run_test 54d "fifo device works in lustre ======================"
4725
4726 test_54e() {
4727         f="$DIR/f54e"
4728         string="aaaaaa"
4729         cp -aL /dev/console $f
4730         echo $string > $f || error "echo $string to $f failed"
4731 }
4732 run_test 54e "console/tty device works in lustre ======================"
4733
4734 test_56a() {
4735         local numfiles=3
4736         local dir=$DIR/$tdir
4737
4738         rm -rf $dir
4739         test_mkdir -p $dir/dir
4740         for i in $(seq $numfiles); do
4741                 touch $dir/file$i
4742                 touch $dir/dir/file$i
4743         done
4744
4745         local numcomp=$($LFS getstripe --component-count $dir)
4746
4747         [[ $numcomp == 0 ]] && numcomp=1
4748
4749         # test lfs getstripe with --recursive
4750         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4751
4752         [[ $filenum -eq $((numfiles * 2)) ]] ||
4753                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4754         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4755         [[ $filenum -eq $numfiles ]] ||
4756                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4757         echo "$LFS getstripe showed obdidx or l_ost_idx"
4758
4759         # test lfs getstripe with file instead of dir
4760         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4761         [[ $filenum -eq 1 ]] ||
4762                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4763         echo "$LFS getstripe file1 passed"
4764
4765         #test lfs getstripe with --verbose
4766         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4767         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4768                 error "$LFS getstripe --verbose $dir: "\
4769                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4770         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4771                 error "$LFS getstripe $dir: showed lmm_magic"
4772
4773         #test lfs getstripe with -v prints lmm_fid
4774         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4775         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4776                 error "$LFS getstripe -v $dir: "\
4777                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4778         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4779                 error "$LFS getstripe $dir: showed lmm_fid by default"
4780         echo "$LFS getstripe --verbose passed"
4781
4782         #check for FID information
4783         local fid1=$($LFS getstripe --fid $dir/file1)
4784         local fid2=$($LFS getstripe --verbose $dir/file1 |
4785                      awk '/lmm_fid: / { print $2; exit; }')
4786         local fid3=$($LFS path2fid $dir/file1)
4787
4788         [ "$fid1" != "$fid2" ] &&
4789                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4790         [ "$fid1" != "$fid3" ] &&
4791                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4792         echo "$LFS getstripe --fid passed"
4793
4794         #test lfs getstripe with --obd
4795         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4796                 error "$LFS getstripe --obd wrong_uuid: should return error"
4797
4798         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4799
4800         local ostidx=1
4801         local obduuid=$(ostuuid_from_index $ostidx)
4802         local found=$($LFS getstripe -r --obd $obduuid $dir |
4803                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4804
4805         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4806         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4807                 ((filenum--))
4808         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4809                 ((filenum--))
4810
4811         [[ $found -eq $filenum ]] ||
4812                 error "$LFS getstripe --obd: found $found expect $filenum"
4813         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4814                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4815                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4816                 error "$LFS getstripe --obd: should not show file on other obd"
4817         echo "$LFS getstripe --obd passed"
4818 }
4819 run_test 56a "check $LFS getstripe"
4820
4821 test_56b() {
4822         local dir=$DIR/$tdir
4823         local numdirs=3
4824
4825         test_mkdir $dir
4826         for i in $(seq $numdirs); do
4827                 test_mkdir $dir/dir$i
4828         done
4829
4830         # test lfs getdirstripe default mode is non-recursion, which is
4831         # different from lfs getstripe
4832         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4833
4834         [[ $dircnt -eq 1 ]] ||
4835                 error "$LFS getdirstripe: found $dircnt, not 1"
4836         dircnt=$($LFS getdirstripe --recursive $dir |
4837                 grep -c lmv_stripe_count)
4838         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4839                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4840 }
4841 run_test 56b "check $LFS getdirstripe"
4842
4843 test_56c() {
4844         remote_ost_nodsh && skip "remote OST with nodsh"
4845
4846         local ost_idx=0
4847         local ost_name=$(ostname_from_index $ost_idx)
4848         local old_status=$(ost_dev_status $ost_idx)
4849
4850         [[ -z "$old_status" ]] ||
4851                 skip_env "OST $ost_name is in $old_status status"
4852
4853         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4854         sleep_maxage
4855
4856         local new_status=$(ost_dev_status $ost_idx)
4857
4858         [[ "$new_status" = "D" ]] ||
4859                 error "OST $ost_name is in status of '$new_status', not 'D'"
4860
4861         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4862         sleep_maxage
4863
4864         new_status=$(ost_dev_status $ost_idx)
4865         [[ -z "$new_status" ]] ||
4866                 error "OST $ost_name is in status of '$new_status', not ''"
4867 }
4868 run_test 56c "check 'lfs df' showing device status"
4869
4870 NUMFILES=3
4871 NUMDIRS=3
4872 setup_56() {
4873         local local_tdir="$1"
4874         local local_numfiles="$2"
4875         local local_numdirs="$3"
4876         local dir_params="$4"
4877         local dir_stripe_params="$5"
4878
4879         if [ ! -d "$local_tdir" ] ; then
4880                 test_mkdir -p $dir_stripe_params $local_tdir
4881                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4882                 for i in $(seq $local_numfiles) ; do
4883                         touch $local_tdir/file$i
4884                 done
4885                 for i in $(seq $local_numdirs) ; do
4886                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4887                         for j in $(seq $local_numfiles) ; do
4888                                 touch $local_tdir/dir$i/file$j
4889                         done
4890                 done
4891         fi
4892 }
4893
4894 setup_56_special() {
4895         local local_tdir=$1
4896         local local_numfiles=$2
4897         local local_numdirs=$3
4898
4899         setup_56 $local_tdir $local_numfiles $local_numdirs
4900
4901         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4902                 for i in $(seq $local_numfiles) ; do
4903                         mknod $local_tdir/loop${i}b b 7 $i
4904                         mknod $local_tdir/null${i}c c 1 3
4905                         ln -s $local_tdir/file1 $local_tdir/link${i}
4906                 done
4907                 for i in $(seq $local_numdirs) ; do
4908                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4909                         mknod $local_tdir/dir$i/null${i}c c 1 3
4910                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4911                 done
4912         fi
4913 }
4914
4915 test_56g() {
4916         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4917         local expected=$(($NUMDIRS + 2))
4918
4919         setup_56 $dir $NUMFILES $NUMDIRS
4920
4921         # test lfs find with -name
4922         for i in $(seq $NUMFILES) ; do
4923                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4924
4925                 [ $nums -eq $expected ] ||
4926                         error "lfs find -name '*$i' $dir wrong: "\
4927                               "found $nums, expected $expected"
4928         done
4929 }
4930 run_test 56g "check lfs find -name"
4931
4932 test_56h() {
4933         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4934         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4935
4936         setup_56 $dir $NUMFILES $NUMDIRS
4937
4938         # test lfs find with ! -name
4939         for i in $(seq $NUMFILES) ; do
4940                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4941
4942                 [ $nums -eq $expected ] ||
4943                         error "lfs find ! -name '*$i' $dir wrong: "\
4944                               "found $nums, expected $expected"
4945         done
4946 }
4947 run_test 56h "check lfs find ! -name"
4948
4949 test_56i() {
4950         local dir=$DIR/$tdir
4951
4952         test_mkdir $dir
4953
4954         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4955         local out=$($cmd)
4956
4957         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4958 }
4959 run_test 56i "check 'lfs find -ost UUID' skips directories"
4960
4961 test_56j() {
4962         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4963
4964         setup_56_special $dir $NUMFILES $NUMDIRS
4965
4966         local expected=$((NUMDIRS + 1))
4967         local cmd="$LFS find -type d $dir"
4968         local nums=$($cmd | wc -l)
4969
4970         [ $nums -eq $expected ] ||
4971                 error "'$cmd' wrong: found $nums, expected $expected"
4972 }
4973 run_test 56j "check lfs find -type d"
4974
4975 test_56k() {
4976         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4977
4978         setup_56_special $dir $NUMFILES $NUMDIRS
4979
4980         local expected=$(((NUMDIRS + 1) * NUMFILES))
4981         local cmd="$LFS find -type f $dir"
4982         local nums=$($cmd | wc -l)
4983
4984         [ $nums -eq $expected ] ||
4985                 error "'$cmd' wrong: found $nums, expected $expected"
4986 }
4987 run_test 56k "check lfs find -type f"
4988
4989 test_56l() {
4990         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4991
4992         setup_56_special $dir $NUMFILES $NUMDIRS
4993
4994         local expected=$((NUMDIRS + NUMFILES))
4995         local cmd="$LFS find -type b $dir"
4996         local nums=$($cmd | wc -l)
4997
4998         [ $nums -eq $expected ] ||
4999                 error "'$cmd' wrong: found $nums, expected $expected"
5000 }
5001 run_test 56l "check lfs find -type b"
5002
5003 test_56m() {
5004         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5005
5006         setup_56_special $dir $NUMFILES $NUMDIRS
5007
5008         local expected=$((NUMDIRS + NUMFILES))
5009         local cmd="$LFS find -type c $dir"
5010         local nums=$($cmd | wc -l)
5011         [ $nums -eq $expected ] ||
5012                 error "'$cmd' wrong: found $nums, expected $expected"
5013 }
5014 run_test 56m "check lfs find -type c"
5015
5016 test_56n() {
5017         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5018         setup_56_special $dir $NUMFILES $NUMDIRS
5019
5020         local expected=$((NUMDIRS + NUMFILES))
5021         local cmd="$LFS find -type l $dir"
5022         local nums=$($cmd | wc -l)
5023
5024         [ $nums -eq $expected ] ||
5025                 error "'$cmd' wrong: found $nums, expected $expected"
5026 }
5027 run_test 56n "check lfs find -type l"
5028
5029 test_56o() {
5030         local dir=$DIR/$tdir
5031
5032         setup_56 $dir $NUMFILES $NUMDIRS
5033         utime $dir/file1 > /dev/null || error "utime (1)"
5034         utime $dir/file2 > /dev/null || error "utime (2)"
5035         utime $dir/dir1 > /dev/null || error "utime (3)"
5036         utime $dir/dir2 > /dev/null || error "utime (4)"
5037         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5038         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5039
5040         local expected=4
5041         local nums=$($LFS find -mtime +0 $dir | wc -l)
5042
5043         [ $nums -eq $expected ] ||
5044                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5045
5046         expected=12
5047         cmd="$LFS find -mtime 0 $dir"
5048         nums=$($cmd | wc -l)
5049         [ $nums -eq $expected ] ||
5050                 error "'$cmd' wrong: found $nums, expected $expected"
5051 }
5052 run_test 56o "check lfs find -mtime for old files"
5053
5054 test_56p() {
5055         [ $RUNAS_ID -eq $UID ] &&
5056                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5057
5058         local dir=$DIR/$tdir
5059
5060         setup_56 $dir $NUMFILES $NUMDIRS
5061         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5062
5063         local expected=$NUMFILES
5064         local cmd="$LFS find -uid $RUNAS_ID $dir"
5065         local nums=$($cmd | wc -l)
5066
5067         [ $nums -eq $expected ] ||
5068                 error "'$cmd' wrong: found $nums, expected $expected"
5069
5070         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5071         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5072         nums=$($cmd | wc -l)
5073         [ $nums -eq $expected ] ||
5074                 error "'$cmd' wrong: found $nums, expected $expected"
5075 }
5076 run_test 56p "check lfs find -uid and ! -uid"
5077
5078 test_56q() {
5079         [ $RUNAS_ID -eq $UID ] &&
5080                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5081
5082         local dir=$DIR/$tdir
5083
5084         setup_56 $dir $NUMFILES $NUMDIRS
5085         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5086
5087         local expected=$NUMFILES
5088         local cmd="$LFS find -gid $RUNAS_GID $dir"
5089         local nums=$($cmd | wc -l)
5090
5091         [ $nums -eq $expected ] ||
5092                 error "'$cmd' wrong: found $nums, expected $expected"
5093
5094         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5095         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5096         nums=$($cmd | wc -l)
5097         [ $nums -eq $expected ] ||
5098                 error "'$cmd' wrong: found $nums, expected $expected"
5099 }
5100 run_test 56q "check lfs find -gid and ! -gid"
5101
5102 test_56r() {
5103         local dir=$DIR/$tdir
5104
5105         setup_56 $dir $NUMFILES $NUMDIRS
5106
5107         local expected=12
5108         local cmd="$LFS find -size 0 -type f $dir"
5109         local nums=$($cmd | wc -l)
5110
5111         [ $nums -eq $expected ] ||
5112                 error "'$cmd' wrong: found $nums, expected $expected"
5113         expected=0
5114         cmd="$LFS find ! -size 0 -type f $dir"
5115         nums=$($cmd | wc -l)
5116         [ $nums -eq $expected ] ||
5117                 error "'$cmd' wrong: found $nums, expected $expected"
5118         echo "test" > $dir/$tfile
5119         echo "test2" > $dir/$tfile.2 && sync
5120         expected=1
5121         cmd="$LFS find -size 5 -type f $dir"
5122         nums=$($cmd | wc -l)
5123         [ $nums -eq $expected ] ||
5124                 error "'$cmd' wrong: found $nums, expected $expected"
5125         expected=1
5126         cmd="$LFS find -size +5 -type f $dir"
5127         nums=$($cmd | wc -l)
5128         [ $nums -eq $expected ] ||
5129                 error "'$cmd' wrong: found $nums, expected $expected"
5130         expected=2
5131         cmd="$LFS find -size +0 -type f $dir"
5132         nums=$($cmd | wc -l)
5133         [ $nums -eq $expected ] ||
5134                 error "'$cmd' wrong: found $nums, expected $expected"
5135         expected=2
5136         cmd="$LFS find ! -size -5 -type f $dir"
5137         nums=$($cmd | wc -l)
5138         [ $nums -eq $expected ] ||
5139                 error "'$cmd' wrong: found $nums, expected $expected"
5140         expected=12
5141         cmd="$LFS find -size -5 -type f $dir"
5142         nums=$($cmd | wc -l)
5143         [ $nums -eq $expected ] ||
5144                 error "'$cmd' wrong: found $nums, expected $expected"
5145 }
5146 run_test 56r "check lfs find -size works"
5147
5148 test_56s() { # LU-611 #LU-9369
5149         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5150
5151         local dir=$DIR/$tdir
5152         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5153
5154         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5155         for i in $(seq $NUMDIRS); do
5156                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5157         done
5158
5159         local expected=$NUMDIRS
5160         local cmd="$LFS find -c $OSTCOUNT $dir"
5161         local nums=$($cmd | wc -l)
5162
5163         [ $nums -eq $expected ] || {
5164                 $LFS getstripe -R $dir
5165                 error "'$cmd' wrong: found $nums, expected $expected"
5166         }
5167
5168         expected=$((NUMDIRS + onestripe))
5169         cmd="$LFS find -stripe-count +0 -type f $dir"
5170         nums=$($cmd | wc -l)
5171         [ $nums -eq $expected ] || {
5172                 $LFS getstripe -R $dir
5173                 error "'$cmd' wrong: found $nums, expected $expected"
5174         }
5175
5176         expected=$onestripe
5177         cmd="$LFS find -stripe-count 1 -type f $dir"
5178         nums=$($cmd | wc -l)
5179         [ $nums -eq $expected ] || {
5180                 $LFS getstripe -R $dir
5181                 error "'$cmd' wrong: found $nums, expected $expected"
5182         }
5183
5184         cmd="$LFS find -stripe-count -2 -type f $dir"
5185         nums=$($cmd | wc -l)
5186         [ $nums -eq $expected ] || {
5187                 $LFS getstripe -R $dir
5188                 error "'$cmd' wrong: found $nums, expected $expected"
5189         }
5190
5191         expected=0
5192         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5193         nums=$($cmd | wc -l)
5194         [ $nums -eq $expected ] || {
5195                 $LFS getstripe -R $dir
5196                 error "'$cmd' wrong: found $nums, expected $expected"
5197         }
5198 }
5199 run_test 56s "check lfs find -stripe-count works"
5200
5201 test_56t() { # LU-611 #LU-9369
5202         local dir=$DIR/$tdir
5203
5204         setup_56 $dir 0 $NUMDIRS
5205         for i in $(seq $NUMDIRS); do
5206                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5207         done
5208
5209         local expected=$NUMDIRS
5210         local cmd="$LFS find -S 8M $dir"
5211         local nums=$($cmd | wc -l)
5212
5213         [ $nums -eq $expected ] || {
5214                 $LFS getstripe -R $dir
5215                 error "'$cmd' wrong: found $nums, expected $expected"
5216         }
5217         rm -rf $dir
5218
5219         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5220
5221         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5222
5223         expected=$(((NUMDIRS + 1) * NUMFILES))
5224         cmd="$LFS find -stripe-size 512k -type f $dir"
5225         nums=$($cmd | wc -l)
5226         [ $nums -eq $expected ] ||
5227                 error "'$cmd' wrong: found $nums, expected $expected"
5228
5229         cmd="$LFS find -stripe-size +320k -type f $dir"
5230         nums=$($cmd | wc -l)
5231         [ $nums -eq $expected ] ||
5232                 error "'$cmd' wrong: found $nums, expected $expected"
5233
5234         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5235         cmd="$LFS find -stripe-size +200k -type f $dir"
5236         nums=$($cmd | wc -l)
5237         [ $nums -eq $expected ] ||
5238                 error "'$cmd' wrong: found $nums, expected $expected"
5239
5240         cmd="$LFS find -stripe-size -640k -type f $dir"
5241         nums=$($cmd | wc -l)
5242         [ $nums -eq $expected ] ||
5243                 error "'$cmd' wrong: found $nums, expected $expected"
5244
5245         expected=4
5246         cmd="$LFS find -stripe-size 256k -type f $dir"
5247         nums=$($cmd | wc -l)
5248         [ $nums -eq $expected ] ||
5249                 error "'$cmd' wrong: found $nums, expected $expected"
5250
5251         cmd="$LFS find -stripe-size -320k -type f $dir"
5252         nums=$($cmd | wc -l)
5253         [ $nums -eq $expected ] ||
5254                 error "'$cmd' wrong: found $nums, expected $expected"
5255
5256         expected=0
5257         cmd="$LFS find -stripe-size 1024k -type f $dir"
5258         nums=$($cmd | wc -l)
5259         [ $nums -eq $expected ] ||
5260                 error "'$cmd' wrong: found $nums, expected $expected"
5261 }
5262 run_test 56t "check lfs find -stripe-size works"
5263
5264 test_56u() { # LU-611
5265         local dir=$DIR/$tdir
5266
5267         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5268
5269         if [[ $OSTCOUNT -gt 1 ]]; then
5270                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5271                 onestripe=4
5272         else
5273                 onestripe=0
5274         fi
5275
5276         local expected=$(((NUMDIRS + 1) * NUMFILES))
5277         local cmd="$LFS find -stripe-index 0 -type f $dir"
5278         local nums=$($cmd | wc -l)
5279
5280         [ $nums -eq $expected ] ||
5281                 error "'$cmd' wrong: found $nums, expected $expected"
5282
5283         expected=$onestripe
5284         cmd="$LFS find -stripe-index 1 -type f $dir"
5285         nums=$($cmd | wc -l)
5286         [ $nums -eq $expected ] ||
5287                 error "'$cmd' wrong: found $nums, expected $expected"
5288
5289         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5290         nums=$($cmd | wc -l)
5291         [ $nums -eq $expected ] ||
5292                 error "'$cmd' wrong: found $nums, expected $expected"
5293
5294         expected=0
5295         # This should produce an error and not return any files
5296         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5297         nums=$($cmd 2>/dev/null | wc -l)
5298         [ $nums -eq $expected ] ||
5299                 error "'$cmd' wrong: found $nums, expected $expected"
5300
5301         if [[ $OSTCOUNT -gt 1 ]]; then
5302                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5303                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5304                 nums=$($cmd | wc -l)
5305                 [ $nums -eq $expected ] ||
5306                         error "'$cmd' wrong: found $nums, expected $expected"
5307         fi
5308 }
5309 run_test 56u "check lfs find -stripe-index works"
5310
5311 test_56v() {
5312         local mdt_idx=0
5313         local dir=$DIR/$tdir
5314
5315         setup_56 $dir $NUMFILES $NUMDIRS
5316
5317         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5318         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5319
5320         for file in $($LFS find -m $UUID $dir); do
5321                 file_midx=$($LFS getstripe -m $file)
5322                 [ $file_midx -eq $mdt_idx ] ||
5323                         error "lfs find -m $UUID != getstripe -m $file_midx"
5324         done
5325 }
5326 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5327
5328 test_56w() {
5329         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5331
5332         local dir=$DIR/$tdir
5333
5334         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5335
5336         local stripe_size=$($LFS getstripe -S -d $dir) ||
5337                 error "$LFS getstripe -S -d $dir failed"
5338         stripe_size=${stripe_size%% *}
5339
5340         local file_size=$((stripe_size * OSTCOUNT))
5341         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5342         local required_space=$((file_num * file_size))
5343         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5344                            head -n1)
5345         [[ $free_space -le $((required_space / 1024)) ]] &&
5346                 skip_env "need $required_space, have $free_space kbytes"
5347
5348         local dd_bs=65536
5349         local dd_count=$((file_size / dd_bs))
5350
5351         # write data into the files
5352         local i
5353         local j
5354         local file
5355
5356         for i in $(seq $NUMFILES); do
5357                 file=$dir/file$i
5358                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5359                         error "write data into $file failed"
5360         done
5361         for i in $(seq $NUMDIRS); do
5362                 for j in $(seq $NUMFILES); do
5363                         file=$dir/dir$i/file$j
5364                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5365                                 error "write data into $file failed"
5366                 done
5367         done
5368
5369         # $LFS_MIGRATE will fail if hard link migration is unsupported
5370         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5371                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5372                         error "creating links to $dir/dir1/file1 failed"
5373         fi
5374
5375         local expected=-1
5376
5377         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5378
5379         # lfs_migrate file
5380         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5381
5382         echo "$cmd"
5383         eval $cmd || error "$cmd failed"
5384
5385         check_stripe_count $dir/file1 $expected
5386
5387         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5388         then
5389                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5390                 # OST 1 if it is on OST 0. This file is small enough to
5391                 # be on only one stripe.
5392                 file=$dir/migr_1_ost
5393                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5394                         error "write data into $file failed"
5395                 local obdidx=$($LFS getstripe -i $file)
5396                 local oldmd5=$(md5sum $file)
5397                 local newobdidx=0
5398
5399                 [[ $obdidx -eq 0 ]] && newobdidx=1
5400                 cmd="$LFS migrate -i $newobdidx $file"
5401                 echo $cmd
5402                 eval $cmd || error "$cmd failed"
5403
5404                 local realobdix=$($LFS getstripe -i $file)
5405                 local newmd5=$(md5sum $file)
5406
5407                 [[ $newobdidx -ne $realobdix ]] &&
5408                         error "new OST is different (was=$obdidx, "\
5409                               "wanted=$newobdidx, got=$realobdix)"
5410                 [[ "$oldmd5" != "$newmd5" ]] &&
5411                         error "md5sum differ: $oldmd5, $newmd5"
5412         fi
5413
5414         # lfs_migrate dir
5415         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5416         echo "$cmd"
5417         eval $cmd || error "$cmd failed"
5418
5419         for j in $(seq $NUMFILES); do
5420                 check_stripe_count $dir/dir1/file$j $expected
5421         done
5422
5423         # lfs_migrate works with lfs find
5424         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5425              $LFS_MIGRATE -y -c $expected"
5426         echo "$cmd"
5427         eval $cmd || error "$cmd failed"
5428
5429         for i in $(seq 2 $NUMFILES); do
5430                 check_stripe_count $dir/file$i $expected
5431         done
5432         for i in $(seq 2 $NUMDIRS); do
5433                 for j in $(seq $NUMFILES); do
5434                 check_stripe_count $dir/dir$i/file$j $expected
5435                 done
5436         done
5437 }
5438 run_test 56w "check lfs_migrate -c stripe_count works"
5439
5440 test_56wb() {
5441         local file1=$DIR/$tdir/file1
5442         local create_pool=false
5443         local initial_pool=$($LFS getstripe -p $DIR)
5444         local pool_list=()
5445         local pool=""
5446
5447         echo -n "Creating test dir..."
5448         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5449         echo "done."
5450
5451         echo -n "Creating test file..."
5452         touch $file1 || error "cannot create file"
5453         echo "done."
5454
5455         echo -n "Detecting existing pools..."
5456         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5457
5458         if [ ${#pool_list[@]} -gt 0 ]; then
5459                 echo "${pool_list[@]}"
5460                 for thispool in "${pool_list[@]}"; do
5461                         if [[ -z "$initial_pool" ||
5462                               "$initial_pool" != "$thispool" ]]; then
5463                                 pool="$thispool"
5464                                 echo "Using existing pool '$pool'"
5465                                 break
5466                         fi
5467                 done
5468         else
5469                 echo "none detected."
5470         fi
5471         if [ -z "$pool" ]; then
5472                 pool=${POOL:-testpool}
5473                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5474                 echo -n "Creating pool '$pool'..."
5475                 create_pool=true
5476                 pool_add $pool &> /dev/null ||
5477                         error "pool_add failed"
5478                 echo "done."
5479
5480                 echo -n "Adding target to pool..."
5481                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5482                         error "pool_add_targets failed"
5483                 echo "done."
5484         fi
5485
5486         echo -n "Setting pool using -p option..."
5487         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5488                 error "migrate failed rc = $?"
5489         echo "done."
5490
5491         echo -n "Verifying test file is in pool after migrating..."
5492         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5493                 error "file was not migrated to pool $pool"
5494         echo "done."
5495
5496         echo -n "Removing test file from pool '$pool'..."
5497         $LFS migrate $file1 &> /dev/null ||
5498                 error "cannot remove from pool"
5499         [ "$($LFS getstripe -p $file1)" ] &&
5500                 error "pool still set"
5501         echo "done."
5502
5503         echo -n "Setting pool using --pool option..."
5504         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5505                 error "migrate failed rc = $?"
5506         echo "done."
5507
5508         # Clean up
5509         rm -f $file1
5510         if $create_pool; then
5511                 destroy_test_pools 2> /dev/null ||
5512                         error "destroy test pools failed"
5513         fi
5514 }
5515 run_test 56wb "check lfs_migrate pool support"
5516
5517 test_56wc() {
5518         local file1="$DIR/$tdir/file 1"
5519
5520         echo -n "Creating test dir..."
5521         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5522         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5523         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5524                 error "cannot set stripe"
5525         echo "done"
5526
5527         echo -n "Setting initial stripe for test file..."
5528         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5529                 error "cannot set stripe"
5530         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5531                 error "stripe size not set"
5532         echo "done."
5533
5534         # File currently set to -S 512K -c 1
5535
5536         # Ensure -c and -S options are rejected when -R is set
5537         echo -n "Verifying incompatible options are detected..."
5538         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5539                 error "incompatible -c and -R options not detected"
5540         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5541                 error "incompatible -S and -R options not detected"
5542         echo "done."
5543
5544         # Ensure unrecognized options are passed through to 'lfs migrate'
5545         echo -n "Verifying -S option is passed through to lfs migrate..."
5546         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5547                 error "migration failed"
5548         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5549                 error "file was not restriped"
5550         echo "done."
5551
5552         # File currently set to -S 1M -c 1
5553
5554         # Ensure long options are supported
5555         echo -n "Verifying long options supported..."
5556         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5557                 error "long option without argument not supported"
5558         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5559                 error "long option with argument not supported"
5560         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5561                 error "file not restriped with --stripe-size option"
5562         echo "done."
5563
5564         # File currently set to -S 512K -c 1
5565
5566         if [ "$OSTCOUNT" -gt 1 ]; then
5567                 echo -n "Verifying explicit stripe count can be set..."
5568                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5569                         error "migrate failed"
5570                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5571                         error "file not restriped to explicit count"
5572                 echo "done."
5573         fi
5574
5575         # File currently set to -S 512K -c 1 or -S 512K -c 2
5576
5577         # Ensure parent striping is used if -R is set, and no stripe
5578         # count or size is specified
5579         echo -n "Setting stripe for parent directory..."
5580         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5581                 error "cannot set stripe"
5582         echo "done."
5583
5584         echo -n "Verifying restripe option uses parent stripe settings..."
5585         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5586                 error "migrate failed"
5587         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5588                 error "file not restriped to parent settings"
5589         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5590                 error "file not restriped to parent settings"
5591         echo "done."
5592
5593         # File currently set to -S 1M -c 1
5594
5595         # Ensure striping is preserved if -R is not set, and no stripe
5596         # count or size is specified
5597         echo -n "Verifying striping size preserved when not specified..."
5598         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5599         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5600                 error "cannot set stripe on parent directory"
5601         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5602                 error "migrate failed"
5603         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5604                 error "file was restriped"
5605         echo "done."
5606
5607         # Ensure file name properly detected when final option has no argument
5608         echo -n "Verifying file name properly detected..."
5609         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5610                 error "file name interpreted as option argument"
5611         echo "done."
5612
5613         # Clean up
5614         rm -f "$file1"
5615 }
5616 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5617
5618 test_56wd() {
5619         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5620
5621         local file1=$DIR/$tdir/file1
5622
5623         echo -n "Creating test dir..."
5624         test_mkdir $DIR/$tdir || error "cannot create dir"
5625         echo "done."
5626
5627         echo -n "Creating test file..."
5628         touch $file1
5629         echo "done."
5630
5631         # Ensure 'lfs migrate' will fail by using a non-existent option,
5632         # and make sure rsync is not called to recover
5633         echo -n "Make sure --no-rsync option works..."
5634         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5635                 grep -q 'refusing to fall back to rsync' ||
5636                 error "rsync was called with --no-rsync set"
5637         echo "done."
5638
5639         # Ensure rsync is called without trying 'lfs migrate' first
5640         echo -n "Make sure --rsync option works..."
5641         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5642                 grep -q 'falling back to rsync' &&
5643                 error "lfs migrate was called with --rsync set"
5644         echo "done."
5645
5646         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5647         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5648                 grep -q 'at the same time' ||
5649                 error "--rsync and --no-rsync accepted concurrently"
5650         echo "done."
5651
5652         # Clean up
5653         rm -f $file1
5654 }
5655 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5656
5657 test_56x() {
5658         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5659         check_swap_layouts_support
5660
5661         local dir=$DIR/$tdir
5662         local ref1=/etc/passwd
5663         local file1=$dir/file1
5664
5665         test_mkdir $dir || error "creating dir $dir"
5666         $LFS setstripe -c 2 $file1
5667         cp $ref1 $file1
5668         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5669         stripe=$($LFS getstripe -c $file1)
5670         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5671         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5672
5673         # clean up
5674         rm -f $file1
5675 }
5676 run_test 56x "lfs migration support"
5677
5678 test_56xa() {
5679         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5680         check_swap_layouts_support
5681
5682         local dir=$DIR/$tdir/$testnum
5683
5684         test_mkdir -p $dir
5685
5686         local ref1=/etc/passwd
5687         local file1=$dir/file1
5688
5689         $LFS setstripe -c 2 $file1
5690         cp $ref1 $file1
5691         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5692
5693         local stripe=$($LFS getstripe -c $file1)
5694
5695         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5696         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5697
5698         # clean up
5699         rm -f $file1
5700 }
5701 run_test 56xa "lfs migration --block support"
5702
5703 check_migrate_links() {
5704         local dir="$1"
5705         local file1="$dir/file1"
5706         local begin="$2"
5707         local count="$3"
5708         local total_count=$(($begin + $count - 1))
5709         local symlink_count=10
5710         local uniq_count=10
5711
5712         if [ ! -f "$file1" ]; then
5713                 echo -n "creating initial file..."
5714                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5715                         error "cannot setstripe initial file"
5716                 echo "done"
5717
5718                 echo -n "creating symlinks..."
5719                 for s in $(seq 1 $symlink_count); do
5720                         ln -s "$file1" "$dir/slink$s" ||
5721                                 error "cannot create symlinks"
5722                 done
5723                 echo "done"
5724
5725                 echo -n "creating nonlinked files..."
5726                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5727                         error "cannot create nonlinked files"
5728                 echo "done"
5729         fi
5730
5731         # create hard links
5732         if [ ! -f "$dir/file$total_count" ]; then
5733                 echo -n "creating hard links $begin:$total_count..."
5734                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5735                         /dev/null || error "cannot create hard links"
5736                 echo "done"
5737         fi
5738
5739         echo -n "checking number of hard links listed in xattrs..."
5740         local fid=$($LFS getstripe -F "$file1")
5741         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5742
5743         echo "${#paths[*]}"
5744         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5745                         skip "hard link list has unexpected size, skipping test"
5746         fi
5747         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5748                         error "link names should exceed xattrs size"
5749         fi
5750
5751         echo -n "migrating files..."
5752         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5753         local rc=$?
5754         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5755         echo "done"
5756
5757         # make sure all links have been properly migrated
5758         echo -n "verifying files..."
5759         fid=$($LFS getstripe -F "$file1") ||
5760                 error "cannot get fid for file $file1"
5761         for i in $(seq 2 $total_count); do
5762                 local fid2=$($LFS getstripe -F $dir/file$i)
5763
5764                 [ "$fid2" == "$fid" ] ||
5765                         error "migrated hard link has mismatched FID"
5766         done
5767
5768         # make sure hard links were properly detected, and migration was
5769         # performed only once for the entire link set; nonlinked files should
5770         # also be migrated
5771         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5772         local expected=$(($uniq_count + 1))
5773
5774         [ "$actual" -eq  "$expected" ] ||
5775                 error "hard links individually migrated ($actual != $expected)"
5776
5777         # make sure the correct number of hard links are present
5778         local hardlinks=$(stat -c '%h' "$file1")
5779
5780         [ $hardlinks -eq $total_count ] ||
5781                 error "num hard links $hardlinks != $total_count"
5782         echo "done"
5783
5784         return 0
5785 }
5786
5787 test_56xb() {
5788         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5789                 skip "Need MDS version at least 2.10.55"
5790
5791         local dir="$DIR/$tdir"
5792
5793         test_mkdir "$dir" || error "cannot create dir $dir"
5794
5795         echo "testing lfs migrate mode when all links fit within xattrs"
5796         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5797
5798         echo "testing rsync mode when all links fit within xattrs"
5799         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5800
5801         echo "testing lfs migrate mode when all links do not fit within xattrs"
5802         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5803
5804         echo "testing rsync mode when all links do not fit within xattrs"
5805         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5806
5807         # clean up
5808         rm -rf $dir
5809 }
5810 run_test 56xb "lfs migration hard link support"
5811
5812 test_56y() {
5813         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5814                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5815
5816         local res=""
5817         local dir=$DIR/$tdir
5818         local f1=$dir/file1
5819         local f2=$dir/file2
5820
5821         test_mkdir -p $dir || error "creating dir $dir"
5822         touch $f1 || error "creating std file $f1"
5823         $MULTIOP $f2 H2c || error "creating released file $f2"
5824
5825         # a directory can be raid0, so ask only for files
5826         res=$($LFS find $dir -L raid0 -type f | wc -l)
5827         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5828
5829         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5830         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5831
5832         # only files can be released, so no need to force file search
5833         res=$($LFS find $dir -L released)
5834         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5835
5836         res=$($LFS find $dir -type f \! -L released)
5837         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5838 }
5839 run_test 56y "lfs find -L raid0|released"
5840
5841 test_56z() { # LU-4824
5842         # This checks to make sure 'lfs find' continues after errors
5843         # There are two classes of errors that should be caught:
5844         # - If multiple paths are provided, all should be searched even if one
5845         #   errors out
5846         # - If errors are encountered during the search, it should not terminate
5847         #   early
5848         local dir=$DIR/$tdir
5849         local i
5850
5851         test_mkdir $dir
5852         for i in d{0..9}; do
5853                 test_mkdir $dir/$i
5854         done
5855         touch $dir/d{0..9}/$tfile
5856         $LFS find $DIR/non_existent_dir $dir &&
5857                 error "$LFS find did not return an error"
5858         # Make a directory unsearchable. This should NOT be the last entry in
5859         # directory order.  Arbitrarily pick the 6th entry
5860         chmod 700 $($LFS find $dir -type d | sed '6!d')
5861
5862         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5863
5864         # The user should be able to see 10 directories and 9 files
5865         [ $count == 19 ] || error "$LFS find did not continue after error"
5866 }
5867 run_test 56z "lfs find should continue after an error"
5868
5869 test_56aa() { # LU-5937
5870         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5871
5872         local dir=$DIR/$tdir
5873
5874         mkdir $dir
5875         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5876
5877         createmany -o $dir/striped_dir/${tfile}- 1024
5878         local dirs=$($LFS find --size +8k $dir/)
5879
5880         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5881 }
5882 run_test 56aa "lfs find --size under striped dir"
5883
5884 test_56ab() { # LU-10705
5885         test_mkdir $DIR/$tdir
5886         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5887         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5888         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5889         # Flush writes to ensure valid blocks.  Need to be more thorough for
5890         # ZFS, since blocks are not allocated/returned to client immediately.
5891         sync_all_data
5892         wait_zfs_commit ost1 2
5893         cancel_lru_locks osc
5894         ls -ls $DIR/$tdir
5895
5896         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5897
5898         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5899
5900         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5901         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5902
5903         rm -f $DIR/$tdir/$tfile.[123]
5904 }
5905 run_test 56ab "lfs find --blocks"
5906
5907 test_56ba() {
5908         # Create composite files with one component
5909         local dir=$DIR/$tdir
5910
5911         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5912         # Create composite files with three components
5913         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5914         # Create non-composite files
5915         createmany -o $dir/${tfile}- 10
5916
5917         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5918
5919         [[ $nfiles == 10 ]] ||
5920                 error "lfs find -E 1M found $nfiles != 10 files"
5921
5922         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5923         [[ $nfiles == 25 ]] ||
5924                 error "lfs find ! -E 1M found $nfiles != 25 files"
5925
5926         # All files have a component that starts at 0
5927         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5928         [[ $nfiles == 35 ]] ||
5929                 error "lfs find --component-start 0 - $nfiles != 35 files"
5930
5931         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5932         [[ $nfiles == 15 ]] ||
5933                 error "lfs find --component-start 2M - $nfiles != 15 files"
5934
5935         # All files created here have a componenet that does not starts at 2M
5936         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5937         [[ $nfiles == 35 ]] ||
5938                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5939
5940         # Find files with a specified number of components
5941         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5942         [[ $nfiles == 15 ]] ||
5943                 error "lfs find --component-count 3 - $nfiles != 15 files"
5944
5945         # Remember non-composite files have a component count of zero
5946         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5947         [[ $nfiles == 10 ]] ||
5948                 error "lfs find --component-count 0 - $nfiles != 10 files"
5949
5950         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5951         [[ $nfiles == 20 ]] ||
5952                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5953
5954         # All files have a flag called "init"
5955         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5956         [[ $nfiles == 35 ]] ||
5957                 error "lfs find --component-flags init - $nfiles != 35 files"
5958
5959         # Multi-component files will have a component not initialized
5960         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5961         [[ $nfiles == 15 ]] ||
5962                 error "lfs find !--component-flags init - $nfiles != 15 files"
5963
5964         rm -rf $dir
5965
5966 }
5967 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5968
5969 test_56ca() {
5970         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5971                 skip "Need MDS version at least 2.10.57"
5972
5973         local td=$DIR/$tdir
5974         local tf=$td/$tfile
5975         local dir
5976         local nfiles
5977         local cmd
5978         local i
5979         local j
5980
5981         # create mirrored directories and mirrored files
5982         mkdir $td || error "mkdir $td failed"
5983         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5984         createmany -o $tf- 10 || error "create $tf- failed"
5985
5986         for i in $(seq 2); do
5987                 dir=$td/dir$i
5988                 mkdir $dir || error "mkdir $dir failed"
5989                 $LFS mirror create -N$((3 + i)) $dir ||
5990                         error "create mirrored dir $dir failed"
5991                 createmany -o $dir/$tfile- 10 ||
5992                         error "create $dir/$tfile- failed"
5993         done
5994
5995         # change the states of some mirrored files
5996         echo foo > $tf-6
5997         for i in $(seq 2); do
5998                 dir=$td/dir$i
5999                 for j in $(seq 4 9); do
6000                         echo foo > $dir/$tfile-$j
6001                 done
6002         done
6003
6004         # find mirrored files with specific mirror count
6005         cmd="$LFS find --mirror-count 3 --type f $td"
6006         nfiles=$($cmd | wc -l)
6007         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6008
6009         cmd="$LFS find ! --mirror-count 3 --type f $td"
6010         nfiles=$($cmd | wc -l)
6011         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6012
6013         cmd="$LFS find --mirror-count +2 --type f $td"
6014         nfiles=$($cmd | wc -l)
6015         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6016
6017         cmd="$LFS find --mirror-count -6 --type f $td"
6018         nfiles=$($cmd | wc -l)
6019         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6020
6021         # find mirrored files with specific file state
6022         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6023         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6024
6025         cmd="$LFS find --mirror-state=ro --type f $td"
6026         nfiles=$($cmd | wc -l)
6027         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6028
6029         cmd="$LFS find ! --mirror-state=ro --type f $td"
6030         nfiles=$($cmd | wc -l)
6031         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6032
6033         cmd="$LFS find --mirror-state=wp --type f $td"
6034         nfiles=$($cmd | wc -l)
6035         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6036
6037         cmd="$LFS find ! --mirror-state=sp --type f $td"
6038         nfiles=$($cmd | wc -l)
6039         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6040 }
6041 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6042
6043 test_57a() {
6044         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6045         # note test will not do anything if MDS is not local
6046         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6047                 skip_env "ldiskfs only test"
6048         fi
6049         remote_mds_nodsh && skip "remote MDS with nodsh"
6050
6051         local MNTDEV="osd*.*MDT*.mntdev"
6052         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6053         [ -z "$DEV" ] && error "can't access $MNTDEV"
6054         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6055                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6056                         error "can't access $DEV"
6057                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6058                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6059                 rm $TMP/t57a.dump
6060         done
6061 }
6062 run_test 57a "verify MDS filesystem created with large inodes =="
6063
6064 test_57b() {
6065         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6066         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6067                 skip_env "ldiskfs only test"
6068         fi
6069         remote_mds_nodsh && skip "remote MDS with nodsh"
6070
6071         local dir=$DIR/$tdir
6072         local filecount=100
6073         local file1=$dir/f1
6074         local fileN=$dir/f$filecount
6075
6076         rm -rf $dir || error "removing $dir"
6077         test_mkdir -c1 $dir
6078         local mdtidx=$($LFS getstripe -m $dir)
6079         local mdtname=MDT$(printf %04x $mdtidx)
6080         local facet=mds$((mdtidx + 1))
6081
6082         echo "mcreating $filecount files"
6083         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6084
6085         # verify that files do not have EAs yet
6086         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6087                 error "$file1 has an EA"
6088         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6089                 error "$fileN has an EA"
6090
6091         sync
6092         sleep 1
6093         df $dir  #make sure we get new statfs data
6094         local mdsfree=$(do_facet $facet \
6095                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6096         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6097         local file
6098
6099         echo "opening files to create objects/EAs"
6100         for file in $(seq -f $dir/f%g 1 $filecount); do
6101                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6102                         error "opening $file"
6103         done
6104
6105         # verify that files have EAs now
6106         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6107         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6108
6109         sleep 1  #make sure we get new statfs data
6110         df $dir
6111         local mdsfree2=$(do_facet $facet \
6112                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6113         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6114
6115         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6116                 if [ "$mdsfree" != "$mdsfree2" ]; then
6117                         error "MDC before $mdcfree != after $mdcfree2"
6118                 else
6119                         echo "MDC before $mdcfree != after $mdcfree2"
6120                         echo "unable to confirm if MDS has large inodes"
6121                 fi
6122         fi
6123         rm -rf $dir
6124 }
6125 run_test 57b "default LOV EAs are stored inside large inodes ==="
6126
6127 test_58() {
6128         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6129         [ -z "$(which wiretest 2>/dev/null)" ] &&
6130                         skip_env "could not find wiretest"
6131
6132         wiretest
6133 }
6134 run_test 58 "verify cross-platform wire constants =============="
6135
6136 test_59() {
6137         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6138
6139         echo "touch 130 files"
6140         createmany -o $DIR/f59- 130
6141         echo "rm 130 files"
6142         unlinkmany $DIR/f59- 130
6143         sync
6144         # wait for commitment of removal
6145         wait_delete_completed
6146 }
6147 run_test 59 "verify cancellation of llog records async ========="
6148
6149 TEST60_HEAD="test_60 run $RANDOM"
6150 test_60a() {
6151         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6152         remote_mgs_nodsh && skip "remote MGS with nodsh"
6153         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6154                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6155                         skip_env "missing subtest run-llog.sh"
6156
6157         log "$TEST60_HEAD - from kernel mode"
6158         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6159         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6160         do_facet mgs $LCTL dk > $TMP/$tfile
6161
6162         # LU-6388: test llog_reader
6163         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6164         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6165         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6166                         skip_env "missing llog_reader"
6167         local fstype=$(facet_fstype mgs)
6168         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6169                 skip_env "Only for ldiskfs or zfs type mgs"
6170
6171         local mntpt=$(facet_mntpt mgs)
6172         local mgsdev=$(mgsdevname 1)
6173         local fid_list
6174         local fid
6175         local rec_list
6176         local rec
6177         local rec_type
6178         local obj_file
6179         local path
6180         local seq
6181         local oid
6182         local pass=true
6183
6184         #get fid and record list
6185         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6186                 tail -n 4))
6187         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6188                 tail -n 4))
6189         #remount mgs as ldiskfs or zfs type
6190         stop mgs || error "stop mgs failed"
6191         mount_fstype mgs || error "remount mgs failed"
6192         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6193                 fid=${fid_list[i]}
6194                 rec=${rec_list[i]}
6195                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6196                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6197                 oid=$((16#$oid))
6198
6199                 case $fstype in
6200                         ldiskfs )
6201                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6202                         zfs )
6203                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6204                 esac
6205                 echo "obj_file is $obj_file"
6206                 do_facet mgs $llog_reader $obj_file
6207
6208                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6209                         awk '{ print $3 }' | sed -e "s/^type=//g")
6210                 if [ $rec_type != $rec ]; then
6211                         echo "FAILED test_60a wrong record type $rec_type," \
6212                               "should be $rec"
6213                         pass=false
6214                         break
6215                 fi
6216
6217                 #check obj path if record type is LLOG_LOGID_MAGIC
6218                 if [ "$rec" == "1064553b" ]; then
6219                         path=$(do_facet mgs $llog_reader $obj_file |
6220                                 grep "path=" | awk '{ print $NF }' |
6221                                 sed -e "s/^path=//g")
6222                         if [ $obj_file != $mntpt/$path ]; then
6223                                 echo "FAILED test_60a wrong obj path" \
6224                                       "$montpt/$path, should be $obj_file"
6225                                 pass=false
6226                                 break
6227                         fi
6228                 fi
6229         done
6230         rm -f $TMP/$tfile
6231         #restart mgs before "error", otherwise it will block the next test
6232         stop mgs || error "stop mgs failed"
6233         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6234         $pass || error "test failed, see FAILED test_60a messages for specifics"
6235 }
6236 run_test 60a "llog_test run from kernel module and test llog_reader"
6237
6238 test_60aa() {
6239         remote_mgs_nodsh && skip "remote MGS with nodsh"
6240
6241         # test old logid format
6242         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6243                 do_facet mgs $LCTL dl | grep MGS
6244                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6245                         error "old llog_print failed"
6246         fi
6247
6248         # test new logid format
6249         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6250                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6251                         error "new llog_print failed"
6252         fi
6253 }
6254 run_test 60aa "llog_print works with FIDs and simple names"
6255
6256 test_60ab() {
6257         # test llog_print with params
6258
6259         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6260                 skip "Need server version greater than 2.11.51"
6261
6262         local yaml
6263         local orig_val
6264
6265         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6266         do_facet mgs $LCTL set_param -P jobid_name="testname"
6267
6268         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6269             grep jobid_name | tail -n 1)
6270
6271         local param=`awk '{ print $10 }' <<< "$yaml"`
6272         local val=`awk '{ print $12 }' <<< "$yaml"`
6273         #return to the default
6274         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6275         [ $val = "testname" ] || error "bad value: $val"
6276         [ $param = "jobid_name," ] || error "Bad param: $param"
6277 }
6278 run_test 60ab "llog_print params output values from set_param -P"
6279
6280 test_60b() { # bug 6411
6281         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6282
6283         dmesg > $DIR/$tfile
6284         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6285                                 /llog.test/ {
6286                                         if (marker)
6287                                                 from_marker++
6288                                         from_begin++
6289                                 }
6290                                 END {
6291                                         if (marker)
6292                                                 print from_marker
6293                                         else
6294                                                 print from_begin
6295                                 }")
6296         [[ $LLOG_COUNT -gt 100 ]] &&
6297                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6298 }
6299 run_test 60b "limit repeated messages from CERROR/CWARN ========"
6300
6301 test_60c() {
6302         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6303
6304         echo "create 5000 files"
6305         createmany -o $DIR/f60c- 5000
6306 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6307         lctl set_param fail_loc=0x80000137
6308         unlinkmany $DIR/f60c- 5000
6309         lctl set_param fail_loc=0
6310 }
6311 run_test 60c "unlink file when mds full"
6312
6313 test_60d() {
6314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6315
6316         SAVEPRINTK=$(lctl get_param -n printk)
6317         # verify "lctl mark" is even working"
6318         MESSAGE="test message ID $RANDOM $$"
6319         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6320         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6321
6322         lctl set_param printk=0 || error "set lnet.printk failed"
6323         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6324         MESSAGE="new test message ID $RANDOM $$"
6325         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6326         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6327         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6328
6329         lctl set_param -n printk="$SAVEPRINTK"
6330 }
6331 run_test 60d "test printk console message masking"
6332
6333 test_60e() {
6334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6335         remote_mds_nodsh && skip "remote MDS with nodsh"
6336
6337         touch $DIR/$tfile
6338 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6339         do_facet mds1 lctl set_param fail_loc=0x15b
6340         rm $DIR/$tfile
6341 }
6342 run_test 60e "no space while new llog is being created"
6343
6344 test_61() {
6345         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6346
6347         f="$DIR/f61"
6348         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
6349         cancel_lru_locks osc
6350         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6351         sync
6352 }
6353 run_test 61 "mmap() writes don't make sync hang ================"
6354
6355 # bug 2330 - insufficient obd_match error checking causes LBUG
6356 test_62() {
6357         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6358
6359         f="$DIR/f62"
6360         echo foo > $f
6361         cancel_lru_locks osc
6362         lctl set_param fail_loc=0x405
6363         cat $f && error "cat succeeded, expect -EIO"
6364         lctl set_param fail_loc=0
6365 }
6366 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6367 # match every page all of the time.
6368 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6369
6370 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6371 # Though this test is irrelevant anymore, it helped to reveal some
6372 # other grant bugs (LU-4482), let's keep it.
6373 test_63a() {   # was test_63
6374         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6375
6376         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6377
6378         for i in `seq 10` ; do
6379                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6380                 sleep 5
6381                 kill $!
6382                 sleep 1
6383         done
6384
6385         rm -f $DIR/f63 || true
6386 }
6387 run_test 63a "Verify oig_wait interruption does not crash ======="
6388
6389 # bug 2248 - async write errors didn't return to application on sync
6390 # bug 3677 - async write errors left page locked
6391 test_63b() {
6392         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6393
6394         debugsave
6395         lctl set_param debug=-1
6396
6397         # ensure we have a grant to do async writes
6398         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6399         rm $DIR/$tfile
6400
6401         sync    # sync lest earlier test intercept the fail_loc
6402
6403         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6404         lctl set_param fail_loc=0x80000406
6405         $MULTIOP $DIR/$tfile Owy && \
6406                 error "sync didn't return ENOMEM"
6407         sync; sleep 2; sync     # do a real sync this time to flush page
6408         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6409                 error "locked page left in cache after async error" || true
6410         debugrestore
6411 }
6412 run_test 63b "async write errors should be returned to fsync ==="
6413
6414 test_64a () {
6415         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6416
6417         df $DIR
6418         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6419 }
6420 run_test 64a "verify filter grant calculations (in kernel) ====="
6421
6422 test_64b () {
6423         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6424
6425         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6426 }
6427 run_test 64b "check out-of-space detection on client"
6428
6429 test_64c() {
6430         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6431 }
6432 run_test 64c "verify grant shrink"
6433
6434 # this does exactly what osc_request.c:osc_announce_cached() does in
6435 # order to calculate max amount of grants to ask from server
6436 want_grant() {
6437         local tgt=$1
6438
6439         local page_size=$(get_page_size client)
6440
6441         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6442         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6443
6444         ((rpc_in_flight ++));
6445         nrpages=$((nrpages * rpc_in_flight))
6446
6447         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6448
6449         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / page_size))
6450
6451         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6452         local undirty=$((nrpages * page_size))
6453
6454         local max_extent_pages
6455         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6456             grep grant_max_extent_size | awk '{print $2}')
6457         max_extent_pages=$((max_extent_pages / page_size))
6458         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6459         local grant_extent_tax
6460         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6461             grep grant_extent_tax | awk '{print $2}')
6462
6463         undirty=$((undirty + nrextents * grant_extent_tax))
6464
6465         echo $undirty
6466 }
6467
6468 # this is size of unit for grant allocation. It should be equal to
6469 # what tgt_grant.c:tgt_grant_chunk() calculates
6470 grant_chunk() {
6471         local tgt=$1
6472         local max_brw_size
6473         local grant_extent_tax
6474
6475         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6476             grep max_brw_size | awk '{print $2}')
6477
6478         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6479             grep grant_extent_tax | awk '{print $2}')
6480
6481         echo $(((max_brw_size + grant_extent_tax) * 2))
6482 }
6483
6484 test_64d() {
6485         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6486                 skip "OST < 2.10.55 doesn't limit grants enough"
6487
6488         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6489         local file=$DIR/$tfile
6490
6491         [[ $($LCTL get_param osc.${tgt}.import |
6492              grep "connect_flags:.*grant_param") ]] ||
6493                 skip "no grant_param connect flag"
6494
6495         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6496
6497         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6498
6499         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6500         stack_trap "rm -f $file" EXIT
6501
6502         $SETSTRIPE $file -i 0 -c 1
6503         dd if=/dev/zero of=$file bs=1M count=1000 &
6504         ddpid=$!
6505
6506         while true
6507         do
6508                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6509                 if [[ $cur_grant -gt $max_cur_granted ]]
6510                 then
6511                         kill $ddpid
6512                         error "cur_grant $cur_grant > $max_cur_granted"
6513                 fi
6514                 kill -0 $ddpid
6515                 [[ $? -ne 0 ]] && break;
6516                 sleep 2
6517         done
6518
6519         rm -f $DIR/$tfile
6520         wait_delete_completed
6521         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6522 }
6523 run_test 64d "check grant limit exceed"
6524
6525 # bug 1414 - set/get directories' stripe info
6526 test_65a() {
6527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6528
6529         test_mkdir $DIR/$tdir
6530         touch $DIR/$tdir/f1
6531         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6532 }
6533 run_test 65a "directory with no stripe info"
6534
6535 test_65b() {
6536         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6537
6538         test_mkdir $DIR/$tdir
6539         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6540
6541         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6542                                                 error "setstripe"
6543         touch $DIR/$tdir/f2
6544         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6545 }
6546 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6547
6548 test_65c() {
6549         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6550         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6551
6552         test_mkdir $DIR/$tdir
6553         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6554
6555         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6556                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6557         touch $DIR/$tdir/f3
6558         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6559 }
6560 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6561
6562 test_65d() {
6563         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6564
6565         test_mkdir $DIR/$tdir
6566         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6567         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6568
6569         if [[ $STRIPECOUNT -le 0 ]]; then
6570                 sc=1
6571         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6572 #LOV_MAX_STRIPE_COUNT is 2000
6573                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6574         else
6575                 sc=$(($STRIPECOUNT - 1))
6576         fi
6577         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6578         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6579         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6580                 error "lverify failed"
6581 }
6582 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6583
6584 test_65e() {
6585         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6586
6587         test_mkdir $DIR/$tdir
6588
6589         $SETSTRIPE $DIR/$tdir || error "setstripe"
6590         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6591                                         error "no stripe info failed"
6592         touch $DIR/$tdir/f6
6593         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6594 }
6595 run_test 65e "directory setstripe defaults"
6596
6597 test_65f() {
6598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6599
6600         test_mkdir $DIR/${tdir}f
6601         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6602 }
6603 run_test 65f "dir setstripe permission (should return error) ==="
6604
6605 test_65g() {
6606         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6607
6608         test_mkdir $DIR/$tdir
6609         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6610
6611         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6612                 error "setstripe -S failed"
6613         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6614         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6615                 error "delete default stripe failed"
6616 }
6617 run_test 65g "directory setstripe -d"
6618
6619 test_65h() {
6620         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6621
6622         test_mkdir $DIR/$tdir
6623         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6624
6625         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6626                 error "setstripe -S failed"
6627         test_mkdir $DIR/$tdir/dd1
6628         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6629                 error "stripe info inherit failed"
6630 }
6631 run_test 65h "directory stripe info inherit ===================="
6632
6633 test_65i() {
6634         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6635
6636         save_layout_restore_at_exit $MOUNT
6637
6638         # bug6367: set non-default striping on root directory
6639         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6640
6641         # bug12836: getstripe on -1 default directory striping
6642         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6643
6644         # bug12836: getstripe -v on -1 default directory striping
6645         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6646
6647         # bug12836: new find on -1 default directory striping
6648         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6649 }
6650 run_test 65i "various tests to set root directory striping"
6651
6652 test_65j() { # bug6367
6653         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6654
6655         sync; sleep 1
6656
6657         # if we aren't already remounting for each test, do so for this test
6658         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6659                 cleanup || error "failed to unmount"
6660                 setup
6661         fi
6662
6663         save_layout_restore_at_exit $MOUNT
6664
6665         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6666 }
6667 run_test 65j "set default striping on root directory (bug 6367)="
6668
6669 cleaup_65k() {
6670         rm -rf $DIR/$tdir
6671         wait_delete_completed
6672         do_facet $SINGLEMDS "lctl set_param -n \
6673                 osp.$ost*MDT0000.max_create_count=$max_count"
6674         do_facet $SINGLEMDS "lctl set_param -n \
6675                 osp.$ost*MDT0000.create_count=$count"
6676         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6677         echo $INACTIVE_OSC "is Activate"
6678
6679         wait_osc_import_state mds ost$ostnum FULL
6680 }
6681
6682 test_65k() { # bug11679
6683         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6684         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6685         remote_mds_nodsh && skip "remote MDS with nodsh"
6686
6687         local disable_precreate=true
6688         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6689                 disable_precreate=false
6690
6691         echo "Check OST status: "
6692         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6693                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6694
6695         for OSC in $MDS_OSCS; do
6696                 echo $OSC "is active"
6697                 do_facet $SINGLEMDS lctl --device %$OSC activate
6698         done
6699
6700         for INACTIVE_OSC in $MDS_OSCS; do
6701                 local ost=$(osc_to_ost $INACTIVE_OSC)
6702                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6703                                lov.*md*.target_obd |
6704                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6705
6706                 mkdir -p $DIR/$tdir
6707                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6708                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6709
6710                 echo "Deactivate: " $INACTIVE_OSC
6711                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6712
6713                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6714                               osp.$ost*MDT0000.create_count")
6715                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6716                                   osp.$ost*MDT0000.max_create_count")
6717                 $disable_precreate &&
6718                         do_facet $SINGLEMDS "lctl set_param -n \
6719                                 osp.$ost*MDT0000.max_create_count=0"
6720
6721                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6722                         [ -f $DIR/$tdir/$idx ] && continue
6723                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6724                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6725                                 { cleanup_65k;
6726                                   error "setstripe $idx should succeed"; }
6727                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6728                 done
6729                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6730                 rmdir $DIR/$tdir
6731
6732                 do_facet $SINGLEMDS "lctl set_param -n \
6733                         osp.$ost*MDT0000.max_create_count=$max_count"
6734                 do_facet $SINGLEMDS "lctl set_param -n \
6735                         osp.$ost*MDT0000.create_count=$count"
6736                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6737                 echo $INACTIVE_OSC "is Activate"
6738
6739                 wait_osc_import_state mds ost$ostnum FULL
6740         done
6741 }
6742 run_test 65k "validate manual striping works properly with deactivated OSCs"
6743
6744 test_65l() { # bug 12836
6745         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6746
6747         test_mkdir -p $DIR/$tdir/test_dir
6748         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6749         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6750 }
6751 run_test 65l "lfs find on -1 stripe dir ========================"
6752
6753 test_65m() {
6754         local layout=$(save_layout $MOUNT)
6755         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6756                 restore_layout $MOUNT $layout
6757                 error "setstripe should fail by non-root users"
6758         }
6759         true
6760 }
6761 run_test 65m "normal user can't set filesystem default stripe"
6762
6763 # bug 2543 - update blocks count on client
6764 test_66() {
6765         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6766
6767         COUNT=${COUNT:-8}
6768         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6769         sync; sync_all_data; sync; sync_all_data
6770         cancel_lru_locks osc
6771         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6772         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6773 }
6774 run_test 66 "update inode blocks count on client ==============="
6775
6776 meminfo() {
6777         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6778 }
6779
6780 swap_used() {
6781         swapon -s | awk '($1 == "'$1'") { print $4 }'
6782 }
6783
6784 # bug5265, obdfilter oa2dentry return -ENOENT
6785 # #define OBD_FAIL_SRV_ENOENT 0x217
6786 test_69() {
6787         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6788         remote_ost_nodsh && skip "remote OST with nodsh"
6789
6790         f="$DIR/$tfile"
6791         $SETSTRIPE -c 1 -i 0 $f
6792
6793         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6794
6795         do_facet ost1 lctl set_param fail_loc=0x217
6796         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6797         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6798
6799         do_facet ost1 lctl set_param fail_loc=0
6800         $DIRECTIO write $f 0 2 || error "write error"
6801
6802         cancel_lru_locks osc
6803         $DIRECTIO read $f 0 1 || error "read error"
6804
6805         do_facet ost1 lctl set_param fail_loc=0x217
6806         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6807
6808         do_facet ost1 lctl set_param fail_loc=0
6809         rm -f $f
6810 }
6811 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6812
6813 test_71() {
6814         test_mkdir $DIR/$tdir
6815         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6816         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6817 }
6818 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6819
6820 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6821         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6822         [ "$RUNAS_ID" = "$UID" ] &&
6823                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6824         # Check that testing environment is properly set up. Skip if not
6825         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6826                 skip_env "User $RUNAS_ID does not exist - skipping"
6827
6828         touch $DIR/$tfile
6829         chmod 777 $DIR/$tfile
6830         chmod ug+s $DIR/$tfile
6831         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6832                 error "$RUNAS dd $DIR/$tfile failed"
6833         # See if we are still setuid/sgid
6834         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6835                 error "S/gid is not dropped on write"
6836         # Now test that MDS is updated too
6837         cancel_lru_locks mdc
6838         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6839                 error "S/gid is not dropped on MDS"
6840         rm -f $DIR/$tfile
6841 }
6842 run_test 72a "Test that remove suid works properly (bug5695) ===="
6843
6844 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6845         local perm
6846
6847         [ "$RUNAS_ID" = "$UID" ] &&
6848                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6849         [ "$RUNAS_ID" -eq 0 ] &&
6850                 skip_env "RUNAS_ID = 0 -- skipping"
6851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6852         # Check that testing environment is properly set up. Skip if not
6853         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6854                 skip_env "User $RUNAS_ID does not exist - skipping"
6855
6856         touch $DIR/${tfile}-f{g,u}
6857         test_mkdir $DIR/${tfile}-dg
6858         test_mkdir $DIR/${tfile}-du
6859         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6860         chmod g+s $DIR/${tfile}-{f,d}g
6861         chmod u+s $DIR/${tfile}-{f,d}u
6862         for perm in 777 2777 4777; do
6863                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6864                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6865                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6866                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6867         done
6868         true
6869 }
6870 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6871
6872 # bug 3462 - multiple simultaneous MDC requests
6873 test_73() {
6874         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6875
6876         test_mkdir $DIR/d73-1
6877         test_mkdir $DIR/d73-2
6878         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6879         pid1=$!
6880
6881         lctl set_param fail_loc=0x80000129
6882         $MULTIOP $DIR/d73-1/f73-2 Oc &
6883         sleep 1
6884         lctl set_param fail_loc=0
6885
6886         $MULTIOP $DIR/d73-2/f73-3 Oc &
6887         pid3=$!
6888
6889         kill -USR1 $pid1
6890         wait $pid1 || return 1
6891
6892         sleep 25
6893
6894         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6895         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6896         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6897
6898         rm -rf $DIR/d73-*
6899 }
6900 run_test 73 "multiple MDC requests (should not deadlock)"
6901
6902 test_74a() { # bug 6149, 6184
6903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6904
6905         touch $DIR/f74a
6906         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6907         #
6908         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6909         # will spin in a tight reconnection loop
6910         $LCTL set_param fail_loc=0x8000030e
6911         # get any lock that won't be difficult - lookup works.
6912         ls $DIR/f74a
6913         $LCTL set_param fail_loc=0
6914         rm -f $DIR/f74a
6915         true
6916 }
6917 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6918
6919 test_74b() { # bug 13310
6920         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6921
6922         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6923         #
6924         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6925         # will spin in a tight reconnection loop
6926         $LCTL set_param fail_loc=0x8000030e
6927         # get a "difficult" lock
6928         touch $DIR/f74b
6929         $LCTL set_param fail_loc=0
6930         rm -f $DIR/f74b
6931         true
6932 }
6933 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6934
6935 test_74c() {
6936         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6937
6938         #define OBD_FAIL_LDLM_NEW_LOCK
6939         $LCTL set_param fail_loc=0x319
6940         touch $DIR/$tfile && error "touch successful"
6941         $LCTL set_param fail_loc=0
6942         true
6943 }
6944 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6945
6946 num_inodes() {
6947         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6948 }
6949
6950 test_76() { # Now for bug 20433, added originally in bug 1443
6951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6952
6953         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6954
6955         cancel_lru_locks osc
6956         BEFORE_INODES=$(num_inodes)
6957         echo "before inodes: $BEFORE_INODES"
6958         local COUNT=1000
6959         [ "$SLOW" = "no" ] && COUNT=100
6960         for i in $(seq $COUNT); do
6961                 touch $DIR/$tfile
6962                 rm -f $DIR/$tfile
6963         done
6964         cancel_lru_locks osc
6965         AFTER_INODES=$(num_inodes)
6966         echo "after inodes: $AFTER_INODES"
6967         local wait=0
6968         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6969                 sleep 2
6970                 AFTER_INODES=$(num_inodes)
6971                 wait=$((wait+2))
6972                 echo "wait $wait seconds inodes: $AFTER_INODES"
6973                 if [ $wait -gt 30 ]; then
6974                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6975                 fi
6976         done
6977 }
6978 run_test 76 "confirm clients recycle inodes properly ===="
6979
6980
6981 export ORIG_CSUM=""
6982 set_checksums()
6983 {
6984         # Note: in sptlrpc modes which enable its own bulk checksum, the
6985         # original crc32_le bulk checksum will be automatically disabled,
6986         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6987         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6988         # In this case set_checksums() will not be no-op, because sptlrpc
6989         # bulk checksum will be enabled all through the test.
6990
6991         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6992         lctl set_param -n osc.*.checksums $1
6993         return 0
6994 }
6995
6996 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6997                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6998 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6999                              tr -d [] | head -n1)}
7000 set_checksum_type()
7001 {
7002         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7003         log "set checksum type to $1"
7004         return 0
7005 }
7006 F77_TMP=$TMP/f77-temp
7007 F77SZ=8
7008 setup_f77() {
7009         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7010                 error "error writing to $F77_TMP"
7011 }
7012
7013 test_77a() { # bug 10889
7014         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7015         $GSS && skip_env "could not run with gss"
7016
7017         [ ! -f $F77_TMP ] && setup_f77
7018         set_checksums 1
7019         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7020         set_checksums 0
7021         rm -f $DIR/$tfile
7022 }
7023 run_test 77a "normal checksum read/write operation"
7024
7025 test_77b() { # bug 10889
7026         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7027         $GSS && skip_env "could not run with gss"
7028
7029         [ ! -f $F77_TMP ] && setup_f77
7030         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7031         $LCTL set_param fail_loc=0x80000409
7032         set_checksums 1
7033
7034         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7035                 error "dd error: $?"
7036         $LCTL set_param fail_loc=0
7037
7038         for algo in $CKSUM_TYPES; do
7039                 cancel_lru_locks osc
7040                 set_checksum_type $algo
7041                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7042                 $LCTL set_param fail_loc=0x80000408
7043                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7044                 $LCTL set_param fail_loc=0
7045         done
7046         set_checksums 0
7047         set_checksum_type $ORIG_CSUM_TYPE
7048         rm -f $DIR/$tfile
7049 }
7050 run_test 77b "checksum error on client write, read"
7051
7052 cleanup_77c() {
7053         trap 0
7054         set_checksums 0
7055         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7056         $check_ost &&
7057                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7058         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7059         $check_ost && [ -n "$ost_file_prefix" ] &&
7060                 do_facet ost1 rm -f ${ost_file_prefix}\*
7061 }
7062
7063 test_77c() {
7064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7065         $GSS && skip_env "could not run with gss"
7066         remote_ost_nodsh && skip "remote OST with nodsh"
7067
7068         local bad1
7069         local osc_file_prefix
7070         local osc_file
7071         local check_ost=false
7072         local ost_file_prefix
7073         local ost_file
7074         local orig_cksum
7075         local dump_cksum
7076         local fid
7077
7078         # ensure corruption will occur on first OSS/OST
7079         $LFS setstripe -i 0 $DIR/$tfile
7080
7081         [ ! -f $F77_TMP ] && setup_f77
7082         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7083                 error "dd write error: $?"
7084         fid=$($LFS path2fid $DIR/$tfile)
7085
7086         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7087         then
7088                 check_ost=true
7089                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7090                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7091         else
7092                 echo "OSS do not support bulk pages dump upon error"
7093         fi
7094
7095         osc_file_prefix=$($LCTL get_param -n debug_path)
7096         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7097
7098         trap cleanup_77c EXIT
7099
7100         set_checksums 1
7101         # enable bulk pages dump upon error on Client
7102         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7103         # enable bulk pages dump upon error on OSS
7104         $check_ost &&
7105                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7106
7107         # flush Client cache to allow next read to reach OSS
7108         cancel_lru_locks osc
7109
7110         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7111         $LCTL set_param fail_loc=0x80000408
7112         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7113         $LCTL set_param fail_loc=0
7114
7115         rm -f $DIR/$tfile
7116
7117         # check cksum dump on Client
7118         osc_file=$(ls ${osc_file_prefix}*)
7119         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7120         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7121         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7122         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7123         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7124                      cksum)
7125         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7126         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7127                 error "dump content does not match on Client"
7128
7129         $check_ost || skip "No need to check cksum dump on OSS"
7130
7131         # check cksum dump on OSS
7132         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7133         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7134         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7135         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7136         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7137                 error "dump content does not match on OSS"
7138
7139         cleanup_77c
7140 }
7141 run_test 77c "checksum error on client read with debug"
7142
7143 test_77d() { # bug 10889
7144         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7145         $GSS && skip_env "could not run with gss"
7146
7147         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7148         $LCTL set_param fail_loc=0x80000409
7149         set_checksums 1
7150         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7151                 error "direct write: rc=$?"
7152         $LCTL set_param fail_loc=0
7153         set_checksums 0
7154
7155         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7156         $LCTL set_param fail_loc=0x80000408
7157         set_checksums 1
7158         cancel_lru_locks osc
7159         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7160                 error "direct read: rc=$?"
7161         $LCTL set_param fail_loc=0
7162         set_checksums 0
7163 }
7164 run_test 77d "checksum error on OST direct write, read"
7165
7166 test_77f() { # bug 10889
7167         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7168         $GSS && skip_env "could not run with gss"
7169
7170         set_checksums 1
7171         for algo in $CKSUM_TYPES; do
7172                 cancel_lru_locks osc
7173                 set_checksum_type $algo
7174                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7175                 $LCTL set_param fail_loc=0x409
7176                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7177                         error "direct write succeeded"
7178                 $LCTL set_param fail_loc=0
7179         done
7180         set_checksum_type $ORIG_CSUM_TYPE
7181         set_checksums 0
7182 }
7183 run_test 77f "repeat checksum error on write (expect error)"
7184
7185 test_77g() { # bug 10889
7186         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7187         $GSS && skip_env "could not run with gss"
7188         remote_ost_nodsh && skip "remote OST with nodsh"
7189
7190         [ ! -f $F77_TMP ] && setup_f77
7191
7192         local file=$DIR/$tfile
7193         stack_trap "rm -f $file" EXIT
7194
7195         $SETSTRIPE -c 1 -i 0 $file
7196         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7197         do_facet ost1 lctl set_param fail_loc=0x8000021a
7198         set_checksums 1
7199         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7200                 error "write error: rc=$?"
7201         do_facet ost1 lctl set_param fail_loc=0
7202         set_checksums 0
7203
7204         cancel_lru_locks osc
7205         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7206         do_facet ost1 lctl set_param fail_loc=0x8000021b
7207         set_checksums 1
7208         cmp $F77_TMP $file || error "file compare failed"
7209         do_facet ost1 lctl set_param fail_loc=0
7210         set_checksums 0
7211 }
7212 run_test 77g "checksum error on OST write, read"
7213
7214 test_77k() { # LU-10906
7215         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7216         $GSS && skip_env "could not run with gss"
7217
7218         local cksum_param="osc.$FSNAME*.checksums"
7219         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7220         local checksum
7221         local i
7222
7223         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7224         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7225         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7226                 EXIT
7227
7228         for i in 0 1; do
7229                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7230                         error "failed to set checksum=$i on MGS"
7231                 wait_update $HOSTNAME "$get_checksum" $i
7232                 #remount
7233                 echo "remount client, checksum should be $i"
7234                 remount_client $MOUNT || "failed to remount client"
7235                 checksum=$(eval $get_checksum)
7236                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7237         done
7238
7239         for opt in "checksum" "nochecksum"; do
7240                 #remount with mount option
7241                 echo "remount client with option $opt, checksum should be $i"
7242                 umount_client $MOUNT || "failed to umount client"
7243                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7244                         "failed to mount client with option '$opt'"
7245                 checksum=$(eval $get_checksum)
7246                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7247                 i=$((i - 1))
7248         done
7249
7250         remount_client $MOUNT || "failed to remount client"
7251 }
7252 run_test 77k "enable/disable checksum correctly"
7253
7254 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7255 rm -f $F77_TMP
7256 unset F77_TMP
7257
7258 cleanup_test_78() {
7259         trap 0
7260         rm -f $DIR/$tfile
7261 }
7262
7263 test_78() { # bug 10901
7264         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7265         remote_ost || skip_env "local OST"
7266
7267         NSEQ=5
7268         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7269         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7270         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7271         echo "MemTotal: $MEMTOTAL"
7272
7273         # reserve 256MB of memory for the kernel and other running processes,
7274         # and then take 1/2 of the remaining memory for the read/write buffers.
7275         if [ $MEMTOTAL -gt 512 ] ;then
7276                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7277         else
7278                 # for those poor memory-starved high-end clusters...
7279                 MEMTOTAL=$((MEMTOTAL / 2))
7280         fi
7281         echo "Mem to use for directio: $MEMTOTAL"
7282
7283         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7284         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7285         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7286         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7287                 head -n1)
7288         echo "Smallest OST: $SMALLESTOST"
7289         [[ $SMALLESTOST -lt 10240 ]] &&
7290                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7291
7292         trap cleanup_test_78 EXIT
7293
7294         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7295                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7296
7297         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7298         echo "File size: $F78SIZE"
7299         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7300         for i in $(seq 1 $NSEQ); do
7301                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7302                 echo directIO rdwr round $i of $NSEQ
7303                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7304         done
7305
7306         cleanup_test_78
7307 }
7308 run_test 78 "handle large O_DIRECT writes correctly ============"
7309
7310 test_79() { # bug 12743
7311         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7312
7313         wait_delete_completed
7314
7315         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7316         BKFREE=$(calc_osc_kbytes kbytesfree)
7317         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7318
7319         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7320         DFTOTAL=`echo $STRING | cut -d, -f1`
7321         DFUSED=`echo $STRING  | cut -d, -f2`
7322         DFAVAIL=`echo $STRING | cut -d, -f3`
7323         DFFREE=$(($DFTOTAL - $DFUSED))
7324
7325         ALLOWANCE=$((64 * $OSTCOUNT))
7326
7327         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7328            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7329                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7330         fi
7331         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7332            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7333                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7334         fi
7335         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7336            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7337                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7338         fi
7339 }
7340 run_test 79 "df report consistency check ======================="
7341
7342 test_80() { # bug 10718
7343         remote_ost_nodsh && skip "remote OST with nodsh"
7344         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7345
7346         # relax strong synchronous semantics for slow backends like ZFS
7347         local soc="obdfilter.*.sync_on_lock_cancel"
7348         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7349         local hosts=
7350         if [ "$soc_old" != "never" ] &&
7351                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7352                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7353                                 facet_active_host $host; done | sort -u)
7354                         do_nodes $hosts lctl set_param $soc=never
7355         fi
7356
7357         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7358         sync; sleep 1; sync
7359         local BEFORE=`date +%s`
7360         cancel_lru_locks osc
7361         local AFTER=`date +%s`
7362         local DIFF=$((AFTER-BEFORE))
7363         if [ $DIFF -gt 1 ] ; then
7364                 error "elapsed for 1M@1T = $DIFF"
7365         fi
7366
7367         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7368
7369         rm -f $DIR/$tfile
7370 }
7371 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7372
7373 test_81a() { # LU-456
7374         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7375         remote_ost_nodsh && skip "remote OST with nodsh"
7376
7377         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7378         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7379         do_facet ost1 lctl set_param fail_loc=0x80000228
7380
7381         # write should trigger a retry and success
7382         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7383         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7384         RC=$?
7385         if [ $RC -ne 0 ] ; then
7386                 error "write should success, but failed for $RC"
7387         fi
7388 }
7389 run_test 81a "OST should retry write when get -ENOSPC ==============="
7390
7391 test_81b() { # LU-456
7392         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7393         remote_ost_nodsh && skip "remote OST with nodsh"
7394
7395         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7396         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7397         do_facet ost1 lctl set_param fail_loc=0x228
7398
7399         # write should retry several times and return -ENOSPC finally
7400         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7401         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7402         RC=$?
7403         ENOSPC=28
7404         if [ $RC -ne $ENOSPC ] ; then
7405                 error "dd should fail for -ENOSPC, but succeed."
7406         fi
7407 }
7408 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7409
7410 test_82() { # LU-1031
7411         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7412         local gid1=14091995
7413         local gid2=16022000
7414
7415         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7416         local MULTIPID1=$!
7417         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7418         local MULTIPID2=$!
7419         kill -USR1 $MULTIPID2
7420         sleep 2
7421         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7422                 error "First grouplock does not block second one"
7423         else
7424                 echo "Second grouplock blocks first one"
7425         fi
7426         kill -USR1 $MULTIPID1
7427         wait $MULTIPID1
7428         wait $MULTIPID2
7429 }
7430 run_test 82 "Basic grouplock test"
7431
7432 test_83() {
7433         local sfile="/boot/System.map-$(uname -r)"
7434         [ ! -f $sfile ] && skip "No $sfile found"
7435         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7436         $LCTL set_param fail_loc=0x140d
7437         cp $sfile $DIR/$tfile || error "write failed"
7438         diff -c $sfile $DIR/$tfile || error "files are different"
7439         $LCTL set_param fail_loc=0
7440         rm -f $DIR/$tfile
7441 }
7442 run_test 83 "Short write in ptask ==============================="
7443
7444 test_99() {
7445         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7446
7447         test_mkdir $DIR/$tdir.cvsroot
7448         chown $RUNAS_ID $DIR/$tdir.cvsroot
7449
7450         cd $TMP
7451         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7452
7453         cd /etc/init.d
7454         # some versions of cvs import exit(1) when asked to import links or
7455         # files they can't read.  ignore those files.
7456         local toignore=$(find . -type l -printf '-I %f\n' -o \
7457                          ! -perm /4 -printf '-I %f\n')
7458         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7459                 $tdir.reposname vtag rtag
7460
7461         cd $DIR
7462         test_mkdir $DIR/$tdir.reposname
7463         chown $RUNAS_ID $DIR/$tdir.reposname
7464         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7465
7466         cd $DIR/$tdir.reposname
7467         $RUNAS touch foo99
7468         $RUNAS cvs add -m 'addmsg' foo99
7469         $RUNAS cvs update
7470         $RUNAS cvs commit -m 'nomsg' foo99
7471         rm -fr $DIR/$tdir.cvsroot
7472 }
7473 run_test 99 "cvs strange file/directory operations"
7474
7475 test_100() {
7476         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7477         [[ "$NETTYPE" =~ tcp ]] ||
7478                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7479         remote_ost_nodsh && skip "remote OST with nodsh"
7480         remote_mds_nodsh && skip "remote MDS with nodsh"
7481         remote_servers ||
7482                 skip "useless for local single node setup"
7483
7484         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7485                 [ "$PROT" != "tcp" ] && continue
7486                 RPORT=$(echo $REMOTE | cut -d: -f2)
7487                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7488
7489                 rc=0
7490                 LPORT=`echo $LOCAL | cut -d: -f2`
7491                 if [ $LPORT -ge 1024 ]; then
7492                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7493                         netstat -tna
7494                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7495                 fi
7496         done
7497         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7498 }
7499 run_test 100 "check local port using privileged port ==========="
7500
7501 function get_named_value()
7502 {
7503     local tag
7504
7505     tag=$1
7506     while read ;do
7507         line=$REPLY
7508         case $line in
7509         $tag*)
7510             echo $line | sed "s/^$tag[ ]*//"
7511             break
7512             ;;
7513         esac
7514     done
7515 }
7516
7517 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7518                    awk '/^max_cached_mb/ { print $2 }')
7519
7520 cleanup_101a() {
7521         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7522         trap 0
7523 }
7524
7525 test_101a() {
7526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7527         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7528
7529         local s
7530         local discard
7531         local nreads=10000
7532         local cache_limit=32
7533
7534         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7535         trap cleanup_101a EXIT
7536         $LCTL set_param -n llite.*.read_ahead_stats 0
7537         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7538
7539         #
7540         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7541         #
7542         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7543         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7544
7545         discard=0
7546         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7547                 get_named_value 'read but discarded' | cut -d" " -f1); do
7548                         discard=$(($discard + $s))
7549         done
7550         cleanup_101a
7551
7552         if [[ $(($discard * 10)) -gt $nreads ]]; then
7553                 $LCTL get_param osc.*-osc*.rpc_stats
7554                 $LCTL get_param llite.*.read_ahead_stats
7555                 error "too many ($discard) discarded pages"
7556         fi
7557         rm -f $DIR/$tfile || true
7558 }
7559 run_test 101a "check read-ahead for random reads"
7560
7561 setup_test101bc() {
7562         test_mkdir $DIR/$tdir
7563         local STRIPE_SIZE=$1
7564         local FILE_LENGTH=$2
7565         STRIPE_OFFSET=0
7566
7567         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7568
7569         local list=$(comma_list $(osts_nodes))
7570         set_osd_param $list '' read_cache_enable 0
7571         set_osd_param $list '' writethrough_cache_enable 0
7572
7573         trap cleanup_test101bc EXIT
7574         # prepare the read-ahead file
7575         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7576
7577         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7578                                 count=$FILE_SIZE_MB 2> /dev/null
7579
7580 }
7581
7582 cleanup_test101bc() {
7583         trap 0
7584         rm -rf $DIR/$tdir
7585         rm -f $DIR/$tfile
7586
7587         local list=$(comma_list $(osts_nodes))
7588         set_osd_param $list '' read_cache_enable 1
7589         set_osd_param $list '' writethrough_cache_enable 1
7590 }
7591
7592 calc_total() {
7593         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7594 }
7595
7596 ra_check_101() {
7597         local READ_SIZE=$1
7598         local STRIPE_SIZE=$2
7599         local FILE_LENGTH=$3
7600         local RA_INC=1048576
7601         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7602         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7603                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7604         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7605                         get_named_value 'read but discarded' |
7606                         cut -d" " -f1 | calc_total)
7607         if [[ $DISCARD -gt $discard_limit ]]; then
7608                 $LCTL get_param llite.*.read_ahead_stats
7609                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7610         else
7611                 echo "Read-ahead success for size ${READ_SIZE}"
7612         fi
7613 }
7614
7615 test_101b() {
7616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7617         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7618
7619         local STRIPE_SIZE=1048576
7620         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7621
7622         if [ $SLOW == "yes" ]; then
7623                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7624         else
7625                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7626         fi
7627
7628         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7629
7630         # prepare the read-ahead file
7631         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7632         cancel_lru_locks osc
7633         for BIDX in 2 4 8 16 32 64 128 256
7634         do
7635                 local BSIZE=$((BIDX*4096))
7636                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7637                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7638                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7639                 $LCTL set_param -n llite.*.read_ahead_stats 0
7640                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7641                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7642                 cancel_lru_locks osc
7643                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7644         done
7645         cleanup_test101bc
7646         true
7647 }
7648 run_test 101b "check stride-io mode read-ahead ================="
7649
7650 test_101c() {
7651         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7652
7653         local STRIPE_SIZE=1048576
7654         local FILE_LENGTH=$((STRIPE_SIZE*100))
7655         local nreads=10000
7656         local osc_rpc_stats
7657
7658         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7659
7660         cancel_lru_locks osc
7661         $LCTL set_param osc.*.rpc_stats 0
7662         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7663         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7664                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7665                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7666                 local size
7667
7668                 if [ $lines -le 20 ]; then
7669                         continue
7670                 fi
7671                 for size in 1 2 4 8; do
7672                         local rpc=$(echo "$stats" |
7673                                     awk '($1 == "'$size':") {print $2; exit; }')
7674                         [ $rpc != 0 ] &&
7675                                 error "Small $((size*4))k read IO $rpc !"
7676                 done
7677                 echo "$osc_rpc_stats check passed!"
7678         done
7679         cleanup_test101bc
7680         true
7681 }
7682 run_test 101c "check stripe_size aligned read-ahead ================="
7683
7684 set_read_ahead() {
7685         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7686         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7687 }
7688
7689 test_101d() {
7690         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7691
7692         local file=$DIR/$tfile
7693         local sz_MB=${FILESIZE_101d:-500}
7694         local ra_MB=${READAHEAD_MB:-40}
7695
7696         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7697         [ $free_MB -lt $sz_MB ] &&
7698                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7699
7700         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7701         $SETSTRIPE -c -1 $file || error "setstripe failed"
7702
7703         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7704         echo Cancel LRU locks on lustre client to flush the client cache
7705         cancel_lru_locks osc
7706
7707         echo Disable read-ahead
7708         local old_READAHEAD=$(set_read_ahead 0)
7709
7710         echo Reading the test file $file with read-ahead disabled
7711         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7712
7713         echo Cancel LRU locks on lustre client to flush the client cache
7714         cancel_lru_locks osc
7715         echo Enable read-ahead with ${ra_MB}MB
7716         set_read_ahead $ra_MB
7717
7718         echo Reading the test file $file with read-ahead enabled
7719         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7720
7721         echo "read-ahead disabled time read $raOFF"
7722         echo "read-ahead enabled  time read $raON"
7723
7724         set_read_ahead $old_READAHEAD
7725         rm -f $file
7726         wait_delete_completed
7727
7728         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7729                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7730 }
7731 run_test 101d "file read with and without read-ahead enabled"
7732
7733 test_101e() {
7734         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7735
7736         local file=$DIR/$tfile
7737         local size_KB=500  #KB
7738         local count=100
7739         local bsize=1024
7740
7741         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7742         local need_KB=$((count * size_KB))
7743         [[ $free_KB -le $need_KB ]] &&
7744                 skip_env "Need free space $need_KB, have $free_KB"
7745
7746         echo "Creating $count ${size_KB}K test files"
7747         for ((i = 0; i < $count; i++)); do
7748                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7749         done
7750
7751         echo "Cancel LRU locks on lustre client to flush the client cache"
7752         cancel_lru_locks $OSC
7753
7754         echo "Reset readahead stats"
7755         $LCTL set_param -n llite.*.read_ahead_stats 0
7756
7757         for ((i = 0; i < $count; i++)); do
7758                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7759         done
7760
7761         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7762                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7763
7764         for ((i = 0; i < $count; i++)); do
7765                 rm -rf $file.$i 2>/dev/null
7766         done
7767
7768         #10000 means 20% reads are missing in readahead
7769         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7770 }
7771 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7772
7773 test_101f() {
7774         which iozone || skip_env "no iozone installed"
7775
7776         local old_debug=$($LCTL get_param debug)
7777         old_debug=${old_debug#*=}
7778         $LCTL set_param debug="reada mmap"
7779
7780         # create a test file
7781         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7782
7783         echo Cancel LRU locks on lustre client to flush the client cache
7784         cancel_lru_locks osc
7785
7786         echo Reset readahead stats
7787         $LCTL set_param -n llite.*.read_ahead_stats 0
7788
7789         echo mmap read the file with small block size
7790         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7791                 > /dev/null 2>&1
7792
7793         echo checking missing pages
7794         $LCTL get_param llite.*.read_ahead_stats
7795         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7796                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7797
7798         $LCTL set_param debug="$old_debug"
7799         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7800         rm -f $DIR/$tfile
7801 }
7802 run_test 101f "check mmap read performance"
7803
7804 test_101g_brw_size_test() {
7805         local mb=$1
7806         local pages=$((mb * 1048576 / $(page_size)))
7807         local file=$DIR/$tfile
7808
7809         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7810                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7811         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7812                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7813                         return 2
7814         done
7815
7816         stack_trap "rm -f $file" EXIT
7817         $LCTL set_param -n osc.*.rpc_stats=0
7818
7819         # 10 RPCs should be enough for the test
7820         local count=10
7821         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7822                 { error "dd write ${mb} MB blocks failed"; return 3; }
7823         cancel_lru_locks osc
7824         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7825                 { error "dd write ${mb} MB blocks failed"; return 4; }
7826
7827         # calculate number of full-sized read and write RPCs
7828         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7829                 sed -n '/pages per rpc/,/^$/p' |
7830                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7831                 END { print reads,writes }'))
7832         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7833                 return 5
7834         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7835                 return 6
7836
7837         return 0
7838 }
7839
7840 test_101g() {
7841         remote_ost_nodsh && skip "remote OST with nodsh"
7842
7843         local rpcs
7844         local osts=$(get_facets OST)
7845         local list=$(comma_list $(osts_nodes))
7846         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7847         local brw_size="obdfilter.*.brw_size"
7848         local ostver=$(lustre_version_code ost1)
7849         local cliver=$(lustre_version_code client)
7850
7851         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7852
7853         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7854         if [ $ostver -ge $(version_code 2.8.52) -o \
7855              \( $ostver -ge $(version_code 2.7.17) -a \
7856                 $ostver -lt $(version_code 2.7.50) \) ] &&
7857            [ $cliver -ge $(version_code 2.8.52) -o \
7858              \( $cliver -ge $(version_code 2.7.17) -a \
7859                 $cliver -lt $(version_code 2.7.50) \) ]; then
7860                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7861                 if [[ $orig_mb -lt 16 ]]; then
7862                         save_lustre_params $osts "$brw_size" > $p
7863                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7864                                 error "set 16MB RPC size failed"
7865
7866                         echo "remount client to enable new RPC size"
7867                         remount_client $MOUNT || error "remount_client failed"
7868                 fi
7869
7870                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7871                 # should be able to set brw_size=12, but no rpc_stats for that
7872                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7873         fi
7874
7875         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7876
7877         if [[ $orig_mb -lt 16 ]]; then
7878                 restore_lustre_params < $p
7879                 remount_client $MOUNT || error "remount_client restore failed"
7880         fi
7881
7882         rm -f $p $DIR/$tfile
7883 }
7884 run_test 101g "Big bulk(4/16 MiB) readahead"
7885
7886 setup_test102() {
7887         test_mkdir $DIR/$tdir
7888         chown $RUNAS_ID $DIR/$tdir
7889         STRIPE_SIZE=65536
7890         STRIPE_OFFSET=1
7891         STRIPE_COUNT=$OSTCOUNT
7892         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7893
7894         trap cleanup_test102 EXIT
7895         cd $DIR
7896         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7897         cd $DIR/$tdir
7898         for num in 1 2 3 4; do
7899                 for count in $(seq 1 $STRIPE_COUNT); do
7900                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7901                                 local size=`expr $STRIPE_SIZE \* $num`
7902                                 local file=file"$num-$idx-$count"
7903                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7904                         done
7905                 done
7906         done
7907
7908         cd $DIR
7909         $1 tar cf $TMP/f102.tar $tdir --xattrs
7910 }
7911
7912 cleanup_test102() {
7913         trap 0
7914         rm -f $TMP/f102.tar
7915         rm -rf $DIR/d0.sanity/d102
7916 }
7917
7918 test_102a() {
7919         [ "$UID" != 0 ] && skip "must run as root"
7920         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7921                 skip_env "must have user_xattr"
7922
7923         [ -z "$(which setfattr 2>/dev/null)" ] &&
7924                 skip_env "could not find setfattr"
7925
7926         local testfile=$DIR/$tfile
7927
7928         touch $testfile
7929         echo "set/get xattr..."
7930         setfattr -n trusted.name1 -v value1 $testfile ||
7931                 error "setfattr -n trusted.name1=value1 $testfile failed"
7932         getfattr -n trusted.name1 $testfile 2> /dev/null |
7933           grep "trusted.name1=.value1" ||
7934                 error "$testfile missing trusted.name1=value1"
7935
7936         setfattr -n user.author1 -v author1 $testfile ||
7937                 error "setfattr -n user.author1=author1 $testfile failed"
7938         getfattr -n user.author1 $testfile 2> /dev/null |
7939           grep "user.author1=.author1" ||
7940                 error "$testfile missing trusted.author1=author1"
7941
7942         echo "listxattr..."
7943         setfattr -n trusted.name2 -v value2 $testfile ||
7944                 error "$testfile unable to set trusted.name2"
7945         setfattr -n trusted.name3 -v value3 $testfile ||
7946                 error "$testfile unable to set trusted.name3"
7947         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7948             grep "trusted.name" | wc -l) -eq 3 ] ||
7949                 error "$testfile missing 3 trusted.name xattrs"
7950
7951         setfattr -n user.author2 -v author2 $testfile ||
7952                 error "$testfile unable to set user.author2"
7953         setfattr -n user.author3 -v author3 $testfile ||
7954                 error "$testfile unable to set user.author3"
7955         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7956             grep "user.author" | wc -l) -eq 3 ] ||
7957                 error "$testfile missing 3 user.author xattrs"
7958
7959         echo "remove xattr..."
7960         setfattr -x trusted.name1 $testfile ||
7961                 error "$testfile error deleting trusted.name1"
7962         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7963                 error "$testfile did not delete trusted.name1 xattr"
7964
7965         setfattr -x user.author1 $testfile ||
7966                 error "$testfile error deleting user.author1"
7967         echo "set lustre special xattr ..."
7968         $LFS setstripe -c1 $testfile
7969         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7970                 awk -F "=" '/trusted.lov/ { print $2 }' )
7971         setfattr -n "trusted.lov" -v $lovea $testfile ||
7972                 error "$testfile doesn't ignore setting trusted.lov again"
7973         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7974                 error "$testfile allow setting invalid trusted.lov"
7975         rm -f $testfile
7976 }
7977 run_test 102a "user xattr test =================================="
7978
7979 test_102b() {
7980         [ -z "$(which setfattr 2>/dev/null)" ] &&
7981                 skip_env "could not find setfattr"
7982         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7983
7984         # b10930: get/set/list trusted.lov xattr
7985         echo "get/set/list trusted.lov xattr ..."
7986         local testfile=$DIR/$tfile
7987         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7988                 error "setstripe failed"
7989         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7990                 error "getstripe failed"
7991         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7992                 error "can't get trusted.lov from $testfile"
7993
7994         local testfile2=${testfile}2
7995         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7996                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7997
7998         $MCREATE $testfile2
7999         setfattr -n trusted.lov -v $value $testfile2
8000         local stripe_size=$($GETSTRIPE -S $testfile2)
8001         local stripe_count=$($GETSTRIPE -c $testfile2)
8002         [[ $stripe_size -eq 65536 ]] ||
8003                 error "stripe size $stripe_size != 65536"
8004         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8005                 error "stripe count $stripe_count != $STRIPECOUNT"
8006         rm -f $DIR/$tfile
8007 }
8008 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8009
8010 test_102c() {
8011         [ -z "$(which setfattr 2>/dev/null)" ] &&
8012                 skip_env "could not find setfattr"
8013         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8014
8015         # b10930: get/set/list lustre.lov xattr
8016         echo "get/set/list lustre.lov xattr ..."
8017         test_mkdir $DIR/$tdir
8018         chown $RUNAS_ID $DIR/$tdir
8019         local testfile=$DIR/$tdir/$tfile
8020         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8021                 error "setstripe failed"
8022         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8023                 error "getstripe failed"
8024         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8025         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8026
8027         local testfile2=${testfile}2
8028         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8029                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8030
8031         $RUNAS $MCREATE $testfile2
8032         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8033         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8034         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8035         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8036         [ $stripe_count -eq $STRIPECOUNT ] ||
8037                 error "stripe count $stripe_count != $STRIPECOUNT"
8038 }
8039 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8040
8041 compare_stripe_info1() {
8042         local stripe_index_all_zero=true
8043
8044         for num in 1 2 3 4; do
8045                 for count in $(seq 1 $STRIPE_COUNT); do
8046                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8047                                 local size=$((STRIPE_SIZE * num))
8048                                 local file=file"$num-$offset-$count"
8049                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8050                                 [[ $stripe_size -ne $size ]] &&
8051                                     error "$file: size $stripe_size != $size"
8052                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8053                                 # allow fewer stripes to be created, ORI-601
8054                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8055                                     error "$file: count $stripe_count != $count"
8056                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8057                                 [[ $stripe_index -ne 0 ]] &&
8058                                         stripe_index_all_zero=false
8059                         done
8060                 done
8061         done
8062         $stripe_index_all_zero &&
8063                 error "all files are being extracted starting from OST index 0"
8064         return 0
8065 }
8066
8067 have_xattrs_include() {
8068         tar --help | grep -q xattrs-include &&
8069                 echo --xattrs-include="lustre.*"
8070 }
8071
8072 test_102d() {
8073         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8074         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8075
8076         XINC=$(have_xattrs_include)
8077         setup_test102
8078         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8079         cd $DIR/$tdir/$tdir
8080         compare_stripe_info1
8081 }
8082 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8083
8084 test_102f() {
8085         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8086         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8087
8088         XINC=$(have_xattrs_include)
8089         setup_test102
8090         test_mkdir $DIR/$tdir.restore
8091         cd $DIR
8092         tar cf - --xattrs $tdir | tar xf - \
8093                 -C $DIR/$tdir.restore --xattrs $XINC
8094         cd $DIR/$tdir.restore/$tdir
8095         compare_stripe_info1
8096 }
8097 run_test 102f "tar copy files, not keep osts"
8098
8099 grow_xattr() {
8100         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8101                 skip "must have user_xattr"
8102         [ -z "$(which setfattr 2>/dev/null)" ] &&
8103                 skip_env "could not find setfattr"
8104         [ -z "$(which getfattr 2>/dev/null)" ] &&
8105                 skip_env "could not find getfattr"
8106
8107         local xsize=${1:-1024}  # in bytes
8108         local file=$DIR/$tfile
8109         local value="$(generate_string $xsize)"
8110         local xbig=trusted.big
8111
8112         touch $file
8113         log "save $xbig on $file"
8114         setfattr -n $xbig -v $value $file ||
8115                 error "saving $xbig on $file failed"
8116
8117         local orig=$(get_xattr_value $xbig $file)
8118         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8119
8120         local xsml=trusted.sml
8121         log "save $xsml on $file"
8122         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8123
8124         local new=$(get_xattr_value $xbig $file)
8125         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8126
8127         log "grow $xsml on $file"
8128         setfattr -n $xsml -v "$value" $file ||
8129                 error "growing $xsml on $file failed"
8130
8131         new=$(get_xattr_value $xbig $file)
8132         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8133         log "$xbig still valid after growing $xsml"
8134
8135         rm -f $file
8136 }
8137
8138 test_102h() { # bug 15777
8139         grow_xattr 1024
8140 }
8141 run_test 102h "grow xattr from inside inode to external block"
8142
8143 test_102ha() {
8144         large_xattr_enabled || skip_env "ea_inode feature disabled"
8145
8146         grow_xattr $(max_xattr_size)
8147 }
8148 run_test 102ha "grow xattr from inside inode to external inode"
8149
8150 test_102i() { # bug 17038
8151         [ -z "$(which getfattr 2>/dev/null)" ] &&
8152                 skip "could not find getfattr"
8153
8154         touch $DIR/$tfile
8155         ln -s $DIR/$tfile $DIR/${tfile}link
8156         getfattr -n trusted.lov $DIR/$tfile ||
8157                 error "lgetxattr on $DIR/$tfile failed"
8158         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8159                 grep -i "no such attr" ||
8160                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8161         rm -f $DIR/$tfile $DIR/${tfile}link
8162 }
8163 run_test 102i "lgetxattr test on symbolic link ============"
8164
8165 test_102j() {
8166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8167         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8168
8169         XINC=$(have_xattrs_include)
8170         setup_test102 "$RUNAS"
8171         chown $RUNAS_ID $DIR/$tdir
8172         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8173         cd $DIR/$tdir/$tdir
8174         compare_stripe_info1 "$RUNAS"
8175 }
8176 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8177
8178 test_102k() {
8179         [ -z "$(which setfattr 2>/dev/null)" ] &&
8180                 skip "could not find setfattr"
8181
8182         touch $DIR/$tfile
8183         # b22187 just check that does not crash for regular file.
8184         setfattr -n trusted.lov $DIR/$tfile
8185         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8186         local test_kdir=$DIR/$tdir
8187         test_mkdir $test_kdir
8188         local default_size=$($LFS getstripe -S $test_kdir)
8189         local default_count=$($LFS getstripe -c $test_kdir)
8190         local default_offset=$($LFS getstripe -i $test_kdir)
8191         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8192                 error 'dir setstripe failed'
8193         setfattr -n trusted.lov $test_kdir
8194         local stripe_size=$($LFS getstripe -S $test_kdir)
8195         local stripe_count=$($LFS getstripe -c $test_kdir)
8196         local stripe_offset=$($LFS getstripe -i $test_kdir)
8197         [ $stripe_size -eq $default_size ] ||
8198                 error "stripe size $stripe_size != $default_size"
8199         [ $stripe_count -eq $default_count ] ||
8200                 error "stripe count $stripe_count != $default_count"
8201         [ $stripe_offset -eq $default_offset ] ||
8202                 error "stripe offset $stripe_offset != $default_offset"
8203         rm -rf $DIR/$tfile $test_kdir
8204 }
8205 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8206
8207 test_102l() {
8208         [ -z "$(which getfattr 2>/dev/null)" ] &&
8209                 skip "could not find getfattr"
8210
8211         # LU-532 trusted. xattr is invisible to non-root
8212         local testfile=$DIR/$tfile
8213
8214         touch $testfile
8215
8216         echo "listxattr as user..."
8217         chown $RUNAS_ID $testfile
8218         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8219             grep -q "trusted" &&
8220                 error "$testfile trusted xattrs are user visible"
8221
8222         return 0;
8223 }
8224 run_test 102l "listxattr size test =================================="
8225
8226 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8227         local path=$DIR/$tfile
8228         touch $path
8229
8230         listxattr_size_check $path || error "listattr_size_check $path failed"
8231 }
8232 run_test 102m "Ensure listxattr fails on small bufffer ========"
8233
8234 cleanup_test102
8235
8236 getxattr() { # getxattr path name
8237         # Return the base64 encoding of the value of xattr name on path.
8238         local path=$1
8239         local name=$2
8240
8241         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8242         # file: $path
8243         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8244         #
8245         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8246
8247         getfattr --absolute-names --encoding=base64 --name=$name $path |
8248                 awk -F= -v name=$name '$1 == name {
8249                         print substr($0, index($0, "=") + 1);
8250         }'
8251 }
8252
8253 test_102n() { # LU-4101 mdt: protect internal xattrs
8254         [ -z "$(which setfattr 2>/dev/null)" ] &&
8255                 skip "could not find setfattr"
8256         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8257         then
8258                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8259         fi
8260
8261         local file0=$DIR/$tfile.0
8262         local file1=$DIR/$tfile.1
8263         local xattr0=$TMP/$tfile.0
8264         local xattr1=$TMP/$tfile.1
8265         local namelist="lov lma lmv link fid version som hsm"
8266         local name
8267         local value
8268
8269         rm -rf $file0 $file1 $xattr0 $xattr1
8270         touch $file0 $file1
8271
8272         # Get 'before' xattrs of $file1.
8273         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8274
8275         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8276                 namelist+=" lfsck_namespace"
8277         for name in $namelist; do
8278                 # Try to copy xattr from $file0 to $file1.
8279                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8280
8281                 setfattr --name=trusted.$name --value="$value" $file1 ||
8282                         error "setxattr 'trusted.$name' failed"
8283
8284                 # Try to set a garbage xattr.
8285                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8286
8287                 if [[ x$name == "xlov" ]]; then
8288                         setfattr --name=trusted.lov --value="$value" $file1 &&
8289                         error "setxattr invalid 'trusted.lov' success"
8290                 else
8291                         setfattr --name=trusted.$name --value="$value" $file1 ||
8292                                 error "setxattr invalid 'trusted.$name' failed"
8293                 fi
8294
8295                 # Try to remove the xattr from $file1. We don't care if this
8296                 # appears to succeed or fail, we just don't want there to be
8297                 # any changes or crashes.
8298                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8299         done
8300
8301         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8302         then
8303                 name="lfsck_ns"
8304                 # Try to copy xattr from $file0 to $file1.
8305                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8306
8307                 setfattr --name=trusted.$name --value="$value" $file1 ||
8308                         error "setxattr 'trusted.$name' failed"
8309
8310                 # Try to set a garbage xattr.
8311                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8312
8313                 setfattr --name=trusted.$name --value="$value" $file1 ||
8314                         error "setxattr 'trusted.$name' failed"
8315
8316                 # Try to remove the xattr from $file1. We don't care if this
8317                 # appears to succeed or fail, we just don't want there to be
8318                 # any changes or crashes.
8319                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8320         fi
8321
8322         # Get 'after' xattrs of file1.
8323         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8324
8325         if ! diff $xattr0 $xattr1; then
8326                 error "before and after xattrs of '$file1' differ"
8327         fi
8328
8329         rm -rf $file0 $file1 $xattr0 $xattr1
8330
8331         return 0
8332 }
8333 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8334
8335 test_102p() { # LU-4703 setxattr did not check ownership
8336         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8337                 skip "MDS needs to be at least 2.5.56"
8338
8339         local testfile=$DIR/$tfile
8340
8341         touch $testfile
8342
8343         echo "setfacl as user..."
8344         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8345         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8346
8347         echo "setfattr as user..."
8348         setfacl -m "u:$RUNAS_ID:---" $testfile
8349         $RUNAS setfattr -x system.posix_acl_access $testfile
8350         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8351 }
8352 run_test 102p "check setxattr(2) correctly fails without permission"
8353
8354 test_102q() {
8355         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8356                 skip "MDS needs to be at least 2.6.92"
8357
8358         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8359 }
8360 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8361
8362 test_102r() {
8363         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8364                 skip "MDS needs to be at least 2.6.93"
8365
8366         touch $DIR/$tfile || error "touch"
8367         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8368         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8369         rm $DIR/$tfile || error "rm"
8370
8371         #normal directory
8372         mkdir -p $DIR/$tdir || error "mkdir"
8373         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8374         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8375         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8376                 error "$testfile error deleting user.author1"
8377         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8378                 grep "user.$(basename $tdir)" &&
8379                 error "$tdir did not delete user.$(basename $tdir)"
8380         rmdir $DIR/$tdir || error "rmdir"
8381
8382         #striped directory
8383         test_mkdir $DIR/$tdir
8384         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8385         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8386         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8387                 error "$testfile error deleting user.author1"
8388         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8389                 grep "user.$(basename $tdir)" &&
8390                 error "$tdir did not delete user.$(basename $tdir)"
8391         rmdir $DIR/$tdir || error "rm striped dir"
8392 }
8393 run_test 102r "set EAs with empty values"
8394
8395 test_102s() {
8396         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8397                 skip "MDS needs to be at least 2.11.52"
8398
8399         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8400
8401         save_lustre_params client "llite.*.xattr_cache" > $save
8402
8403         for cache in 0 1; do
8404                 lctl set_param llite.*.xattr_cache=$cache
8405
8406                 rm -f $DIR/$tfile
8407                 touch $DIR/$tfile || error "touch"
8408                 for prefix in lustre security system trusted user; do
8409                         # Note getxattr() may fail with 'Operation not
8410                         # supported' or 'No such attribute' depending
8411                         # on prefix and cache.
8412                         getfattr -n $prefix.n102s $DIR/$tfile &&
8413                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8414                 done
8415         done
8416
8417         restore_lustre_params < $save
8418 }
8419 run_test 102s "getting nonexistent xattrs should fail"
8420
8421 test_102t() {
8422         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8423                 skip "MDS needs to be at least 2.11.52"
8424
8425         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8426
8427         save_lustre_params client "llite.*.xattr_cache" > $save
8428
8429         for cache in 0 1; do
8430                 lctl set_param llite.*.xattr_cache=$cache
8431
8432                 for buf_size in 0 256; do
8433                         rm -f $DIR/$tfile
8434                         touch $DIR/$tfile || error "touch"
8435                         setfattr -n user.multiop $DIR/$tfile
8436                         $MULTIOP $DIR/$tfile oa$buf_size ||
8437                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8438                 done
8439         done
8440
8441         restore_lustre_params < $save
8442 }
8443 run_test 102t "zero length xattr values handled correctly"
8444
8445 run_acl_subtest()
8446 {
8447     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8448     return $?
8449 }
8450
8451 test_103a() {
8452         [ "$UID" != 0 ] && skip "must run as root"
8453         $GSS && skip_env "could not run under gss"
8454         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8455                 skip_env "must have acl enabled"
8456         [ -z "$(which setfacl 2>/dev/null)" ] &&
8457                 skip_env "could not find setfacl"
8458         remote_mds_nodsh && skip "remote MDS with nodsh"
8459
8460         gpasswd -a daemon bin                           # LU-5641
8461         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8462
8463         declare -a identity_old
8464
8465         for num in $(seq $MDSCOUNT); do
8466                 switch_identity $num true || identity_old[$num]=$?
8467         done
8468
8469         SAVE_UMASK=$(umask)
8470         umask 0022
8471         mkdir -p $DIR/$tdir
8472         cd $DIR/$tdir
8473
8474         echo "performing cp ..."
8475         run_acl_subtest cp || error "run_acl_subtest cp failed"
8476         echo "performing getfacl-noacl..."
8477         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8478         echo "performing misc..."
8479         run_acl_subtest misc || error  "misc test failed"
8480         echo "performing permissions..."
8481         run_acl_subtest permissions || error "permissions failed"
8482         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8483         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8484              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8485              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8486         then
8487                 echo "performing permissions xattr..."
8488                 run_acl_subtest permissions_xattr ||
8489                         error "permissions_xattr failed"
8490         fi
8491         echo "performing setfacl..."
8492         run_acl_subtest setfacl || error  "setfacl test failed"
8493
8494         # inheritance test got from HP
8495         echo "performing inheritance..."
8496         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8497         chmod +x make-tree || error "chmod +x failed"
8498         run_acl_subtest inheritance || error "inheritance test failed"
8499         rm -f make-tree
8500
8501         echo "LU-974 ignore umask when acl is enabled..."
8502         run_acl_subtest 974 || error "LU-974 umask test failed"
8503         if [ $MDSCOUNT -ge 2 ]; then
8504                 run_acl_subtest 974_remote ||
8505                         error "LU-974 umask test failed under remote dir"
8506         fi
8507
8508         echo "LU-2561 newly created file is same size as directory..."
8509         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8510                 run_acl_subtest 2561 || error "LU-2561 test failed"
8511         else
8512                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8513         fi
8514
8515         run_acl_subtest 4924 || error "LU-4924 test failed"
8516
8517         cd $SAVE_PWD
8518         umask $SAVE_UMASK
8519
8520         for num in $(seq $MDSCOUNT); do
8521                 if [ "${identity_old[$num]}" = 1 ]; then
8522                         switch_identity $num false || identity_old[$num]=$?
8523                 fi
8524         done
8525 }
8526 run_test 103a "acl test"
8527
8528 test_103b() {
8529         local U
8530
8531         for U in {0..511}; do
8532                 {
8533                 local O=$(printf "%04o" $U)
8534
8535                 umask $(printf "%04o" $((511 ^ $O)))
8536                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8537                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8538
8539                 (( $S == ($O & 0666) )) ||
8540                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8541
8542                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8543                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8544                 (( $S == ($O & 0666) )) ||
8545                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8546
8547                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8548                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8549                 (( $S == ($O & 0666) )) ||
8550                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8551                 rm -f $DIR/$tfile.[smp]$0
8552                 } &
8553         done
8554         wait
8555 }
8556 run_test 103b "umask lfs setstripe"
8557
8558 test_103c() {
8559         mkdir -p $DIR/$tdir
8560         cp -rp $DIR/$tdir $DIR/$tdir.bak
8561
8562         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8563                 error "$DIR/$tdir shouldn't contain default ACL"
8564         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8565                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8566         true
8567 }
8568 run_test 103c "'cp -rp' won't set empty acl"
8569
8570 test_104a() {
8571         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8572
8573         touch $DIR/$tfile
8574         lfs df || error "lfs df failed"
8575         lfs df -ih || error "lfs df -ih failed"
8576         lfs df -h $DIR || error "lfs df -h $DIR failed"
8577         lfs df -i $DIR || error "lfs df -i $DIR failed"
8578         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8579         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8580
8581         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8582         lctl --device %$OSC deactivate
8583         lfs df || error "lfs df with deactivated OSC failed"
8584         lctl --device %$OSC activate
8585         # wait the osc back to normal
8586         wait_osc_import_state client ost FULL
8587
8588         lfs df || error "lfs df with reactivated OSC failed"
8589         rm -f $DIR/$tfile
8590 }
8591 run_test 104a "lfs df [-ih] [path] test ========================="
8592
8593 test_104b() {
8594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8595         [ $RUNAS_ID -eq $UID ] &&
8596                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8597
8598         chmod 666 /dev/obd
8599         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8600                         grep "Permission denied" | wc -l)))
8601         if [ $denied_cnt -ne 0 ]; then
8602                 error "lfs check servers test failed"
8603         fi
8604 }
8605 run_test 104b "$RUNAS lfs check servers test ===================="
8606
8607 test_105a() {
8608         # doesn't work on 2.4 kernels
8609         touch $DIR/$tfile
8610         if $(flock_is_enabled); then
8611                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8612         else
8613                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8614         fi
8615         rm -f $DIR/$tfile
8616 }
8617 run_test 105a "flock when mounted without -o flock test ========"
8618
8619 test_105b() {
8620         touch $DIR/$tfile
8621         if $(flock_is_enabled); then
8622                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8623         else
8624                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8625         fi
8626         rm -f $DIR/$tfile
8627 }
8628 run_test 105b "fcntl when mounted without -o flock test ========"
8629
8630 test_105c() {
8631         touch $DIR/$tfile
8632         if $(flock_is_enabled); then
8633                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8634         else
8635                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8636         fi
8637         rm -f $DIR/$tfile
8638 }
8639 run_test 105c "lockf when mounted without -o flock test"
8640
8641 test_105d() { # bug 15924
8642         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8643
8644         test_mkdir $DIR/$tdir
8645         flock_is_enabled || skip_env "mount w/o flock enabled"
8646         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8647         $LCTL set_param fail_loc=0x80000315
8648         flocks_test 2 $DIR/$tdir
8649 }
8650 run_test 105d "flock race (should not freeze) ========"
8651
8652 test_105e() { # bug 22660 && 22040
8653         flock_is_enabled || skip_env "mount w/o flock enabled"
8654
8655         touch $DIR/$tfile
8656         flocks_test 3 $DIR/$tfile
8657 }
8658 run_test 105e "Two conflicting flocks from same process"
8659
8660 test_106() { #bug 10921
8661         test_mkdir $DIR/$tdir
8662         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8663         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8664 }
8665 run_test 106 "attempt exec of dir followed by chown of that dir"
8666
8667 test_107() {
8668         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8669
8670         CDIR=`pwd`
8671         local file=core
8672
8673         cd $DIR
8674         rm -f $file
8675
8676         local save_pattern=$(sysctl -n kernel.core_pattern)
8677         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8678         sysctl -w kernel.core_pattern=$file
8679         sysctl -w kernel.core_uses_pid=0
8680
8681         ulimit -c unlimited
8682         sleep 60 &
8683         SLEEPPID=$!
8684
8685         sleep 1
8686
8687         kill -s 11 $SLEEPPID
8688         wait $SLEEPPID
8689         if [ -e $file ]; then
8690                 size=`stat -c%s $file`
8691                 [ $size -eq 0 ] && error "Fail to create core file $file"
8692         else
8693                 error "Fail to create core file $file"
8694         fi
8695         rm -f $file
8696         sysctl -w kernel.core_pattern=$save_pattern
8697         sysctl -w kernel.core_uses_pid=$save_uses_pid
8698         cd $CDIR
8699 }
8700 run_test 107 "Coredump on SIG"
8701
8702 test_110() {
8703         test_mkdir $DIR/$tdir
8704         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8705         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8706                 error "mkdir with 256 char should fail, but did not"
8707         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8708                 error "create with 255 char failed"
8709         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8710                 error "create with 256 char should fail, but did not"
8711
8712         ls -l $DIR/$tdir
8713         rm -rf $DIR/$tdir
8714 }
8715 run_test 110 "filename length checking"
8716
8717 #
8718 # Purpose: To verify dynamic thread (OSS) creation.
8719 #
8720 test_115() {
8721         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8722         remote_ost_nodsh && skip "remote OST with nodsh"
8723
8724         # Lustre does not stop service threads once they are started.
8725         # Reset number of running threads to default.
8726         stopall
8727         setupall
8728
8729         local OSTIO_pre
8730         local save_params="$TMP/sanity-$TESTNAME.parameters"
8731
8732         # Get ll_ost_io count before I/O
8733         OSTIO_pre=$(do_facet ost1 \
8734                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8735         # Exit if lustre is not running (ll_ost_io not running).
8736         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8737
8738         echo "Starting with $OSTIO_pre threads"
8739         local thread_max=$((OSTIO_pre * 2))
8740         local rpc_in_flight=$((thread_max * 2))
8741         # Number of I/O Process proposed to be started.
8742         local nfiles
8743         local facets=$(get_facets OST)
8744
8745         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8746         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8747
8748         # Set in_flight to $rpc_in_flight
8749         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8750                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8751         nfiles=${rpc_in_flight}
8752         # Set ost thread_max to $thread_max
8753         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8754
8755         # 5 Minutes should be sufficient for max number of OSS
8756         # threads(thread_max) to be created.
8757         local timeout=300
8758
8759         # Start I/O.
8760         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8761         test_mkdir $DIR/$tdir
8762         for i in $(seq $nfiles); do
8763                 local file=$DIR/$tdir/${tfile}-$i
8764                 $LFS setstripe -c -1 -i 0 $file
8765                 ($WTL $file $timeout)&
8766         done
8767
8768         # I/O Started - Wait for thread_started to reach thread_max or report
8769         # error if thread_started is more than thread_max.
8770         echo "Waiting for thread_started to reach thread_max"
8771         local thread_started=0
8772         local end_time=$((SECONDS + timeout))
8773
8774         while [ $SECONDS -le $end_time ] ; do
8775                 echo -n "."
8776                 # Get ost i/o thread_started count.
8777                 thread_started=$(do_facet ost1 \
8778                         "$LCTL get_param \
8779                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8780                 # Break out if thread_started is equal/greater than thread_max
8781                 if [[ $thread_started -ge $thread_max ]]; then
8782                         echo ll_ost_io thread_started $thread_started, \
8783                                 equal/greater than thread_max $thread_max
8784                         break
8785                 fi
8786                 sleep 1
8787         done
8788
8789         # Cleanup - We have the numbers, Kill i/o jobs if running.
8790         jobcount=($(jobs -p))
8791         for i in $(seq 0 $((${#jobcount[@]}-1)))
8792         do
8793                 kill -9 ${jobcount[$i]}
8794                 if [ $? -ne 0 ] ; then
8795                         echo Warning: \
8796                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8797                 fi
8798         done
8799
8800         # Cleanup files left by WTL binary.
8801         for i in $(seq $nfiles); do
8802                 local file=$DIR/$tdir/${tfile}-$i
8803                 rm -rf $file
8804                 if [ $? -ne 0 ] ; then
8805                         echo "Warning: Failed to delete file $file"
8806                 fi
8807         done
8808
8809         restore_lustre_params <$save_params
8810         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8811
8812         # Error out if no new thread has started or Thread started is greater
8813         # than thread max.
8814         if [[ $thread_started -le $OSTIO_pre ||
8815                         $thread_started -gt $thread_max ]]; then
8816                 error "ll_ost_io: thread_started $thread_started" \
8817                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8818                       "No new thread started or thread started greater " \
8819                       "than thread_max."
8820         fi
8821 }
8822 run_test 115 "verify dynamic thread creation===================="
8823
8824 free_min_max () {
8825         wait_delete_completed
8826         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8827         echo "OST kbytes available: ${AVAIL[@]}"
8828         MAXV=${AVAIL[0]}
8829         MAXI=0
8830         MINV=${AVAIL[0]}
8831         MINI=0
8832         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8833                 #echo OST $i: ${AVAIL[i]}kb
8834                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8835                         MAXV=${AVAIL[i]}
8836                         MAXI=$i
8837                 fi
8838                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8839                         MINV=${AVAIL[i]}
8840                         MINI=$i
8841                 fi
8842         done
8843         echo "Min free space: OST $MINI: $MINV"
8844         echo "Max free space: OST $MAXI: $MAXV"
8845 }
8846
8847 test_116a() { # was previously test_116()
8848         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8849         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8850         remote_mds_nodsh && skip "remote MDS with nodsh"
8851
8852         echo -n "Free space priority "
8853         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8854                 head -n1
8855         declare -a AVAIL
8856         free_min_max
8857
8858         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8859         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8860         trap simple_cleanup_common EXIT
8861
8862         # Check if we need to generate uneven OSTs
8863         test_mkdir -p $DIR/$tdir/OST${MINI}
8864         local FILL=$((MINV / 4))
8865         local DIFF=$((MAXV - MINV))
8866         local DIFF2=$((DIFF * 100 / MINV))
8867
8868         local threshold=$(do_facet $SINGLEMDS \
8869                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8870         threshold=${threshold%%%}
8871         echo -n "Check for uneven OSTs: "
8872         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8873
8874         if [[ $DIFF2 -gt $threshold ]]; then
8875                 echo "ok"
8876                 echo "Don't need to fill OST$MINI"
8877         else
8878                 # generate uneven OSTs. Write 2% over the QOS threshold value
8879                 echo "no"
8880                 DIFF=$((threshold - DIFF2 + 2))
8881                 DIFF2=$((MINV * DIFF / 100))
8882                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8883                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8884                         error "setstripe failed"
8885                 DIFF=$((DIFF2 / 2048))
8886                 i=0
8887                 while [ $i -lt $DIFF ]; do
8888                         i=$((i + 1))
8889                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8890                                 bs=2M count=1 2>/dev/null
8891                         echo -n .
8892                 done
8893                 echo .
8894                 sync
8895                 sleep_maxage
8896                 free_min_max
8897         fi
8898
8899         DIFF=$((MAXV - MINV))
8900         DIFF2=$((DIFF * 100 / MINV))
8901         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8902         if [ $DIFF2 -gt $threshold ]; then
8903                 echo "ok"
8904         else
8905                 echo "failed - QOS mode won't be used"
8906                 simple_cleanup_common
8907                 skip "QOS imbalance criteria not met"
8908         fi
8909
8910         MINI1=$MINI
8911         MINV1=$MINV
8912         MAXI1=$MAXI
8913         MAXV1=$MAXV
8914
8915         # now fill using QOS
8916         $SETSTRIPE -c 1 $DIR/$tdir
8917         FILL=$((FILL / 200))
8918         if [ $FILL -gt 600 ]; then
8919                 FILL=600
8920         fi
8921         echo "writing $FILL files to QOS-assigned OSTs"
8922         i=0
8923         while [ $i -lt $FILL ]; do
8924                 i=$((i + 1))
8925                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8926                         count=1 2>/dev/null
8927                 echo -n .
8928         done
8929         echo "wrote $i 200k files"
8930         sync
8931         sleep_maxage
8932
8933         echo "Note: free space may not be updated, so measurements might be off"
8934         free_min_max
8935         DIFF2=$((MAXV - MINV))
8936         echo "free space delta: orig $DIFF final $DIFF2"
8937         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8938         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8939         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8940         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8941         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8942         if [[ $DIFF -gt 0 ]]; then
8943                 FILL=$((DIFF2 * 100 / DIFF - 100))
8944                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8945         fi
8946
8947         # Figure out which files were written where
8948         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8949                awk '/'$MINI1': / {print $2; exit}')
8950         echo $UUID
8951         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8952         echo "$MINC files created on smaller OST $MINI1"
8953         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8954                awk '/'$MAXI1': / {print $2; exit}')
8955         echo $UUID
8956         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8957         echo "$MAXC files created on larger OST $MAXI1"
8958         if [[ $MINC -gt 0 ]]; then
8959                 FILL=$((MAXC * 100 / MINC - 100))
8960                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8961         fi
8962         [[ $MAXC -gt $MINC ]] ||
8963                 error_ignore LU-9 "stripe QOS didn't balance free space"
8964         simple_cleanup_common
8965 }
8966 run_test 116a "stripe QOS: free space balance ==================="
8967
8968 test_116b() { # LU-2093
8969         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8970         remote_mds_nodsh && skip "remote MDS with nodsh"
8971
8972 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8973         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8974                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8975         [ -z "$old_rr" ] && skip "no QOS"
8976         do_facet $SINGLEMDS lctl set_param \
8977                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8978         mkdir -p $DIR/$tdir
8979         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8980         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8981         do_facet $SINGLEMDS lctl set_param fail_loc=0
8982         rm -rf $DIR/$tdir
8983         do_facet $SINGLEMDS lctl set_param \
8984                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8985 }
8986 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8987
8988 test_117() # bug 10891
8989 {
8990         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8991
8992         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8993         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8994         lctl set_param fail_loc=0x21e
8995         > $DIR/$tfile || error "truncate failed"
8996         lctl set_param fail_loc=0
8997         echo "Truncate succeeded."
8998         rm -f $DIR/$tfile
8999 }
9000 run_test 117 "verify osd extend =========="
9001
9002 NO_SLOW_RESENDCOUNT=4
9003 export OLD_RESENDCOUNT=""
9004 set_resend_count () {
9005         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9006         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9007         lctl set_param -n $PROC_RESENDCOUNT $1
9008         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9009 }
9010
9011 # for reduce test_118* time (b=14842)
9012 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9013
9014 # Reset async IO behavior after error case
9015 reset_async() {
9016         FILE=$DIR/reset_async
9017
9018         # Ensure all OSCs are cleared
9019         $SETSTRIPE -c -1 $FILE
9020         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9021         sync
9022         rm $FILE
9023 }
9024
9025 test_118a() #bug 11710
9026 {
9027         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9028
9029         reset_async
9030
9031         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9032         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9033         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9034
9035         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9036                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9037                 return 1;
9038         fi
9039         rm -f $DIR/$tfile
9040 }
9041 run_test 118a "verify O_SYNC works =========="
9042
9043 test_118b()
9044 {
9045         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9046         remote_ost_nodsh && skip "remote OST with nodsh"
9047
9048         reset_async
9049
9050         #define OBD_FAIL_SRV_ENOENT 0x217
9051         set_nodes_failloc "$(osts_nodes)" 0x217
9052         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9053         RC=$?
9054         set_nodes_failloc "$(osts_nodes)" 0
9055         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9056         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9057                     grep -c writeback)
9058
9059         if [[ $RC -eq 0 ]]; then
9060                 error "Must return error due to dropped pages, rc=$RC"
9061                 return 1;
9062         fi
9063
9064         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9065                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9066                 return 1;
9067         fi
9068
9069         echo "Dirty pages not leaked on ENOENT"
9070
9071         # Due to the above error the OSC will issue all RPCs syncronously
9072         # until a subsequent RPC completes successfully without error.
9073         $MULTIOP $DIR/$tfile Ow4096yc
9074         rm -f $DIR/$tfile
9075
9076         return 0
9077 }
9078 run_test 118b "Reclaim dirty pages on fatal error =========="
9079
9080 test_118c()
9081 {
9082         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9083
9084         # for 118c, restore the original resend count, LU-1940
9085         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9086                                 set_resend_count $OLD_RESENDCOUNT
9087         remote_ost_nodsh && skip "remote OST with nodsh"
9088
9089         reset_async
9090
9091         #define OBD_FAIL_OST_EROFS               0x216
9092         set_nodes_failloc "$(osts_nodes)" 0x216
9093
9094         # multiop should block due to fsync until pages are written
9095         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9096         MULTIPID=$!
9097         sleep 1
9098
9099         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9100                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9101         fi
9102
9103         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9104                     grep -c writeback)
9105         if [[ $WRITEBACK -eq 0 ]]; then
9106                 error "No page in writeback, writeback=$WRITEBACK"
9107         fi
9108
9109         set_nodes_failloc "$(osts_nodes)" 0
9110         wait $MULTIPID
9111         RC=$?
9112         if [[ $RC -ne 0 ]]; then
9113                 error "Multiop fsync failed, rc=$RC"
9114         fi
9115
9116         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9117         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9118                     grep -c writeback)
9119         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9120                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9121         fi
9122
9123         rm -f $DIR/$tfile
9124         echo "Dirty pages flushed via fsync on EROFS"
9125         return 0
9126 }
9127 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9128
9129 # continue to use small resend count to reduce test_118* time (b=14842)
9130 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9131
9132 test_118d()
9133 {
9134         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9135         remote_ost_nodsh && skip "remote OST with nodsh"
9136
9137         reset_async
9138
9139         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9140         set_nodes_failloc "$(osts_nodes)" 0x214
9141         # multiop should block due to fsync until pages are written
9142         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9143         MULTIPID=$!
9144         sleep 1
9145
9146         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9147                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9148         fi
9149
9150         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9151                     grep -c writeback)
9152         if [[ $WRITEBACK -eq 0 ]]; then
9153                 error "No page in writeback, writeback=$WRITEBACK"
9154         fi
9155
9156         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9157         set_nodes_failloc "$(osts_nodes)" 0
9158
9159         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9160         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9161                     grep -c writeback)
9162         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9163                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9164         fi
9165
9166         rm -f $DIR/$tfile
9167         echo "Dirty pages gaurenteed flushed via fsync"
9168         return 0
9169 }
9170 run_test 118d "Fsync validation inject a delay of the bulk =========="
9171
9172 test_118f() {
9173         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9174
9175         reset_async
9176
9177         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9178         lctl set_param fail_loc=0x8000040a
9179
9180         # Should simulate EINVAL error which is fatal
9181         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9182         RC=$?
9183         if [[ $RC -eq 0 ]]; then
9184                 error "Must return error due to dropped pages, rc=$RC"
9185         fi
9186
9187         lctl set_param fail_loc=0x0
9188
9189         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9190         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9191         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9192                     grep -c writeback)
9193         if [[ $LOCKED -ne 0 ]]; then
9194                 error "Locked pages remain in cache, locked=$LOCKED"
9195         fi
9196
9197         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9198                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9199         fi
9200
9201         rm -f $DIR/$tfile
9202         echo "No pages locked after fsync"
9203
9204         reset_async
9205         return 0
9206 }
9207 run_test 118f "Simulate unrecoverable OSC side error =========="
9208
9209 test_118g() {
9210         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9211
9212         reset_async
9213
9214         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9215         lctl set_param fail_loc=0x406
9216
9217         # simulate local -ENOMEM
9218         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9219         RC=$?
9220
9221         lctl set_param fail_loc=0
9222         if [[ $RC -eq 0 ]]; then
9223                 error "Must return error due to dropped pages, rc=$RC"
9224         fi
9225
9226         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9227         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9228         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9229                         grep -c writeback)
9230         if [[ $LOCKED -ne 0 ]]; then
9231                 error "Locked pages remain in cache, locked=$LOCKED"
9232         fi
9233
9234         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9235                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9236         fi
9237
9238         rm -f $DIR/$tfile
9239         echo "No pages locked after fsync"
9240
9241         reset_async
9242         return 0
9243 }
9244 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9245
9246 test_118h() {
9247         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9248         remote_ost_nodsh && skip "remote OST with nodsh"
9249
9250         reset_async
9251
9252         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9253         set_nodes_failloc "$(osts_nodes)" 0x20e
9254         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9255         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9256         RC=$?
9257
9258         set_nodes_failloc "$(osts_nodes)" 0
9259         if [[ $RC -eq 0 ]]; then
9260                 error "Must return error due to dropped pages, rc=$RC"
9261         fi
9262
9263         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9264         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9265         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9266                     grep -c writeback)
9267         if [[ $LOCKED -ne 0 ]]; then
9268                 error "Locked pages remain in cache, locked=$LOCKED"
9269         fi
9270
9271         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9272                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9273         fi
9274
9275         rm -f $DIR/$tfile
9276         echo "No pages locked after fsync"
9277
9278         return 0
9279 }
9280 run_test 118h "Verify timeout in handling recoverables errors  =========="
9281
9282 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9283
9284 test_118i() {
9285         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9286         remote_ost_nodsh && skip "remote OST with nodsh"
9287
9288         reset_async
9289
9290         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9291         set_nodes_failloc "$(osts_nodes)" 0x20e
9292
9293         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9294         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9295         PID=$!
9296         sleep 5
9297         set_nodes_failloc "$(osts_nodes)" 0
9298
9299         wait $PID
9300         RC=$?
9301         if [[ $RC -ne 0 ]]; then
9302                 error "got error, but should be not, rc=$RC"
9303         fi
9304
9305         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9306         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9307         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9308         if [[ $LOCKED -ne 0 ]]; then
9309                 error "Locked pages remain in cache, locked=$LOCKED"
9310         fi
9311
9312         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9313                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9314         fi
9315
9316         rm -f $DIR/$tfile
9317         echo "No pages locked after fsync"
9318
9319         return 0
9320 }
9321 run_test 118i "Fix error before timeout in recoverable error  =========="
9322
9323 [ "$SLOW" = "no" ] && set_resend_count 4
9324
9325 test_118j() {
9326         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9327         remote_ost_nodsh && skip "remote OST with nodsh"
9328
9329         reset_async
9330
9331         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9332         set_nodes_failloc "$(osts_nodes)" 0x220
9333
9334         # return -EIO from OST
9335         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9336         RC=$?
9337         set_nodes_failloc "$(osts_nodes)" 0x0
9338         if [[ $RC -eq 0 ]]; then
9339                 error "Must return error due to dropped pages, rc=$RC"
9340         fi
9341
9342         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9343         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9344         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9345         if [[ $LOCKED -ne 0 ]]; then
9346                 error "Locked pages remain in cache, locked=$LOCKED"
9347         fi
9348
9349         # in recoverable error on OST we want resend and stay until it finished
9350         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9351                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9352         fi
9353
9354         rm -f $DIR/$tfile
9355         echo "No pages locked after fsync"
9356
9357         return 0
9358 }
9359 run_test 118j "Simulate unrecoverable OST side error =========="
9360
9361 test_118k()
9362 {
9363         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9364         remote_ost_nodsh && skip "remote OSTs with nodsh"
9365
9366         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9367         set_nodes_failloc "$(osts_nodes)" 0x20e
9368         test_mkdir $DIR/$tdir
9369
9370         for ((i=0;i<10;i++)); do
9371                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9372                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9373                 SLEEPPID=$!
9374                 sleep 0.500s
9375                 kill $SLEEPPID
9376                 wait $SLEEPPID
9377         done
9378
9379         set_nodes_failloc "$(osts_nodes)" 0
9380         rm -rf $DIR/$tdir
9381 }
9382 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9383
9384 test_118l() # LU-646
9385 {
9386         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9387
9388         test_mkdir $DIR/$tdir
9389         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9390         rm -rf $DIR/$tdir
9391 }
9392 run_test 118l "fsync dir"
9393
9394 test_118m() # LU-3066
9395 {
9396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9397
9398         test_mkdir $DIR/$tdir
9399         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9400         rm -rf $DIR/$tdir
9401 }
9402 run_test 118m "fdatasync dir ========="
9403
9404 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9405
9406 test_118n()
9407 {
9408         local begin
9409         local end
9410
9411         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9412         remote_ost_nodsh && skip "remote OSTs with nodsh"
9413
9414         # Sleep to avoid a cached response.
9415         #define OBD_STATFS_CACHE_SECONDS 1
9416         sleep 2
9417
9418         # Inject a 10 second delay in the OST_STATFS handler.
9419         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9420         set_nodes_failloc "$(osts_nodes)" 0x242
9421
9422         begin=$SECONDS
9423         stat --file-system $MOUNT > /dev/null
9424         end=$SECONDS
9425
9426         set_nodes_failloc "$(osts_nodes)" 0
9427
9428         if ((end - begin > 20)); then
9429             error "statfs took $((end - begin)) seconds, expected 10"
9430         fi
9431 }
9432 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9433
9434 test_119a() # bug 11737
9435 {
9436         BSIZE=$((512 * 1024))
9437         directio write $DIR/$tfile 0 1 $BSIZE
9438         # We ask to read two blocks, which is more than a file size.
9439         # directio will indicate an error when requested and actual
9440         # sizes aren't equeal (a normal situation in this case) and
9441         # print actual read amount.
9442         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9443         if [ "$NOB" != "$BSIZE" ]; then
9444                 error "read $NOB bytes instead of $BSIZE"
9445         fi
9446         rm -f $DIR/$tfile
9447 }
9448 run_test 119a "Short directIO read must return actual read amount"
9449
9450 test_119b() # bug 11737
9451 {
9452         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9453
9454         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9455         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9456         sync
9457         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9458                 error "direct read failed"
9459         rm -f $DIR/$tfile
9460 }
9461 run_test 119b "Sparse directIO read must return actual read amount"
9462
9463 test_119c() # bug 13099
9464 {
9465         BSIZE=1048576
9466         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9467         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9468         rm -f $DIR/$tfile
9469 }
9470 run_test 119c "Testing for direct read hitting hole"
9471
9472 test_119d() # bug 15950
9473 {
9474         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9475
9476         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9477         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9478         BSIZE=1048576
9479         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9480         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9481         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9482         lctl set_param fail_loc=0x40d
9483         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9484         pid_dio=$!
9485         sleep 1
9486         cat $DIR/$tfile > /dev/null &
9487         lctl set_param fail_loc=0
9488         pid_reads=$!
9489         wait $pid_dio
9490         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9491         sleep 2
9492         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9493         error "the read rpcs have not completed in 2s"
9494         rm -f $DIR/$tfile
9495         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9496 }
9497 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9498
9499 test_120a() {
9500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9501         remote_mds_nodsh && skip "remote MDS with nodsh"
9502         test_mkdir $DIR/$tdir
9503         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9504                 skip_env "no early lock cancel on server"
9505
9506         lru_resize_disable mdc
9507         lru_resize_disable osc
9508         cancel_lru_locks mdc
9509         # asynchronous object destroy at MDT could cause bl ast to client
9510         cancel_lru_locks osc
9511
9512         stat $DIR/$tdir > /dev/null
9513         can1=$(do_facet $SINGLEMDS \
9514                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9515                awk '/ldlm_cancel/ {print $2}')
9516         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9517                awk '/ldlm_bl_callback/ {print $2}')
9518         test_mkdir -c1 $DIR/$tdir/d1
9519         can2=$(do_facet $SINGLEMDS \
9520                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9521                awk '/ldlm_cancel/ {print $2}')
9522         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9523                awk '/ldlm_bl_callback/ {print $2}')
9524         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9525         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9526         lru_resize_enable mdc
9527         lru_resize_enable osc
9528 }
9529 run_test 120a "Early Lock Cancel: mkdir test"
9530
9531 test_120b() {
9532         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9533         remote_mds_nodsh && skip "remote MDS with nodsh"
9534         test_mkdir $DIR/$tdir
9535         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9536                 skip_env "no early lock cancel on server"
9537
9538         lru_resize_disable mdc
9539         lru_resize_disable osc
9540         cancel_lru_locks mdc
9541         stat $DIR/$tdir > /dev/null
9542         can1=$(do_facet $SINGLEMDS \
9543                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9544                awk '/ldlm_cancel/ {print $2}')
9545         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9546                awk '/ldlm_bl_callback/ {print $2}')
9547         touch $DIR/$tdir/f1
9548         can2=$(do_facet $SINGLEMDS \
9549                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9550                awk '/ldlm_cancel/ {print $2}')
9551         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9552                awk '/ldlm_bl_callback/ {print $2}')
9553         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9554         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9555         lru_resize_enable mdc
9556         lru_resize_enable osc
9557 }
9558 run_test 120b "Early Lock Cancel: create test"
9559
9560 test_120c() {
9561         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9562         remote_mds_nodsh && skip "remote MDS with nodsh"
9563         test_mkdir -c1 $DIR/$tdir
9564         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9565                 skip "no early lock cancel on server"
9566
9567         lru_resize_disable mdc
9568         lru_resize_disable osc
9569         test_mkdir -c1 $DIR/$tdir/d1
9570         test_mkdir -c1 $DIR/$tdir/d2
9571         touch $DIR/$tdir/d1/f1
9572         cancel_lru_locks mdc
9573         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9574         can1=$(do_facet $SINGLEMDS \
9575                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9576                awk '/ldlm_cancel/ {print $2}')
9577         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9578                awk '/ldlm_bl_callback/ {print $2}')
9579         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9580         can2=$(do_facet $SINGLEMDS \
9581                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9582                awk '/ldlm_cancel/ {print $2}')
9583         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9584                awk '/ldlm_bl_callback/ {print $2}')
9585         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9586         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9587         lru_resize_enable mdc
9588         lru_resize_enable osc
9589 }
9590 run_test 120c "Early Lock Cancel: link test"
9591
9592 test_120d() {
9593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9594         remote_mds_nodsh && skip "remote MDS with nodsh"
9595         test_mkdir -c1 $DIR/$tdir
9596         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9597                 skip_env "no early lock cancel on server"
9598
9599         lru_resize_disable mdc
9600         lru_resize_disable osc
9601         touch $DIR/$tdir
9602         cancel_lru_locks mdc
9603         stat $DIR/$tdir > /dev/null
9604         can1=$(do_facet $SINGLEMDS \
9605                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9606                awk '/ldlm_cancel/ {print $2}')
9607         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9608                awk '/ldlm_bl_callback/ {print $2}')
9609         chmod a+x $DIR/$tdir
9610         can2=$(do_facet $SINGLEMDS \
9611                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9612                awk '/ldlm_cancel/ {print $2}')
9613         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9614                awk '/ldlm_bl_callback/ {print $2}')
9615         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9616         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9617         lru_resize_enable mdc
9618         lru_resize_enable osc
9619 }
9620 run_test 120d "Early Lock Cancel: setattr test"
9621
9622 test_120e() {
9623         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9624         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9625                 skip_env "no early lock cancel on server"
9626         remote_mds_nodsh && skip "remote MDS with nodsh"
9627
9628         local dlmtrace_set=false
9629
9630         test_mkdir -c1 $DIR/$tdir
9631         lru_resize_disable mdc
9632         lru_resize_disable osc
9633         ! $LCTL get_param debug | grep -q dlmtrace &&
9634                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9635         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9636         cancel_lru_locks mdc
9637         cancel_lru_locks osc
9638         dd if=$DIR/$tdir/f1 of=/dev/null
9639         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9640         # XXX client can not do early lock cancel of OST lock
9641         # during unlink (LU-4206), so cancel osc lock now.
9642         sleep 2
9643         cancel_lru_locks osc
9644         can1=$(do_facet $SINGLEMDS \
9645                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9646                awk '/ldlm_cancel/ {print $2}')
9647         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9648                awk '/ldlm_bl_callback/ {print $2}')
9649         unlink $DIR/$tdir/f1
9650         sleep 5
9651         can2=$(do_facet $SINGLEMDS \
9652                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9653                awk '/ldlm_cancel/ {print $2}')
9654         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9655                awk '/ldlm_bl_callback/ {print $2}')
9656         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9657                 $LCTL dk $TMP/cancel.debug.txt
9658         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9659                 $LCTL dk $TMP/blocking.debug.txt
9660         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9661         lru_resize_enable mdc
9662         lru_resize_enable osc
9663 }
9664 run_test 120e "Early Lock Cancel: unlink test"
9665
9666 test_120f() {
9667         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9668         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9669                 skip_env "no early lock cancel on server"
9670         remote_mds_nodsh && skip "remote MDS with nodsh"
9671
9672         test_mkdir -c1 $DIR/$tdir
9673         lru_resize_disable mdc
9674         lru_resize_disable osc
9675         test_mkdir -c1 $DIR/$tdir/d1
9676         test_mkdir -c1 $DIR/$tdir/d2
9677         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9678         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9679         cancel_lru_locks mdc
9680         cancel_lru_locks osc
9681         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9682         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9683         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9684         # XXX client can not do early lock cancel of OST lock
9685         # during rename (LU-4206), so cancel osc lock now.
9686         sleep 2
9687         cancel_lru_locks osc
9688         can1=$(do_facet $SINGLEMDS \
9689                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9690                awk '/ldlm_cancel/ {print $2}')
9691         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9692                awk '/ldlm_bl_callback/ {print $2}')
9693         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9694         sleep 5
9695         can2=$(do_facet $SINGLEMDS \
9696                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9697                awk '/ldlm_cancel/ {print $2}')
9698         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9699                awk '/ldlm_bl_callback/ {print $2}')
9700         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9701         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9702         lru_resize_enable mdc
9703         lru_resize_enable osc
9704 }
9705 run_test 120f "Early Lock Cancel: rename test"
9706
9707 test_120g() {
9708         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9709         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9710                 skip_env "no early lock cancel on server"
9711         remote_mds_nodsh && skip "remote MDS with nodsh"
9712
9713         lru_resize_disable mdc
9714         lru_resize_disable osc
9715         count=10000
9716         echo create $count files
9717         test_mkdir $DIR/$tdir
9718         cancel_lru_locks mdc
9719         cancel_lru_locks osc
9720         t0=$(date +%s)
9721
9722         can0=$(do_facet $SINGLEMDS \
9723                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9724                awk '/ldlm_cancel/ {print $2}')
9725         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9726                awk '/ldlm_bl_callback/ {print $2}')
9727         createmany -o $DIR/$tdir/f $count
9728         sync
9729         can1=$(do_facet $SINGLEMDS \
9730                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9731                awk '/ldlm_cancel/ {print $2}')
9732         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9733                awk '/ldlm_bl_callback/ {print $2}')
9734         t1=$(date +%s)
9735         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9736         echo rm $count files
9737         rm -r $DIR/$tdir
9738         sync
9739         can2=$(do_facet $SINGLEMDS \
9740                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9741                awk '/ldlm_cancel/ {print $2}')
9742         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9743                awk '/ldlm_bl_callback/ {print $2}')
9744         t2=$(date +%s)
9745         echo total: $count removes in $((t2-t1))
9746         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9747         sleep 2
9748         # wait for commitment of removal
9749         lru_resize_enable mdc
9750         lru_resize_enable osc
9751 }
9752 run_test 120g "Early Lock Cancel: performance test"
9753
9754 test_121() { #bug #10589
9755         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9756
9757         rm -rf $DIR/$tfile
9758         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9759 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9760         lctl set_param fail_loc=0x310
9761         cancel_lru_locks osc > /dev/null
9762         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9763         lctl set_param fail_loc=0
9764         [[ $reads -eq $writes ]] ||
9765                 error "read $reads blocks, must be $writes blocks"
9766 }
9767 run_test 121 "read cancel race ========="
9768
9769 test_123a() { # was test 123, statahead(bug 11401)
9770         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9771
9772         SLOWOK=0
9773         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9774                 log "testing UP system. Performance may be lower than expected."
9775                 SLOWOK=1
9776         fi
9777
9778         rm -rf $DIR/$tdir
9779         test_mkdir $DIR/$tdir
9780         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9781         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9782         MULT=10
9783         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9784                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9785
9786                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9787                 lctl set_param -n llite.*.statahead_max 0
9788                 lctl get_param llite.*.statahead_max
9789                 cancel_lru_locks mdc
9790                 cancel_lru_locks osc
9791                 stime=`date +%s`
9792                 time ls -l $DIR/$tdir | wc -l
9793                 etime=`date +%s`
9794                 delta=$((etime - stime))
9795                 log "ls $i files without statahead: $delta sec"
9796                 lctl set_param llite.*.statahead_max=$max
9797
9798                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9799                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9800                 cancel_lru_locks mdc
9801                 cancel_lru_locks osc
9802                 stime=`date +%s`
9803                 time ls -l $DIR/$tdir | wc -l
9804                 etime=`date +%s`
9805                 delta_sa=$((etime - stime))
9806                 log "ls $i files with statahead: $delta_sa sec"
9807                 lctl get_param -n llite.*.statahead_stats
9808                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9809
9810                 [[ $swrong -lt $ewrong ]] &&
9811                         log "statahead was stopped, maybe too many locks held!"
9812                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9813
9814                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9815                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9816                     lctl set_param -n llite.*.statahead_max 0
9817                     lctl get_param llite.*.statahead_max
9818                     cancel_lru_locks mdc
9819                     cancel_lru_locks osc
9820                     stime=`date +%s`
9821                     time ls -l $DIR/$tdir | wc -l
9822                     etime=`date +%s`
9823                     delta=$((etime - stime))
9824                     log "ls $i files again without statahead: $delta sec"
9825                     lctl set_param llite.*.statahead_max=$max
9826                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9827                         if [  $SLOWOK -eq 0 ]; then
9828                                 error "ls $i files is slower with statahead!"
9829                         else
9830                                 log "ls $i files is slower with statahead!"
9831                         fi
9832                         break
9833                     fi
9834                 fi
9835
9836                 [ $delta -gt 20 ] && break
9837                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9838                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9839         done
9840         log "ls done"
9841
9842         stime=`date +%s`
9843         rm -r $DIR/$tdir
9844         sync
9845         etime=`date +%s`
9846         delta=$((etime - stime))
9847         log "rm -r $DIR/$tdir/: $delta seconds"
9848         log "rm done"
9849         lctl get_param -n llite.*.statahead_stats
9850 }
9851 run_test 123a "verify statahead work"
9852
9853 test_123b () { # statahead(bug 15027)
9854         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9855
9856         test_mkdir $DIR/$tdir
9857         createmany -o $DIR/$tdir/$tfile-%d 1000
9858
9859         cancel_lru_locks mdc
9860         cancel_lru_locks osc
9861
9862 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9863         lctl set_param fail_loc=0x80000803
9864         ls -lR $DIR/$tdir > /dev/null
9865         log "ls done"
9866         lctl set_param fail_loc=0x0
9867         lctl get_param -n llite.*.statahead_stats
9868         rm -r $DIR/$tdir
9869         sync
9870
9871 }
9872 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9873
9874 test_124a() {
9875         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9876         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9877                 skip_env "no lru resize on server"
9878
9879         local NR=2000
9880
9881         test_mkdir $DIR/$tdir
9882
9883         log "create $NR files at $DIR/$tdir"
9884         createmany -o $DIR/$tdir/f $NR ||
9885                 error "failed to create $NR files in $DIR/$tdir"
9886
9887         cancel_lru_locks mdc
9888         ls -l $DIR/$tdir > /dev/null
9889
9890         local NSDIR=""
9891         local LRU_SIZE=0
9892         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9893                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9894                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9895                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9896                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9897                         log "NSDIR=$NSDIR"
9898                         log "NS=$(basename $NSDIR)"
9899                         break
9900                 fi
9901         done
9902
9903         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9904                 skip "Not enough cached locks created!"
9905         fi
9906         log "LRU=$LRU_SIZE"
9907
9908         local SLEEP=30
9909
9910         # We know that lru resize allows one client to hold $LIMIT locks
9911         # for 10h. After that locks begin to be killed by client.
9912         local MAX_HRS=10
9913         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9914         log "LIMIT=$LIMIT"
9915         if [ $LIMIT -lt $LRU_SIZE ]; then
9916                 skip "Limit is too small $LIMIT"
9917         fi
9918
9919         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9920         # killing locks. Some time was spent for creating locks. This means
9921         # that up to the moment of sleep finish we must have killed some of
9922         # them (10-100 locks). This depends on how fast ther were created.
9923         # Many of them were touched in almost the same moment and thus will
9924         # be killed in groups.
9925         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9926
9927         # Use $LRU_SIZE_B here to take into account real number of locks
9928         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9929         local LRU_SIZE_B=$LRU_SIZE
9930         log "LVF=$LVF"
9931         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9932         log "OLD_LVF=$OLD_LVF"
9933         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9934
9935         # Let's make sure that we really have some margin. Client checks
9936         # cached locks every 10 sec.
9937         SLEEP=$((SLEEP+20))
9938         log "Sleep ${SLEEP} sec"
9939         local SEC=0
9940         while ((SEC<$SLEEP)); do
9941                 echo -n "..."
9942                 sleep 5
9943                 SEC=$((SEC+5))
9944                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9945                 echo -n "$LRU_SIZE"
9946         done
9947         echo ""
9948         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9949         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9950
9951         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9952                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9953                 unlinkmany $DIR/$tdir/f $NR
9954                 return
9955         }
9956
9957         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9958         log "unlink $NR files at $DIR/$tdir"
9959         unlinkmany $DIR/$tdir/f $NR
9960 }
9961 run_test 124a "lru resize ======================================="
9962
9963 get_max_pool_limit()
9964 {
9965         local limit=$($LCTL get_param \
9966                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9967         local max=0
9968         for l in $limit; do
9969                 if [[ $l -gt $max ]]; then
9970                         max=$l
9971                 fi
9972         done
9973         echo $max
9974 }
9975
9976 test_124b() {
9977         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9978         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9979                 skip_env "no lru resize on server"
9980
9981         LIMIT=$(get_max_pool_limit)
9982
9983         NR=$(($(default_lru_size)*20))
9984         if [[ $NR -gt $LIMIT ]]; then
9985                 log "Limit lock number by $LIMIT locks"
9986                 NR=$LIMIT
9987         fi
9988
9989         IFree=$(mdsrate_inodes_available)
9990         if [ $IFree -lt $NR ]; then
9991                 log "Limit lock number by $IFree inodes"
9992                 NR=$IFree
9993         fi
9994
9995         lru_resize_disable mdc
9996         test_mkdir -p $DIR/$tdir/disable_lru_resize
9997
9998         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9999         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10000         cancel_lru_locks mdc
10001         stime=`date +%s`
10002         PID=""
10003         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10004         PID="$PID $!"
10005         sleep 2
10006         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10007         PID="$PID $!"
10008         sleep 2
10009         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10010         PID="$PID $!"
10011         wait $PID
10012         etime=`date +%s`
10013         nolruresize_delta=$((etime-stime))
10014         log "ls -la time: $nolruresize_delta seconds"
10015         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10016         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10017
10018         lru_resize_enable mdc
10019         test_mkdir -p $DIR/$tdir/enable_lru_resize
10020
10021         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10022         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10023         cancel_lru_locks mdc
10024         stime=`date +%s`
10025         PID=""
10026         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10027         PID="$PID $!"
10028         sleep 2
10029         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10030         PID="$PID $!"
10031         sleep 2
10032         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10033         PID="$PID $!"
10034         wait $PID
10035         etime=`date +%s`
10036         lruresize_delta=$((etime-stime))
10037         log "ls -la time: $lruresize_delta seconds"
10038         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10039
10040         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10041                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10042         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10043                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10044         else
10045                 log "lru resize performs the same with no lru resize"
10046         fi
10047         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10048 }
10049 run_test 124b "lru resize (performance test) ======================="
10050
10051 test_124c() {
10052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10053         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10054                 skip_env "no lru resize on server"
10055
10056         # cache ununsed locks on client
10057         local nr=100
10058         cancel_lru_locks mdc
10059         test_mkdir $DIR/$tdir
10060         createmany -o $DIR/$tdir/f $nr ||
10061                 error "failed to create $nr files in $DIR/$tdir"
10062         ls -l $DIR/$tdir > /dev/null
10063
10064         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10065         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10066         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10067         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10068         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10069
10070         # set lru_max_age to 1 sec
10071         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10072         echo "sleep $((recalc_p * 2)) seconds..."
10073         sleep $((recalc_p * 2))
10074
10075         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10076         # restore lru_max_age
10077         $LCTL set_param -n $nsdir.lru_max_age $max_age
10078         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10079         unlinkmany $DIR/$tdir/f $nr
10080 }
10081 run_test 124c "LRUR cancel very aged locks"
10082
10083 test_125() { # 13358
10084         $LCTL get_param -n llite.*.client_type | grep -q local ||
10085                 skip "must run as local client"
10086         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10087                 skip_env "must have acl enabled"
10088         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10089
10090         test_mkdir $DIR/$tdir
10091         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10092         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10093         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10094 }
10095 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10096
10097 test_126() { # bug 12829/13455
10098         $GSS && skip_env "must run as gss disabled"
10099         $LCTL get_param -n llite.*.client_type | grep -q local ||
10100                 skip "must run as local client"
10101         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10102
10103         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10104         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10105         rm -f $DIR/$tfile
10106         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10107 }
10108 run_test 126 "check that the fsgid provided by the client is taken into account"
10109
10110 test_127a() { # bug 15521
10111         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10112
10113         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10114         $LCTL set_param osc.*.stats=0
10115         FSIZE=$((2048 * 1024))
10116         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10117         cancel_lru_locks osc
10118         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10119
10120         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10121         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10122                 echo "got $COUNT $NAME"
10123                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10124                 eval $NAME=$COUNT || error "Wrong proc format"
10125
10126                 case $NAME in
10127                         read_bytes|write_bytes)
10128                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10129                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10130                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10131                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10132                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10133                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10134                                 error "sumsquare is too small: $SUMSQ"
10135                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10136                                 error "sumsquare is too big: $SUMSQ"
10137                         ;;
10138                         *) ;;
10139                 esac
10140         done < $DIR/${tfile}.tmp
10141
10142         #check that we actually got some stats
10143         [ "$read_bytes" ] || error "Missing read_bytes stats"
10144         [ "$write_bytes" ] || error "Missing write_bytes stats"
10145         [ "$read_bytes" != 0 ] || error "no read done"
10146         [ "$write_bytes" != 0 ] || error "no write done"
10147 }
10148 run_test 127a "verify the client stats are sane"
10149
10150 test_127b() { # bug LU-333
10151         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10152
10153         $LCTL set_param llite.*.stats=0
10154         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
10155
10156         # perform 2 reads and writes so MAX is different from SUM.
10157         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10158         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10159         cancel_lru_locks osc
10160         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10161         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
10162
10163         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
10164         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10165                 echo "got $COUNT $NAME"
10166                 eval $NAME=$COUNT || error "Wrong proc format"
10167
10168         case $NAME in
10169                 read_bytes)
10170                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10171                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10172                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10173                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10174                         ;;
10175                 write_bytes)
10176                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
10177                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
10178                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
10179                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
10180                         ;;
10181                         *) ;;
10182                 esac
10183         done < $TMP/${tfile}.tmp
10184
10185         #check that we actually got some stats
10186         [ "$read_bytes" ] || error "Missing read_bytes stats"
10187         [ "$write_bytes" ] || error "Missing write_bytes stats"
10188         [ "$read_bytes" != 0 ] || error "no read done"
10189         [ "$write_bytes" != 0 ] || error "no write done"
10190
10191         rm -f $TMP/${tfile}.tmp
10192 }
10193 run_test 127b "verify the llite client stats are sane"
10194
10195 test_128() { # bug 15212
10196         touch $DIR/$tfile
10197         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10198                 find $DIR/$tfile
10199                 find $DIR/$tfile
10200         EOF
10201
10202         result=$(grep error $TMP/$tfile.log)
10203         rm -f $DIR/$tfile $TMP/$tfile.log
10204         [ -z "$result" ] ||
10205                 error "consecutive find's under interactive lfs failed"
10206 }
10207 run_test 128 "interactive lfs for 2 consecutive find's"
10208
10209 set_dir_limits () {
10210         local mntdev
10211         local canondev
10212         local node
10213
10214         local ldproc=/proc/fs/ldiskfs
10215         local facets=$(get_facets MDS)
10216
10217         for facet in ${facets//,/ }; do
10218                 canondev=$(ldiskfs_canon \
10219                            *.$(convert_facet2label $facet).mntdev $facet)
10220                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10221                         ldproc=/sys/fs/ldiskfs
10222                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10223                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10224         done
10225 }
10226
10227 check_mds_dmesg() {
10228         local facets=$(get_facets MDS)
10229         for facet in ${facets//,/ }; do
10230                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10231         done
10232         return 1
10233 }
10234
10235 test_129() {
10236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10237         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10238                 skip "Need MDS version with at least 2.5.56"
10239         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10240                 skip_env "ldiskfs only test"
10241         fi
10242         remote_mds_nodsh && skip "remote MDS with nodsh"
10243
10244         local ENOSPC=28
10245         local EFBIG=27
10246         local has_warning=false
10247
10248         rm -rf $DIR/$tdir
10249         mkdir -p $DIR/$tdir
10250
10251         # block size of mds1
10252         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10253         set_dir_limits $maxsize $maxsize
10254         local dirsize=$(stat -c%s "$DIR/$tdir")
10255         local nfiles=0
10256         while [[ $dirsize -le $maxsize ]]; do
10257                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10258                 rc=$?
10259                 if ! $has_warning; then
10260                         check_mds_dmesg '"is approaching"' && has_warning=true
10261                 fi
10262                 # check two errors:
10263                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10264                 # EFBIG for previous versions included in ldiskfs series
10265                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10266                         set_dir_limits 0 0
10267                         echo "return code $rc received as expected"
10268
10269                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10270                                 error_exit "create failed w/o dir size limit"
10271
10272                         check_mds_dmesg '"has reached"' ||
10273                                 error_exit "reached message should be output"
10274
10275                         [ $has_warning = "false" ] &&
10276                                 error_exit "warning message should be output"
10277
10278                         dirsize=$(stat -c%s "$DIR/$tdir")
10279
10280                         [[ $dirsize -ge $maxsize ]] && return 0
10281                         error_exit "current dir size $dirsize, " \
10282                                    "previous limit $maxsize"
10283                 elif [ $rc -ne 0 ]; then
10284                         set_dir_limits 0 0
10285                         error_exit "return $rc received instead of expected " \
10286                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10287                 fi
10288                 nfiles=$((nfiles + 1))
10289                 dirsize=$(stat -c%s "$DIR/$tdir")
10290         done
10291
10292         set_dir_limits 0 0
10293         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10294 }
10295 run_test 129 "test directory size limit ========================"
10296
10297 OLDIFS="$IFS"
10298 cleanup_130() {
10299         trap 0
10300         IFS="$OLDIFS"
10301 }
10302
10303 test_130a() {
10304         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10305         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10306
10307         trap cleanup_130 EXIT RETURN
10308
10309         local fm_file=$DIR/$tfile
10310         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10311         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10312                 error "dd failed for $fm_file"
10313
10314         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10315         filefrag -ves $fm_file
10316         RC=$?
10317         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10318                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10319         [ $RC != 0 ] && error "filefrag $fm_file failed"
10320
10321         filefrag_op=$(filefrag -ve -k $fm_file |
10322                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10323         lun=$($GETSTRIPE -i $fm_file)
10324
10325         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10326         IFS=$'\n'
10327         tot_len=0
10328         for line in $filefrag_op
10329         do
10330                 frag_lun=`echo $line | cut -d: -f5`
10331                 ext_len=`echo $line | cut -d: -f4`
10332                 if (( $frag_lun != $lun )); then
10333                         cleanup_130
10334                         error "FIEMAP on 1-stripe file($fm_file) failed"
10335                         return
10336                 fi
10337                 (( tot_len += ext_len ))
10338         done
10339
10340         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10341                 cleanup_130
10342                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10343                 return
10344         fi
10345
10346         cleanup_130
10347
10348         echo "FIEMAP on single striped file succeeded"
10349 }
10350 run_test 130a "FIEMAP (1-stripe file)"
10351
10352 test_130b() {
10353         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10354
10355         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10356         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10357
10358         trap cleanup_130 EXIT RETURN
10359
10360         local fm_file=$DIR/$tfile
10361         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10362                         error "setstripe on $fm_file"
10363         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10364                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10365
10366         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10367                 error "dd failed on $fm_file"
10368
10369         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10370         filefrag_op=$(filefrag -ve -k $fm_file |
10371                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10372
10373         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10374                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10375
10376         IFS=$'\n'
10377         tot_len=0
10378         num_luns=1
10379         for line in $filefrag_op
10380         do
10381                 frag_lun=$(echo $line | cut -d: -f5 |
10382                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10383                 ext_len=$(echo $line | cut -d: -f4)
10384                 if (( $frag_lun != $last_lun )); then
10385                         if (( tot_len != 1024 )); then
10386                                 cleanup_130
10387                                 error "FIEMAP on $fm_file failed; returned " \
10388                                 "len $tot_len for OST $last_lun instead of 1024"
10389                                 return
10390                         else
10391                                 (( num_luns += 1 ))
10392                                 tot_len=0
10393                         fi
10394                 fi
10395                 (( tot_len += ext_len ))
10396                 last_lun=$frag_lun
10397         done
10398         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10399                 cleanup_130
10400                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10401                         "luns or wrong len for OST $last_lun"
10402                 return
10403         fi
10404
10405         cleanup_130
10406
10407         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10408 }
10409 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10410
10411 test_130c() {
10412         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10413
10414         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10415         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10416
10417         trap cleanup_130 EXIT RETURN
10418
10419         local fm_file=$DIR/$tfile
10420         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10421         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10422                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10423
10424         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10425                         error "dd failed on $fm_file"
10426
10427         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10428         filefrag_op=$(filefrag -ve -k $fm_file |
10429                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10430
10431         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10432                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10433
10434         IFS=$'\n'
10435         tot_len=0
10436         num_luns=1
10437         for line in $filefrag_op
10438         do
10439                 frag_lun=$(echo $line | cut -d: -f5 |
10440                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10441                 ext_len=$(echo $line | cut -d: -f4)
10442                 if (( $frag_lun != $last_lun )); then
10443                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10444                         if (( logical != 512 )); then
10445                                 cleanup_130
10446                                 error "FIEMAP on $fm_file failed; returned " \
10447                                 "logical start for lun $logical instead of 512"
10448                                 return
10449                         fi
10450                         if (( tot_len != 512 )); then
10451                                 cleanup_130
10452                                 error "FIEMAP on $fm_file failed; returned " \
10453                                 "len $tot_len for OST $last_lun instead of 1024"
10454                                 return
10455                         else
10456                                 (( num_luns += 1 ))
10457                                 tot_len=0
10458                         fi
10459                 fi
10460                 (( tot_len += ext_len ))
10461                 last_lun=$frag_lun
10462         done
10463         if (( num_luns != 2 || tot_len != 512 )); then
10464                 cleanup_130
10465                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10466                         "luns or wrong len for OST $last_lun"
10467                 return
10468         fi
10469
10470         cleanup_130
10471
10472         echo "FIEMAP on 2-stripe file with hole succeeded"
10473 }
10474 run_test 130c "FIEMAP (2-stripe file with hole)"
10475
10476 test_130d() {
10477         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10478
10479         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10480         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10481
10482         trap cleanup_130 EXIT RETURN
10483
10484         local fm_file=$DIR/$tfile
10485         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10486                         error "setstripe on $fm_file"
10487         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10488                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10489
10490         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10491         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10492                 error "dd failed on $fm_file"
10493
10494         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10495         filefrag_op=$(filefrag -ve -k $fm_file |
10496                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10497
10498         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10499                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10500
10501         IFS=$'\n'
10502         tot_len=0
10503         num_luns=1
10504         for line in $filefrag_op
10505         do
10506                 frag_lun=$(echo $line | cut -d: -f5 |
10507                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10508                 ext_len=$(echo $line | cut -d: -f4)
10509                 if (( $frag_lun != $last_lun )); then
10510                         if (( tot_len != 1024 )); then
10511                                 cleanup_130
10512                                 error "FIEMAP on $fm_file failed; returned " \
10513                                 "len $tot_len for OST $last_lun instead of 1024"
10514                                 return
10515                         else
10516                                 (( num_luns += 1 ))
10517                                 tot_len=0
10518                         fi
10519                 fi
10520                 (( tot_len += ext_len ))
10521                 last_lun=$frag_lun
10522         done
10523         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10524                 cleanup_130
10525                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10526                         "luns or wrong len for OST $last_lun"
10527                 return
10528         fi
10529
10530         cleanup_130
10531
10532         echo "FIEMAP on N-stripe file succeeded"
10533 }
10534 run_test 130d "FIEMAP (N-stripe file)"
10535
10536 test_130e() {
10537         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10538
10539         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10540         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10541
10542         trap cleanup_130 EXIT RETURN
10543
10544         local fm_file=$DIR/$tfile
10545         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10546         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10547                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10548
10549         NUM_BLKS=512
10550         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10551         for ((i = 0; i < $NUM_BLKS; i++))
10552         do
10553                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10554         done
10555
10556         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10557         filefrag_op=$(filefrag -ve -k $fm_file |
10558                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10559
10560         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10561                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10562
10563         IFS=$'\n'
10564         tot_len=0
10565         num_luns=1
10566         for line in $filefrag_op
10567         do
10568                 frag_lun=$(echo $line | cut -d: -f5 |
10569                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10570                 ext_len=$(echo $line | cut -d: -f4)
10571                 if (( $frag_lun != $last_lun )); then
10572                         if (( tot_len != $EXPECTED_LEN )); then
10573                                 cleanup_130
10574                                 error "FIEMAP on $fm_file failed; returned " \
10575                                 "len $tot_len for OST $last_lun instead " \
10576                                 "of $EXPECTED_LEN"
10577                                 return
10578                         else
10579                                 (( num_luns += 1 ))
10580                                 tot_len=0
10581                         fi
10582                 fi
10583                 (( tot_len += ext_len ))
10584                 last_lun=$frag_lun
10585         done
10586         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10587                 cleanup_130
10588                 error "FIEMAP on $fm_file failed; returned wrong number " \
10589                         "of luns or wrong len for OST $last_lun"
10590                 return
10591         fi
10592
10593         cleanup_130
10594
10595         echo "FIEMAP with continuation calls succeeded"
10596 }
10597 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10598
10599 test_130f() {
10600         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10601         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10602
10603         local fm_file=$DIR/$tfile
10604         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10605                 error "multiop create with lov_delay_create on $fm_file"
10606
10607         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10608         filefrag_extents=$(filefrag -vek $fm_file |
10609                            awk '/extents? found/ { print $2 }')
10610         if [[ "$filefrag_extents" != "0" ]]; then
10611                 error "FIEMAP on $fm_file failed; " \
10612                       "returned $filefrag_extents expected 0"
10613         fi
10614
10615         rm -f $fm_file
10616 }
10617 run_test 130f "FIEMAP (unstriped file)"
10618
10619 # Test for writev/readv
10620 test_131a() {
10621         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10622                 error "writev test failed"
10623         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10624                 error "readv failed"
10625         rm -f $DIR/$tfile
10626 }
10627 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10628
10629 test_131b() {
10630         local fsize=$((524288 + 1048576 + 1572864))
10631         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10632                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10633                         error "append writev test failed"
10634
10635         ((fsize += 1572864 + 1048576))
10636         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10637                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10638                         error "append writev test failed"
10639         rm -f $DIR/$tfile
10640 }
10641 run_test 131b "test append writev"
10642
10643 test_131c() {
10644         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10645         error "NOT PASS"
10646 }
10647 run_test 131c "test read/write on file w/o objects"
10648
10649 test_131d() {
10650         rwv -f $DIR/$tfile -w -n 1 1572864
10651         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10652         if [ "$NOB" != 1572864 ]; then
10653                 error "Short read filed: read $NOB bytes instead of 1572864"
10654         fi
10655         rm -f $DIR/$tfile
10656 }
10657 run_test 131d "test short read"
10658
10659 test_131e() {
10660         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10661         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10662         error "read hitting hole failed"
10663         rm -f $DIR/$tfile
10664 }
10665 run_test 131e "test read hitting hole"
10666
10667 check_stats() {
10668         local facet=$1
10669         local op=$2
10670         local want=${3:-0}
10671         local res
10672
10673         case $facet in
10674         mds*) res=$(do_facet $facet \
10675                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10676                  ;;
10677         ost*) res=$(do_facet $facet \
10678                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10679                  ;;
10680         *) error "Wrong facet '$facet'" ;;
10681         esac
10682         echo $res
10683         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10684         # if the argument $3 is zero, it means any stat increment is ok.
10685         if [[ $want -gt 0 ]]; then
10686                 local count=$(echo $res | awk '{ print $2 }')
10687                 [[ $count -ne $want ]] &&
10688                         error "The $op counter on $facet is $count, not $want"
10689         fi
10690 }
10691
10692 test_133a() {
10693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10694         remote_ost_nodsh && skip "remote OST with nodsh"
10695         remote_mds_nodsh && skip "remote MDS with nodsh"
10696         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10697                 skip_env "MDS doesn't support rename stats"
10698
10699         local testdir=$DIR/${tdir}/stats_testdir
10700
10701         mkdir -p $DIR/${tdir}
10702
10703         # clear stats.
10704         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10705         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10706
10707         # verify mdt stats first.
10708         mkdir ${testdir} || error "mkdir failed"
10709         check_stats $SINGLEMDS "mkdir" 1
10710         touch ${testdir}/${tfile} || error "touch failed"
10711         check_stats $SINGLEMDS "open" 1
10712         check_stats $SINGLEMDS "close" 1
10713         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10714                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10715                 check_stats $SINGLEMDS "mknod" 2
10716         }
10717         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10718         check_stats $SINGLEMDS "unlink" 1
10719         rm -f ${testdir}/${tfile} || error "file remove failed"
10720         check_stats $SINGLEMDS "unlink" 2
10721
10722         # remove working dir and check mdt stats again.
10723         rmdir ${testdir} || error "rmdir failed"
10724         check_stats $SINGLEMDS "rmdir" 1
10725
10726         local testdir1=$DIR/${tdir}/stats_testdir1
10727         mkdir -p ${testdir}
10728         mkdir -p ${testdir1}
10729         touch ${testdir1}/test1
10730         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10731         check_stats $SINGLEMDS "crossdir_rename" 1
10732
10733         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10734         check_stats $SINGLEMDS "samedir_rename" 1
10735
10736         rm -rf $DIR/${tdir}
10737 }
10738 run_test 133a "Verifying MDT stats ========================================"
10739
10740 test_133b() {
10741         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10742         remote_ost_nodsh && skip "remote OST with nodsh"
10743         remote_mds_nodsh && skip "remote MDS with nodsh"
10744
10745         local testdir=$DIR/${tdir}/stats_testdir
10746
10747         mkdir -p ${testdir} || error "mkdir failed"
10748         touch ${testdir}/${tfile} || error "touch failed"
10749         cancel_lru_locks mdc
10750
10751         # clear stats.
10752         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10753         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10754
10755         # extra mdt stats verification.
10756         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10757         check_stats $SINGLEMDS "setattr" 1
10758         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10759         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10760         then            # LU-1740
10761                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10762                 check_stats $SINGLEMDS "getattr" 1
10763         fi
10764         rm -rf $DIR/${tdir}
10765
10766         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10767         # so the check below is not reliable
10768         [ $MDSCOUNT -eq 1 ] || return 0
10769
10770         # Sleep to avoid a cached response.
10771         #define OBD_STATFS_CACHE_SECONDS 1
10772         sleep 2
10773         $LFS df || error "lfs failed"
10774         check_stats $SINGLEMDS "statfs" 1
10775
10776         return 0
10777 }
10778 run_test 133b "Verifying extra MDT stats =================================="
10779
10780 test_133c() {
10781         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10782         remote_ost_nodsh && skip "remote OST with nodsh"
10783         remote_mds_nodsh && skip "remote MDS with nodsh"
10784
10785         local testdir=$DIR/$tdir/stats_testdir
10786
10787         test_mkdir -p $testdir
10788
10789         # verify obdfilter stats.
10790         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10791         sync
10792         cancel_lru_locks osc
10793         wait_delete_completed
10794
10795         # clear stats.
10796         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10797         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10798
10799         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10800                 error "dd failed"
10801         sync
10802         cancel_lru_locks osc
10803         check_stats ost1 "write" 1
10804
10805         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10806         check_stats ost1 "read" 1
10807
10808         > $testdir/$tfile || error "truncate failed"
10809         check_stats ost1 "punch" 1
10810
10811         rm -f $testdir/$tfile || error "file remove failed"
10812         wait_delete_completed
10813         check_stats ost1 "destroy" 1
10814
10815         rm -rf $DIR/$tdir
10816 }
10817 run_test 133c "Verifying OST stats ========================================"
10818
10819 order_2() {
10820         local value=$1
10821         local orig=$value
10822         local order=1
10823
10824         while [ $value -ge 2 ]; do
10825                 order=$((order*2))
10826                 value=$((value/2))
10827         done
10828
10829         if [ $orig -gt $order ]; then
10830                 order=$((order*2))
10831         fi
10832         echo $order
10833 }
10834
10835 size_in_KMGT() {
10836     local value=$1
10837     local size=('K' 'M' 'G' 'T');
10838     local i=0
10839     local size_string=$value
10840
10841     while [ $value -ge 1024 ]; do
10842         if [ $i -gt 3 ]; then
10843             #T is the biggest unit we get here, if that is bigger,
10844             #just return XXXT
10845             size_string=${value}T
10846             break
10847         fi
10848         value=$((value >> 10))
10849         if [ $value -lt 1024 ]; then
10850             size_string=${value}${size[$i]}
10851             break
10852         fi
10853         i=$((i + 1))
10854     done
10855
10856     echo $size_string
10857 }
10858
10859 get_rename_size() {
10860         local size=$1
10861         local context=${2:-.}
10862         local sample=$(do_facet $SINGLEMDS $LCTL \
10863                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10864                 grep -A1 $context |
10865                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10866         echo $sample
10867 }
10868
10869 test_133d() {
10870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10871         remote_ost_nodsh && skip "remote OST with nodsh"
10872         remote_mds_nodsh && skip "remote MDS with nodsh"
10873         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10874                 skip_env "MDS doesn't support rename stats"
10875
10876         local testdir1=$DIR/${tdir}/stats_testdir1
10877         local testdir2=$DIR/${tdir}/stats_testdir2
10878         mkdir -p $DIR/${tdir}
10879
10880         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10881
10882         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10883         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10884
10885         createmany -o $testdir1/test 512 || error "createmany failed"
10886
10887         # check samedir rename size
10888         mv ${testdir1}/test0 ${testdir1}/test_0
10889
10890         local testdir1_size=$(ls -l $DIR/${tdir} |
10891                 awk '/stats_testdir1/ {print $5}')
10892         local testdir2_size=$(ls -l $DIR/${tdir} |
10893                 awk '/stats_testdir2/ {print $5}')
10894
10895         testdir1_size=$(order_2 $testdir1_size)
10896         testdir2_size=$(order_2 $testdir2_size)
10897
10898         testdir1_size=$(size_in_KMGT $testdir1_size)
10899         testdir2_size=$(size_in_KMGT $testdir2_size)
10900
10901         echo "source rename dir size: ${testdir1_size}"
10902         echo "target rename dir size: ${testdir2_size}"
10903
10904         local cmd="do_facet $SINGLEMDS $LCTL "
10905         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10906
10907         eval $cmd || error "$cmd failed"
10908         local samedir=$($cmd | grep 'same_dir')
10909         local same_sample=$(get_rename_size $testdir1_size)
10910         [ -z "$samedir" ] && error "samedir_rename_size count error"
10911         [[ $same_sample -eq 1 ]] ||
10912                 error "samedir_rename_size error $same_sample"
10913         echo "Check same dir rename stats success"
10914
10915         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10916
10917         # check crossdir rename size
10918         mv ${testdir1}/test_0 ${testdir2}/test_0
10919
10920         testdir1_size=$(ls -l $DIR/${tdir} |
10921                 awk '/stats_testdir1/ {print $5}')
10922         testdir2_size=$(ls -l $DIR/${tdir} |
10923                 awk '/stats_testdir2/ {print $5}')
10924
10925         testdir1_size=$(order_2 $testdir1_size)
10926         testdir2_size=$(order_2 $testdir2_size)
10927
10928         testdir1_size=$(size_in_KMGT $testdir1_size)
10929         testdir2_size=$(size_in_KMGT $testdir2_size)
10930
10931         echo "source rename dir size: ${testdir1_size}"
10932         echo "target rename dir size: ${testdir2_size}"
10933
10934         eval $cmd || error "$cmd failed"
10935         local crossdir=$($cmd | grep 'crossdir')
10936         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10937         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10938         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10939         [[ $src_sample -eq 1 ]] ||
10940                 error "crossdir_rename_size error $src_sample"
10941         [[ $tgt_sample -eq 1 ]] ||
10942                 error "crossdir_rename_size error $tgt_sample"
10943         echo "Check cross dir rename stats success"
10944         rm -rf $DIR/${tdir}
10945 }
10946 run_test 133d "Verifying rename_stats ========================================"
10947
10948 test_133e() {
10949         remote_mds_nodsh && skip "remote MDS with nodsh"
10950         remote_ost_nodsh && skip "remote OST with nodsh"
10951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10952
10953         local testdir=$DIR/${tdir}/stats_testdir
10954         local ctr f0 f1 bs=32768 count=42 sum
10955
10956         mkdir -p ${testdir} || error "mkdir failed"
10957
10958         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
10959
10960         for ctr in {write,read}_bytes; do
10961                 sync
10962                 cancel_lru_locks osc
10963
10964                 do_facet ost1 $LCTL set_param -n \
10965                         "obdfilter.*.exports.clear=clear"
10966
10967                 if [ $ctr = write_bytes ]; then
10968                         f0=/dev/zero
10969                         f1=${testdir}/${tfile}
10970                 else
10971                         f0=${testdir}/${tfile}
10972                         f1=/dev/null
10973                 fi
10974
10975                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10976                         error "dd failed"
10977                 sync
10978                 cancel_lru_locks osc
10979
10980                 sum=$(do_facet ost1 $LCTL get_param \
10981                         "obdfilter.*.exports.*.stats" |
10982                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10983                                 $1 == ctr { sum += $7 }
10984                                 END { printf("%0.0f", sum) }')
10985
10986                 if ((sum != bs * count)); then
10987                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10988                 fi
10989         done
10990
10991         rm -rf $DIR/${tdir}
10992 }
10993 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10994
10995 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10996
10997 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
10998 # not honor the -ignore_readdir_race option correctly. So we call
10999 # error_ignore() rather than error() in these cases. See LU-11152.
11000 error_133() {
11001         if (find --version; do_facet mds1 find --version) |
11002                 grep -q '\b4\.5\.1[1-4]\b'; then
11003                 error_ignore LU-11152 "$@"
11004         else
11005                 error "$@"
11006         fi
11007 }
11008
11009 test_133f() {
11010         # First without trusting modes.
11011         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11012         echo "proc_dirs='$proc_dirs'"
11013         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11014         find $proc_dirs -exec cat '{}' \; &> /dev/null
11015
11016         # Second verifying readability.
11017         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
11018
11019         # Verifing writability with badarea_io.
11020         find $proc_dirs \
11021                 -ignore_readdir_race \
11022                 -type f \
11023                 -not -name force_lbug \
11024                 -not -name changelog_mask \
11025                 -exec badarea_io '{}' \; ||
11026                         error_133 "find $proc_dirs failed"
11027 }
11028 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11029
11030 test_133g() {
11031         remote_mds_nodsh && skip "remote MDS with nodsh"
11032         remote_ost_nodsh && skip "remote OST with nodsh"
11033
11034         # eventually, this can also be replaced with "lctl get_param -R",
11035         # but not until that option is always available on the server
11036         local facet
11037         for facet in mds1 ost1; do
11038                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11039                         skip_noexit "Too old lustre on $facet"
11040                 local facet_proc_dirs=$(do_facet $facet \
11041                                         \\\ls -d $proc_regexp 2>/dev/null)
11042                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11043                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11044                 do_facet $facet find $facet_proc_dirs \
11045                         ! -name req_history \
11046                         -exec cat '{}' \\\; &> /dev/null
11047
11048                 do_facet $facet find $facet_proc_dirs \
11049                         ! -name req_history \
11050                         -type f \
11051                         -exec cat '{}' \\\; &> /dev/null ||
11052                                 error "proc file read failed"
11053
11054                 do_facet $facet find $facet_proc_dirs \
11055                         -ignore_readdir_race \
11056                         -type f \
11057                         -not -name force_lbug \
11058                         -not -name changelog_mask \
11059                         -exec badarea_io '{}' \\\; ||
11060                                 error_133 "$facet find $facet_proc_dirs failed"
11061         done
11062
11063         # remount the FS in case writes/reads /proc break the FS
11064         cleanup || error "failed to unmount"
11065         setup || error "failed to setup"
11066         true
11067 }
11068 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11069
11070 test_133h() {
11071         remote_mds_nodsh && skip "remote MDS with nodsh"
11072         remote_ost_nodsh && skip "remote OST with nodsh"
11073         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11074                 skip "Need MDS version at least 2.9.54"
11075
11076         local facet
11077
11078         for facet in client mds1 ost1; do
11079                 local facet_proc_dirs=$(do_facet $facet \
11080                                         \\\ls -d $proc_regexp 2> /dev/null)
11081                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11082                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11083                 # Get the list of files that are missing the terminating newline
11084                 local missing=($(do_facet $facet \
11085                         find ${facet_proc_dirs} -type f \|              \
11086                                 while read F\; do                       \
11087                                         awk -v FS='\v' -v RS='\v\v'     \
11088                                         "'END { if(NR>0 &&              \
11089                                         \\\$NF !~ /.*\\\n\$/)           \
11090                                                 print FILENAME}'"       \
11091                                         '\$F'\;                         \
11092                                 done 2>/dev/null))
11093                 [ ${#missing[*]} -eq 0 ] ||
11094                         error "files do not end with newline: ${missing[*]}"
11095         done
11096 }
11097 run_test 133h "Proc files should end with newlines"
11098
11099 test_134a() {
11100         remote_mds_nodsh && skip "remote MDS with nodsh"
11101         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11102                 skip "Need MDS version at least 2.7.54"
11103
11104         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11105         cancel_lru_locks mdc
11106
11107         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11108         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11109         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11110
11111         local nr=1000
11112         createmany -o $DIR/$tdir/f $nr ||
11113                 error "failed to create $nr files in $DIR/$tdir"
11114         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11115
11116         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11117         do_facet mds1 $LCTL set_param fail_loc=0x327
11118         do_facet mds1 $LCTL set_param fail_val=500
11119         touch $DIR/$tdir/m
11120
11121         echo "sleep 10 seconds ..."
11122         sleep 10
11123         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11124
11125         do_facet mds1 $LCTL set_param fail_loc=0
11126         do_facet mds1 $LCTL set_param fail_val=0
11127         [ $lck_cnt -lt $unused ] ||
11128                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11129
11130         rm $DIR/$tdir/m
11131         unlinkmany $DIR/$tdir/f $nr
11132 }
11133 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11134
11135 test_134b() {
11136         remote_mds_nodsh && skip "remote MDS with nodsh"
11137         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11138                 skip "Need MDS version at least 2.7.54"
11139
11140         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11141         cancel_lru_locks mdc
11142
11143         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11144                         ldlm.lock_reclaim_threshold_mb)
11145         # disable reclaim temporarily
11146         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11147
11148         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11149         do_facet mds1 $LCTL set_param fail_loc=0x328
11150         do_facet mds1 $LCTL set_param fail_val=500
11151
11152         $LCTL set_param debug=+trace
11153
11154         local nr=600
11155         createmany -o $DIR/$tdir/f $nr &
11156         local create_pid=$!
11157
11158         echo "Sleep $TIMEOUT seconds ..."
11159         sleep $TIMEOUT
11160         if ! ps -p $create_pid  > /dev/null 2>&1; then
11161                 do_facet mds1 $LCTL set_param fail_loc=0
11162                 do_facet mds1 $LCTL set_param fail_val=0
11163                 do_facet mds1 $LCTL set_param \
11164                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11165                 error "createmany finished incorrectly!"
11166         fi
11167         do_facet mds1 $LCTL set_param fail_loc=0
11168         do_facet mds1 $LCTL set_param fail_val=0
11169         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11170         wait $create_pid || return 1
11171
11172         unlinkmany $DIR/$tdir/f $nr
11173 }
11174 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11175
11176 test_140() { #bug-17379
11177         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11178
11179         test_mkdir $DIR/$tdir
11180         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11181         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11182
11183         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11184         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11185         local i=0
11186         while i=$((i + 1)); do
11187                 test_mkdir $i
11188                 cd $i || error "Changing to $i"
11189                 ln -s ../stat stat || error "Creating stat symlink"
11190                 # Read the symlink until ELOOP present,
11191                 # not LBUGing the system is considered success,
11192                 # we didn't overrun the stack.
11193                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11194                 if [ $ret -ne 0 ]; then
11195                         if [ $ret -eq 40 ]; then
11196                                 break  # -ELOOP
11197                         else
11198                                 error "Open stat symlink"
11199                                         return
11200                         fi
11201                 fi
11202         done
11203         i=$((i - 1))
11204         echo "The symlink depth = $i"
11205         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11206                                         error "Invalid symlink depth"
11207
11208         # Test recursive symlink
11209         ln -s symlink_self symlink_self
11210         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11211         echo "open symlink_self returns $ret"
11212         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11213 }
11214 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11215
11216 test_150() {
11217         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11218
11219         local TF="$TMP/$tfile"
11220
11221         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11222         cp $TF $DIR/$tfile
11223         cancel_lru_locks $OSC
11224         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11225         remount_client $MOUNT
11226         df -P $MOUNT
11227         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11228
11229         $TRUNCATE $TF 6000
11230         $TRUNCATE $DIR/$tfile 6000
11231         cancel_lru_locks $OSC
11232         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11233
11234         echo "12345" >>$TF
11235         echo "12345" >>$DIR/$tfile
11236         cancel_lru_locks $OSC
11237         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11238
11239         echo "12345" >>$TF
11240         echo "12345" >>$DIR/$tfile
11241         cancel_lru_locks $OSC
11242         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11243
11244         rm -f $TF
11245         true
11246 }
11247 run_test 150 "truncate/append tests"
11248
11249 #LU-2902 roc_hit was not able to read all values from lproc
11250 function roc_hit_init() {
11251         local list=$(comma_list $(osts_nodes))
11252         local dir=$DIR/$tdir-check
11253         local file=$dir/$tfile
11254         local BEFORE
11255         local AFTER
11256         local idx
11257
11258         test_mkdir $dir
11259         #use setstripe to do a write to every ost
11260         for i in $(seq 0 $((OSTCOUNT-1))); do
11261                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11262                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11263                 idx=$(printf %04x $i)
11264                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11265                         awk '$1 == "cache_access" {sum += $7}
11266                                 END { printf("%0.0f", sum) }')
11267
11268                 cancel_lru_locks osc
11269                 cat $file >/dev/null
11270
11271                 AFTER=$(get_osd_param $list *OST*$idx stats |
11272                         awk '$1 == "cache_access" {sum += $7}
11273                                 END { printf("%0.0f", sum) }')
11274
11275                 echo BEFORE:$BEFORE AFTER:$AFTER
11276                 if ! let "AFTER - BEFORE == 4"; then
11277                         rm -rf $dir
11278                         error "roc_hit is not safe to use"
11279                 fi
11280                 rm $file
11281         done
11282
11283         rm -rf $dir
11284 }
11285
11286 function roc_hit() {
11287         local list=$(comma_list $(osts_nodes))
11288         echo $(get_osd_param $list '' stats |
11289                 awk '$1 == "cache_hit" {sum += $7}
11290                         END { printf("%0.0f", sum) }')
11291 }
11292
11293 function set_cache() {
11294         local on=1
11295
11296         if [ "$2" == "off" ]; then
11297                 on=0;
11298         fi
11299         local list=$(comma_list $(osts_nodes))
11300         set_osd_param $list '' $1_cache_enable $on
11301
11302         cancel_lru_locks osc
11303 }
11304
11305 test_151() {
11306         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11307         remote_ost_nodsh && skip "remote OST with nodsh"
11308
11309         local CPAGES=3
11310         local list=$(comma_list $(osts_nodes))
11311
11312         # check whether obdfilter is cache capable at all
11313         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11314                 skip "not cache-capable obdfilter"
11315         fi
11316
11317         # check cache is enabled on all obdfilters
11318         if get_osd_param $list '' read_cache_enable | grep 0; then
11319                 skip "oss cache is disabled"
11320         fi
11321
11322         set_osd_param $list '' writethrough_cache_enable 1
11323
11324         # check write cache is enabled on all obdfilters
11325         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11326                 skip "oss write cache is NOT enabled"
11327         fi
11328
11329         roc_hit_init
11330
11331         #define OBD_FAIL_OBD_NO_LRU  0x609
11332         do_nodes $list $LCTL set_param fail_loc=0x609
11333
11334         # pages should be in the case right after write
11335         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11336                 error "dd failed"
11337
11338         local BEFORE=$(roc_hit)
11339         cancel_lru_locks osc
11340         cat $DIR/$tfile >/dev/null
11341         local AFTER=$(roc_hit)
11342
11343         do_nodes $list $LCTL set_param fail_loc=0
11344
11345         if ! let "AFTER - BEFORE == CPAGES"; then
11346                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11347         fi
11348
11349         # the following read invalidates the cache
11350         cancel_lru_locks osc
11351         set_osd_param $list '' read_cache_enable 0
11352         cat $DIR/$tfile >/dev/null
11353
11354         # now data shouldn't be found in the cache
11355         BEFORE=$(roc_hit)
11356         cancel_lru_locks osc
11357         cat $DIR/$tfile >/dev/null
11358         AFTER=$(roc_hit)
11359         if let "AFTER - BEFORE != 0"; then
11360                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11361         fi
11362
11363         set_osd_param $list '' read_cache_enable 1
11364         rm -f $DIR/$tfile
11365 }
11366 run_test 151 "test cache on oss and controls ==============================="
11367
11368 test_152() {
11369         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11370
11371         local TF="$TMP/$tfile"
11372
11373         # simulate ENOMEM during write
11374 #define OBD_FAIL_OST_NOMEM      0x226
11375         lctl set_param fail_loc=0x80000226
11376         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11377         cp $TF $DIR/$tfile
11378         sync || error "sync failed"
11379         lctl set_param fail_loc=0
11380
11381         # discard client's cache
11382         cancel_lru_locks osc
11383
11384         # simulate ENOMEM during read
11385         lctl set_param fail_loc=0x80000226
11386         cmp $TF $DIR/$tfile || error "cmp failed"
11387         lctl set_param fail_loc=0
11388
11389         rm -f $TF
11390 }
11391 run_test 152 "test read/write with enomem ============================"
11392
11393 test_153() {
11394         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11395 }
11396 run_test 153 "test if fdatasync does not crash ======================="
11397
11398 dot_lustre_fid_permission_check() {
11399         local fid=$1
11400         local ffid=$MOUNT/.lustre/fid/$fid
11401         local test_dir=$2
11402
11403         echo "stat fid $fid"
11404         stat $ffid > /dev/null || error "stat $ffid failed."
11405         echo "touch fid $fid"
11406         touch $ffid || error "touch $ffid failed."
11407         echo "write to fid $fid"
11408         cat /etc/hosts > $ffid || error "write $ffid failed."
11409         echo "read fid $fid"
11410         diff /etc/hosts $ffid || error "read $ffid failed."
11411         echo "append write to fid $fid"
11412         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11413         echo "rename fid $fid"
11414         mv $ffid $test_dir/$tfile.1 &&
11415                 error "rename $ffid to $tfile.1 should fail."
11416         touch $test_dir/$tfile.1
11417         mv $test_dir/$tfile.1 $ffid &&
11418                 error "rename $tfile.1 to $ffid should fail."
11419         rm -f $test_dir/$tfile.1
11420         echo "truncate fid $fid"
11421         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11422         echo "link fid $fid"
11423         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11424         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11425                 echo "setfacl fid $fid"
11426                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11427                 echo "getfacl fid $fid"
11428                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11429         fi
11430         echo "unlink fid $fid"
11431         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11432         echo "mknod fid $fid"
11433         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11434
11435         fid=[0xf00000400:0x1:0x0]
11436         ffid=$MOUNT/.lustre/fid/$fid
11437
11438         echo "stat non-exist fid $fid"
11439         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11440         echo "write to non-exist fid $fid"
11441         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11442         echo "link new fid $fid"
11443         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11444
11445         mkdir -p $test_dir/$tdir
11446         touch $test_dir/$tdir/$tfile
11447         fid=$($LFS path2fid $test_dir/$tdir)
11448         rc=$?
11449         [ $rc -ne 0 ] &&
11450                 error "error: could not get fid for $test_dir/$dir/$tfile."
11451
11452         ffid=$MOUNT/.lustre/fid/$fid
11453
11454         echo "ls $fid"
11455         ls $ffid > /dev/null || error "ls $ffid failed."
11456         echo "touch $fid/$tfile.1"
11457         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11458
11459         echo "touch $MOUNT/.lustre/fid/$tfile"
11460         touch $MOUNT/.lustre/fid/$tfile && \
11461                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11462
11463         echo "setxattr to $MOUNT/.lustre/fid"
11464         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11465
11466         echo "listxattr for $MOUNT/.lustre/fid"
11467         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11468
11469         echo "delxattr from $MOUNT/.lustre/fid"
11470         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11471
11472         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11473         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11474                 error "touch invalid fid should fail."
11475
11476         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11477         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11478                 error "touch non-normal fid should fail."
11479
11480         echo "rename $tdir to $MOUNT/.lustre/fid"
11481         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11482                 error "rename to $MOUNT/.lustre/fid should fail."
11483
11484         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11485         then            # LU-3547
11486                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11487                 local new_obf_mode=777
11488
11489                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11490                 chmod $new_obf_mode $DIR/.lustre/fid ||
11491                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11492
11493                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11494                 [ $obf_mode -eq $new_obf_mode ] ||
11495                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11496
11497                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11498                 chmod $old_obf_mode $DIR/.lustre/fid ||
11499                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11500         fi
11501
11502         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11503         fid=$($LFS path2fid $test_dir/$tfile-2)
11504
11505         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11506         then # LU-5424
11507                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11508                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11509                         error "create lov data thru .lustre failed"
11510         fi
11511         echo "cp /etc/passwd $test_dir/$tfile-2"
11512         cp /etc/passwd $test_dir/$tfile-2 ||
11513                 error "copy to $test_dir/$tfile-2 failed."
11514         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11515         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11516                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11517
11518         rm -rf $test_dir/tfile.lnk
11519         rm -rf $test_dir/$tfile-2
11520 }
11521
11522 test_154A() {
11523         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11524                 skip "Need MDS version at least 2.4.1"
11525
11526         local tf=$DIR/$tfile
11527         touch $tf
11528
11529         local fid=$($LFS path2fid $tf)
11530         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11531
11532         # check that we get the same pathname back
11533         local found=$($LFS fid2path $MOUNT "$fid")
11534         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11535         [ "$found" == "$tf" ] ||
11536                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11537 }
11538 run_test 154A "lfs path2fid and fid2path basic checks"
11539
11540 test_154B() {
11541         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11542                 skip "Need MDS version at least 2.4.1"
11543
11544         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11545         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11546         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11547         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11548
11549         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11550         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11551
11552         # check that we get the same pathname
11553         echo "PFID: $PFID, name: $name"
11554         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11555         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11556         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11557                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11558
11559         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11560 }
11561 run_test 154B "verify the ll_decode_linkea tool"
11562
11563 test_154a() {
11564         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11565         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11566         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11567                 skip "Need MDS version at least 2.2.51"
11568         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11569
11570         cp /etc/hosts $DIR/$tfile
11571
11572         fid=$($LFS path2fid $DIR/$tfile)
11573         rc=$?
11574         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11575
11576         dot_lustre_fid_permission_check "$fid" $DIR ||
11577                 error "dot lustre permission check $fid failed"
11578
11579         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11580
11581         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11582
11583         touch $MOUNT/.lustre/file &&
11584                 error "creation is not allowed under .lustre"
11585
11586         mkdir $MOUNT/.lustre/dir &&
11587                 error "mkdir is not allowed under .lustre"
11588
11589         rm -rf $DIR/$tfile
11590 }
11591 run_test 154a "Open-by-FID"
11592
11593 test_154b() {
11594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11595         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11596         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11597         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11598                 skip "Need MDS version at least 2.2.51"
11599
11600         local remote_dir=$DIR/$tdir/remote_dir
11601         local MDTIDX=1
11602         local rc=0
11603
11604         mkdir -p $DIR/$tdir
11605         $LFS mkdir -i $MDTIDX $remote_dir ||
11606                 error "create remote directory failed"
11607
11608         cp /etc/hosts $remote_dir/$tfile
11609
11610         fid=$($LFS path2fid $remote_dir/$tfile)
11611         rc=$?
11612         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11613
11614         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11615                 error "dot lustre permission check $fid failed"
11616         rm -rf $DIR/$tdir
11617 }
11618 run_test 154b "Open-by-FID for remote directory"
11619
11620 test_154c() {
11621         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11622                 skip "Need MDS version at least 2.4.1"
11623
11624         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11625         local FID1=$($LFS path2fid $DIR/$tfile.1)
11626         local FID2=$($LFS path2fid $DIR/$tfile.2)
11627         local FID3=$($LFS path2fid $DIR/$tfile.3)
11628
11629         local N=1
11630         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11631                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11632                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11633                 local want=FID$N
11634                 [ "$FID" = "${!want}" ] ||
11635                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11636                 N=$((N + 1))
11637         done
11638
11639         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11640         do
11641                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11642                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11643                 N=$((N + 1))
11644         done
11645 }
11646 run_test 154c "lfs path2fid and fid2path multiple arguments"
11647
11648 test_154d() {
11649         remote_mds_nodsh && skip "remote MDS with nodsh"
11650         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11651                 skip "Need MDS version at least 2.5.53"
11652
11653         if remote_mds; then
11654                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11655         else
11656                 nid="0@lo"
11657         fi
11658         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11659         local fd
11660         local cmd
11661
11662         rm -f $DIR/$tfile
11663         touch $DIR/$tfile
11664
11665         local fid=$($LFS path2fid $DIR/$tfile)
11666         # Open the file
11667         fd=$(free_fd)
11668         cmd="exec $fd<$DIR/$tfile"
11669         eval $cmd
11670         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11671         echo "$fid_list" | grep "$fid"
11672         rc=$?
11673
11674         cmd="exec $fd>/dev/null"
11675         eval $cmd
11676         if [ $rc -ne 0 ]; then
11677                 error "FID $fid not found in open files list $fid_list"
11678         fi
11679 }
11680 run_test 154d "Verify open file fid"
11681
11682 test_154e()
11683 {
11684         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11685                 skip "Need MDS version at least 2.6.50"
11686
11687         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11688                 error ".lustre returned by readdir"
11689         fi
11690 }
11691 run_test 154e ".lustre is not returned by readdir"
11692
11693 test_154f() {
11694         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11695
11696         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11697         test_mkdir -p -c1 $DIR/$tdir/d
11698         # test dirs inherit from its stripe
11699         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11700         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11701         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11702         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11703         touch $DIR/f
11704
11705         # get fid of parents
11706         local FID0=$($LFS path2fid $DIR/$tdir/d)
11707         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11708         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11709         local FID3=$($LFS path2fid $DIR)
11710
11711         # check that path2fid --parents returns expected <parent_fid>/name
11712         # 1) test for a directory (single parent)
11713         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11714         [ "$parent" == "$FID0/foo1" ] ||
11715                 error "expected parent: $FID0/foo1, got: $parent"
11716
11717         # 2) test for a file with nlink > 1 (multiple parents)
11718         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11719         echo "$parent" | grep -F "$FID1/$tfile" ||
11720                 error "$FID1/$tfile not returned in parent list"
11721         echo "$parent" | grep -F "$FID2/link" ||
11722                 error "$FID2/link not returned in parent list"
11723
11724         # 3) get parent by fid
11725         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11726         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11727         echo "$parent" | grep -F "$FID1/$tfile" ||
11728                 error "$FID1/$tfile not returned in parent list (by fid)"
11729         echo "$parent" | grep -F "$FID2/link" ||
11730                 error "$FID2/link not returned in parent list (by fid)"
11731
11732         # 4) test for entry in root directory
11733         parent=$($LFS path2fid --parents $DIR/f)
11734         echo "$parent" | grep -F "$FID3/f" ||
11735                 error "$FID3/f not returned in parent list"
11736
11737         # 5) test it on root directory
11738         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11739                 error "$MOUNT should not have parents"
11740
11741         # enable xattr caching and check that linkea is correctly updated
11742         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11743         save_lustre_params client "llite.*.xattr_cache" > $save
11744         lctl set_param llite.*.xattr_cache 1
11745
11746         # 6.1) linkea update on rename
11747         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11748
11749         # get parents by fid
11750         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11751         # foo1 should no longer be returned in parent list
11752         echo "$parent" | grep -F "$FID1" &&
11753                 error "$FID1 should no longer be in parent list"
11754         # the new path should appear
11755         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11756                 error "$FID2/$tfile.moved is not in parent list"
11757
11758         # 6.2) linkea update on unlink
11759         rm -f $DIR/$tdir/d/foo2/link
11760         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11761         # foo2/link should no longer be returned in parent list
11762         echo "$parent" | grep -F "$FID2/link" &&
11763                 error "$FID2/link should no longer be in parent list"
11764         true
11765
11766         rm -f $DIR/f
11767         restore_lustre_params < $save
11768         rm -f $save
11769 }
11770 run_test 154f "get parent fids by reading link ea"
11771
11772 test_154g()
11773 {
11774         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11775         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11776            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11777                 skip "Need MDS version at least 2.6.92"
11778
11779         mkdir -p $DIR/$tdir
11780         llapi_fid_test -d $DIR/$tdir
11781 }
11782 run_test 154g "various llapi FID tests"
11783
11784 test_155_small_load() {
11785     local temp=$TMP/$tfile
11786     local file=$DIR/$tfile
11787
11788     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11789         error "dd of=$temp bs=6096 count=1 failed"
11790     cp $temp $file
11791     cancel_lru_locks $OSC
11792     cmp $temp $file || error "$temp $file differ"
11793
11794     $TRUNCATE $temp 6000
11795     $TRUNCATE $file 6000
11796     cmp $temp $file || error "$temp $file differ (truncate1)"
11797
11798     echo "12345" >>$temp
11799     echo "12345" >>$file
11800     cmp $temp $file || error "$temp $file differ (append1)"
11801
11802     echo "12345" >>$temp
11803     echo "12345" >>$file
11804     cmp $temp $file || error "$temp $file differ (append2)"
11805
11806     rm -f $temp $file
11807     true
11808 }
11809
11810 test_155_big_load() {
11811         remote_ost_nodsh && skip "remote OST with nodsh"
11812
11813         local temp=$TMP/$tfile
11814         local file=$DIR/$tfile
11815
11816         free_min_max
11817         local cache_size=$(do_facet ost$((MAXI+1)) \
11818                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11819         local large_file_size=$((cache_size * 2))
11820
11821         echo "OSS cache size: $cache_size KB"
11822         echo "Large file size: $large_file_size KB"
11823
11824         [ $MAXV -le $large_file_size ] &&
11825                 skip_env "max available OST size needs > $large_file_size KB"
11826
11827         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11828
11829         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11830                 error "dd of=$temp bs=$large_file_size count=1k failed"
11831         cp $temp $file
11832         ls -lh $temp $file
11833         cancel_lru_locks osc
11834         cmp $temp $file || error "$temp $file differ"
11835
11836         rm -f $temp $file
11837         true
11838 }
11839
11840 save_writethrough() {
11841         local facets=$(get_facets OST)
11842
11843         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11844 }
11845
11846 test_155a() {
11847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11848
11849         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11850
11851         save_writethrough $p
11852
11853         set_cache read on
11854         set_cache writethrough on
11855         test_155_small_load
11856         restore_lustre_params < $p
11857         rm -f $p
11858 }
11859 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11860
11861 test_155b() {
11862         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11863
11864         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11865
11866         save_writethrough $p
11867
11868         set_cache read on
11869         set_cache writethrough off
11870         test_155_small_load
11871         restore_lustre_params < $p
11872         rm -f $p
11873 }
11874 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11875
11876 test_155c() {
11877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11878
11879         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11880
11881         save_writethrough $p
11882
11883         set_cache read off
11884         set_cache writethrough on
11885         test_155_small_load
11886         restore_lustre_params < $p
11887         rm -f $p
11888 }
11889 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11890
11891 test_155d() {
11892         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11893
11894         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11895
11896         save_writethrough $p
11897
11898         set_cache read off
11899         set_cache writethrough off
11900         test_155_small_load
11901         restore_lustre_params < $p
11902         rm -f $p
11903 }
11904 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11905
11906 test_155e() {
11907         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11908
11909         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11910
11911         save_writethrough $p
11912
11913         set_cache read on
11914         set_cache writethrough on
11915         test_155_big_load
11916         restore_lustre_params < $p
11917         rm -f $p
11918 }
11919 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11920
11921 test_155f() {
11922         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11923
11924         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11925
11926         save_writethrough $p
11927
11928         set_cache read on
11929         set_cache writethrough off
11930         test_155_big_load
11931         restore_lustre_params < $p
11932         rm -f $p
11933 }
11934 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11935
11936 test_155g() {
11937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11938
11939         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11940
11941         save_writethrough $p
11942
11943         set_cache read off
11944         set_cache writethrough on
11945         test_155_big_load
11946         restore_lustre_params < $p
11947         rm -f $p
11948 }
11949 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
11950
11951 test_155h() {
11952         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11953
11954         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11955
11956         save_writethrough $p
11957
11958         set_cache read off
11959         set_cache writethrough off
11960         test_155_big_load
11961         restore_lustre_params < $p
11962         rm -f $p
11963 }
11964 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
11965
11966 test_156() {
11967         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11968         remote_ost_nodsh && skip "remote OST with nodsh"
11969         [ "$(facet_fstype ost1)" = "zfs" -a \
11970            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
11971                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
11972
11973         local CPAGES=3
11974         local BEFORE
11975         local AFTER
11976         local file="$DIR/$tfile"
11977         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11978
11979         save_writethrough $p
11980         roc_hit_init
11981
11982         log "Turn on read and write cache"
11983         set_cache read on
11984         set_cache writethrough on
11985
11986         log "Write data and read it back."
11987         log "Read should be satisfied from the cache."
11988         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11989         BEFORE=$(roc_hit)
11990         cancel_lru_locks osc
11991         cat $file >/dev/null
11992         AFTER=$(roc_hit)
11993         if ! let "AFTER - BEFORE == CPAGES"; then
11994                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11995         else
11996                 log "cache hits:: before: $BEFORE, after: $AFTER"
11997         fi
11998
11999         log "Read again; it should be satisfied from the cache."
12000         BEFORE=$AFTER
12001         cancel_lru_locks osc
12002         cat $file >/dev/null
12003         AFTER=$(roc_hit)
12004         if ! let "AFTER - BEFORE == CPAGES"; then
12005                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12006         else
12007                 log "cache hits:: before: $BEFORE, after: $AFTER"
12008         fi
12009
12010         log "Turn off the read cache and turn on the write cache"
12011         set_cache read off
12012         set_cache writethrough on
12013
12014         log "Read again; it should be satisfied from the cache."
12015         BEFORE=$(roc_hit)
12016         cancel_lru_locks osc
12017         cat $file >/dev/null
12018         AFTER=$(roc_hit)
12019         if ! let "AFTER - BEFORE == CPAGES"; then
12020                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12021         else
12022                 log "cache hits:: before: $BEFORE, after: $AFTER"
12023         fi
12024
12025         log "Read again; it should not be satisfied from the cache."
12026         BEFORE=$AFTER
12027         cancel_lru_locks osc
12028         cat $file >/dev/null
12029         AFTER=$(roc_hit)
12030         if ! let "AFTER - BEFORE == 0"; then
12031                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12032         else
12033                 log "cache hits:: before: $BEFORE, after: $AFTER"
12034         fi
12035
12036         log "Write data and read it back."
12037         log "Read should be satisfied from the cache."
12038         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12039         BEFORE=$(roc_hit)
12040         cancel_lru_locks osc
12041         cat $file >/dev/null
12042         AFTER=$(roc_hit)
12043         if ! let "AFTER - BEFORE == CPAGES"; then
12044                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12045         else
12046                 log "cache hits:: before: $BEFORE, after: $AFTER"
12047         fi
12048
12049         log "Read again; it should not be satisfied from the cache."
12050         BEFORE=$AFTER
12051         cancel_lru_locks osc
12052         cat $file >/dev/null
12053         AFTER=$(roc_hit)
12054         if ! let "AFTER - BEFORE == 0"; then
12055                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12056         else
12057                 log "cache hits:: before: $BEFORE, after: $AFTER"
12058         fi
12059
12060         log "Turn off read and write cache"
12061         set_cache read off
12062         set_cache writethrough off
12063
12064         log "Write data and read it back"
12065         log "It should not be satisfied from the cache."
12066         rm -f $file
12067         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12068         cancel_lru_locks osc
12069         BEFORE=$(roc_hit)
12070         cat $file >/dev/null
12071         AFTER=$(roc_hit)
12072         if ! let "AFTER - BEFORE == 0"; then
12073                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12074         else
12075                 log "cache hits:: before: $BEFORE, after: $AFTER"
12076         fi
12077
12078         log "Turn on the read cache and turn off the write cache"
12079         set_cache read on
12080         set_cache writethrough off
12081
12082         log "Write data and read it back"
12083         log "It should not be satisfied from the cache."
12084         rm -f $file
12085         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12086         BEFORE=$(roc_hit)
12087         cancel_lru_locks osc
12088         cat $file >/dev/null
12089         AFTER=$(roc_hit)
12090         if ! let "AFTER - BEFORE == 0"; then
12091                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12092         else
12093                 log "cache hits:: before: $BEFORE, after: $AFTER"
12094         fi
12095
12096         log "Read again; it should be satisfied from the cache."
12097         BEFORE=$(roc_hit)
12098         cancel_lru_locks osc
12099         cat $file >/dev/null
12100         AFTER=$(roc_hit)
12101         if ! let "AFTER - BEFORE == CPAGES"; then
12102                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12103         else
12104                 log "cache hits:: before: $BEFORE, after: $AFTER"
12105         fi
12106
12107         restore_lustre_params < $p
12108         rm -f $p $file
12109 }
12110 run_test 156 "Verification of tunables"
12111
12112 test_160a() {
12113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12114         remote_mds_nodsh && skip "remote MDS with nodsh"
12115         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12116                 skip "Need MDS version at least 2.2.0"
12117
12118         changelog_register || error "changelog_register failed"
12119         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12120         changelog_users $SINGLEMDS | grep -q $cl_user ||
12121                 error "User $cl_user not found in changelog_users"
12122
12123         # change something
12124         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12125         changelog_clear 0 || error "changelog_clear failed"
12126         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12127         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12128         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12129         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12130         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12131         rm $DIR/$tdir/pics/desktop.jpg
12132
12133         changelog_dump | tail -10
12134
12135         echo "verifying changelog mask"
12136         changelog_chmask "-MKDIR"
12137         changelog_chmask "-CLOSE"
12138
12139         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12140         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12141
12142         changelog_chmask "+MKDIR"
12143         changelog_chmask "+CLOSE"
12144
12145         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12146         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12147
12148         changelog_dump | tail -10
12149         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12150         CLOSES=$(changelog_dump | grep -c "CLOSE")
12151         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12152         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12153
12154         # verify contents
12155         echo "verifying target fid"
12156         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12157         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12158         [ "$fidc" == "$fidf" ] ||
12159                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12160         echo "verifying parent fid"
12161         # The FID returned from the Changelog may be the directory shard on
12162         # a different MDT, and not the FID returned by path2fid on the parent.
12163         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12164         # since this is what will matter when recreating this file in the tree.
12165         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12166         local pathp=$($LFS fid2path $MOUNT "$fidp")
12167         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12168                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12169
12170         echo "getting records for $cl_user"
12171         changelog_users $SINGLEMDS
12172         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12173         local nclr=3
12174         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12175                 error "changelog_clear failed"
12176         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12177         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12178         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12179                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12180
12181         local min0_rec=$(changelog_users $SINGLEMDS |
12182                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12183         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12184                           awk '{ print $1; exit; }')
12185
12186         changelog_dump | tail -n 5
12187         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12188         [ $first_rec == $((min0_rec + 1)) ] ||
12189                 error "first index should be $min0_rec + 1 not $first_rec"
12190
12191         # LU-3446 changelog index reset on MDT restart
12192         local cur_rec1=$(changelog_users $SINGLEMDS |
12193                          awk '/^current.index:/ { print $NF }')
12194         changelog_clear 0 ||
12195                 error "clear all changelog records for $cl_user failed"
12196         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12197         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12198                 error "Fail to start $SINGLEMDS"
12199         local cur_rec2=$(changelog_users $SINGLEMDS |
12200                          awk '/^current.index:/ { print $NF }')
12201         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12202         [ $cur_rec1 == $cur_rec2 ] ||
12203                 error "current index should be $cur_rec1 not $cur_rec2"
12204
12205         echo "verifying users from this test are deregistered"
12206         changelog_deregister || error "changelog_deregister failed"
12207         changelog_users $SINGLEMDS | grep -q $cl_user &&
12208                 error "User '$cl_user' still in changelog_users"
12209
12210         # lctl get_param -n mdd.*.changelog_users
12211         # current index: 144
12212         # ID    index (idle seconds)
12213         # cl3   144 (2)
12214         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12215                 # this is the normal case where all users were deregistered
12216                 # make sure no new records are added when no users are present
12217                 local last_rec1=$(changelog_users $SINGLEMDS |
12218                                   awk '/^current.index:/ { print $NF }')
12219                 touch $DIR/$tdir/chloe
12220                 local last_rec2=$(changelog_users $SINGLEMDS |
12221                                   awk '/^current.index:/ { print $NF }')
12222                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12223                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12224         else
12225                 # any changelog users must be leftovers from a previous test
12226                 changelog_users $SINGLEMDS
12227                 echo "other changelog users; can't verify off"
12228         fi
12229 }
12230 run_test 160a "changelog sanity"
12231
12232 test_160b() { # LU-3587
12233         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12234         remote_mds_nodsh && skip "remote MDS with nodsh"
12235         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12236                 skip "Need MDS version at least 2.2.0"
12237
12238         changelog_register || error "changelog_register failed"
12239         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12240         changelog_users $SINGLEMDS | grep -q $cl_user ||
12241                 error "User '$cl_user' not found in changelog_users"
12242
12243         local longname1=$(str_repeat a 255)
12244         local longname2=$(str_repeat b 255)
12245
12246         cd $DIR
12247         echo "creating very long named file"
12248         touch $longname1 || error "create of '$longname1' failed"
12249         echo "renaming very long named file"
12250         mv $longname1 $longname2
12251
12252         changelog_dump | grep RENME | tail -n 5
12253         rm -f $longname2
12254 }
12255 run_test 160b "Verify that very long rename doesn't crash in changelog"
12256
12257 test_160c() {
12258         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12259         remote_mds_nodsh && skip "remote MDS with nodsh"
12260
12261         local rc=0
12262         local server_version=$(lustre_version_code $SINGLEMDS)
12263
12264         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12265                 [[ $server_version -gt $(version_code 2.5.1) &&
12266                    $server_version -lt $(version_code 2.5.50) ]] ||
12267                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12268
12269         # Registration step
12270         changelog_register || error "changelog_register failed"
12271
12272         rm -rf $DIR/$tdir
12273         mkdir -p $DIR/$tdir
12274         $MCREATE $DIR/$tdir/foo_160c
12275         changelog_chmask "-TRUNC"
12276         $TRUNCATE $DIR/$tdir/foo_160c 200
12277         changelog_chmask "+TRUNC"
12278         $TRUNCATE $DIR/$tdir/foo_160c 199
12279         changelog_dump | tail -n 5
12280         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12281         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12282 }
12283 run_test 160c "verify that changelog log catch the truncate event"
12284
12285 test_160d() {
12286         remote_mds_nodsh && skip "remote MDS with nodsh"
12287         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12288         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12289         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12290                 skip "Need MDS version at least 2.7.60"
12291
12292         # Registration step
12293         changelog_register || error "changelog_register failed"
12294
12295         mkdir -p $DIR/$tdir/migrate_dir
12296         changelog_clear 0 || error "changelog_clear failed"
12297
12298         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12299         changelog_dump | tail -n 5
12300         local migrates=$(changelog_dump | grep -c "MIGRT")
12301         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12302 }
12303 run_test 160d "verify that changelog log catch the migrate event"
12304
12305 test_160e() {
12306         remote_mds_nodsh && skip "remote MDS with nodsh"
12307
12308         # Create a user
12309         changelog_register || error "changelog_register failed"
12310
12311         # Delete a future user (expect fail)
12312         local MDT0=$(facet_svc $SINGLEMDS)
12313         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12314         local rc=$?
12315
12316         if [ $rc -eq 0 ]; then
12317                 error "Deleted non-existant user cl77"
12318         elif [ $rc -ne 2 ]; then
12319                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12320         fi
12321
12322         # Clear to a bad index (1 billion should be safe)
12323         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12324         rc=$?
12325
12326         if [ $rc -eq 0 ]; then
12327                 error "Successfully cleared to invalid CL index"
12328         elif [ $rc -ne 22 ]; then
12329                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12330         fi
12331 }
12332 run_test 160e "changelog negative testing (should return errors)"
12333
12334 test_160f() {
12335         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12336         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12337                 { skip "Need MDS version at least 2.10.56"; return 0; }
12338
12339         local mdts=$(comma_list $(mdts_nodes))
12340
12341         # Create a user
12342         changelog_register || error "first changelog_register failed"
12343         changelog_register || error "second changelog_register failed"
12344         local cl_users
12345         declare -A cl_user1
12346         declare -A cl_user2
12347         local user_rec1
12348         local user_rec2
12349         local i
12350
12351         # generate some changelog records to accumulate on each MDT
12352         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12353         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12354                 error "create $DIR/$tdir/$tfile failed"
12355
12356         # check changelogs have been generated
12357         local nbcl=$(changelog_dump | wc -l)
12358         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12359
12360         for param in "changelog_max_idle_time=10" \
12361                      "changelog_gc=1" \
12362                      "changelog_min_gc_interval=2" \
12363                      "changelog_min_free_cat_entries=3"; do
12364                 local MDT0=$(facet_svc $SINGLEMDS)
12365                 local var="${param%=*}"
12366                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12367
12368                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12369                 do_nodes $mdts $LCTL set_param mdd.*.$param
12370         done
12371
12372         # force cl_user2 to be idle (1st part)
12373         sleep 9
12374
12375         # simulate changelog catalog almost full
12376         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12377         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12378
12379         for i in $(seq $MDSCOUNT); do
12380                 cl_users=(${CL_USERS[mds$i]})
12381                 cl_user1[mds$i]="${cl_users[0]}"
12382                 cl_user2[mds$i]="${cl_users[1]}"
12383
12384                 [ -n "${cl_user1[mds$i]}" ] ||
12385                         error "mds$i: no user registered"
12386                 [ -n "${cl_user2[mds$i]}" ] ||
12387                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12388
12389                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12390                 [ -n "$user_rec1" ] ||
12391                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12392                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12393                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12394                 [ -n "$user_rec2" ] ||
12395                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12396                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12397                      "$user_rec1 + 2 == $user_rec2"
12398                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12399                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12400                               "$user_rec1 + 2, but is $user_rec2"
12401                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12402                 [ -n "$user_rec2" ] ||
12403                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12404                 [ $user_rec1 == $user_rec2 ] ||
12405                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12406                               "$user_rec1, but is $user_rec2"
12407         done
12408
12409         # force cl_user2 to be idle (2nd part) and to reach
12410         # changelog_max_idle_time
12411         sleep 2
12412
12413         # generate one more changelog to trigger fail_loc
12414         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12415                 error "create $DIR/$tdir/${tfile}bis failed"
12416
12417         # ensure gc thread is done
12418         for i in $(mdts_nodes); do
12419                 wait_update $i \
12420                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12421                         error "$i: GC-thread not done"
12422         done
12423
12424         local first_rec
12425         for i in $(seq $MDSCOUNT); do
12426                 # check cl_user1 still registered
12427                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12428                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12429                 # check cl_user2 unregistered
12430                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12431                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12432
12433                 # check changelogs are present and starting at $user_rec1 + 1
12434                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12435                 [ -n "$user_rec1" ] ||
12436                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12437                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12438                             awk '{ print $1; exit; }')
12439
12440                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12441                 [ $((user_rec1 + 1)) == $first_rec ] ||
12442                         error "mds$i: first index should be $user_rec1 + 1, " \
12443                               "but is $first_rec"
12444         done
12445 }
12446 run_test 160f "changelog garbage collect (timestamped users)"
12447
12448 test_160g() {
12449         remote_mds_nodsh && skip "remote MDS with nodsh"
12450         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12451                 skip "Need MDS version at least 2.10.56"
12452
12453         local mdts=$(comma_list $(mdts_nodes))
12454
12455         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12456         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12457
12458         # Create a user
12459         changelog_register || error "first changelog_register failed"
12460         changelog_register || error "second changelog_register failed"
12461         local cl_users
12462         declare -A cl_user1
12463         declare -A cl_user2
12464         local user_rec1
12465         local user_rec2
12466         local i
12467
12468         # generate some changelog records to accumulate on each MDT
12469         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12470         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12471                 error "create $DIR/$tdir/$tfile failed"
12472
12473         # check changelogs have been generated
12474         local nbcl=$(changelog_dump | wc -l)
12475         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12476
12477         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12478                      "changelog_gc=1" \
12479                      "changelog_min_gc_interval=2" \
12480                      "changelog_min_free_cat_entries=3"; do
12481                 local MDT0=$(facet_svc $SINGLEMDS)
12482                 local var="${param%=*}"
12483                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12484
12485                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12486                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12487                         error "unable to set mdd.*.$param"
12488         done
12489
12490         # simulate changelog catalog almost full
12491         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12492         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12493
12494         for i in $(seq $MDSCOUNT); do
12495                 cl_users=(${CL_USERS[mds$i]})
12496                 cl_user1[mds$i]="${cl_users[0]}"
12497                 cl_user2[mds$i]="${cl_users[1]}"
12498
12499                 [ -n "${cl_user1[mds$i]}" ] ||
12500                         error "mds$i: no user registered"
12501                 [ -n "${cl_user2[mds$i]}" ] ||
12502                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12503
12504                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12505                 [ -n "$user_rec1" ] ||
12506                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12507                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12508                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12509                 [ -n "$user_rec2" ] ||
12510                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12511                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12512                      "$user_rec1 + 2 == $user_rec2"
12513                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12514                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12515                               "$user_rec1 + 2, but is $user_rec2"
12516                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12517                 [ -n "$user_rec2" ] ||
12518                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12519                 [ $user_rec1 == $user_rec2 ] ||
12520                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12521                               "$user_rec1, but is $user_rec2"
12522         done
12523
12524         # ensure we are past the previous changelog_min_gc_interval set above
12525         sleep 2
12526
12527         # generate one more changelog to trigger fail_loc
12528         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12529                 error "create $DIR/$tdir/${tfile}bis failed"
12530
12531         # ensure gc thread is done
12532         for i in $(mdts_nodes); do
12533                 wait_update $i \
12534                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12535                         error "$i: GC-thread not done"
12536         done
12537
12538         local first_rec
12539         for i in $(seq $MDSCOUNT); do
12540                 # check cl_user1 still registered
12541                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12542                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12543                 # check cl_user2 unregistered
12544                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12545                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12546
12547                 # check changelogs are present and starting at $user_rec1 + 1
12548                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12549                 [ -n "$user_rec1" ] ||
12550                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12551                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12552                             awk '{ print $1; exit; }')
12553
12554                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12555                 [ $((user_rec1 + 1)) == $first_rec ] ||
12556                         error "mds$i: first index should be $user_rec1 + 1, " \
12557                               "but is $first_rec"
12558         done
12559 }
12560 run_test 160g "changelog garbage collect (old users)"
12561
12562 test_160h() {
12563         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12564         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12565                 { skip "Need MDS version at least 2.10.56"; return 0; }
12566
12567         local mdts=$(comma_list $(mdts_nodes))
12568
12569         # Create a user
12570         changelog_register || error "first changelog_register failed"
12571         changelog_register || error "second changelog_register failed"
12572         local cl_users
12573         declare -A cl_user1
12574         declare -A cl_user2
12575         local user_rec1
12576         local user_rec2
12577         local i
12578
12579         # generate some changelog records to accumulate on each MDT
12580         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12581         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12582                 error "create $DIR/$tdir/$tfile failed"
12583
12584         # check changelogs have been generated
12585         local nbcl=$(changelog_dump | wc -l)
12586         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12587
12588         for param in "changelog_max_idle_time=10" \
12589                      "changelog_gc=1" \
12590                      "changelog_min_gc_interval=2"; do
12591                 local MDT0=$(facet_svc $SINGLEMDS)
12592                 local var="${param%=*}"
12593                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12594
12595                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12596                 do_nodes $mdts $LCTL set_param mdd.*.$param
12597         done
12598
12599         # force cl_user2 to be idle (1st part)
12600         sleep 9
12601
12602         for i in $(seq $MDSCOUNT); do
12603                 cl_users=(${CL_USERS[mds$i]})
12604                 cl_user1[mds$i]="${cl_users[0]}"
12605                 cl_user2[mds$i]="${cl_users[1]}"
12606
12607                 [ -n "${cl_user1[mds$i]}" ] ||
12608                         error "mds$i: no user registered"
12609                 [ -n "${cl_user2[mds$i]}" ] ||
12610                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12611
12612                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12613                 [ -n "$user_rec1" ] ||
12614                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12615                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12616                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12617                 [ -n "$user_rec2" ] ||
12618                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12619                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12620                      "$user_rec1 + 2 == $user_rec2"
12621                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12622                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12623                               "$user_rec1 + 2, but is $user_rec2"
12624                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12625                 [ -n "$user_rec2" ] ||
12626                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12627                 [ $user_rec1 == $user_rec2 ] ||
12628                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12629                               "$user_rec1, but is $user_rec2"
12630         done
12631
12632         # force cl_user2 to be idle (2nd part) and to reach
12633         # changelog_max_idle_time
12634         sleep 2
12635
12636         # force each GC-thread start and block then
12637         # one per MDT/MDD, set fail_val accordingly
12638         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12639         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12640
12641         # generate more changelogs to trigger fail_loc
12642         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12643                 error "create $DIR/$tdir/${tfile}bis failed"
12644
12645         # stop MDT to stop GC-thread, should be done in back-ground as it will
12646         # block waiting for the thread to be released and exit
12647         declare -A stop_pids
12648         for i in $(seq $MDSCOUNT); do
12649                 stop mds$i &
12650                 stop_pids[mds$i]=$!
12651         done
12652
12653         for i in $(mdts_nodes); do
12654                 local facet
12655                 local nb=0
12656                 local facets=$(facets_up_on_host $i)
12657
12658                 for facet in ${facets//,/ }; do
12659                         if [[ $facet == mds* ]]; then
12660                                 nb=$((nb + 1))
12661                         fi
12662                 done
12663                 # ensure each MDS's gc threads are still present and all in "R"
12664                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12665                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12666                         error "$i: expected $nb GC-thread"
12667                 wait_update $i \
12668                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12669                         "R" 20 ||
12670                         error "$i: GC-thread not found in R-state"
12671                 # check umounts of each MDT on MDS have reached kthread_stop()
12672                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12673                         error "$i: expected $nb umount"
12674                 wait_update $i \
12675                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12676                         error "$i: umount not found in D-state"
12677         done
12678
12679         # release all GC-threads
12680         do_nodes $mdts $LCTL set_param fail_loc=0
12681
12682         # wait for MDT stop to complete
12683         for i in $(seq $MDSCOUNT); do
12684                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12685         done
12686
12687         # XXX
12688         # may try to check if any orphan changelog records are present
12689         # via ldiskfs/zfs and llog_reader...
12690
12691         # re-start/mount MDTs
12692         for i in $(seq $MDSCOUNT); do
12693                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12694                         error "Fail to start mds$i"
12695         done
12696
12697         local first_rec
12698         for i in $(seq $MDSCOUNT); do
12699                 # check cl_user1 still registered
12700                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12701                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12702                 # check cl_user2 unregistered
12703                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12704                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12705
12706                 # check changelogs are present and starting at $user_rec1 + 1
12707                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12708                 [ -n "$user_rec1" ] ||
12709                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12710                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12711                             awk '{ print $1; exit; }')
12712
12713                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12714                 [ $((user_rec1 + 1)) == $first_rec ] ||
12715                         error "mds$i: first index should be $user_rec1 + 1, " \
12716                               "but is $first_rec"
12717         done
12718 }
12719 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12720               "during mount"
12721
12722 test_160i() {
12723
12724         local mdts=$(comma_list $(mdts_nodes))
12725
12726         changelog_register || error "first changelog_register failed"
12727
12728         # generate some changelog records to accumulate on each MDT
12729         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12730         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12731                 error "create $DIR/$tdir/$tfile failed"
12732
12733         # check changelogs have been generated
12734         local nbcl=$(changelog_dump | wc -l)
12735         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12736
12737         # simulate race between register and unregister
12738         # XXX as fail_loc is set per-MDS, with DNE configs the race
12739         # simulation will only occur for one MDT per MDS and for the
12740         # others the normal race scenario will take place
12741         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12742         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12743         do_nodes $mdts $LCTL set_param fail_val=1
12744
12745         # unregister 1st user
12746         changelog_deregister &
12747         local pid1=$!
12748         # wait some time for deregister work to reach race rdv
12749         sleep 2
12750         # register 2nd user
12751         changelog_register || error "2nd user register failed"
12752
12753         wait $pid1 || error "1st user deregister failed"
12754
12755         local i
12756         local last_rec
12757         declare -A LAST_REC
12758         for i in $(seq $MDSCOUNT); do
12759                 if changelog_users mds$i | grep "^cl"; then
12760                         # make sure new records are added with one user present
12761                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12762                                           awk '/^current.index:/ { print $NF }')
12763                 else
12764                         error "mds$i has no user registered"
12765                 fi
12766         done
12767
12768         # generate more changelog records to accumulate on each MDT
12769         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12770                 error "create $DIR/$tdir/${tfile}bis failed"
12771
12772         for i in $(seq $MDSCOUNT); do
12773                 last_rec=$(changelog_users $SINGLEMDS |
12774                            awk '/^current.index:/ { print $NF }')
12775                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12776                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12777                         error "changelogs are off on mds$i"
12778         done
12779 }
12780 run_test 160i "changelog user register/unregister race"
12781
12782 test_161a() {
12783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12784
12785         test_mkdir -c1 $DIR/$tdir
12786         cp /etc/hosts $DIR/$tdir/$tfile
12787         test_mkdir -c1 $DIR/$tdir/foo1
12788         test_mkdir -c1 $DIR/$tdir/foo2
12789         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12790         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12791         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12792         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12793         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12794         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12795                 $LFS fid2path $DIR $FID
12796                 error "bad link ea"
12797         fi
12798         # middle
12799         rm $DIR/$tdir/foo2/zachary
12800         # last
12801         rm $DIR/$tdir/foo2/thor
12802         # first
12803         rm $DIR/$tdir/$tfile
12804         # rename
12805         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12806         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12807                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12808         rm $DIR/$tdir/foo2/maggie
12809
12810         # overflow the EA
12811         local longname=$tfile.avg_len_is_thirty_two_
12812         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12813                 error_noexit 'failed to unlink many hardlinks'" EXIT
12814         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12815                 error "failed to hardlink many files"
12816         links=$($LFS fid2path $DIR $FID | wc -l)
12817         echo -n "${links}/1000 links in link EA"
12818         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12819 }
12820 run_test 161a "link ea sanity"
12821
12822 test_161b() {
12823         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12824         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12825
12826         local MDTIDX=1
12827         local remote_dir=$DIR/$tdir/remote_dir
12828
12829         mkdir -p $DIR/$tdir
12830         $LFS mkdir -i $MDTIDX $remote_dir ||
12831                 error "create remote directory failed"
12832
12833         cp /etc/hosts $remote_dir/$tfile
12834         mkdir -p $remote_dir/foo1
12835         mkdir -p $remote_dir/foo2
12836         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12837         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12838         ln $remote_dir/$tfile $remote_dir/foo1/luna
12839         ln $remote_dir/$tfile $remote_dir/foo2/thor
12840
12841         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12842                      tr -d ']')
12843         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12844                 $LFS fid2path $DIR $FID
12845                 error "bad link ea"
12846         fi
12847         # middle
12848         rm $remote_dir/foo2/zachary
12849         # last
12850         rm $remote_dir/foo2/thor
12851         # first
12852         rm $remote_dir/$tfile
12853         # rename
12854         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12855         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12856         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12857                 $LFS fid2path $DIR $FID
12858                 error "bad link rename"
12859         fi
12860         rm $remote_dir/foo2/maggie
12861
12862         # overflow the EA
12863         local longname=filename_avg_len_is_thirty_two_
12864         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12865                 error "failed to hardlink many files"
12866         links=$($LFS fid2path $DIR $FID | wc -l)
12867         echo -n "${links}/1000 links in link EA"
12868         [[ ${links} -gt 60 ]] ||
12869                 error "expected at least 60 links in link EA"
12870         unlinkmany $remote_dir/foo2/$longname 1000 ||
12871         error "failed to unlink many hardlinks"
12872 }
12873 run_test 161b "link ea sanity under remote directory"
12874
12875 test_161c() {
12876         remote_mds_nodsh && skip "remote MDS with nodsh"
12877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12878         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12879                 skip "Need MDS version at least 2.1.5"
12880
12881         # define CLF_RENAME_LAST 0x0001
12882         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12883         changelog_register || error "changelog_register failed"
12884
12885         rm -rf $DIR/$tdir
12886         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12887         touch $DIR/$tdir/foo_161c
12888         touch $DIR/$tdir/bar_161c
12889         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12890         changelog_dump | grep RENME | tail -n 5
12891         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12892         changelog_clear 0 || error "changelog_clear failed"
12893         if [ x$flags != "x0x1" ]; then
12894                 error "flag $flags is not 0x1"
12895         fi
12896
12897         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12898         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12899         touch $DIR/$tdir/foo_161c
12900         touch $DIR/$tdir/bar_161c
12901         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12902         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12903         changelog_dump | grep RENME | tail -n 5
12904         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12905         changelog_clear 0 || error "changelog_clear failed"
12906         if [ x$flags != "x0x0" ]; then
12907                 error "flag $flags is not 0x0"
12908         fi
12909         echo "rename overwrite a target having nlink > 1," \
12910                 "changelog record has flags of $flags"
12911
12912         # rename doesn't overwrite a target (changelog flag 0x0)
12913         touch $DIR/$tdir/foo_161c
12914         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12915         changelog_dump | grep RENME | tail -n 5
12916         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12917         changelog_clear 0 || error "changelog_clear failed"
12918         if [ x$flags != "x0x0" ]; then
12919                 error "flag $flags is not 0x0"
12920         fi
12921         echo "rename doesn't overwrite a target," \
12922                 "changelog record has flags of $flags"
12923
12924         # define CLF_UNLINK_LAST 0x0001
12925         # unlink a file having nlink = 1 (changelog flag 0x1)
12926         rm -f $DIR/$tdir/foo2_161c
12927         changelog_dump | grep UNLNK | tail -n 5
12928         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12929         changelog_clear 0 || error "changelog_clear failed"
12930         if [ x$flags != "x0x1" ]; then
12931                 error "flag $flags is not 0x1"
12932         fi
12933         echo "unlink a file having nlink = 1," \
12934                 "changelog record has flags of $flags"
12935
12936         # unlink a file having nlink > 1 (changelog flag 0x0)
12937         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12938         rm -f $DIR/$tdir/foobar_161c
12939         changelog_dump | grep UNLNK | tail -n 5
12940         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12941         changelog_clear 0 || error "changelog_clear failed"
12942         if [ x$flags != "x0x0" ]; then
12943                 error "flag $flags is not 0x0"
12944         fi
12945         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
12946 }
12947 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
12948
12949 test_161d() {
12950         remote_mds_nodsh && skip "remote MDS with nodsh"
12951
12952         local pid
12953         local fid
12954
12955         changelog_register || error "changelog_register failed"
12956
12957         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
12958         # interfer with $MOUNT/.lustre/fid/ access
12959         mkdir $DIR/$tdir
12960         [[ $? -eq 0 ]] || error "mkdir failed"
12961
12962         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
12963         $LCTL set_param fail_loc=0x8000140c
12964         # 5s pause
12965         $LCTL set_param fail_val=5
12966
12967         # create file
12968         echo foofoo > $DIR/$tdir/$tfile &
12969         pid=$!
12970
12971         # wait for create to be delayed
12972         sleep 2
12973
12974         ps -p $pid
12975         [[ $? -eq 0 ]] || error "create should be blocked"
12976
12977         local tempfile=$(mktemp)
12978         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
12979         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
12980         # some delay may occur during ChangeLog publishing and file read just
12981         # above, that could allow file write to happen finally
12982         [[ -s $tempfile ]] && echo "file should be empty"
12983
12984         $LCTL set_param fail_loc=0
12985
12986         wait $pid
12987         [[ $? -eq 0 ]] || error "create failed"
12988 }
12989 run_test 161d "create with concurrent .lustre/fid access"
12990
12991 check_path() {
12992         local expected="$1"
12993         shift
12994         local fid="$2"
12995
12996         local path
12997         path=$($LFS fid2path "$@")
12998         local rc=$?
12999
13000         if [ $rc -ne 0 ]; then
13001                 error "path looked up of '$expected' failed: rc=$rc"
13002         elif [ "$path" != "$expected" ]; then
13003                 error "path looked up '$path' instead of '$expected'"
13004         else
13005                 echo "FID '$fid' resolves to path '$path' as expected"
13006         fi
13007 }
13008
13009 test_162a() { # was test_162
13010         test_mkdir -p -c1 $DIR/$tdir/d2
13011         touch $DIR/$tdir/d2/$tfile
13012         touch $DIR/$tdir/d2/x1
13013         touch $DIR/$tdir/d2/x2
13014         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13015         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13016         # regular file
13017         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13018         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13019
13020         # softlink
13021         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13022         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13023         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13024
13025         # softlink to wrong file
13026         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13027         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13028         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13029
13030         # hardlink
13031         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13032         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13033         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13034         # fid2path dir/fsname should both work
13035         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13036         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13037
13038         # hardlink count: check that there are 2 links
13039         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13040         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13041
13042         # hardlink indexing: remove the first link
13043         rm $DIR/$tdir/d2/p/q/r/hlink
13044         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13045 }
13046 run_test 162a "path lookup sanity"
13047
13048 test_162b() {
13049         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13050         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13051
13052         mkdir $DIR/$tdir
13053         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13054                                 error "create striped dir failed"
13055
13056         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13057                                         tail -n 1 | awk '{print $2}')
13058         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13059
13060         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13061         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13062
13063         # regular file
13064         for ((i=0;i<5;i++)); do
13065                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13066                         error "get fid for f$i failed"
13067                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13068
13069                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13070                         error "get fid for d$i failed"
13071                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13072         done
13073
13074         return 0
13075 }
13076 run_test 162b "striped directory path lookup sanity"
13077
13078 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13079 test_162c() {
13080         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13081                 skip "Need MDS version at least 2.7.51"
13082
13083         local lpath=$tdir.local
13084         local rpath=$tdir.remote
13085
13086         test_mkdir $DIR/$lpath
13087         test_mkdir $DIR/$rpath
13088
13089         for ((i = 0; i <= 101; i++)); do
13090                 lpath="$lpath/$i"
13091                 mkdir $DIR/$lpath
13092                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13093                         error "get fid for local directory $DIR/$lpath failed"
13094                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13095
13096                 rpath="$rpath/$i"
13097                 test_mkdir $DIR/$rpath
13098                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13099                         error "get fid for remote directory $DIR/$rpath failed"
13100                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13101         done
13102
13103         return 0
13104 }
13105 run_test 162c "fid2path works with paths 100 or more directories deep"
13106
13107 test_169() {
13108         # do directio so as not to populate the page cache
13109         log "creating a 10 Mb file"
13110         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13111         log "starting reads"
13112         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13113         log "truncating the file"
13114         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13115         log "killing dd"
13116         kill %+ || true # reads might have finished
13117         echo "wait until dd is finished"
13118         wait
13119         log "removing the temporary file"
13120         rm -rf $DIR/$tfile || error "tmp file removal failed"
13121 }
13122 run_test 169 "parallel read and truncate should not deadlock"
13123
13124 test_170() {
13125         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13126
13127         $LCTL clear     # bug 18514
13128         $LCTL debug_daemon start $TMP/${tfile}_log_good
13129         touch $DIR/$tfile
13130         $LCTL debug_daemon stop
13131         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13132                 error "sed failed to read log_good"
13133
13134         $LCTL debug_daemon start $TMP/${tfile}_log_good
13135         rm -rf $DIR/$tfile
13136         $LCTL debug_daemon stop
13137
13138         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13139                error "lctl df log_bad failed"
13140
13141         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13142         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13143
13144         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13145         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13146
13147         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13148                 error "bad_line good_line1 good_line2 are empty"
13149
13150         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13151         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13152         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13153
13154         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13155         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13156         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13157
13158         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13159                 error "bad_line_new good_line_new are empty"
13160
13161         local expected_good=$((good_line1 + good_line2*2))
13162
13163         rm -f $TMP/${tfile}*
13164         # LU-231, short malformed line may not be counted into bad lines
13165         if [ $bad_line -ne $bad_line_new ] &&
13166                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13167                 error "expected $bad_line bad lines, but got $bad_line_new"
13168                 return 1
13169         fi
13170
13171         if [ $expected_good -ne $good_line_new ]; then
13172                 error "expected $expected_good good lines, but got $good_line_new"
13173                 return 2
13174         fi
13175         true
13176 }
13177 run_test 170 "test lctl df to handle corrupted log ====================="
13178
13179 test_171() { # bug20592
13180         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13181
13182         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13183         $LCTL set_param fail_loc=0x50e
13184         $LCTL set_param fail_val=3000
13185         multiop_bg_pause $DIR/$tfile O_s || true
13186         local MULTIPID=$!
13187         kill -USR1 $MULTIPID
13188         # cause log dump
13189         sleep 3
13190         wait $MULTIPID
13191         if dmesg | grep "recursive fault"; then
13192                 error "caught a recursive fault"
13193         fi
13194         $LCTL set_param fail_loc=0
13195         true
13196 }
13197 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13198
13199 # it would be good to share it with obdfilter-survey/iokit-libecho code
13200 setup_obdecho_osc () {
13201         local rc=0
13202         local ost_nid=$1
13203         local obdfilter_name=$2
13204         echo "Creating new osc for $obdfilter_name on $ost_nid"
13205         # make sure we can find loopback nid
13206         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13207
13208         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13209                            ${obdfilter_name}_osc_UUID || rc=2; }
13210         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13211                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13212         return $rc
13213 }
13214
13215 cleanup_obdecho_osc () {
13216         local obdfilter_name=$1
13217         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13218         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13219         return 0
13220 }
13221
13222 obdecho_test() {
13223         local OBD=$1
13224         local node=$2
13225         local pages=${3:-64}
13226         local rc=0
13227         local id
13228
13229         local count=10
13230         local obd_size=$(get_obd_size $node $OBD)
13231         local page_size=$(get_page_size $node)
13232         if [[ -n "$obd_size" ]]; then
13233                 local new_count=$((obd_size / (pages * page_size / 1024)))
13234                 [[ $new_count -ge $count ]] || count=$new_count
13235         fi
13236
13237         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13238         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13239                            rc=2; }
13240         if [ $rc -eq 0 ]; then
13241             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13242             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13243         fi
13244         echo "New object id is $id"
13245         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13246                            rc=4; }
13247         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13248                            "test_brw $count w v $pages $id" || rc=4; }
13249         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13250                            rc=4; }
13251         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13252                                         "cleanup" || rc=5; }
13253         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13254                                         "detach" || rc=6; }
13255         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13256         return $rc
13257 }
13258
13259 test_180a() {
13260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13261
13262         if ! module_loaded obdecho; then
13263                 load_module obdecho/obdecho &&
13264                         stack_trap "rmmod obdecho" EXIT ||
13265                         error "unable to load obdecho on client"
13266         fi
13267
13268         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13269         local host=$($LCTL get_param -n osc.$osc.import |
13270                      awk '/current_connection:/ { print $2 }' )
13271         local target=$($LCTL get_param -n osc.$osc.import |
13272                        awk '/target:/ { print $2 }' )
13273         target=${target%_UUID}
13274
13275         if [ -n "$target" ]; then
13276                 setup_obdecho_osc $host $target &&
13277                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13278                         { error "obdecho setup failed with $?"; return; }
13279
13280                 obdecho_test ${target}_osc client ||
13281                         error "obdecho_test failed on ${target}_osc"
13282         else
13283                 $LCTL get_param osc.$osc.import
13284                 error "there is no osc.$osc.import target"
13285         fi
13286 }
13287 run_test 180a "test obdecho on osc"
13288
13289 test_180b() {
13290         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13291         remote_ost_nodsh && skip "remote OST with nodsh"
13292
13293         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13294                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13295                 error "failed to load module obdecho"
13296
13297         local target=$(do_facet ost1 $LCTL dl |
13298                        awk '/obdfilter/ { print $4; exit; }')
13299
13300         if [ -n "$target" ]; then
13301                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13302         else
13303                 do_facet ost1 $LCTL dl
13304                 error "there is no obdfilter target on ost1"
13305         fi
13306 }
13307 run_test 180b "test obdecho directly on obdfilter"
13308
13309 test_180c() { # LU-2598
13310         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13311         remote_ost_nodsh && skip "remote OST with nodsh"
13312         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13313                 skip "Need MDS version at least 2.4.0"
13314
13315         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13316                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13317                 error "failed to load module obdecho"
13318
13319         local target=$(do_facet ost1 $LCTL dl |
13320                        awk '/obdfilter/ { print $4; exit; }')
13321
13322         if [ -n "$target" ]; then
13323                 local pages=16384 # 64MB bulk I/O RPC size
13324
13325                 obdecho_test "$target" ost1 "$pages" ||
13326                         error "obdecho_test with pages=$pages failed with $?"
13327         else
13328                 do_facet ost1 $LCTL dl
13329                 error "there is no obdfilter target on ost1"
13330         fi
13331 }
13332 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13333
13334 test_181() { # bug 22177
13335         test_mkdir $DIR/$tdir
13336         # create enough files to index the directory
13337         createmany -o $DIR/$tdir/foobar 4000
13338         # print attributes for debug purpose
13339         lsattr -d .
13340         # open dir
13341         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13342         MULTIPID=$!
13343         # remove the files & current working dir
13344         unlinkmany $DIR/$tdir/foobar 4000
13345         rmdir $DIR/$tdir
13346         kill -USR1 $MULTIPID
13347         wait $MULTIPID
13348         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13349         return 0
13350 }
13351 run_test 181 "Test open-unlinked dir ========================"
13352
13353 test_182() {
13354         local fcount=1000
13355         local tcount=10
13356
13357         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13358
13359         $LCTL set_param mdc.*.rpc_stats=clear
13360
13361         for (( i = 0; i < $tcount; i++ )) ; do
13362                 mkdir $DIR/$tdir/$i
13363         done
13364
13365         for (( i = 0; i < $tcount; i++ )) ; do
13366                 createmany -o $DIR/$tdir/$i/f- $fcount &
13367         done
13368         wait
13369
13370         for (( i = 0; i < $tcount; i++ )) ; do
13371                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13372         done
13373         wait
13374
13375         $LCTL get_param mdc.*.rpc_stats
13376
13377         rm -rf $DIR/$tdir
13378 }
13379 run_test 182 "Test parallel modify metadata operations ================"
13380
13381 test_183() { # LU-2275
13382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13383         remote_mds_nodsh && skip "remote MDS with nodsh"
13384         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13385                 skip "Need MDS version at least 2.3.56"
13386
13387         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13388         echo aaa > $DIR/$tdir/$tfile
13389
13390 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13391         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13392
13393         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13394         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13395
13396         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13397
13398         # Flush negative dentry cache
13399         touch $DIR/$tdir/$tfile
13400
13401         # We are not checking for any leaked references here, they'll
13402         # become evident next time we do cleanup with module unload.
13403         rm -rf $DIR/$tdir
13404 }
13405 run_test 183 "No crash or request leak in case of strange dispositions ========"
13406
13407 # test suite 184 is for LU-2016, LU-2017
13408 test_184a() {
13409         check_swap_layouts_support
13410
13411         dir0=$DIR/$tdir/$testnum
13412         test_mkdir -p -c1 $dir0
13413         ref1=/etc/passwd
13414         ref2=/etc/group
13415         file1=$dir0/f1
13416         file2=$dir0/f2
13417         $SETSTRIPE -c1 $file1
13418         cp $ref1 $file1
13419         $SETSTRIPE -c2 $file2
13420         cp $ref2 $file2
13421         gen1=$($GETSTRIPE -g $file1)
13422         gen2=$($GETSTRIPE -g $file2)
13423
13424         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13425         gen=$($GETSTRIPE -g $file1)
13426         [[ $gen1 != $gen ]] ||
13427                 "Layout generation on $file1 does not change"
13428         gen=$($GETSTRIPE -g $file2)
13429         [[ $gen2 != $gen ]] ||
13430                 "Layout generation on $file2 does not change"
13431
13432         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13433         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13434
13435         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13436 }
13437 run_test 184a "Basic layout swap"
13438
13439 test_184b() {
13440         check_swap_layouts_support
13441
13442         dir0=$DIR/$tdir/$testnum
13443         mkdir -p $dir0 || error "creating dir $dir0"
13444         file1=$dir0/f1
13445         file2=$dir0/f2
13446         file3=$dir0/f3
13447         dir1=$dir0/d1
13448         dir2=$dir0/d2
13449         mkdir $dir1 $dir2
13450         $SETSTRIPE -c1 $file1
13451         $SETSTRIPE -c2 $file2
13452         $SETSTRIPE -c1 $file3
13453         chown $RUNAS_ID $file3
13454         gen1=$($GETSTRIPE -g $file1)
13455         gen2=$($GETSTRIPE -g $file2)
13456
13457         $LFS swap_layouts $dir1 $dir2 &&
13458                 error "swap of directories layouts should fail"
13459         $LFS swap_layouts $dir1 $file1 &&
13460                 error "swap of directory and file layouts should fail"
13461         $RUNAS $LFS swap_layouts $file1 $file2 &&
13462                 error "swap of file we cannot write should fail"
13463         $LFS swap_layouts $file1 $file3 &&
13464                 error "swap of file with different owner should fail"
13465         /bin/true # to clear error code
13466 }
13467 run_test 184b "Forbidden layout swap (will generate errors)"
13468
13469 test_184c() {
13470         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13471         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13472         check_swap_layouts_support
13473
13474         local dir0=$DIR/$tdir/$testnum
13475         mkdir -p $dir0 || error "creating dir $dir0"
13476
13477         local ref1=$dir0/ref1
13478         local ref2=$dir0/ref2
13479         local file1=$dir0/file1
13480         local file2=$dir0/file2
13481         # create a file large enough for the concurrent test
13482         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13483         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13484         echo "ref file size: ref1($(stat -c %s $ref1))," \
13485              "ref2($(stat -c %s $ref2))"
13486
13487         cp $ref2 $file2
13488         dd if=$ref1 of=$file1 bs=16k &
13489         local DD_PID=$!
13490
13491         # Make sure dd starts to copy file
13492         while [ ! -f $file1 ]; do sleep 0.1; done
13493
13494         $LFS swap_layouts $file1 $file2
13495         local rc=$?
13496         wait $DD_PID
13497         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13498         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13499
13500         # how many bytes copied before swapping layout
13501         local copied=$(stat -c %s $file2)
13502         local remaining=$(stat -c %s $ref1)
13503         remaining=$((remaining - copied))
13504         echo "Copied $copied bytes before swapping layout..."
13505
13506         cmp -n $copied $file1 $ref2 | grep differ &&
13507                 error "Content mismatch [0, $copied) of ref2 and file1"
13508         cmp -n $copied $file2 $ref1 ||
13509                 error "Content mismatch [0, $copied) of ref1 and file2"
13510         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13511                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13512
13513         # clean up
13514         rm -f $ref1 $ref2 $file1 $file2
13515 }
13516 run_test 184c "Concurrent write and layout swap"
13517
13518 test_184d() {
13519         check_swap_layouts_support
13520         [ -z "$(which getfattr 2>/dev/null)" ] &&
13521                 skip_env "no getfattr command"
13522
13523         local file1=$DIR/$tdir/$tfile-1
13524         local file2=$DIR/$tdir/$tfile-2
13525         local file3=$DIR/$tdir/$tfile-3
13526         local lovea1
13527         local lovea2
13528
13529         mkdir -p $DIR/$tdir
13530         touch $file1 || error "create $file1 failed"
13531         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13532                 error "create $file2 failed"
13533         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13534                 error "create $file3 failed"
13535         lovea1=$(get_layout_param $file1)
13536
13537         $LFS swap_layouts $file2 $file3 ||
13538                 error "swap $file2 $file3 layouts failed"
13539         $LFS swap_layouts $file1 $file2 ||
13540                 error "swap $file1 $file2 layouts failed"
13541
13542         lovea2=$(get_layout_param $file2)
13543         echo "$lovea1"
13544         echo "$lovea2"
13545         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13546
13547         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13548         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13549 }
13550 run_test 184d "allow stripeless layouts swap"
13551
13552 test_184e() {
13553         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13554                 skip "Need MDS version at least 2.6.94"
13555         check_swap_layouts_support
13556         [ -z "$(which getfattr 2>/dev/null)" ] &&
13557                 skip_env "no getfattr command"
13558
13559         local file1=$DIR/$tdir/$tfile-1
13560         local file2=$DIR/$tdir/$tfile-2
13561         local file3=$DIR/$tdir/$tfile-3
13562         local lovea
13563
13564         mkdir -p $DIR/$tdir
13565         touch $file1 || error "create $file1 failed"
13566         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13567                 error "create $file2 failed"
13568         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13569                 error "create $file3 failed"
13570
13571         $LFS swap_layouts $file1 $file2 ||
13572                 error "swap $file1 $file2 layouts failed"
13573
13574         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13575         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13576
13577         echo 123 > $file1 || error "Should be able to write into $file1"
13578
13579         $LFS swap_layouts $file1 $file3 ||
13580                 error "swap $file1 $file3 layouts failed"
13581
13582         echo 123 > $file1 || error "Should be able to write into $file1"
13583
13584         rm -rf $file1 $file2 $file3
13585 }
13586 run_test 184e "Recreate layout after stripeless layout swaps"
13587
13588 test_185() { # LU-2441
13589         # LU-3553 - no volatile file support in old servers
13590         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13591                 skip "Need MDS version at least 2.3.60"
13592
13593         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13594         touch $DIR/$tdir/spoo
13595         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13596         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13597                 error "cannot create/write a volatile file"
13598         [ "$FILESET" == "" ] &&
13599         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13600                 error "FID is still valid after close"
13601
13602         multiop_bg_pause $DIR/$tdir vVw4096_c
13603         local multi_pid=$!
13604
13605         local OLD_IFS=$IFS
13606         IFS=":"
13607         local fidv=($fid)
13608         IFS=$OLD_IFS
13609         # assume that the next FID for this client is sequential, since stdout
13610         # is unfortunately eaten by multiop_bg_pause
13611         local n=$((${fidv[1]} + 1))
13612         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13613         if [ "$FILESET" == "" ]; then
13614                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13615                         error "FID is missing before close"
13616         fi
13617         kill -USR1 $multi_pid
13618         # 1 second delay, so if mtime change we will see it
13619         sleep 1
13620         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13621         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13622 }
13623 run_test 185 "Volatile file support"
13624
13625 test_187a() {
13626         remote_mds_nodsh && skip "remote MDS with nodsh"
13627         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13628                 skip "Need MDS version at least 2.3.0"
13629
13630         local dir0=$DIR/$tdir/$testnum
13631         mkdir -p $dir0 || error "creating dir $dir0"
13632
13633         local file=$dir0/file1
13634         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13635         local dv1=$($LFS data_version $file)
13636         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13637         local dv2=$($LFS data_version $file)
13638         [[ $dv1 != $dv2 ]] ||
13639                 error "data version did not change on write $dv1 == $dv2"
13640
13641         # clean up
13642         rm -f $file1
13643 }
13644 run_test 187a "Test data version change"
13645
13646 test_187b() {
13647         remote_mds_nodsh && skip "remote MDS with nodsh"
13648         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13649                 skip "Need MDS version at least 2.3.0"
13650
13651         local dir0=$DIR/$tdir/$testnum
13652         mkdir -p $dir0 || error "creating dir $dir0"
13653
13654         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13655         [[ ${DV[0]} != ${DV[1]} ]] ||
13656                 error "data version did not change on write"\
13657                       " ${DV[0]} == ${DV[1]}"
13658
13659         # clean up
13660         rm -f $file1
13661 }
13662 run_test 187b "Test data version change on volatile file"
13663
13664 test_200() {
13665         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13666         remote_mgs_nodsh && skip "remote MGS with nodsh"
13667         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13668
13669         local POOL=${POOL:-cea1}
13670         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13671         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13672         # Pool OST targets
13673         local first_ost=0
13674         local last_ost=$(($OSTCOUNT - 1))
13675         local ost_step=2
13676         local ost_list=$(seq $first_ost $ost_step $last_ost)
13677         local ost_range="$first_ost $last_ost $ost_step"
13678         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13679         local file_dir=$POOL_ROOT/file_tst
13680         local subdir=$test_path/subdir
13681         local rc=0
13682
13683         if ! combined_mgs_mds ; then
13684                 mount_mgs_client
13685         fi
13686
13687         while : ; do
13688                 # former test_200a test_200b
13689                 pool_add $POOL                          || { rc=$? ; break; }
13690                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13691                 # former test_200c test_200d
13692                 mkdir -p $test_path
13693                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13694                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13695                 mkdir -p $subdir
13696                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13697                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13698                                                         || { rc=$? ; break; }
13699                 # former test_200e test_200f
13700                 local files=$((OSTCOUNT*3))
13701                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13702                                                         || { rc=$? ; break; }
13703                 pool_create_files $POOL $file_dir $files "$ost_list" \
13704                                                         || { rc=$? ; break; }
13705                 # former test_200g test_200h
13706                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13707                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13708
13709                 # former test_201a test_201b test_201c
13710                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13711
13712                 local f=$test_path/$tfile
13713                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13714                 pool_remove $POOL $f                    || { rc=$? ; break; }
13715                 break
13716         done
13717
13718         destroy_test_pools
13719
13720         if ! combined_mgs_mds ; then
13721                 umount_mgs_client
13722         fi
13723         return $rc
13724 }
13725 run_test 200 "OST pools"
13726
13727 # usage: default_attr <count | size | offset>
13728 default_attr() {
13729         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13730 }
13731
13732 # usage: check_default_stripe_attr
13733 check_default_stripe_attr() {
13734         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13735         case $1 in
13736         --stripe-count|-c)
13737                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13738         --stripe-size|-S)
13739                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13740         --stripe-index|-i)
13741                 EXPECTED=-1;;
13742         *)
13743                 error "unknown getstripe attr '$1'"
13744         esac
13745
13746         [ $ACTUAL == $EXPECTED ] ||
13747                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13748 }
13749
13750 test_204a() {
13751         test_mkdir $DIR/$tdir
13752         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13753
13754         check_default_stripe_attr --stripe-count
13755         check_default_stripe_attr --stripe-size
13756         check_default_stripe_attr --stripe-index
13757 }
13758 run_test 204a "Print default stripe attributes"
13759
13760 test_204b() {
13761         test_mkdir $DIR/$tdir
13762         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13763
13764         check_default_stripe_attr --stripe-size
13765         check_default_stripe_attr --stripe-index
13766 }
13767 run_test 204b "Print default stripe size and offset"
13768
13769 test_204c() {
13770         test_mkdir $DIR/$tdir
13771         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13772
13773         check_default_stripe_attr --stripe-count
13774         check_default_stripe_attr --stripe-index
13775 }
13776 run_test 204c "Print default stripe count and offset"
13777
13778 test_204d() {
13779         test_mkdir $DIR/$tdir
13780         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13781
13782         check_default_stripe_attr --stripe-count
13783         check_default_stripe_attr --stripe-size
13784 }
13785 run_test 204d "Print default stripe count and size"
13786
13787 test_204e() {
13788         test_mkdir $DIR/$tdir
13789         $SETSTRIPE -d $DIR/$tdir
13790
13791         check_default_stripe_attr --stripe-count --raw
13792         check_default_stripe_attr --stripe-size --raw
13793         check_default_stripe_attr --stripe-index --raw
13794 }
13795 run_test 204e "Print raw stripe attributes"
13796
13797 test_204f() {
13798         test_mkdir $DIR/$tdir
13799         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13800
13801         check_default_stripe_attr --stripe-size --raw
13802         check_default_stripe_attr --stripe-index --raw
13803 }
13804 run_test 204f "Print raw stripe size and offset"
13805
13806 test_204g() {
13807         test_mkdir $DIR/$tdir
13808         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13809
13810         check_default_stripe_attr --stripe-count --raw
13811         check_default_stripe_attr --stripe-index --raw
13812 }
13813 run_test 204g "Print raw stripe count and offset"
13814
13815 test_204h() {
13816         test_mkdir $DIR/$tdir
13817         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13818
13819         check_default_stripe_attr --stripe-count --raw
13820         check_default_stripe_attr --stripe-size --raw
13821 }
13822 run_test 204h "Print raw stripe count and size"
13823
13824 # Figure out which job scheduler is being used, if any,
13825 # or use a fake one
13826 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13827         JOBENV=SLURM_JOB_ID
13828 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13829         JOBENV=LSB_JOBID
13830 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13831         JOBENV=PBS_JOBID
13832 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13833         JOBENV=LOADL_STEP_ID
13834 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13835         JOBENV=JOB_ID
13836 else
13837         $LCTL list_param jobid_name > /dev/null 2>&1
13838         if [ $? -eq 0 ]; then
13839                 JOBENV=nodelocal
13840         else
13841                 JOBENV=FAKE_JOBID
13842         fi
13843 fi
13844 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13845
13846 verify_jobstats() {
13847         local cmd=($1)
13848         shift
13849         local facets="$@"
13850
13851 # we don't really need to clear the stats for this test to work, since each
13852 # command has a unique jobid, but it makes debugging easier if needed.
13853 #       for facet in $facets; do
13854 #               local dev=$(convert_facet2label $facet)
13855 #               # clear old jobstats
13856 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13857 #       done
13858
13859         # use a new JobID for each test, or we might see an old one
13860         [ "$JOBENV" = "FAKE_JOBID" ] &&
13861                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13862
13863         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13864
13865         [ "$JOBENV" = "nodelocal" ] && {
13866                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13867                 $LCTL set_param jobid_name=$FAKE_JOBID
13868                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13869         }
13870
13871         log "Test: ${cmd[*]}"
13872         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13873
13874         if [ $JOBENV = "FAKE_JOBID" ]; then
13875                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13876         else
13877                 ${cmd[*]}
13878         fi
13879
13880         # all files are created on OST0000
13881         for facet in $facets; do
13882                 local stats="*.$(convert_facet2label $facet).job_stats"
13883
13884                 # strip out libtool wrappers for in-tree executables
13885                 if [ $(do_facet $facet lctl get_param $stats |
13886                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13887                         do_facet $facet lctl get_param $stats
13888                         error "No jobstats for $JOBVAL found on $facet::$stats"
13889                 fi
13890         done
13891 }
13892
13893 jobstats_set() {
13894         local new_jobenv=$1
13895
13896         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$new_jobenv
13897         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $new_jobenv
13898 }
13899
13900 test_205() { # Job stats
13901         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13902         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13903                 skip "Need MDS version with at least 2.7.1"
13904         remote_mgs_nodsh && skip "remote MGS with nodsh"
13905         remote_mds_nodsh && skip "remote MDS with nodsh"
13906         remote_ost_nodsh && skip "remote OST with nodsh"
13907         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13908                 skip "Server doesn't support jobstats"
13909         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13910
13911         local old_jobenv=$($LCTL get_param -n jobid_var)
13912         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13913         stack_trap "do_facet mgs \
13914                 $LCTL conf_param $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13915
13916         changelog_register
13917
13918         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13919                                 mdt.*.job_cleanup_interval | head -n 1)
13920         local new_interval=5
13921         do_facet $SINGLEMDS \
13922                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
13923         stack_trap "do_facet $SINGLEMDS \
13924                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
13925         local start=$SECONDS
13926
13927         local cmd
13928         # mkdir
13929         cmd="mkdir $DIR/$tdir"
13930         verify_jobstats "$cmd" "$SINGLEMDS"
13931         # rmdir
13932         cmd="rmdir $DIR/$tdir"
13933         verify_jobstats "$cmd" "$SINGLEMDS"
13934         # mkdir on secondary MDT
13935         if [ $MDSCOUNT -gt 1 ]; then
13936                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
13937                 verify_jobstats "$cmd" "mds2"
13938         fi
13939         # mknod
13940         cmd="mknod $DIR/$tfile c 1 3"
13941         verify_jobstats "$cmd" "$SINGLEMDS"
13942         # unlink
13943         cmd="rm -f $DIR/$tfile"
13944         verify_jobstats "$cmd" "$SINGLEMDS"
13945         # create all files on OST0000 so verify_jobstats can find OST stats
13946         # open & close
13947         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
13948         verify_jobstats "$cmd" "$SINGLEMDS"
13949         # setattr
13950         cmd="touch $DIR/$tfile"
13951         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13952         # write
13953         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
13954         verify_jobstats "$cmd" "ost1"
13955         # read
13956         cancel_lru_locks osc
13957         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
13958         verify_jobstats "$cmd" "ost1"
13959         # truncate
13960         cmd="$TRUNCATE $DIR/$tfile 0"
13961         verify_jobstats "$cmd" "$SINGLEMDS ost1"
13962         # rename
13963         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
13964         verify_jobstats "$cmd" "$SINGLEMDS"
13965         # jobstats expiry - sleep until old stats should be expired
13966         local left=$((new_interval + 5 - (SECONDS - start)))
13967         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
13968                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
13969                         "0" $left
13970         cmd="mkdir $DIR/$tdir.expire"
13971         verify_jobstats "$cmd" "$SINGLEMDS"
13972         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
13973             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
13974
13975         # Ensure that jobid are present in changelog (if supported by MDS)
13976         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
13977                 changelog_dump | tail -10
13978                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
13979                 [ $jobids -eq 9 ] ||
13980                         error "Wrong changelog jobid count $jobids != 9"
13981
13982                 # LU-5862
13983                 JOBENV="disable"
13984                 jobstats_set $JOBENV
13985                 touch $DIR/$tfile
13986                 changelog_dump | grep $tfile
13987                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
13988                 [ $jobids -eq 0 ] ||
13989                         error "Unexpected jobids when jobid_var=$JOBENV"
13990         fi
13991
13992         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
13993         JOBENV="JOBCOMPLEX"
13994         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
13995
13996         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
13997 }
13998 run_test 205 "Verify job stats"
13999
14000 # LU-1480, LU-1773 and LU-1657
14001 test_206() {
14002         mkdir -p $DIR/$tdir
14003         $SETSTRIPE -c -1 $DIR/$tdir
14004 #define OBD_FAIL_LOV_INIT 0x1403
14005         $LCTL set_param fail_loc=0xa0001403
14006         $LCTL set_param fail_val=1
14007         touch $DIR/$tdir/$tfile || true
14008 }
14009 run_test 206 "fail lov_init_raid0() doesn't lbug"
14010
14011 test_207a() {
14012         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14013         local fsz=`stat -c %s $DIR/$tfile`
14014         cancel_lru_locks mdc
14015
14016         # do not return layout in getattr intent
14017 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14018         $LCTL set_param fail_loc=0x170
14019         local sz=`stat -c %s $DIR/$tfile`
14020
14021         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14022
14023         rm -rf $DIR/$tfile
14024 }
14025 run_test 207a "can refresh layout at glimpse"
14026
14027 test_207b() {
14028         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14029         local cksum=`md5sum $DIR/$tfile`
14030         local fsz=`stat -c %s $DIR/$tfile`
14031         cancel_lru_locks mdc
14032         cancel_lru_locks osc
14033
14034         # do not return layout in getattr intent
14035 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14036         $LCTL set_param fail_loc=0x171
14037
14038         # it will refresh layout after the file is opened but before read issues
14039         echo checksum is "$cksum"
14040         echo "$cksum" |md5sum -c --quiet || error "file differs"
14041
14042         rm -rf $DIR/$tfile
14043 }
14044 run_test 207b "can refresh layout at open"
14045
14046 test_208() {
14047         # FIXME: in this test suite, only RD lease is used. This is okay
14048         # for now as only exclusive open is supported. After generic lease
14049         # is done, this test suite should be revised. - Jinshan
14050
14051         remote_mds_nodsh && skip "remote MDS with nodsh"
14052         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14053                 skip "Need MDS version at least 2.4.52"
14054
14055         echo "==== test 1: verify get lease work"
14056         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14057
14058         echo "==== test 2: verify lease can be broken by upcoming open"
14059         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14060         local PID=$!
14061         sleep 1
14062
14063         $MULTIOP $DIR/$tfile oO_RDONLY:c
14064         kill -USR1 $PID && wait $PID || error "break lease error"
14065
14066         echo "==== test 3: verify lease can't be granted if an open already exists"
14067         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14068         local PID=$!
14069         sleep 1
14070
14071         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14072         kill -USR1 $PID && wait $PID || error "open file error"
14073
14074         echo "==== test 4: lease can sustain over recovery"
14075         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14076         PID=$!
14077         sleep 1
14078
14079         fail mds1
14080
14081         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14082
14083         echo "==== test 5: lease broken can't be regained by replay"
14084         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14085         PID=$!
14086         sleep 1
14087
14088         # open file to break lease and then recovery
14089         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14090         fail mds1
14091
14092         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14093
14094         rm -f $DIR/$tfile
14095 }
14096 run_test 208 "Exclusive open"
14097
14098 test_209() {
14099         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14100                 skip_env "must have disp_stripe"
14101
14102         touch $DIR/$tfile
14103         sync; sleep 5; sync;
14104
14105         echo 3 > /proc/sys/vm/drop_caches
14106         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14107
14108         # open/close 500 times
14109         for i in $(seq 500); do
14110                 cat $DIR/$tfile
14111         done
14112
14113         echo 3 > /proc/sys/vm/drop_caches
14114         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14115
14116         echo "before: $req_before, after: $req_after"
14117         [ $((req_after - req_before)) -ge 300 ] &&
14118                 error "open/close requests are not freed"
14119         return 0
14120 }
14121 run_test 209 "read-only open/close requests should be freed promptly"
14122
14123 test_212() {
14124         size=`date +%s`
14125         size=$((size % 8192 + 1))
14126         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14127         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14128         rm -f $DIR/f212 $DIR/f212.xyz
14129 }
14130 run_test 212 "Sendfile test ============================================"
14131
14132 test_213() {
14133         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14134         cancel_lru_locks osc
14135         lctl set_param fail_loc=0x8000040f
14136         # generate a read lock
14137         cat $DIR/$tfile > /dev/null
14138         # write to the file, it will try to cancel the above read lock.
14139         cat /etc/hosts >> $DIR/$tfile
14140 }
14141 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14142
14143 test_214() { # for bug 20133
14144         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14145         for (( i=0; i < 340; i++ )) ; do
14146                 touch $DIR/$tdir/d214c/a$i
14147         done
14148
14149         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14150         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14151         ls $DIR/d214c || error "ls $DIR/d214c failed"
14152         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14153         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14154 }
14155 run_test 214 "hash-indexed directory test - bug 20133"
14156
14157 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14158 create_lnet_proc_files() {
14159         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14160 }
14161
14162 # counterpart of create_lnet_proc_files
14163 remove_lnet_proc_files() {
14164         rm -f $TMP/lnet_$1.sys
14165 }
14166
14167 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14168 # 3rd arg as regexp for body
14169 check_lnet_proc_stats() {
14170         local l=$(cat "$TMP/lnet_$1" |wc -l)
14171         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14172
14173         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14174 }
14175
14176 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14177 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14178 # optional and can be regexp for 2nd line (lnet.routes case)
14179 check_lnet_proc_entry() {
14180         local blp=2          # blp stands for 'position of 1st line of body'
14181         [ -z "$5" ] || blp=3 # lnet.routes case
14182
14183         local l=$(cat "$TMP/lnet_$1" |wc -l)
14184         # subtracting one from $blp because the body can be empty
14185         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14186
14187         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14188                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14189
14190         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14191                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14192
14193         # bail out if any unexpected line happened
14194         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14195         [ "$?" != 0 ] || error "$2 misformatted"
14196 }
14197
14198 test_215() { # for bugs 18102, 21079, 21517
14199         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14200
14201         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14202         local P='[1-9][0-9]*'           # positive numeric
14203         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14204         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14205         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14206         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14207
14208         local L1 # regexp for 1st line
14209         local L2 # regexp for 2nd line (optional)
14210         local BR # regexp for the rest (body)
14211
14212         # lnet.stats should look as 11 space-separated non-negative numerics
14213         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14214         create_lnet_proc_files "stats"
14215         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14216         remove_lnet_proc_files "stats"
14217
14218         # lnet.routes should look like this:
14219         # Routing disabled/enabled
14220         # net hops priority state router
14221         # where net is a string like tcp0, hops > 0, priority >= 0,
14222         # state is up/down,
14223         # router is a string like 192.168.1.1@tcp2
14224         L1="^Routing (disabled|enabled)$"
14225         L2="^net +hops +priority +state +router$"
14226         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14227         create_lnet_proc_files "routes"
14228         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14229         remove_lnet_proc_files "routes"
14230
14231         # lnet.routers should look like this:
14232         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14233         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14234         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14235         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14236         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14237         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14238         create_lnet_proc_files "routers"
14239         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14240         remove_lnet_proc_files "routers"
14241
14242         # lnet.peers should look like this:
14243         # nid refs state last max rtr min tx min queue
14244         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14245         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14246         # numeric (0 or >0 or <0), queue >= 0.
14247         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14248         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14249         create_lnet_proc_files "peers"
14250         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14251         remove_lnet_proc_files "peers"
14252
14253         # lnet.buffers  should look like this:
14254         # pages count credits min
14255         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14256         L1="^pages +count +credits +min$"
14257         BR="^ +$N +$N +$I +$I$"
14258         create_lnet_proc_files "buffers"
14259         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14260         remove_lnet_proc_files "buffers"
14261
14262         # lnet.nis should look like this:
14263         # nid status alive refs peer rtr max tx min
14264         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14265         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14266         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14267         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14268         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14269         create_lnet_proc_files "nis"
14270         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14271         remove_lnet_proc_files "nis"
14272
14273         # can we successfully write to lnet.stats?
14274         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14275 }
14276 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14277
14278 test_216() { # bug 20317
14279         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14280         remote_ost_nodsh && skip "remote OST with nodsh"
14281
14282         local node
14283         local facets=$(get_facets OST)
14284         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14285
14286         save_lustre_params client "osc.*.contention_seconds" > $p
14287         save_lustre_params $facets \
14288                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14289         save_lustre_params $facets \
14290                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14291         save_lustre_params $facets \
14292                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14293         clear_stats osc.*.osc_stats
14294
14295         # agressive lockless i/o settings
14296         do_nodes $(comma_list $(osts_nodes)) \
14297                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14298                         ldlm.namespaces.filter-*.contended_locks=0 \
14299                         ldlm.namespaces.filter-*.contention_seconds=60"
14300         lctl set_param -n osc.*.contention_seconds=60
14301
14302         $DIRECTIO write $DIR/$tfile 0 10 4096
14303         $CHECKSTAT -s 40960 $DIR/$tfile
14304
14305         # disable lockless i/o
14306         do_nodes $(comma_list $(osts_nodes)) \
14307                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14308                         ldlm.namespaces.filter-*.contended_locks=32 \
14309                         ldlm.namespaces.filter-*.contention_seconds=0"
14310         lctl set_param -n osc.*.contention_seconds=0
14311         clear_stats osc.*.osc_stats
14312
14313         dd if=/dev/zero of=$DIR/$tfile count=0
14314         $CHECKSTAT -s 0 $DIR/$tfile
14315
14316         restore_lustre_params <$p
14317         rm -f $p
14318         rm $DIR/$tfile
14319 }
14320 run_test 216 "check lockless direct write updates file size and kms correctly"
14321
14322 test_217() { # bug 22430
14323         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14324
14325         local node
14326         local nid
14327
14328         for node in $(nodes_list); do
14329                 nid=$(host_nids_address $node $NETTYPE)
14330                 if [[ $nid = *-* ]] ; then
14331                         echo "lctl ping $(h2nettype $nid)"
14332                         lctl ping $(h2nettype $nid)
14333                 else
14334                         echo "skipping $node (no hyphen detected)"
14335                 fi
14336         done
14337 }
14338 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14339
14340 test_218() {
14341        # do directio so as not to populate the page cache
14342        log "creating a 10 Mb file"
14343        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14344        log "starting reads"
14345        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14346        log "truncating the file"
14347        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14348        log "killing dd"
14349        kill %+ || true # reads might have finished
14350        echo "wait until dd is finished"
14351        wait
14352        log "removing the temporary file"
14353        rm -rf $DIR/$tfile || error "tmp file removal failed"
14354 }
14355 run_test 218 "parallel read and truncate should not deadlock"
14356
14357 test_219() {
14358         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14359
14360         # write one partial page
14361         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14362         # set no grant so vvp_io_commit_write will do sync write
14363         $LCTL set_param fail_loc=0x411
14364         # write a full page at the end of file
14365         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14366
14367         $LCTL set_param fail_loc=0
14368         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14369         $LCTL set_param fail_loc=0x411
14370         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14371
14372         # LU-4201
14373         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14374         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14375 }
14376 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14377
14378 test_220() { #LU-325
14379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14380         remote_ost_nodsh && skip "remote OST with nodsh"
14381         remote_mds_nodsh && skip "remote MDS with nodsh"
14382         remote_mgs_nodsh && skip "remote MGS with nodsh"
14383
14384         local OSTIDX=0
14385
14386         # create on MDT0000 so the last_id and next_id are correct
14387         mkdir $DIR/$tdir
14388         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14389         OST=${OST%_UUID}
14390
14391         # on the mdt's osc
14392         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14393         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14394                         osc.$mdtosc_proc1.prealloc_last_id)
14395         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14396                         osc.$mdtosc_proc1.prealloc_next_id)
14397
14398         $LFS df -i
14399
14400         if ! combined_mgs_mds ; then
14401                 mount_mgs_client
14402         fi
14403
14404         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14405         #define OBD_FAIL_OST_ENOINO              0x229
14406         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14407         create_pool $FSNAME.$TESTNAME || return 1
14408         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14409
14410         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14411
14412         MDSOBJS=$((last_id - next_id))
14413         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14414
14415         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14416         echo "OST still has $count kbytes free"
14417
14418         echo "create $MDSOBJS files @next_id..."
14419         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14420
14421         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14422                         osc.$mdtosc_proc1.prealloc_last_id)
14423         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14424                         osc.$mdtosc_proc1.prealloc_next_id)
14425
14426         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14427         $LFS df -i
14428
14429         echo "cleanup..."
14430
14431         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14432         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14433
14434         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14435                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14436         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14437                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14438         echo "unlink $MDSOBJS files @$next_id..."
14439         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14440
14441         if ! combined_mgs_mds ; then
14442                 umount_mgs_client
14443         fi
14444 }
14445 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14446
14447 test_221() {
14448         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14449
14450         dd if=`which date` of=$MOUNT/date oflag=sync
14451         chmod +x $MOUNT/date
14452
14453         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14454         $LCTL set_param fail_loc=0x80001401
14455
14456         $MOUNT/date > /dev/null
14457         rm -f $MOUNT/date
14458 }
14459 run_test 221 "make sure fault and truncate race to not cause OOM"
14460
14461 test_222a () {
14462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14463
14464         rm -rf $DIR/$tdir
14465         test_mkdir $DIR/$tdir
14466         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14467         createmany -o $DIR/$tdir/$tfile 10
14468         cancel_lru_locks mdc
14469         cancel_lru_locks osc
14470         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14471         $LCTL set_param fail_loc=0x31a
14472         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14473         $LCTL set_param fail_loc=0
14474         rm -r $DIR/$tdir
14475 }
14476 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14477
14478 test_222b () {
14479         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14480
14481         rm -rf $DIR/$tdir
14482         test_mkdir $DIR/$tdir
14483         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14484         createmany -o $DIR/$tdir/$tfile 10
14485         cancel_lru_locks mdc
14486         cancel_lru_locks osc
14487         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14488         $LCTL set_param fail_loc=0x31a
14489         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14490         $LCTL set_param fail_loc=0
14491 }
14492 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14493
14494 test_223 () {
14495         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14496
14497         rm -rf $DIR/$tdir
14498         test_mkdir $DIR/$tdir
14499         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14500         createmany -o $DIR/$tdir/$tfile 10
14501         cancel_lru_locks mdc
14502         cancel_lru_locks osc
14503         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14504         $LCTL set_param fail_loc=0x31b
14505         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14506         $LCTL set_param fail_loc=0
14507         rm -r $DIR/$tdir
14508 }
14509 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14510
14511 test_224a() { # LU-1039, MRP-303
14512         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14513
14514         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14515         $LCTL set_param fail_loc=0x508
14516         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14517         $LCTL set_param fail_loc=0
14518         df $DIR
14519 }
14520 run_test 224a "Don't panic on bulk IO failure"
14521
14522 test_224b() { # LU-1039, MRP-303
14523         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14524
14525         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14526         cancel_lru_locks osc
14527         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14528         $LCTL set_param fail_loc=0x515
14529         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14530         $LCTL set_param fail_loc=0
14531         df $DIR
14532 }
14533 run_test 224b "Don't panic on bulk IO failure"
14534
14535 test_224c() { # LU-6441
14536         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14537         remote_mds_nodsh && skip "remote MDS with nodsh"
14538
14539         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14540         save_writethrough $p
14541         set_cache writethrough on
14542
14543         local pages_per_rpc=$($LCTL get_param \
14544                                 osc.*.max_pages_per_rpc)
14545         local at_max=$($LCTL get_param -n at_max)
14546         local timeout=$($LCTL get_param -n timeout)
14547         local test_at="$LCTL get_param -n at_max"
14548         local param_at="$FSNAME.sys.at_max"
14549         local test_timeout="$LCTL get_param -n timeout"
14550         local param_timeout="$FSNAME.sys.timeout"
14551
14552         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14553
14554         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
14555                 error "conf_param at_max=0 failed"
14556         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
14557                 error "conf_param timeout=5 failed"
14558
14559         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14560         do_facet ost1 $LCTL set_param fail_loc=0x520
14561         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14562         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14563         sync
14564         do_facet ost1 $LCTL set_param fail_loc=0
14565
14566         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
14567                 error "conf_param at_max=$at_max failed"
14568         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
14569                 $timeout || error "conf_param timeout=$timeout failed"
14570
14571         $LCTL set_param -n $pages_per_rpc
14572         restore_lustre_params < $p
14573         rm -f $p
14574 }
14575 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14576
14577 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14578 test_225a () {
14579         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14580         if [ -z ${MDSSURVEY} ]; then
14581                 skip_env "mds-survey not found"
14582         fi
14583         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14584                 skip "Need MDS version at least 2.2.51"
14585
14586         local mds=$(facet_host $SINGLEMDS)
14587         local target=$(do_nodes $mds 'lctl dl' |
14588                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14589
14590         local cmd1="file_count=1000 thrhi=4"
14591         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14592         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14593         local cmd="$cmd1 $cmd2 $cmd3"
14594
14595         rm -f ${TMP}/mds_survey*
14596         echo + $cmd
14597         eval $cmd || error "mds-survey with zero-stripe failed"
14598         cat ${TMP}/mds_survey*
14599         rm -f ${TMP}/mds_survey*
14600 }
14601 run_test 225a "Metadata survey sanity with zero-stripe"
14602
14603 test_225b () {
14604         if [ -z ${MDSSURVEY} ]; then
14605                 skip_env "mds-survey not found"
14606         fi
14607         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14608                 skip "Need MDS version at least 2.2.51"
14609         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14610         remote_mds_nodsh && skip "remote MDS with nodsh"
14611         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14612                 skip_env "Need to mount OST to test"
14613         fi
14614
14615         local mds=$(facet_host $SINGLEMDS)
14616         local target=$(do_nodes $mds 'lctl dl' |
14617                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14618
14619         local cmd1="file_count=1000 thrhi=4"
14620         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14621         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14622         local cmd="$cmd1 $cmd2 $cmd3"
14623
14624         rm -f ${TMP}/mds_survey*
14625         echo + $cmd
14626         eval $cmd || error "mds-survey with stripe_count failed"
14627         cat ${TMP}/mds_survey*
14628         rm -f ${TMP}/mds_survey*
14629 }
14630 run_test 225b "Metadata survey sanity with stripe_count = 1"
14631
14632 mcreate_path2fid () {
14633         local mode=$1
14634         local major=$2
14635         local minor=$3
14636         local name=$4
14637         local desc=$5
14638         local path=$DIR/$tdir/$name
14639         local fid
14640         local rc
14641         local fid_path
14642
14643         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14644                 error "cannot create $desc"
14645
14646         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14647         rc=$?
14648         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14649
14650         fid_path=$($LFS fid2path $MOUNT $fid)
14651         rc=$?
14652         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14653
14654         [ "$path" == "$fid_path" ] ||
14655                 error "fid2path returned $fid_path, expected $path"
14656
14657         echo "pass with $path and $fid"
14658 }
14659
14660 test_226a () {
14661         rm -rf $DIR/$tdir
14662         mkdir -p $DIR/$tdir
14663
14664         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14665         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14666         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14667         mcreate_path2fid 0040666 0 0 dir "directory"
14668         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14669         mcreate_path2fid 0100666 0 0 file "regular file"
14670         mcreate_path2fid 0120666 0 0 link "symbolic link"
14671         mcreate_path2fid 0140666 0 0 sock "socket"
14672 }
14673 run_test 226a "call path2fid and fid2path on files of all type"
14674
14675 test_226b () {
14676         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14677
14678         local MDTIDX=1
14679
14680         rm -rf $DIR/$tdir
14681         mkdir -p $DIR/$tdir
14682         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14683                 error "create remote directory failed"
14684         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14685         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14686                                 "character special file (null)"
14687         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14688                                 "character special file (no device)"
14689         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14690         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14691                                 "block special file (loop)"
14692         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14693         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14694         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14695 }
14696 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14697
14698 # LU-1299 Executing or running ldd on a truncated executable does not
14699 # cause an out-of-memory condition.
14700 test_227() {
14701         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14702         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14703
14704         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14705         chmod +x $MOUNT/date
14706
14707         $MOUNT/date > /dev/null
14708         ldd $MOUNT/date > /dev/null
14709         rm -f $MOUNT/date
14710 }
14711 run_test 227 "running truncated executable does not cause OOM"
14712
14713 # LU-1512 try to reuse idle OI blocks
14714 test_228a() {
14715         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14716         remote_mds_nodsh && skip "remote MDS with nodsh"
14717         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14718                 skip_env "ldiskfs only test"
14719
14720         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14721         local myDIR=$DIR/$tdir
14722
14723         mkdir -p $myDIR
14724         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14725         $LCTL set_param fail_loc=0x80001002
14726         createmany -o $myDIR/t- 10000
14727         $LCTL set_param fail_loc=0
14728         # The guard is current the largest FID holder
14729         touch $myDIR/guard
14730         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14731                     tr -d '[')
14732         local IDX=$(($SEQ % 64))
14733
14734         do_facet $SINGLEMDS sync
14735         # Make sure journal flushed.
14736         sleep 6
14737         local blk1=$(do_facet $SINGLEMDS \
14738                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14739                      grep Blockcount | awk '{print $4}')
14740
14741         # Remove old files, some OI blocks will become idle.
14742         unlinkmany $myDIR/t- 10000
14743         # Create new files, idle OI blocks should be reused.
14744         createmany -o $myDIR/t- 2000
14745         do_facet $SINGLEMDS sync
14746         # Make sure journal flushed.
14747         sleep 6
14748         local blk2=$(do_facet $SINGLEMDS \
14749                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14750                      grep Blockcount | awk '{print $4}')
14751
14752         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14753 }
14754 run_test 228a "try to reuse idle OI blocks"
14755
14756 test_228b() {
14757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14758         remote_mds_nodsh && skip "remote MDS with nodsh"
14759         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14760                 skip_env "ldiskfs only test"
14761
14762         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14763         local myDIR=$DIR/$tdir
14764
14765         mkdir -p $myDIR
14766         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14767         $LCTL set_param fail_loc=0x80001002
14768         createmany -o $myDIR/t- 10000
14769         $LCTL set_param fail_loc=0
14770         # The guard is current the largest FID holder
14771         touch $myDIR/guard
14772         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14773                     tr -d '[')
14774         local IDX=$(($SEQ % 64))
14775
14776         do_facet $SINGLEMDS sync
14777         # Make sure journal flushed.
14778         sleep 6
14779         local blk1=$(do_facet $SINGLEMDS \
14780                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14781                      grep Blockcount | awk '{print $4}')
14782
14783         # Remove old files, some OI blocks will become idle.
14784         unlinkmany $myDIR/t- 10000
14785
14786         # stop the MDT
14787         stop $SINGLEMDS || error "Fail to stop MDT."
14788         # remount the MDT
14789         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14790
14791         df $MOUNT || error "Fail to df."
14792         # Create new files, idle OI blocks should be reused.
14793         createmany -o $myDIR/t- 2000
14794         do_facet $SINGLEMDS sync
14795         # Make sure journal flushed.
14796         sleep 6
14797         local blk2=$(do_facet $SINGLEMDS \
14798                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14799                      grep Blockcount | awk '{print $4}')
14800
14801         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14802 }
14803 run_test 228b "idle OI blocks can be reused after MDT restart"
14804
14805 #LU-1881
14806 test_228c() {
14807         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14808         remote_mds_nodsh && skip "remote MDS with nodsh"
14809         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14810                 skip_env "ldiskfs only test"
14811
14812         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14813         local myDIR=$DIR/$tdir
14814
14815         mkdir -p $myDIR
14816         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14817         $LCTL set_param fail_loc=0x80001002
14818         # 20000 files can guarantee there are index nodes in the OI file
14819         createmany -o $myDIR/t- 20000
14820         $LCTL set_param fail_loc=0
14821         # The guard is current the largest FID holder
14822         touch $myDIR/guard
14823         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14824                     tr -d '[')
14825         local IDX=$(($SEQ % 64))
14826
14827         do_facet $SINGLEMDS sync
14828         # Make sure journal flushed.
14829         sleep 6
14830         local blk1=$(do_facet $SINGLEMDS \
14831                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14832                      grep Blockcount | awk '{print $4}')
14833
14834         # Remove old files, some OI blocks will become idle.
14835         unlinkmany $myDIR/t- 20000
14836         rm -f $myDIR/guard
14837         # The OI file should become empty now
14838
14839         # Create new files, idle OI blocks should be reused.
14840         createmany -o $myDIR/t- 2000
14841         do_facet $SINGLEMDS sync
14842         # Make sure journal flushed.
14843         sleep 6
14844         local blk2=$(do_facet $SINGLEMDS \
14845                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14846                      grep Blockcount | awk '{print $4}')
14847
14848         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14849 }
14850 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14851
14852 test_229() { # LU-2482, LU-3448
14853         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14854         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14855         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14856                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14857
14858         rm -f $DIR/$tfile
14859
14860         # Create a file with a released layout and stripe count 2.
14861         $MULTIOP $DIR/$tfile H2c ||
14862                 error "failed to create file with released layout"
14863
14864         $GETSTRIPE -v $DIR/$tfile
14865
14866         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14867         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14868
14869         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14870         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14871         stat $DIR/$tfile || error "failed to stat released file"
14872
14873         chown $RUNAS_ID $DIR/$tfile ||
14874                 error "chown $RUNAS_ID $DIR/$tfile failed"
14875
14876         chgrp $RUNAS_ID $DIR/$tfile ||
14877                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14878
14879         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14880         rm $DIR/$tfile || error "failed to remove released file"
14881 }
14882 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14883
14884 test_230a() {
14885         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14886         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14887         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14888                 skip "Need MDS version at least 2.11.52"
14889
14890         local MDTIDX=1
14891
14892         test_mkdir $DIR/$tdir
14893         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14894         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14895         [ $mdt_idx -ne 0 ] &&
14896                 error "create local directory on wrong MDT $mdt_idx"
14897
14898         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14899                         error "create remote directory failed"
14900         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14901         [ $mdt_idx -ne $MDTIDX ] &&
14902                 error "create remote directory on wrong MDT $mdt_idx"
14903
14904         createmany -o $DIR/$tdir/test_230/t- 10 ||
14905                 error "create files on remote directory failed"
14906         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14907         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14908         rm -r $DIR/$tdir || error "unlink remote directory failed"
14909 }
14910 run_test 230a "Create remote directory and files under the remote directory"
14911
14912 test_230b() {
14913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14914         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14915         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14916                 skip "Need MDS version at least 2.11.52"
14917
14918         local MDTIDX=1
14919         local mdt_index
14920         local i
14921         local file
14922         local pid
14923         local stripe_count
14924         local migrate_dir=$DIR/$tdir/migrate_dir
14925         local other_dir=$DIR/$tdir/other_dir
14926
14927         test_mkdir $DIR/$tdir
14928         test_mkdir -i0 -c1 $migrate_dir
14929         test_mkdir -i0 -c1 $other_dir
14930         for ((i=0; i<10; i++)); do
14931                 mkdir -p $migrate_dir/dir_${i}
14932                 createmany -o $migrate_dir/dir_${i}/f 10 ||
14933                         error "create files under remote dir failed $i"
14934         done
14935
14936         cp /etc/passwd $migrate_dir/$tfile
14937         cp /etc/passwd $other_dir/$tfile
14938         chattr +SAD $migrate_dir
14939         chattr +SAD $migrate_dir/$tfile
14940
14941         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14942         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14943         local old_dir_mode=$(stat -c%f $migrate_dir)
14944         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
14945
14946         mkdir -p $migrate_dir/dir_default_stripe2
14947         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
14948         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
14949
14950         mkdir -p $other_dir
14951         ln $migrate_dir/$tfile $other_dir/luna
14952         ln $migrate_dir/$tfile $migrate_dir/sofia
14953         ln $other_dir/$tfile $migrate_dir/david
14954         ln -s $migrate_dir/$tfile $other_dir/zachary
14955         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
14956         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
14957
14958         $LFS migrate -m $MDTIDX $migrate_dir ||
14959                 error "fails on migrating remote dir to MDT1"
14960
14961         echo "migratate to MDT1, then checking.."
14962         for ((i = 0; i < 10; i++)); do
14963                 for file in $(find $migrate_dir/dir_${i}); do
14964                         mdt_index=$($LFS getstripe -m $file)
14965                         [ $mdt_index == $MDTIDX ] ||
14966                                 error "$file is not on MDT${MDTIDX}"
14967                 done
14968         done
14969
14970         # the multiple link file should still in MDT0
14971         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
14972         [ $mdt_index == 0 ] ||
14973                 error "$file is not on MDT${MDTIDX}"
14974
14975         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
14976         [ "$old_dir_flag" = "$new_dir_flag" ] ||
14977                 error " expect $old_dir_flag get $new_dir_flag"
14978
14979         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
14980         [ "$old_file_flag" = "$new_file_flag" ] ||
14981                 error " expect $old_file_flag get $new_file_flag"
14982
14983         local new_dir_mode=$(stat -c%f $migrate_dir)
14984         [ "$old_dir_mode" = "$new_dir_mode" ] ||
14985                 error "expect mode $old_dir_mode get $new_dir_mode"
14986
14987         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
14988         [ "$old_file_mode" = "$new_file_mode" ] ||
14989                 error "expect mode $old_file_mode get $new_file_mode"
14990
14991         diff /etc/passwd $migrate_dir/$tfile ||
14992                 error "$tfile different after migration"
14993
14994         diff /etc/passwd $other_dir/luna ||
14995                 error "luna different after migration"
14996
14997         diff /etc/passwd $migrate_dir/sofia ||
14998                 error "sofia different after migration"
14999
15000         diff /etc/passwd $migrate_dir/david ||
15001                 error "david different after migration"
15002
15003         diff /etc/passwd $other_dir/zachary ||
15004                 error "zachary different after migration"
15005
15006         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15007                 error "${tfile}_ln different after migration"
15008
15009         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15010                 error "${tfile}_ln_other different after migration"
15011
15012         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15013         [ $stripe_count = 2 ] ||
15014                 error "dir strpe_count $d != 2 after migration."
15015
15016         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15017         [ $stripe_count = 2 ] ||
15018                 error "file strpe_count $d != 2 after migration."
15019
15020         #migrate back to MDT0
15021         MDTIDX=0
15022
15023         $LFS migrate -m $MDTIDX $migrate_dir ||
15024                 error "fails on migrating remote dir to MDT0"
15025
15026         echo "migrate back to MDT0, checking.."
15027         for file in $(find $migrate_dir); do
15028                 mdt_index=$($LFS getstripe -m $file)
15029                 [ $mdt_index == $MDTIDX ] ||
15030                         error "$file is not on MDT${MDTIDX}"
15031         done
15032
15033         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15034         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15035                 error " expect $old_dir_flag get $new_dir_flag"
15036
15037         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15038         [ "$old_file_flag" = "$new_file_flag" ] ||
15039                 error " expect $old_file_flag get $new_file_flag"
15040
15041         local new_dir_mode=$(stat -c%f $migrate_dir)
15042         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15043                 error "expect mode $old_dir_mode get $new_dir_mode"
15044
15045         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15046         [ "$old_file_mode" = "$new_file_mode" ] ||
15047                 error "expect mode $old_file_mode get $new_file_mode"
15048
15049         diff /etc/passwd ${migrate_dir}/$tfile ||
15050                 error "$tfile different after migration"
15051
15052         diff /etc/passwd ${other_dir}/luna ||
15053                 error "luna different after migration"
15054
15055         diff /etc/passwd ${migrate_dir}/sofia ||
15056                 error "sofia different after migration"
15057
15058         diff /etc/passwd ${other_dir}/zachary ||
15059                 error "zachary different after migration"
15060
15061         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15062                 error "${tfile}_ln different after migration"
15063
15064         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15065                 error "${tfile}_ln_other different after migration"
15066
15067         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15068         [ $stripe_count = 2 ] ||
15069                 error "dir strpe_count $d != 2 after migration."
15070
15071         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15072         [ $stripe_count = 2 ] ||
15073                 error "file strpe_count $d != 2 after migration."
15074
15075         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15076 }
15077 run_test 230b "migrate directory"
15078
15079 test_230c() {
15080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15081         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15082         remote_mds_nodsh && skip "remote MDS with nodsh"
15083         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15084                 skip "Need MDS version at least 2.11.52"
15085
15086         local MDTIDX=1
15087         local total=3
15088         local mdt_index
15089         local file
15090         local migrate_dir=$DIR/$tdir/migrate_dir
15091
15092         #If migrating directory fails in the middle, all entries of
15093         #the directory is still accessiable.
15094         test_mkdir $DIR/$tdir
15095         test_mkdir -i0 -c1 $migrate_dir
15096         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15097         stat $migrate_dir
15098         createmany -o $migrate_dir/f $total ||
15099                 error "create files under ${migrate_dir} failed"
15100
15101         # fail after migrating top dir, and this will fail only once, so the
15102         # first sub file migration will fail (currently f3), others succeed.
15103         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15104         do_facet mds1 lctl set_param fail_loc=0x1801
15105         local t=$(ls $migrate_dir | wc -l)
15106         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15107                 error "migrate should fail"
15108         local u=$(ls $migrate_dir | wc -l)
15109         [ "$u" == "$t" ] || error "$u != $t during migration"
15110
15111         # add new dir/file should succeed
15112         mkdir $migrate_dir/dir ||
15113                 error "mkdir failed under migrating directory"
15114         touch $migrate_dir/file ||
15115                 error "create file failed under migrating directory"
15116
15117         # add file with existing name should fail
15118         for file in $migrate_dir/f*; do
15119                 stat $file > /dev/null || error "stat $file failed"
15120                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15121                         error "open(O_CREAT|O_EXCL) $file should fail"
15122                 $MULTIOP $file m && error "create $file should fail"
15123                 touch $DIR/$tdir/remote_dir/$tfile ||
15124                         error "touch $tfile failed"
15125                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15126                         error "link $file should fail"
15127                 mdt_index=$($LFS getstripe -m $file)
15128                 if [ $mdt_index == 0 ]; then
15129                         # file failed to migrate is not allowed to rename to
15130                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15131                                 error "rename to $file should fail"
15132                 else
15133                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15134                                 error "rename to $file failed"
15135                 fi
15136                 echo hello >> $file || error "write $file failed"
15137         done
15138
15139         # resume migration with different options should fail
15140         $LFS migrate -m 0 $migrate_dir &&
15141                 error "migrate -m 0 $migrate_dir should fail"
15142
15143         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15144                 error "migrate -c 2 $migrate_dir should fail"
15145
15146         # resume migration should succeed
15147         $LFS migrate -m $MDTIDX $migrate_dir ||
15148                 error "migrate $migrate_dir failed"
15149
15150         echo "Finish migration, then checking.."
15151         for file in $(find $migrate_dir); do
15152                 mdt_index=$($LFS getstripe -m $file)
15153                 [ $mdt_index == $MDTIDX ] ||
15154                         error "$file is not on MDT${MDTIDX}"
15155         done
15156
15157         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15158 }
15159 run_test 230c "check directory accessiblity if migration failed"
15160
15161 test_230d() {
15162         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15163         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15164         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15165                 skip "Need MDS version at least 2.11.52"
15166         # LU-11235
15167         [ "$(facet_fstype mds1)" == "zfs" ] && skip "skip ZFS backend"
15168
15169         local migrate_dir=$DIR/$tdir/migrate_dir
15170         local old_index
15171         local new_index
15172         local old_count
15173         local new_count
15174         local new_hash
15175         local mdt_index
15176         local i
15177         local j
15178
15179         old_index=$((RANDOM % MDSCOUNT))
15180         old_count=$((MDSCOUNT - old_index))
15181         new_index=$((RANDOM % MDSCOUNT))
15182         new_count=$((MDSCOUNT - new_index))
15183         new_hash="all_char"
15184
15185         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15186         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15187
15188         test_mkdir $DIR/$tdir
15189         test_mkdir -i $old_index -c $old_count $migrate_dir
15190
15191         for ((i=0; i<100; i++)); do
15192                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15193                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15194                         error "create files under remote dir failed $i"
15195         done
15196
15197         echo -n "Migrate from MDT$old_index "
15198         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15199         echo -n "to MDT$new_index"
15200         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15201         echo
15202
15203         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15204         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15205                 error "migrate remote dir error"
15206
15207         echo "Finish migration, then checking.."
15208         for file in $(find $migrate_dir); do
15209                 mdt_index=$($LFS getstripe -m $file)
15210                 if [ $mdt_index -lt $new_index ] ||
15211                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15212                         error "$file is on MDT$mdt_index"
15213                 fi
15214         done
15215
15216         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15217 }
15218 run_test 230d "check migrate big directory"
15219
15220 test_230e() {
15221         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15222         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15223         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15224                 skip "Need MDS version at least 2.11.52"
15225
15226         local i
15227         local j
15228         local a_fid
15229         local b_fid
15230
15231         mkdir -p $DIR/$tdir
15232         mkdir $DIR/$tdir/migrate_dir
15233         mkdir $DIR/$tdir/other_dir
15234         touch $DIR/$tdir/migrate_dir/a
15235         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15236         ls $DIR/$tdir/other_dir
15237
15238         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15239                 error "migrate dir fails"
15240
15241         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15242         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15243
15244         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15245         [ $mdt_index == 0 ] || error "a is not on MDT0"
15246
15247         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15248                 error "migrate dir fails"
15249
15250         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15251         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15252
15253         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15254         [ $mdt_index == 1 ] || error "a is not on MDT1"
15255
15256         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15257         [ $mdt_index == 1 ] || error "b is not on MDT1"
15258
15259         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15260         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15261
15262         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15263
15264         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15265 }
15266 run_test 230e "migrate mulitple local link files"
15267
15268 test_230f() {
15269         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15270         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15271         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15272                 skip "Need MDS version at least 2.11.52"
15273
15274         local a_fid
15275         local ln_fid
15276
15277         mkdir -p $DIR/$tdir
15278         mkdir $DIR/$tdir/migrate_dir
15279         $LFS mkdir -i1 $DIR/$tdir/other_dir
15280         touch $DIR/$tdir/migrate_dir/a
15281         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15282         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15283         ls $DIR/$tdir/other_dir
15284
15285         # a should be migrated to MDT1, since no other links on MDT0
15286         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15287                 error "#1 migrate dir fails"
15288         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15289         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15290         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15291         [ $mdt_index == 1 ] || error "a is not on MDT1"
15292
15293         # a should stay on MDT1, because it is a mulitple link file
15294         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15295                 error "#2 migrate dir fails"
15296         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15297         [ $mdt_index == 1 ] || error "a is not on MDT1"
15298
15299         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15300                 error "#3 migrate dir fails"
15301
15302         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15303         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15304         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15305
15306         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15307         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15308
15309         # a should be migrated to MDT0, since no other links on MDT1
15310         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15311                 error "#4 migrate dir fails"
15312         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15313         [ $mdt_index == 0 ] || error "a is not on MDT0"
15314
15315         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15316 }
15317 run_test 230f "migrate mulitple remote link files"
15318
15319 test_230g() {
15320         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15321         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15323                 skip "Need MDS version at least 2.11.52"
15324
15325         mkdir -p $DIR/$tdir/migrate_dir
15326
15327         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15328                 error "migrating dir to non-exist MDT succeeds"
15329         true
15330 }
15331 run_test 230g "migrate dir to non-exist MDT"
15332
15333 test_230h() {
15334         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15335         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15336         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15337                 skip "Need MDS version at least 2.11.52"
15338
15339         local mdt_index
15340
15341         mkdir -p $DIR/$tdir/migrate_dir
15342
15343         $LFS migrate -m1 $DIR &&
15344                 error "migrating mountpoint1 should fail"
15345
15346         $LFS migrate -m1 $DIR/$tdir/.. &&
15347                 error "migrating mountpoint2 should fail"
15348
15349         # same as mv
15350         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15351                 error "migrating $tdir/migrate_dir/.. should fail"
15352
15353         true
15354 }
15355 run_test 230h "migrate .. and root"
15356
15357 test_230i() {
15358         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15359         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15360         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15361                 skip "Need MDS version at least 2.11.52"
15362
15363         mkdir -p $DIR/$tdir/migrate_dir
15364
15365         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15366                 error "migration fails with a tailing slash"
15367
15368         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15369                 error "migration fails with two tailing slashes"
15370 }
15371 run_test 230i "lfs migrate -m tolerates trailing slashes"
15372
15373 test_231a()
15374 {
15375         # For simplicity this test assumes that max_pages_per_rpc
15376         # is the same across all OSCs
15377         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15378         local bulk_size=$((max_pages * 4096))
15379         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15380                                        head -n 1)
15381
15382         mkdir -p $DIR/$tdir
15383         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15384                 error "failed to set stripe with -S ${brw_size}M option"
15385
15386         # clear the OSC stats
15387         $LCTL set_param osc.*.stats=0 &>/dev/null
15388         stop_writeback
15389
15390         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15391         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15392                 oflag=direct &>/dev/null || error "dd failed"
15393
15394         sync; sleep 1; sync # just to be safe
15395         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15396         if [ x$nrpcs != "x1" ]; then
15397                 $LCTL get_param osc.*.stats
15398                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15399         fi
15400
15401         start_writeback
15402         # Drop the OSC cache, otherwise we will read from it
15403         cancel_lru_locks osc
15404
15405         # clear the OSC stats
15406         $LCTL set_param osc.*.stats=0 &>/dev/null
15407
15408         # Client reads $bulk_size.
15409         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15410                 iflag=direct &>/dev/null || error "dd failed"
15411
15412         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15413         if [ x$nrpcs != "x1" ]; then
15414                 $LCTL get_param osc.*.stats
15415                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15416         fi
15417 }
15418 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15419
15420 test_231b() {
15421         mkdir -p $DIR/$tdir
15422         local i
15423         for i in {0..1023}; do
15424                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15425                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15426                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15427         done
15428         sync
15429 }
15430 run_test 231b "must not assert on fully utilized OST request buffer"
15431
15432 test_232a() {
15433         mkdir -p $DIR/$tdir
15434         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15435
15436         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15437         do_facet ost1 $LCTL set_param fail_loc=0x31c
15438
15439         # ignore dd failure
15440         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15441
15442         do_facet ost1 $LCTL set_param fail_loc=0
15443         umount_client $MOUNT || error "umount failed"
15444         mount_client $MOUNT || error "mount failed"
15445         stop ost1 || error "cannot stop ost1"
15446         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15447 }
15448 run_test 232a "failed lock should not block umount"
15449
15450 test_232b() {
15451         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15452                 skip "Need MDS version at least 2.10.58"
15453
15454         mkdir -p $DIR/$tdir
15455         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15456         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15457         sync
15458         cancel_lru_locks osc
15459
15460         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15461         do_facet ost1 $LCTL set_param fail_loc=0x31c
15462
15463         # ignore failure
15464         $LFS data_version $DIR/$tdir/$tfile || true
15465
15466         do_facet ost1 $LCTL set_param fail_loc=0
15467         umount_client $MOUNT || error "umount failed"
15468         mount_client $MOUNT || error "mount failed"
15469         stop ost1 || error "cannot stop ost1"
15470         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15471 }
15472 run_test 232b "failed data version lock should not block umount"
15473
15474 test_233a() {
15475         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15476                 skip "Need MDS version at least 2.3.64"
15477         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15478
15479         local fid=$($LFS path2fid $MOUNT)
15480
15481         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15482                 error "cannot access $MOUNT using its FID '$fid'"
15483 }
15484 run_test 233a "checking that OBF of the FS root succeeds"
15485
15486 test_233b() {
15487         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15488                 skip "Need MDS version at least 2.5.90"
15489         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15490
15491         local fid=$($LFS path2fid $MOUNT/.lustre)
15492
15493         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15494                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15495
15496         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15497         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15498                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15499 }
15500 run_test 233b "checking that OBF of the FS .lustre succeeds"
15501
15502 test_234() {
15503         local p="$TMP/sanityN-$TESTNAME.parameters"
15504         save_lustre_params client "llite.*.xattr_cache" > $p
15505         lctl set_param llite.*.xattr_cache 1 ||
15506                 skip_env "xattr cache is not supported"
15507
15508         mkdir -p $DIR/$tdir || error "mkdir failed"
15509         touch $DIR/$tdir/$tfile || error "touch failed"
15510         # OBD_FAIL_LLITE_XATTR_ENOMEM
15511         $LCTL set_param fail_loc=0x1405
15512         getfattr -n user.attr $DIR/$tdir/$tfile &&
15513                 error "getfattr should have failed with ENOMEM"
15514         $LCTL set_param fail_loc=0x0
15515         rm -rf $DIR/$tdir
15516
15517         restore_lustre_params < $p
15518         rm -f $p
15519 }
15520 run_test 234 "xattr cache should not crash on ENOMEM"
15521
15522 test_235() {
15523         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15524                 skip "Need MDS version at least 2.4.52"
15525
15526         flock_deadlock $DIR/$tfile
15527         local RC=$?
15528         case $RC in
15529                 0)
15530                 ;;
15531                 124) error "process hangs on a deadlock"
15532                 ;;
15533                 *) error "error executing flock_deadlock $DIR/$tfile"
15534                 ;;
15535         esac
15536 }
15537 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15538
15539 #LU-2935
15540 test_236() {
15541         check_swap_layouts_support
15542
15543         local ref1=/etc/passwd
15544         local ref2=/etc/group
15545         local file1=$DIR/$tdir/f1
15546         local file2=$DIR/$tdir/f2
15547
15548         test_mkdir -c1 $DIR/$tdir
15549         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15550         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15551         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15552         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15553         local fd=$(free_fd)
15554         local cmd="exec $fd<>$file2"
15555         eval $cmd
15556         rm $file2
15557         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15558                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15559         cmd="exec $fd>&-"
15560         eval $cmd
15561         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15562
15563         #cleanup
15564         rm -rf $DIR/$tdir
15565 }
15566 run_test 236 "Layout swap on open unlinked file"
15567
15568 # test to verify file handle related system calls
15569 # (name_to_handle_at/open_by_handle_at)
15570 # The new system calls are supported in glibc >= 2.14.
15571
15572 test_237() {
15573         echo "Test file_handle syscalls" > $DIR/$tfile ||
15574                 error "write failed"
15575         check_fhandle_syscalls $DIR/$tfile ||
15576                 error "check_fhandle_syscalls failed"
15577 }
15578 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
15579
15580 # LU-4659 linkea consistency
15581 test_238() {
15582         local server_version=$(lustre_version_code $SINGLEMDS)
15583
15584         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15585                 [[ $server_version -gt $(version_code 2.5.1) &&
15586                    $server_version -lt $(version_code 2.5.50) ]] ||
15587                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15588
15589         touch $DIR/$tfile
15590         ln $DIR/$tfile $DIR/$tfile.lnk
15591         touch $DIR/$tfile.new
15592         mv $DIR/$tfile.new $DIR/$tfile
15593         local fid1=$($LFS path2fid $DIR/$tfile)
15594         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15595         local path1=$($LFS fid2path $FSNAME "$fid1")
15596         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15597         local path2=$($LFS fid2path $FSNAME "$fid2")
15598         [ $tfile.lnk == $path2 ] ||
15599                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15600         rm -f $DIR/$tfile*
15601 }
15602 run_test 238 "Verify linkea consistency"
15603
15604 test_239A() { # was test_239
15605         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15606                 skip "Need MDS version at least 2.5.60"
15607
15608         local list=$(comma_list $(mdts_nodes))
15609
15610         mkdir -p $DIR/$tdir
15611         createmany -o $DIR/$tdir/f- 5000
15612         unlinkmany $DIR/$tdir/f- 5000
15613         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15614                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15615         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15616                         osp.*MDT*.sync_in_flight" | calc_sum)
15617         [ "$changes" -eq 0 ] || error "$changes not synced"
15618 }
15619 run_test 239A "osp_sync test"
15620
15621 test_239a() { #LU-5297
15622         remote_mds_nodsh && skip "remote MDS with nodsh"
15623
15624         touch $DIR/$tfile
15625         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15626         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15627         chgrp $RUNAS_GID $DIR/$tfile
15628         wait_delete_completed
15629 }
15630 run_test 239a "process invalid osp sync record correctly"
15631
15632 test_239b() { #LU-5297
15633         remote_mds_nodsh && skip "remote MDS with nodsh"
15634
15635         touch $DIR/$tfile1
15636         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15637         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15638         chgrp $RUNAS_GID $DIR/$tfile1
15639         wait_delete_completed
15640         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15641         touch $DIR/$tfile2
15642         chgrp $RUNAS_GID $DIR/$tfile2
15643         wait_delete_completed
15644 }
15645 run_test 239b "process osp sync record with ENOMEM error correctly"
15646
15647 test_240() {
15648         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15649         remote_mds_nodsh && skip "remote MDS with nodsh"
15650
15651         mkdir -p $DIR/$tdir
15652
15653         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15654                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15655         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15656                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15657
15658         umount_client $MOUNT || error "umount failed"
15659         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15660         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15661         mount_client $MOUNT || error "failed to mount client"
15662
15663         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15664         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15665 }
15666 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15667
15668 test_241_bio() {
15669         for LOOP in $(seq $1); do
15670                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
15671                 cancel_lru_locks $OSC || true
15672         done
15673 }
15674
15675 test_241_dio() {
15676         for LOOP in $(seq $1); do
15677                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
15678                                                 iflag=direct 2>/dev/null
15679         done
15680 }
15681
15682 test_241a() { # was test_241
15683         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15684         ls -la $DIR/$tfile
15685         cancel_lru_locks $OSC
15686         test_241_bio 1000 &
15687         PID=$!
15688         test_241_dio 1000
15689         wait $PID
15690 }
15691 run_test 241a "bio vs dio"
15692
15693 test_241b() {
15694         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
15695         ls -la $DIR/$tfile
15696         test_241_dio 1000 &
15697         PID=$!
15698         test_241_dio 1000
15699         wait $PID
15700 }
15701 run_test 241b "dio vs dio"
15702
15703 test_242() {
15704         remote_mds_nodsh && skip "remote MDS with nodsh"
15705
15706         mkdir -p $DIR/$tdir
15707         touch $DIR/$tdir/$tfile
15708
15709         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15710         do_facet mds1 lctl set_param fail_loc=0x105
15711         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15712
15713         do_facet mds1 lctl set_param fail_loc=0
15714         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15715 }
15716 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15717
15718 test_243()
15719 {
15720         test_mkdir $DIR/$tdir
15721         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15722 }
15723 run_test 243 "various group lock tests"
15724
15725 test_244()
15726 {
15727         test_mkdir $DIR/$tdir
15728         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15729         sendfile_grouplock $DIR/$tdir/$tfile || \
15730                 error "sendfile+grouplock failed"
15731         rm -rf $DIR/$tdir
15732 }
15733 run_test 244 "sendfile with group lock tests"
15734
15735 test_245() {
15736         local flagname="multi_mod_rpcs"
15737         local connect_data_name="max_mod_rpcs"
15738         local out
15739
15740         # check if multiple modify RPCs flag is set
15741         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15742                 grep "connect_flags:")
15743         echo "$out"
15744
15745         echo "$out" | grep -qw $flagname
15746         if [ $? -ne 0 ]; then
15747                 echo "connect flag $flagname is not set"
15748                 return
15749         fi
15750
15751         # check if multiple modify RPCs data is set
15752         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15753         echo "$out"
15754
15755         echo "$out" | grep -qw $connect_data_name ||
15756                 error "import should have connect data $connect_data_name"
15757 }
15758 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15759
15760 test_246() { # LU-7371
15761         remote_ost_nodsh && skip "remote OST with nodsh"
15762         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15763                 skip "Need OST version >= 2.7.62"
15764
15765         do_facet ost1 $LCTL set_param fail_val=4095
15766 #define OBD_FAIL_OST_READ_SIZE          0x234
15767         do_facet ost1 $LCTL set_param fail_loc=0x234
15768         $LFS setstripe $DIR/$tfile -i 0 -c 1
15769         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15770         cancel_lru_locks $FSNAME-OST0000
15771         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15772 }
15773 run_test 246 "Read file of size 4095 should return right length"
15774
15775 cleanup_247() {
15776         local submount=$1
15777
15778         trap 0
15779         umount_client $submount
15780         rmdir $submount
15781 }
15782
15783 test_247a() {
15784         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15785                 grep -q subtree ||
15786                 skip_env "Fileset feature is not supported"
15787
15788         local submount=${MOUNT}_$tdir
15789
15790         mkdir $MOUNT/$tdir
15791         mkdir -p $submount || error "mkdir $submount failed"
15792         FILESET="$FILESET/$tdir" mount_client $submount ||
15793                 error "mount $submount failed"
15794         trap "cleanup_247 $submount" EXIT
15795         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15796         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15797                 error "read $MOUNT/$tdir/$tfile failed"
15798         cleanup_247 $submount
15799 }
15800 run_test 247a "mount subdir as fileset"
15801
15802 test_247b() {
15803         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15804                 skip_env "Fileset feature is not supported"
15805
15806         local submount=${MOUNT}_$tdir
15807
15808         rm -rf $MOUNT/$tdir
15809         mkdir -p $submount || error "mkdir $submount failed"
15810         SKIP_FILESET=1
15811         FILESET="$FILESET/$tdir" mount_client $submount &&
15812                 error "mount $submount should fail"
15813         rmdir $submount
15814 }
15815 run_test 247b "mount subdir that dose not exist"
15816
15817 test_247c() {
15818         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15819                 skip_env "Fileset feature is not supported"
15820
15821         local submount=${MOUNT}_$tdir
15822
15823         mkdir -p $MOUNT/$tdir/dir1
15824         mkdir -p $submount || error "mkdir $submount failed"
15825         trap "cleanup_247 $submount" EXIT
15826         FILESET="$FILESET/$tdir" mount_client $submount ||
15827                 error "mount $submount failed"
15828         local fid=$($LFS path2fid $MOUNT/)
15829         $LFS fid2path $submount $fid && error "fid2path should fail"
15830         cleanup_247 $submount
15831 }
15832 run_test 247c "running fid2path outside root"
15833
15834 test_247d() {
15835         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15836                 skip "Fileset feature is not supported"
15837
15838         local submount=${MOUNT}_$tdir
15839
15840         mkdir -p $MOUNT/$tdir/dir1
15841         mkdir -p $submount || error "mkdir $submount failed"
15842         FILESET="$FILESET/$tdir" mount_client $submount ||
15843                 error "mount $submount failed"
15844         trap "cleanup_247 $submount" EXIT
15845         local fid=$($LFS path2fid $submount/dir1)
15846         $LFS fid2path $submount $fid || error "fid2path should succeed"
15847         cleanup_247 $submount
15848 }
15849 run_test 247d "running fid2path inside root"
15850
15851 # LU-8037
15852 test_247e() {
15853         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15854                 grep -q subtree ||
15855                 skip "Fileset feature is not supported"
15856
15857         local submount=${MOUNT}_$tdir
15858
15859         mkdir $MOUNT/$tdir
15860         mkdir -p $submount || error "mkdir $submount failed"
15861         FILESET="$FILESET/.." mount_client $submount &&
15862                 error "mount $submount should fail"
15863         rmdir $submount
15864 }
15865 run_test 247e "mount .. as fileset"
15866
15867 test_248() {
15868         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15869         [ -z "$fast_read_sav" ] && skip "no fast read support"
15870
15871         # create a large file for fast read verification
15872         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15873
15874         # make sure the file is created correctly
15875         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15876                 { rm -f $DIR/$tfile; skip "file creation error"; }
15877
15878         echo "Test 1: verify that fast read is 4 times faster on cache read"
15879
15880         # small read with fast read enabled
15881         $LCTL set_param -n llite.*.fast_read=1
15882         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15883                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15884                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15885         # small read with fast read disabled
15886         $LCTL set_param -n llite.*.fast_read=0
15887         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15888                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15889                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15890
15891         # verify that fast read is 4 times faster for cache read
15892         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15893                 error_not_in_vm "fast read was not 4 times faster: " \
15894                            "$t_fast vs $t_slow"
15895
15896         echo "Test 2: verify the performance between big and small read"
15897         $LCTL set_param -n llite.*.fast_read=1
15898
15899         # 1k non-cache read
15900         cancel_lru_locks osc
15901         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15902                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15903                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15904
15905         # 1M non-cache read
15906         cancel_lru_locks osc
15907         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15908                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15909                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15910
15911         # verify that big IO is not 4 times faster than small IO
15912         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
15913                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
15914
15915         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
15916         rm -f $DIR/$tfile
15917 }
15918 run_test 248 "fast read verification"
15919
15920 test_249() { # LU-7890
15921         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
15922                 skip "Need at least version 2.8.54"
15923
15924         rm -f $DIR/$tfile
15925         $SETSTRIPE -c 1 $DIR/$tfile
15926         # Offset 2T == 4k * 512M
15927         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
15928                 error "dd to 2T offset failed"
15929 }
15930 run_test 249 "Write above 2T file size"
15931
15932 test_250() {
15933         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
15934          && skip "no 16TB file size limit on ZFS"
15935
15936         $SETSTRIPE -c 1 $DIR/$tfile
15937         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
15938         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
15939         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
15940         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
15941                 conv=notrunc,fsync && error "append succeeded"
15942         return 0
15943 }
15944 run_test 250 "Write above 16T limit"
15945
15946 test_251() {
15947         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
15948
15949         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
15950         #Skip once - writing the first stripe will succeed
15951         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15952         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
15953                 error "short write happened"
15954
15955         $LCTL set_param fail_loc=0xa0001407 fail_val=1
15956         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
15957                 error "short read happened"
15958
15959         rm -f $DIR/$tfile
15960 }
15961 run_test 251 "Handling short read and write correctly"
15962
15963 test_252() {
15964         remote_mds_nodsh && skip "remote MDS with nodsh"
15965         remote_ost_nodsh && skip "remote OST with nodsh"
15966         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
15967              "$(facet_fstype mds1)" != "ldiskfs" ]; then
15968                 skip_env "ldiskfs only test"
15969         fi
15970
15971         local tgt
15972         local dev
15973         local out
15974         local uuid
15975         local num
15976         local gen
15977
15978         # check lr_reader on OST0000
15979         tgt=ost1
15980         dev=$(facet_device $tgt)
15981         out=$(do_facet $tgt $LR_READER $dev)
15982         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15983         echo "$out"
15984         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
15985         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
15986                 error "Invalid uuid returned by $LR_READER on target $tgt"
15987         echo -e "uuid returned by $LR_READER is '$uuid'\n"
15988
15989         # check lr_reader -c on MDT0000
15990         tgt=mds1
15991         dev=$(facet_device $tgt)
15992         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
15993                 skip "$LR_READER does not support additional options"
15994         fi
15995         out=$(do_facet $tgt $LR_READER -c $dev)
15996         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
15997         echo "$out"
15998         num=$(echo "$out" | grep -c "mdtlov")
15999         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16000                 error "Invalid number of mdtlov clients returned by $LR_READER"
16001         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16002
16003         # check lr_reader -cr on MDT0000
16004         out=$(do_facet $tgt $LR_READER -cr $dev)
16005         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16006         echo "$out"
16007         echo "$out" | grep -q "^reply_data:$" ||
16008                 error "$LR_READER should have returned 'reply_data' section"
16009         num=$(echo "$out" | grep -c "client_generation")
16010         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16011 }
16012 run_test 252 "check lr_reader tool"
16013
16014 test_253_fill_ost() {
16015         local size_mb #how many MB should we write to pass watermark
16016         local lwm=$3  #low watermark
16017         local free_10mb #10% of free space
16018
16019         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16020         size_mb=$((free_kb / 1024 - lwm))
16021         free_10mb=$((free_kb / 10240))
16022         #If 10% of free space cross low watermark use it
16023         if (( free_10mb > size_mb )); then
16024                 size_mb=$free_10mb
16025         else
16026                 #At least we need to store 1.1 of difference between
16027                 #free space and low watermark
16028                 size_mb=$((size_mb + size_mb / 10))
16029         fi
16030         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16031                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16032                          oflag=append conv=notrunc
16033         fi
16034
16035         sleep_maxage
16036
16037         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16038         echo "OST still has $((free_kb / 1024)) mbytes free"
16039 }
16040
16041 test_253() {
16042         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16043         remote_mds_nodsh && skip "remote MDS with nodsh"
16044         remote_mgs_nodsh && skip "remote MGS with nodsh"
16045
16046         local ostidx=0
16047         local rc=0
16048
16049         local ost_name=$($LFS osts |
16050                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16051         # on the mdt's osc
16052         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16053         do_facet $SINGLEMDS $LCTL get_param -n \
16054                 osp.$mdtosc_proc1.reserved_mb_high ||
16055                 skip  "remote MDS does not support reserved_mb_high"
16056
16057         rm -rf $DIR/$tdir
16058         wait_mds_ost_sync
16059         wait_delete_completed
16060         mkdir $DIR/$tdir
16061
16062         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16063                         osp.$mdtosc_proc1.reserved_mb_high)
16064         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16065                         osp.$mdtosc_proc1.reserved_mb_low)
16066         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16067
16068         if ! combined_mgs_mds ; then
16069                 mount_mgs_client
16070         fi
16071         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16072         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16073                 error "Adding $ost_name to pool failed"
16074
16075         # Wait for client to see a OST at pool
16076         wait_update $HOSTNAME "$LCTL get_param -n
16077                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16078                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16079                 error "Client can not see the pool"
16080         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16081                 error "Setstripe failed"
16082
16083         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16084         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16085         echo "OST still has $((blocks/1024)) mbytes free"
16086
16087         local new_lwm=$((blocks/1024-10))
16088         do_facet $SINGLEMDS $LCTL set_param \
16089                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16090         do_facet $SINGLEMDS $LCTL set_param \
16091                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16092
16093         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16094
16095         #First enospc could execute orphan deletion so repeat.
16096         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16097
16098         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16099                         osp.$mdtosc_proc1.prealloc_status)
16100         echo "prealloc_status $oa_status"
16101
16102         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16103                 error "File creation should fail"
16104         #object allocation was stopped, but we still able to append files
16105         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16106                 error "Append failed"
16107         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16108
16109         wait_delete_completed
16110
16111         sleep_maxage
16112
16113         for i in $(seq 10 12); do
16114                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16115                         error "File creation failed after rm";
16116         done
16117
16118         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16119                         osp.$mdtosc_proc1.prealloc_status)
16120         echo "prealloc_status $oa_status"
16121
16122         if (( oa_status != 0 )); then
16123                 error "Object allocation still disable after rm"
16124         fi
16125         do_facet $SINGLEMDS $LCTL set_param \
16126                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16127         do_facet $SINGLEMDS $LCTL set_param \
16128                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16129
16130
16131         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16132                 error "Remove $ost_name from pool failed"
16133         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16134                 error "Pool destroy fialed"
16135
16136         if ! combined_mgs_mds ; then
16137                 umount_mgs_client
16138         fi
16139 }
16140 run_test 253 "Check object allocation limit"
16141
16142 test_254() {
16143         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16144         remote_mds_nodsh && skip "remote MDS with nodsh"
16145         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16146                 skip "MDS does not support changelog_size"
16147
16148         local cl_user
16149         local MDT0=$(facet_svc $SINGLEMDS)
16150
16151         changelog_register || error "changelog_register failed"
16152
16153         changelog_clear 0 || error "changelog_clear failed"
16154
16155         local size1=$(do_facet $SINGLEMDS \
16156                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16157         echo "Changelog size $size1"
16158
16159         rm -rf $DIR/$tdir
16160         $LFS mkdir -i 0 $DIR/$tdir
16161         # change something
16162         mkdir -p $DIR/$tdir/pics/2008/zachy
16163         touch $DIR/$tdir/pics/2008/zachy/timestamp
16164         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16165         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16166         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16167         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16168         rm $DIR/$tdir/pics/desktop.jpg
16169
16170         local size2=$(do_facet $SINGLEMDS \
16171                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16172         echo "Changelog size after work $size2"
16173
16174         (( $size2 > $size1 )) ||
16175                 error "new Changelog size=$size2 less than old size=$size1"
16176 }
16177 run_test 254 "Check changelog size"
16178
16179 ladvise_no_type()
16180 {
16181         local type=$1
16182         local file=$2
16183
16184         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16185                 awk -F: '{print $2}' | grep $type > /dev/null
16186         if [ $? -ne 0 ]; then
16187                 return 0
16188         fi
16189         return 1
16190 }
16191
16192 ladvise_no_ioctl()
16193 {
16194         local file=$1
16195
16196         lfs ladvise -a willread $file > /dev/null 2>&1
16197         if [ $? -eq 0 ]; then
16198                 return 1
16199         fi
16200
16201         lfs ladvise -a willread $file 2>&1 |
16202                 grep "Inappropriate ioctl for device" > /dev/null
16203         if [ $? -eq 0 ]; then
16204                 return 0
16205         fi
16206         return 1
16207 }
16208
16209 percent() {
16210         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16211 }
16212
16213 # run a random read IO workload
16214 # usage: random_read_iops <filename> <filesize> <iosize>
16215 random_read_iops() {
16216         local file=$1
16217         local fsize=$2
16218         local iosize=${3:-4096}
16219
16220         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16221                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16222 }
16223
16224 drop_file_oss_cache() {
16225         local file="$1"
16226         local nodes="$2"
16227
16228         $LFS ladvise -a dontneed $file 2>/dev/null ||
16229                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16230 }
16231
16232 ladvise_willread_performance()
16233 {
16234         local repeat=10
16235         local average_origin=0
16236         local average_cache=0
16237         local average_ladvise=0
16238
16239         for ((i = 1; i <= $repeat; i++)); do
16240                 echo "Iter $i/$repeat: reading without willread hint"
16241                 cancel_lru_locks osc
16242                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16243                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16244                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16245                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16246
16247                 cancel_lru_locks osc
16248                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16249                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16250                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16251
16252                 cancel_lru_locks osc
16253                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16254                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16255                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16256                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16257                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16258         done
16259         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16260         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16261         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16262
16263         speedup_cache=$(percent $average_cache $average_origin)
16264         speedup_ladvise=$(percent $average_ladvise $average_origin)
16265
16266         echo "Average uncached read: $average_origin"
16267         echo "Average speedup with OSS cached read: " \
16268                 "$average_cache = +$speedup_cache%"
16269         echo "Average speedup with ladvise willread: " \
16270                 "$average_ladvise = +$speedup_ladvise%"
16271
16272         local lowest_speedup=20
16273         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16274                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16275                         "got $average_cache%. Skipping ladvise willread check."
16276                 return 0
16277         fi
16278
16279         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16280         # it is still good to run until then to exercise 'ladvise willread'
16281         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16282                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16283                 echo "osd-zfs does not support dontneed or drop_caches" &&
16284                 return 0
16285
16286         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16287         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16288                 error_not_in_vm "Speedup with willread is less than " \
16289                         "$lowest_speedup%, got $average_ladvise%"
16290 }
16291
16292 test_255a() {
16293         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16294                 skip "lustre < 2.8.54 does not support ladvise "
16295         remote_ost_nodsh && skip "remote OST with nodsh"
16296
16297         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16298
16299         ladvise_no_type willread $DIR/$tfile &&
16300                 skip "willread ladvise is not supported"
16301
16302         ladvise_no_ioctl $DIR/$tfile &&
16303                 skip "ladvise ioctl is not supported"
16304
16305         local size_mb=100
16306         local size=$((size_mb * 1048576))
16307         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16308                 error "dd to $DIR/$tfile failed"
16309
16310         lfs ladvise -a willread $DIR/$tfile ||
16311                 error "Ladvise failed with no range argument"
16312
16313         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16314                 error "Ladvise failed with no -l or -e argument"
16315
16316         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16317                 error "Ladvise failed with only -e argument"
16318
16319         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16320                 error "Ladvise failed with only -l argument"
16321
16322         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16323                 error "End offset should not be smaller than start offset"
16324
16325         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16326                 error "End offset should not be equal to start offset"
16327
16328         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16329                 error "Ladvise failed with overflowing -s argument"
16330
16331         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16332                 error "Ladvise failed with overflowing -e argument"
16333
16334         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16335                 error "Ladvise failed with overflowing -l argument"
16336
16337         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16338                 error "Ladvise succeeded with conflicting -l and -e arguments"
16339
16340         echo "Synchronous ladvise should wait"
16341         local delay=4
16342 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16343         do_nodes $(comma_list $(osts_nodes)) \
16344                 $LCTL set_param fail_val=$delay fail_loc=0x237
16345
16346         local start_ts=$SECONDS
16347         lfs ladvise -a willread $DIR/$tfile ||
16348                 error "Ladvise failed with no range argument"
16349         local end_ts=$SECONDS
16350         local inteval_ts=$((end_ts - start_ts))
16351
16352         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16353                 error "Synchronous advice didn't wait reply"
16354         fi
16355
16356         echo "Asynchronous ladvise shouldn't wait"
16357         local start_ts=$SECONDS
16358         lfs ladvise -a willread -b $DIR/$tfile ||
16359                 error "Ladvise failed with no range argument"
16360         local end_ts=$SECONDS
16361         local inteval_ts=$((end_ts - start_ts))
16362
16363         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16364                 error "Asynchronous advice blocked"
16365         fi
16366
16367         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16368         ladvise_willread_performance
16369 }
16370 run_test 255a "check 'lfs ladvise -a willread'"
16371
16372 facet_meminfo() {
16373         local facet=$1
16374         local info=$2
16375
16376         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16377 }
16378
16379 test_255b() {
16380         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16381                 skip "lustre < 2.8.54 does not support ladvise "
16382         remote_ost_nodsh && skip "remote OST with nodsh"
16383
16384         lfs setstripe -c 1 -i 0 $DIR/$tfile
16385
16386         ladvise_no_type dontneed $DIR/$tfile &&
16387                 skip "dontneed ladvise is not supported"
16388
16389         ladvise_no_ioctl $DIR/$tfile &&
16390                 skip "ladvise ioctl is not supported"
16391
16392         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16393                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16394                 skip "zfs-osd does not support 'ladvise dontneed'"
16395
16396         local size_mb=100
16397         local size=$((size_mb * 1048576))
16398         # In order to prevent disturbance of other processes, only check 3/4
16399         # of the memory usage
16400         local kibibytes=$((size_mb * 1024 * 3 / 4))
16401
16402         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16403                 error "dd to $DIR/$tfile failed"
16404
16405         #force write to complete before dropping OST cache & checking memory
16406         sync
16407
16408         local total=$(facet_meminfo ost1 MemTotal)
16409         echo "Total memory: $total KiB"
16410
16411         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16412         local before_read=$(facet_meminfo ost1 Cached)
16413         echo "Cache used before read: $before_read KiB"
16414
16415         lfs ladvise -a willread $DIR/$tfile ||
16416                 error "Ladvise willread failed"
16417         local after_read=$(facet_meminfo ost1 Cached)
16418         echo "Cache used after read: $after_read KiB"
16419
16420         lfs ladvise -a dontneed $DIR/$tfile ||
16421                 error "Ladvise dontneed again failed"
16422         local no_read=$(facet_meminfo ost1 Cached)
16423         echo "Cache used after dontneed ladvise: $no_read KiB"
16424
16425         if [ $total -lt $((before_read + kibibytes)) ]; then
16426                 echo "Memory is too small, abort checking"
16427                 return 0
16428         fi
16429
16430         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16431                 error "Ladvise willread should use more memory" \
16432                         "than $kibibytes KiB"
16433         fi
16434
16435         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16436                 error "Ladvise dontneed should release more memory" \
16437                         "than $kibibytes KiB"
16438         fi
16439 }
16440 run_test 255b "check 'lfs ladvise -a dontneed'"
16441
16442 test_255c() {
16443         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16444                 skip "lustre < 2.10.53 does not support lockahead"
16445
16446         local count
16447         local new_count
16448         local difference
16449         local i
16450         local rc
16451
16452         test_mkdir -p $DIR/$tdir
16453         $SETSTRIPE -i 0 $DIR/$tdir
16454
16455         #test 10 returns only success/failure
16456         i=10
16457         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16458         rc=$?
16459         if [ $rc -eq 255 ]; then
16460                 error "Ladvise test${i} failed, ${rc}"
16461         fi
16462
16463         #test 11 counts lock enqueue requests, all others count new locks
16464         i=11
16465         count=$(do_facet ost1 \
16466                 $LCTL get_param -n ost.OSS.ost.stats)
16467         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16468
16469         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16470         rc=$?
16471         if [ $rc -eq 255 ]; then
16472                 error "Ladvise test${i} failed, ${rc}"
16473         fi
16474
16475         new_count=$(do_facet ost1 \
16476                 $LCTL get_param -n ost.OSS.ost.stats)
16477         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16478                    awk '{ print $2 }')
16479
16480         difference="$((new_count - count))"
16481         if [ $difference -ne $rc ]; then
16482                 error "Ladvise test${i}, bad enqueue count, returned " \
16483                       "${rc}, actual ${difference}"
16484         fi
16485
16486         for i in $(seq 12 21); do
16487                 # If we do not do this, we run the risk of having too many
16488                 # locks and starting lock cancellation while we are checking
16489                 # lock counts.
16490                 cancel_lru_locks osc
16491
16492                 count=$($LCTL get_param -n \
16493                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16494
16495                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16496                 rc=$?
16497                 if [ $rc -eq 255 ]; then
16498                         error "Ladvise test ${i} failed, ${rc}"
16499                 fi
16500
16501                 new_count=$($LCTL get_param -n \
16502                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16503                 difference="$((new_count - count))"
16504
16505                 # Test 15 output is divided by 100 to map down to valid return
16506                 if [ $i -eq 15 ]; then
16507                         rc="$((rc * 100))"
16508                 fi
16509
16510                 if [ $difference -ne $rc ]; then
16511                         error "Ladvise test ${i}, bad lock count, returned " \
16512                               "${rc}, actual ${difference}"
16513                 fi
16514         done
16515
16516         #test 22 returns only success/failure
16517         i=22
16518         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16519         rc=$?
16520         if [ $rc -eq 255 ]; then
16521                 error "Ladvise test${i} failed, ${rc}"
16522         fi
16523 }
16524 run_test 255c "suite of ladvise lockahead tests"
16525
16526 test_256() {
16527         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16528         remote_mds_nodsh && skip "remote MDS with nodsh"
16529         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16530                 skip "ldiskfs only test"
16531         changelog_users $SINGLEMDS | grep "^cl" &&
16532                 skip "active changelog user"
16533
16534         local cl_user
16535         local cat_sl
16536         local mdt_dev
16537
16538         mdt_dev=$(mdsdevname 1)
16539         echo $mdt_dev
16540
16541         changelog_register || error "changelog_register failed"
16542
16543         rm -rf $DIR/$tdir
16544         mkdir -p $DIR/$tdir
16545
16546         changelog_clear 0 || error "changelog_clear failed"
16547
16548         # change something
16549         touch $DIR/$tdir/{1..10}
16550
16551         # stop the MDT
16552         stop $SINGLEMDS || error "Fail to stop MDT"
16553
16554         # remount the MDT
16555
16556         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16557
16558         #after mount new plainllog is used
16559         touch $DIR/$tdir/{11..19}
16560         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16561         cat_sl=$(do_facet $SINGLEMDS "sync; \
16562                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16563                  llog_reader $tmpfile | grep -c type=1064553b")
16564         do_facet $SINGLEMDS llog_reader $tmpfile
16565
16566         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16567
16568         changelog_clear 0 || error "changelog_clear failed"
16569
16570         cat_sl=$(do_facet $SINGLEMDS "sync; \
16571                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16572                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16573
16574         if (( cat_sl == 2 )); then
16575                 error "Empty plain llog was not deleted from changelog catalog"
16576         elif (( cat_sl != 1 )); then
16577                 error "Active plain llog shouldn't be deleted from catalog"
16578         fi
16579 }
16580 run_test 256 "Check llog delete for empty and not full state"
16581
16582 test_257() {
16583         remote_mds_nodsh && skip "remote MDS with nodsh"
16584         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16585                 skip "Need MDS version at least 2.8.55"
16586
16587         test_mkdir $DIR/$tdir
16588
16589         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16590                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16591         stat $DIR/$tdir
16592
16593 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16594         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16595         local facet=mds$((mdtidx + 1))
16596         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16597         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16598
16599         stop $facet || error "stop MDS failed"
16600         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16601                 error "start MDS fail"
16602 }
16603 run_test 257 "xattr locks are not lost"
16604
16605 # Verify we take the i_mutex when security requires it
16606 test_258a() {
16607 #define OBD_FAIL_IMUTEX_SEC 0x141c
16608         $LCTL set_param fail_loc=0x141c
16609         touch $DIR/$tfile
16610         chmod u+s $DIR/$tfile
16611         chmod a+rwx $DIR/$tfile
16612         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16613         RC=$?
16614         if [ $RC -ne 0 ]; then
16615                 error "error, failed to take i_mutex, rc=$?"
16616         fi
16617         rm -f $DIR/$tfile
16618 }
16619 run_test 258a
16620
16621 # Verify we do NOT take the i_mutex in the normal case
16622 test_258b() {
16623 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16624         $LCTL set_param fail_loc=0x141d
16625         touch $DIR/$tfile
16626         chmod a+rwx $DIR
16627         chmod a+rw $DIR/$tfile
16628         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16629         RC=$?
16630         if [ $RC -ne 0 ]; then
16631                 error "error, took i_mutex unnecessarily, rc=$?"
16632         fi
16633         rm -f $DIR/$tfile
16634
16635 }
16636 run_test 258b "verify i_mutex security behavior"
16637
16638 test_259() {
16639         local file=$DIR/$tfile
16640         local before
16641         local after
16642
16643         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16644                 skip "ldiskfs only test" && return
16645
16646         stack_trap "rm -f $file" EXIT
16647
16648         wait_delete_completed
16649         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16650         echo "before: $before"
16651
16652         $LFS setstripe -i 0 -c 1 $file
16653         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16654         sync_all_data
16655         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16656         echo "after write: $after"
16657
16658 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16659         do_facet ost1 $LCTL set_param fail_loc=0x2301
16660         $TRUNCATE $file 0
16661         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16662         echo "after truncate: $after"
16663
16664         stop ost1
16665         do_facet ost1 $LCTL set_param fail_loc=0
16666         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16667         sleep 2
16668         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16669         echo "after restart: $after"
16670         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16671                 error "missing truncate?"
16672
16673         return 0
16674 }
16675 run_test 259 "crash at delayed truncate"
16676
16677 test_260() {
16678 #define OBD_FAIL_MDC_CLOSE               0x806
16679         $LCTL set_param fail_loc=0x80000806
16680         touch $DIR/$tfile
16681
16682 }
16683 run_test 260 "Check mdc_close fail"
16684
16685 ### Data-on-MDT sanity tests ###
16686 test_270a() {
16687         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16688                 skip "Need MDS version at least 2.10.55"
16689
16690         # create DoM file
16691         local dom=$DIR/$tdir/dom_file
16692         local tmp=$DIR/$tdir/tmp_file
16693
16694         mkdir -p $DIR/$tdir
16695
16696         # basic checks for DoM component creation
16697         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
16698                 error "Can set MDT layout to non-first entry"
16699
16700         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
16701                 error "Can define multiple entries as MDT layout"
16702
16703         $LFS setstripe -E 1M -L mdt $dom ||
16704                 error "Can't create DoM layout"
16705
16706         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16707         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16708         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16709
16710         local mdtidx=$($LFS getstripe -m $dom)
16711         local mdtname=MDT$(printf %04x $mdtidx)
16712         local facet=mds$((mdtidx + 1))
16713         local space_check=1
16714
16715         # Skip free space checks with ZFS
16716         if [ "$(facet_fstype $facet)" == "zfs" ]; then
16717                 space_check=0
16718         fi
16719
16720         # write
16721         sync
16722         local mdtfree1=$(do_facet $facet \
16723                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16724         dd if=/dev/urandom of=$tmp bs=1024 count=100
16725         # check also direct IO along write
16726         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
16727         sync
16728         cmp $tmp $dom || error "file data is different"
16729         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
16730         if [ $space_check == 1 ]; then
16731                 local mdtfree2=$(do_facet $facet \
16732                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16733                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16734                         error "MDT free space is wrong after write"
16735         fi
16736
16737         # truncate
16738         $TRUNCATE $dom 10000
16739         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
16740         if [ $space_check == 1 ]; then
16741                 mdtfree1=$(do_facet $facet \
16742                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16743                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
16744                         error "MDT free space is wrong after truncate"
16745         fi
16746
16747         # append
16748         cat $tmp >> $dom
16749         sync
16750         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
16751         if [ $space_check == 1 ]; then
16752                 mdtfree2=$(do_facet $facet \
16753                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16754                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
16755                         error "MDT free space is wrong after append"
16756         fi
16757
16758         # delete
16759         rm $dom
16760         if [ $space_check == 1 ]; then
16761                 mdtfree1=$(do_facet $facet \
16762                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16763                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
16764                         error "MDT free space is wrong after removal"
16765         fi
16766
16767         # combined striping
16768         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16769                 error "Can't create DoM + OST striping"
16770
16771         dd if=/dev/urandom of=$tmp bs=1024 count=2000
16772         # check also direct IO along write
16773         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
16774         sync
16775         cmp $tmp $dom || error "file data is different"
16776         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
16777         rm $dom
16778         rm $tmp
16779
16780         return 0
16781 }
16782 run_test 270a "DoM: basic functionality tests"
16783
16784 test_270b() {
16785         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16786                 skip "Need MDS version at least 2.10.55"
16787
16788         local dom=$DIR/$tdir/dom_file
16789         local max_size=1048576
16790
16791         mkdir -p $DIR/$tdir
16792         $LFS setstripe -E $max_size -L mdt $dom
16793
16794         # truncate over the limit
16795         $TRUNCATE $dom $(($max_size + 1)) &&
16796                 error "successful truncate over the maximum size"
16797         # write over the limit
16798         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16799                 error "successful write over the maximum size"
16800         # append over the limit
16801         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16802         echo "12345" >> $dom && error "successful append over the maximum size"
16803         rm $dom
16804
16805         return 0
16806 }
16807 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16808
16809 test_270c() {
16810         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16811                 skip "Need MDS version at least 2.10.55"
16812
16813         mkdir -p $DIR/$tdir
16814         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16815
16816         # check files inherit DoM EA
16817         touch $DIR/$tdir/first
16818         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16819                 error "bad pattern"
16820         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16821                 error "bad stripe count"
16822         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16823                 error "bad stripe size"
16824
16825         # check directory inherits DoM EA and uses it as default
16826         mkdir $DIR/$tdir/subdir
16827         touch $DIR/$tdir/subdir/second
16828         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16829                 error "bad pattern in sub-directory"
16830         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16831                 error "bad stripe count in sub-directory"
16832         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16833                 error "bad stripe size in sub-directory"
16834         return 0
16835 }
16836 run_test 270c "DoM: DoM EA inheritance tests"
16837
16838 test_270d() {
16839         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16840                 skip "Need MDS version at least 2.10.55"
16841
16842         mkdir -p $DIR/$tdir
16843         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16844
16845         # inherit default DoM striping
16846         mkdir $DIR/$tdir/subdir
16847         touch $DIR/$tdir/subdir/f1
16848
16849         # change default directory striping
16850         $LFS setstripe -c 1 $DIR/$tdir/subdir
16851         touch $DIR/$tdir/subdir/f2
16852         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16853                 error "wrong default striping in file 2"
16854         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16855                 error "bad pattern in file 2"
16856         return 0
16857 }
16858 run_test 270d "DoM: change striping from DoM to RAID0"
16859
16860 test_270e() {
16861         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16862                 skip "Need MDS version at least 2.10.55"
16863
16864         mkdir -p $DIR/$tdir/dom
16865         mkdir -p $DIR/$tdir/norm
16866         DOMFILES=20
16867         NORMFILES=10
16868         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16869         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16870
16871         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16872         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16873
16874         # find DoM files by layout
16875         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16876         [ $NUM -eq  $DOMFILES ] ||
16877                 error "lfs find -L: found $NUM, expected $DOMFILES"
16878         echo "Test 1: lfs find 20 DOM files by layout: OK"
16879
16880         # there should be 1 dir with default DOM striping
16881         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16882         [ $NUM -eq  1 ] ||
16883                 error "lfs find -L: found $NUM, expected 1 dir"
16884         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16885
16886         # find DoM files by stripe size
16887         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16888         [ $NUM -eq  $DOMFILES ] ||
16889                 error "lfs find -S: found $NUM, expected $DOMFILES"
16890         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16891
16892         # find files by stripe offset except DoM files
16893         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
16894         [ $NUM -eq  $NORMFILES ] ||
16895                 error "lfs find -i: found $NUM, expected $NORMFILES"
16896         echo "Test 5: lfs find no DOM files by stripe index: OK"
16897         return 0
16898 }
16899 run_test 270e "DoM: lfs find with DoM files test"
16900
16901 test_270f() {
16902         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16903                 skip "Need MDS version at least 2.10.55"
16904
16905         local mdtname=${FSNAME}-MDT0000-mdtlov
16906         local dom=$DIR/$tdir/dom_file
16907         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
16908                                                 lod.$mdtname.dom_stripesize)
16909         local dom_limit=131072
16910
16911         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
16912         local dom_current=$(do_facet mds1 $LCTL get_param -n \
16913                                                 lod.$mdtname.dom_stripesize)
16914         [ ${dom_limit} -eq ${dom_current} ] ||
16915                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
16916
16917         $LFS mkdir -i 0 -c 1 $DIR/$tdir
16918         $LFS setstripe -d $DIR/$tdir
16919         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
16920                 error "Can't set directory default striping"
16921
16922         # exceed maximum stripe size
16923         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16924                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
16925         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
16926                 error "Able to create DoM component size more than LOD limit"
16927
16928         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
16929         dom_current=$(do_facet mds1 $LCTL get_param -n \
16930                                                 lod.$mdtname.dom_stripesize)
16931         [ 0 -eq ${dom_current} ] ||
16932                 error "Can't set zero DoM stripe limit"
16933         rm $dom
16934
16935         # attempt to create DoM file on server with disabled DoM should
16936         # remove DoM entry from layout and be succeed
16937         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
16938                 error "Can't create DoM file (DoM is disabled)"
16939         [ $($LFS getstripe -L $dom) == "mdt" ] &&
16940                 error "File has DoM component while DoM is disabled"
16941         rm $dom
16942
16943         # attempt to create DoM file with only DoM stripe should return error
16944         $LFS setstripe -E $dom_limit -L mdt $dom &&
16945                 error "Able to create DoM-only file while DoM is disabled"
16946
16947         # too low values to be aligned with smallest stripe size 64K
16948         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
16949         dom_current=$(do_facet mds1 $LCTL get_param -n \
16950                                                 lod.$mdtname.dom_stripesize)
16951         [ 30000 -eq ${dom_current} ] &&
16952                 error "Can set too small DoM stripe limit"
16953
16954         # 64K is a minimal stripe size in Lustre, expect limit of that size
16955         [ 65536 -eq ${dom_current} ] ||
16956                 error "Limit is not set to 64K but ${dom_current}"
16957
16958         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
16959         dom_current=$(do_facet mds1 $LCTL get_param -n \
16960                                                 lod.$mdtname.dom_stripesize)
16961         echo $dom_current
16962         [ 2147483648 -eq ${dom_current} ] &&
16963                 error "Can set too large DoM stripe limit"
16964
16965         do_facet mds1 $LCTL set_param -n \
16966                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
16967         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
16968                 error "Can't create DoM component size after limit change"
16969         do_facet mds1 $LCTL set_param -n \
16970                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
16971         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
16972                 error "Can't create DoM file after limit decrease"
16973         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
16974                 error "Can create big DoM component after limit decrease"
16975         touch ${dom}_def ||
16976                 error "Can't create file with old default layout"
16977
16978         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
16979         return 0
16980 }
16981 run_test 270f "DoM: maximum DoM stripe size checks"
16982
16983 test_271a() {
16984         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16985                 skip "Need MDS version at least 2.10.55"
16986
16987         local dom=$DIR/$tdir/dom
16988
16989         mkdir -p $DIR/$tdir
16990
16991         $LFS setstripe -E 1024K -L mdt $dom
16992
16993         lctl set_param -n mdc.*.stats=clear
16994         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
16995         cat $dom > /dev/null
16996         local reads=$(lctl get_param -n mdc.*.stats |
16997                         awk '/ost_read/ {print $2}')
16998         [ -z $reads ] || error "Unexpected $reads READ RPCs"
16999         ls $dom
17000         rm -f $dom
17001 }
17002 run_test 271a "DoM: data is cached for read after write"
17003
17004 test_271b() {
17005         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17006                 skip "Need MDS version at least 2.10.55"
17007
17008         local dom=$DIR/$tdir/dom
17009
17010         mkdir -p $DIR/$tdir
17011
17012         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17013
17014         lctl set_param -n mdc.*.stats=clear
17015         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17016         cancel_lru_locks mdc
17017         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17018         # second stat to check size is cached on client
17019         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17020         local gls=$(lctl get_param -n mdc.*.stats |
17021                         awk '/ldlm_glimpse/ {print $2}')
17022         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
17023         rm -f $dom
17024 }
17025 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17026
17027 test_271ba() {
17028         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17029                 skip "Need MDS version at least 2.10.55"
17030
17031         local dom=$DIR/$tdir/dom
17032
17033         mkdir -p $DIR/$tdir
17034
17035         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17036
17037         lctl set_param -n mdc.*.stats=clear
17038         lctl set_param -n osc.*.stats=clear
17039         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17040         cancel_lru_locks mdc
17041         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17042         # second stat to check size is cached on client
17043         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17044         local gls=$(lctl get_param -n mdc.*.stats |
17045                         awk '/ldlm_glimpse/ {print $2}')
17046         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
17047         local gls=$(lctl get_param -n osc.*.stats |
17048                         awk '/ldlm_glimpse/ {print $2}')
17049         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
17050         rm -f $dom
17051 }
17052 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17053
17054 test_271c() {
17055         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17056                 skip "Need MDS version at least 2.10.55"
17057
17058         local dom=$DIR/$tdir/dom
17059
17060         mkdir -p $DIR/$tdir
17061
17062         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17063
17064         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17065         local facet=mds$((mdtidx + 1))
17066
17067         cancel_lru_locks mdc
17068         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17069         createmany -o $dom 1000
17070         lctl set_param -n mdc.*.stats=clear
17071         smalliomany -w $dom 1000 200
17072         lctl get_param -n mdc.*.stats
17073         local enq=$(lctl get_param -n mdc.*.stats |
17074                         awk '/ldlm_ibits_enqueue/ {print $2}')
17075         # Each file has 1 open, 1 IO enqueues, total 2000
17076         # but now we have also +1 getxattr for security.capability, total 3000
17077         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17078         unlinkmany $dom 1000
17079
17080         cancel_lru_locks mdc
17081         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17082         createmany -o $dom 1000
17083         lctl set_param -n mdc.*.stats=clear
17084         smalliomany -w $dom 1000 200
17085         lctl get_param -n mdc.*.stats
17086         local enq_2=$(lctl get_param -n mdc.*.stats |
17087                         awk '/ldlm_ibits_enqueue/ {print $2}')
17088         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17089         # for OPEN and IO lock.
17090         [ $((enq - enq_2)) -ge 1000 ] ||
17091                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17092         unlinkmany $dom 1000
17093         return 0
17094 }
17095 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17096
17097 cleanup_271def_tests() {
17098         trap 0
17099         rm -f $1
17100 }
17101
17102 test_271d() {
17103         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17104                 skip "Need MDS version at least 2.10.57" && return
17105
17106         local dom=$DIR/$tdir/dom
17107         local tmp=$TMP/$tfile
17108         trap "cleanup_271def_tests $tmp" EXIT
17109
17110         mkdir -p $DIR/$tdir
17111
17112         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17113
17114         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17115         local facet=mds$((mdtidx + 1))
17116
17117         cancel_lru_locks mdc
17118         dd if=/dev/urandom of=$tmp bs=1000 count=1
17119         dd if=$tmp of=$dom bs=1000 count=1
17120         cancel_lru_locks mdc
17121
17122         cat /etc/hosts >> $tmp
17123         lctl set_param -n mdc.*.stats=clear
17124
17125         # append data to the same file it should update local page
17126         echo "Append to the same page"
17127         cat /etc/hosts >> $dom
17128         local num=$(lctl get_param -n mdc.*.stats |
17129                 awk '/ost_read/ {print $2}')
17130         local ra=$(lctl get_param -n mdc.*.stats |
17131                 awk '/req_active/ {print $2}')
17132         local rw=$(lctl get_param -n mdc.*.stats |
17133                 awk '/req_waittime/ {print $2}')
17134
17135         [ -z $num ] || error "$num READ RPC occured"
17136         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17137         echo "... DONE"
17138
17139         # compare content
17140         cmp $tmp $dom || error "file miscompare"
17141
17142         cancel_lru_locks mdc
17143         lctl set_param -n mdc.*.stats=clear
17144
17145         echo "Open and read file"
17146         cat $dom > /dev/null
17147         local num=$(lctl get_param -n mdc.*.stats |
17148                 awk '/ost_read/ {print $2}')
17149         local ra=$(lctl get_param -n mdc.*.stats |
17150                 awk '/req_active/ {print $2}')
17151         local rw=$(lctl get_param -n mdc.*.stats |
17152                 awk '/req_waittime/ {print $2}')
17153
17154         [ -z $num ] || error "$num READ RPC occured"
17155         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17156         echo "... DONE"
17157
17158         # compare content
17159         cmp $tmp $dom || error "file miscompare"
17160
17161         return 0
17162 }
17163 run_test 271d "DoM: read on open (1K file in reply buffer)"
17164
17165 test_271e() {
17166         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17167                 skip "Need MDS version at least 2.10.57" && return
17168
17169         local dom=$DIR/$tdir/dom
17170         local tmp=$TMP/${tfile}.data
17171         trap "cleanup_271def_tests $tmp" EXIT
17172
17173         mkdir -p $DIR/$tdir
17174
17175         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17176
17177         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17178         local facet=mds$((mdtidx + 1))
17179
17180         cancel_lru_locks mdc
17181         dd if=/dev/urandom of=$tmp bs=30K count=1
17182         dd if=$tmp of=$dom bs=30K count=1
17183         cancel_lru_locks mdc
17184         cat /etc/hosts >> $tmp
17185         lctl set_param -n mdc.*.stats=clear
17186
17187         echo "Append to the same page"
17188         cat /etc/hosts >> $dom
17189
17190         local num=$(lctl get_param -n mdc.*.stats | \
17191                 awk '/ost_read/ {print $2}')
17192         local ra=$(lctl get_param -n mdc.*.stats | \
17193                 awk '/req_active/ {print $2}')
17194         local rw=$(lctl get_param -n mdc.*.stats | \
17195                 awk '/req_waittime/ {print $2}')
17196
17197         [ -z $num ] || error "$num READ RPC occured"
17198         # Reply buffer can be adjusted for larger buffer by resend
17199         echo "... DONE with $((ra - rw)) resends"
17200
17201         # compare content
17202         cmp $tmp $dom || error "file miscompare"
17203
17204         cancel_lru_locks mdc
17205         lctl set_param -n mdc.*.stats=clear
17206
17207         echo "Open and read file"
17208         cat $dom > /dev/null
17209         local num=$(lctl get_param -n mdc.*.stats | \
17210                 awk '/ost_read/ {print $2}')
17211         local ra=$(lctl get_param -n mdc.*.stats | \
17212                 awk '/req_active/ {print $2}')
17213         local rw=$(lctl get_param -n mdc.*.stats | \
17214                 awk '/req_waittime/ {print $2}')
17215
17216         [ -z $num ] || error "$num READ RPC occured"
17217         # Reply buffer can be adjusted for larger buffer by resend
17218         echo "... DONE with $((ra - rw)) resends"
17219
17220         # compare content
17221         cmp $tmp $dom || error "file miscompare"
17222
17223         return 0
17224 }
17225 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17226
17227 test_271f() {
17228         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17229                 skip "Need MDS version at least 2.10.57" && return
17230
17231         local dom=$DIR/$tdir/dom
17232         local tmp=$TMP/$tfile
17233         trap "cleanup_271def_tests $tmp" EXIT
17234
17235         mkdir -p $DIR/$tdir
17236
17237         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17238
17239         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17240         local facet=mds$((mdtidx + 1))
17241
17242         cancel_lru_locks mdc
17243         dd if=/dev/urandom of=$tmp bs=200000 count=1
17244         dd if=$tmp of=$dom bs=200000 count=1
17245         cancel_lru_locks mdc
17246         cat /etc/hosts >> $tmp
17247         lctl set_param -n mdc.*.stats=clear
17248
17249         echo "Append to the same page"
17250         cat /etc/hosts >> $dom
17251         local num=$(lctl get_param -n mdc.*.stats | \
17252                 awk '/ost_read/ {print $2}')
17253         local ra=$(lctl get_param -n mdc.*.stats | \
17254                 awk '/req_active/ {print $2}')
17255         local rw=$(lctl get_param -n mdc.*.stats | \
17256                 awk '/req_waittime/ {print $2}')
17257
17258         [ -z $num ] || error "$num READ RPC occured"
17259         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17260         echo "... DONE"
17261
17262         # compare content
17263         cmp $tmp $dom || error "file miscompare"
17264
17265         cancel_lru_locks mdc
17266         lctl set_param -n mdc.*.stats=clear
17267
17268         echo "Open and read file"
17269         cat $dom > /dev/null
17270         local num=$(lctl get_param -n mdc.*.stats | \
17271                 awk '/ost_read/ {print $2}')
17272         local ra=$(lctl get_param -n mdc.*.stats | \
17273                 awk '/req_active/ {print $2}')
17274         local rw=$(lctl get_param -n mdc.*.stats | \
17275                 awk '/req_waittime/ {print $2}')
17276
17277         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17278         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17279         echo "... DONE"
17280
17281         # compare content
17282         cmp $tmp $dom || error "file miscompare"
17283
17284         return 0
17285 }
17286 run_test 271f "DoM: read on open (200K file and read tail)"
17287
17288 test_275() {
17289         remote_ost_nodsh && skip "remote OST with nodsh"
17290         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17291                 skip "Need OST version >= 2.10.57"
17292
17293         local file=$DIR/$tfile
17294         local oss
17295
17296         oss=$(comma_list $(osts_nodes))
17297
17298         dd if=/dev/urandom of=$file bs=1M count=2 ||
17299                 error "failed to create a file"
17300         cancel_lru_locks osc
17301
17302         #lock 1
17303         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17304                 error "failed to read a file"
17305
17306 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17307         $LCTL set_param fail_loc=0x8000031f
17308
17309         cancel_lru_locks osc &
17310         sleep 1
17311
17312 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17313         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17314         #IO takes another lock, but matches the PENDING one
17315         #and places it to the IO RPC
17316         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17317                 error "failed to read a file with PENDING lock"
17318 }
17319 run_test 275 "Read on a canceled duplicate lock"
17320
17321 test_276() {
17322         remote_ost_nodsh && skip "remote OST with nodsh"
17323         local pid
17324
17325         do_facet ost1 "(while true; do \
17326                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17327                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17328         pid=$!
17329
17330         for LOOP in $(seq 20); do
17331                 stop ost1
17332                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17333         done
17334         kill -9 $pid
17335         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17336                 rm $TMP/sanity_276_pid"
17337 }
17338 run_test 276 "Race between mount and obd_statfs"
17339
17340 cleanup_test_300() {
17341         trap 0
17342         umask $SAVE_UMASK
17343 }
17344 test_striped_dir() {
17345         local mdt_index=$1
17346         local stripe_count
17347         local stripe_index
17348
17349         mkdir -p $DIR/$tdir
17350
17351         SAVE_UMASK=$(umask)
17352         trap cleanup_test_300 RETURN EXIT
17353
17354         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17355                                                 $DIR/$tdir/striped_dir ||
17356                 error "set striped dir error"
17357
17358         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17359         [ "$mode" = "755" ] || error "expect 755 got $mode"
17360
17361         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17362                 error "getdirstripe failed"
17363         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17364         if [ "$stripe_count" != "2" ]; then
17365                 error "1:stripe_count is $stripe_count, expect 2"
17366         fi
17367         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17368         if [ "$stripe_count" != "2" ]; then
17369                 error "2:stripe_count is $stripe_count, expect 2"
17370         fi
17371
17372         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17373         if [ "$stripe_index" != "$mdt_index" ]; then
17374                 error "stripe_index is $stripe_index, expect $mdt_index"
17375         fi
17376
17377         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17378                 error "nlink error after create striped dir"
17379
17380         mkdir $DIR/$tdir/striped_dir/a
17381         mkdir $DIR/$tdir/striped_dir/b
17382
17383         stat $DIR/$tdir/striped_dir/a ||
17384                 error "create dir under striped dir failed"
17385         stat $DIR/$tdir/striped_dir/b ||
17386                 error "create dir under striped dir failed"
17387
17388         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17389                 error "nlink error after mkdir"
17390
17391         rmdir $DIR/$tdir/striped_dir/a
17392         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17393                 error "nlink error after rmdir"
17394
17395         rmdir $DIR/$tdir/striped_dir/b
17396         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17397                 error "nlink error after rmdir"
17398
17399         chattr +i $DIR/$tdir/striped_dir
17400         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17401                 error "immutable flags not working under striped dir!"
17402         chattr -i $DIR/$tdir/striped_dir
17403
17404         rmdir $DIR/$tdir/striped_dir ||
17405                 error "rmdir striped dir error"
17406
17407         cleanup_test_300
17408
17409         true
17410 }
17411
17412 test_300a() {
17413         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17414                 skip "skipped for lustre < 2.7.0"
17415         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17416         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17417
17418         test_striped_dir 0 || error "failed on striped dir on MDT0"
17419         test_striped_dir 1 || error "failed on striped dir on MDT0"
17420 }
17421 run_test 300a "basic striped dir sanity test"
17422
17423 test_300b() {
17424         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17425                 skip "skipped for lustre < 2.7.0"
17426         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17427         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17428
17429         local i
17430         local mtime1
17431         local mtime2
17432         local mtime3
17433
17434         test_mkdir $DIR/$tdir || error "mkdir fail"
17435         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17436                 error "set striped dir error"
17437         for i in {0..9}; do
17438                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17439                 sleep 1
17440                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17441                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17442                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17443                 sleep 1
17444                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17445                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17446                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17447         done
17448         true
17449 }
17450 run_test 300b "check ctime/mtime for striped dir"
17451
17452 test_300c() {
17453         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17454                 skip "skipped for lustre < 2.7.0"
17455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17456         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17457
17458         local file_count
17459
17460         mkdir -p $DIR/$tdir
17461         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17462                 error "set striped dir error"
17463
17464         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17465                 error "chown striped dir failed"
17466
17467         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17468                 error "create 5k files failed"
17469
17470         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17471
17472         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17473
17474         rm -rf $DIR/$tdir
17475 }
17476 run_test 300c "chown && check ls under striped directory"
17477
17478 test_300d() {
17479         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17480                 skip "skipped for lustre < 2.7.0"
17481         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17482         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17483
17484         local stripe_count
17485         local file
17486
17487         mkdir -p $DIR/$tdir
17488         $SETSTRIPE -c 2 $DIR/$tdir
17489
17490         #local striped directory
17491         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17492                 error "set striped dir error"
17493         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17494                 error "create 10 files failed"
17495
17496         #remote striped directory
17497         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17498                 error "set striped dir error"
17499         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17500                 error "create 10 files failed"
17501
17502         for file in $(find $DIR/$tdir); do
17503                 stripe_count=$($LFS getstripe -c $file)
17504                 [ $stripe_count -eq 2 ] ||
17505                         error "wrong stripe $stripe_count for $file"
17506         done
17507
17508         rm -rf $DIR/$tdir
17509 }
17510 run_test 300d "check default stripe under striped directory"
17511
17512 test_300e() {
17513         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17514                 skip "Need MDS version at least 2.7.55"
17515         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17516         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17517
17518         local stripe_count
17519         local file
17520
17521         mkdir -p $DIR/$tdir
17522
17523         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17524                 error "set striped dir error"
17525
17526         touch $DIR/$tdir/striped_dir/a
17527         touch $DIR/$tdir/striped_dir/b
17528         touch $DIR/$tdir/striped_dir/c
17529
17530         mkdir $DIR/$tdir/striped_dir/dir_a
17531         mkdir $DIR/$tdir/striped_dir/dir_b
17532         mkdir $DIR/$tdir/striped_dir/dir_c
17533
17534         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17535                 error "set striped adir under striped dir error"
17536
17537         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17538                 error "set striped bdir under striped dir error"
17539
17540         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17541                 error "set striped cdir under striped dir error"
17542
17543         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17544                 error "rename dir under striped dir fails"
17545
17546         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17547                 error "rename dir under different stripes fails"
17548
17549         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17550                 error "rename file under striped dir should succeed"
17551
17552         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17553                 error "rename dir under striped dir should succeed"
17554
17555         rm -rf $DIR/$tdir
17556 }
17557 run_test 300e "check rename under striped directory"
17558
17559 test_300f() {
17560         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17561         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17562         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17563                 skip "Need MDS version at least 2.7.55"
17564
17565         local stripe_count
17566         local file
17567
17568         rm -rf $DIR/$tdir
17569         mkdir -p $DIR/$tdir
17570
17571         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17572                 error "set striped dir error"
17573
17574         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17575                 error "set striped dir error"
17576
17577         touch $DIR/$tdir/striped_dir/a
17578         mkdir $DIR/$tdir/striped_dir/dir_a
17579         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17580                 error "create striped dir under striped dir fails"
17581
17582         touch $DIR/$tdir/striped_dir1/b
17583         mkdir $DIR/$tdir/striped_dir1/dir_b
17584         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17585                 error "create striped dir under striped dir fails"
17586
17587         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17588                 error "rename dir under different striped dir should fail"
17589
17590         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17591                 error "rename striped dir under diff striped dir should fail"
17592
17593         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17594                 error "rename file under diff striped dirs fails"
17595
17596         rm -rf $DIR/$tdir
17597 }
17598 run_test 300f "check rename cross striped directory"
17599
17600 test_300_check_default_striped_dir()
17601 {
17602         local dirname=$1
17603         local default_count=$2
17604         local default_index=$3
17605         local stripe_count
17606         local stripe_index
17607         local dir_stripe_index
17608         local dir
17609
17610         echo "checking $dirname $default_count $default_index"
17611         $LFS setdirstripe -D -c $default_count -i $default_index \
17612                                 -t all_char $DIR/$tdir/$dirname ||
17613                 error "set default stripe on striped dir error"
17614         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17615         [ $stripe_count -eq $default_count ] ||
17616                 error "expect $default_count get $stripe_count for $dirname"
17617
17618         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17619         [ $stripe_index -eq $default_index ] ||
17620                 error "expect $default_index get $stripe_index for $dirname"
17621
17622         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17623                                                 error "create dirs failed"
17624
17625         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17626         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17627         for dir in $(find $DIR/$tdir/$dirname/*); do
17628                 stripe_count=$($LFS getdirstripe -c $dir)
17629                 [ $stripe_count -eq $default_count ] ||
17630                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17631                 error "stripe count $default_count != $stripe_count for $dir"
17632
17633                 stripe_index=$($LFS getdirstripe -i $dir)
17634                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17635                         error "$stripe_index != $default_index for $dir"
17636
17637                 #check default stripe
17638                 stripe_count=$($LFS getdirstripe -D -c $dir)
17639                 [ $stripe_count -eq $default_count ] ||
17640                 error "default count $default_count != $stripe_count for $dir"
17641
17642                 stripe_index=$($LFS getdirstripe -D -i $dir)
17643                 [ $stripe_index -eq $default_index ] ||
17644                 error "default index $default_index != $stripe_index for $dir"
17645         done
17646         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17647 }
17648
17649 test_300g() {
17650         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17651         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17652                 skip "Need MDS version at least 2.7.55"
17653
17654         local dir
17655         local stripe_count
17656         local stripe_index
17657
17658         mkdir $DIR/$tdir
17659         mkdir $DIR/$tdir/normal_dir
17660
17661         #Checking when client cache stripe index
17662         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17663         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17664                 error "create striped_dir failed"
17665
17666         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17667                 error "create dir0 fails"
17668         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17669         [ $stripe_index -eq 0 ] ||
17670                 error "dir0 expect index 0 got $stripe_index"
17671
17672         mkdir $DIR/$tdir/striped_dir/dir1 ||
17673                 error "create dir1 fails"
17674         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17675         [ $stripe_index -eq 1 ] ||
17676                 error "dir1 expect index 1 got $stripe_index"
17677
17678         #check default stripe count/stripe index
17679         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17680         test_300_check_default_striped_dir normal_dir 1 0
17681         test_300_check_default_striped_dir normal_dir 2 1
17682         test_300_check_default_striped_dir normal_dir 2 -1
17683
17684         #delete default stripe information
17685         echo "delete default stripeEA"
17686         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17687                 error "set default stripe on striped dir error"
17688
17689         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17690         for dir in $(find $DIR/$tdir/normal_dir/*); do
17691                 stripe_count=$($LFS getdirstripe -c $dir)
17692                 [ $stripe_count -eq 0 ] ||
17693                         error "expect 1 get $stripe_count for $dir"
17694                 stripe_index=$($LFS getdirstripe -i $dir)
17695                 [ $stripe_index -eq 0 ] ||
17696                         error "expect 0 get $stripe_index for $dir"
17697         done
17698 }
17699 run_test 300g "check default striped directory for normal directory"
17700
17701 test_300h() {
17702         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17703         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17704                 skip "Need MDS version at least 2.7.55"
17705
17706         local dir
17707         local stripe_count
17708
17709         mkdir $DIR/$tdir
17710         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17711                 error "set striped dir error"
17712
17713         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17714         test_300_check_default_striped_dir striped_dir 1 0
17715         test_300_check_default_striped_dir striped_dir 2 1
17716         test_300_check_default_striped_dir striped_dir 2 -1
17717
17718         #delete default stripe information
17719         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17720                 error "set default stripe on striped dir error"
17721
17722         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17723         for dir in $(find $DIR/$tdir/striped_dir/*); do
17724                 stripe_count=$($LFS getdirstripe -c $dir)
17725                 [ $stripe_count -eq 0 ] ||
17726                         error "expect 1 get $stripe_count for $dir"
17727         done
17728 }
17729 run_test 300h "check default striped directory for striped directory"
17730
17731 test_300i() {
17732         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17733         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17734         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17735                 skip "Need MDS version at least 2.7.55"
17736
17737         local stripe_count
17738         local file
17739
17740         mkdir $DIR/$tdir
17741
17742         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17743                 error "set striped dir error"
17744
17745         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17746                 error "create files under striped dir failed"
17747
17748         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17749                 error "set striped hashdir error"
17750
17751         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17752                 error "create dir0 under hash dir failed"
17753         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17754                 error "create dir1 under hash dir failed"
17755
17756         # unfortunately, we need to umount to clear dir layout cache for now
17757         # once we fully implement dir layout, we can drop this
17758         umount_client $MOUNT || error "umount failed"
17759         mount_client $MOUNT || error "mount failed"
17760
17761         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17762         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17763         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
17764
17765         #set the stripe to be unknown hash type
17766         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
17767         $LCTL set_param fail_loc=0x1901
17768         for ((i = 0; i < 10; i++)); do
17769                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
17770                         error "stat f-$i failed"
17771                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
17772         done
17773
17774         touch $DIR/$tdir/striped_dir/f0 &&
17775                 error "create under striped dir with unknown hash should fail"
17776
17777         $LCTL set_param fail_loc=0
17778
17779         umount_client $MOUNT || error "umount failed"
17780         mount_client $MOUNT || error "mount failed"
17781
17782         return 0
17783 }
17784 run_test 300i "client handle unknown hash type striped directory"
17785
17786 test_300j() {
17787         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17788         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17789         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17790                 skip "Need MDS version at least 2.7.55"
17791
17792         local stripe_count
17793         local file
17794
17795         mkdir $DIR/$tdir
17796
17797         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
17798         $LCTL set_param fail_loc=0x1702
17799         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17800                 error "set striped dir error"
17801
17802         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17803                 error "create files under striped dir failed"
17804
17805         $LCTL set_param fail_loc=0
17806
17807         rm -rf $DIR/$tdir || error "unlink striped dir fails"
17808
17809         return 0
17810 }
17811 run_test 300j "test large update record"
17812
17813 test_300k() {
17814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17815         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17816         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17817                 skip "Need MDS version at least 2.7.55"
17818
17819         local stripe_count
17820         local file
17821
17822         mkdir $DIR/$tdir
17823
17824         #define OBD_FAIL_LARGE_STRIPE   0x1703
17825         $LCTL set_param fail_loc=0x1703
17826         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
17827                 error "set striped dir error"
17828         $LCTL set_param fail_loc=0
17829
17830         $LFS getdirstripe $DIR/$tdir/striped_dir ||
17831                 error "getstripeddir fails"
17832         rm -rf $DIR/$tdir/striped_dir ||
17833                 error "unlink striped dir fails"
17834
17835         return 0
17836 }
17837 run_test 300k "test large striped directory"
17838
17839 test_300l() {
17840         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17841         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17842         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17843                 skip "Need MDS version at least 2.7.55"
17844
17845         local stripe_index
17846
17847         test_mkdir -p $DIR/$tdir/striped_dir
17848         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
17849                         error "chown $RUNAS_ID failed"
17850         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
17851                 error "set default striped dir failed"
17852
17853         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
17854         $LCTL set_param fail_loc=0x80000158
17855         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
17856
17857         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
17858         [ $stripe_index -eq 1 ] ||
17859                 error "expect 1 get $stripe_index for $dir"
17860 }
17861 run_test 300l "non-root user to create dir under striped dir with stale layout"
17862
17863 test_300m() {
17864         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17865         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
17866         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17867                 skip "Need MDS version at least 2.7.55"
17868
17869         mkdir -p $DIR/$tdir/striped_dir
17870         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
17871                 error "set default stripes dir error"
17872
17873         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
17874
17875         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
17876         [ $stripe_count -eq 0 ] ||
17877                         error "expect 0 get $stripe_count for a"
17878
17879         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
17880                 error "set default stripes dir error"
17881
17882         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
17883
17884         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
17885         [ $stripe_count -eq 0 ] ||
17886                         error "expect 0 get $stripe_count for b"
17887
17888         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
17889                 error "set default stripes dir error"
17890
17891         mkdir $DIR/$tdir/striped_dir/c &&
17892                 error "default stripe_index is invalid, mkdir c should fails"
17893
17894         rm -rf $DIR/$tdir || error "rmdir fails"
17895 }
17896 run_test 300m "setstriped directory on single MDT FS"
17897
17898 cleanup_300n() {
17899         local list=$(comma_list $(mdts_nodes))
17900
17901         trap 0
17902         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17903 }
17904
17905 test_300n() {
17906         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17907         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17908         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17909                 skip "Need MDS version at least 2.7.55"
17910         remote_mds_nodsh && skip "remote MDS with nodsh"
17911
17912         local stripe_index
17913         local list=$(comma_list $(mdts_nodes))
17914
17915         trap cleanup_300n RETURN EXIT
17916         mkdir -p $DIR/$tdir
17917         chmod 777 $DIR/$tdir
17918         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
17919                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17920                 error "create striped dir succeeds with gid=0"
17921
17922         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17923         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
17924                 error "create striped dir fails with gid=-1"
17925
17926         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17927         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
17928                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
17929                 error "set default striped dir succeeds with gid=0"
17930
17931
17932         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
17933         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
17934                 error "set default striped dir fails with gid=-1"
17935
17936
17937         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
17938         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
17939                                         error "create test_dir fails"
17940         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
17941                                         error "create test_dir1 fails"
17942         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
17943                                         error "create test_dir2 fails"
17944         cleanup_300n
17945 }
17946 run_test 300n "non-root user to create dir under striped dir with default EA"
17947
17948 test_300o() {
17949         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17950         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17951         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17952                 skip "Need MDS version at least 2.7.55"
17953
17954         local numfree1
17955         local numfree2
17956
17957         mkdir -p $DIR/$tdir
17958
17959         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
17960         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
17961         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
17962                 skip "not enough free inodes $numfree1 $numfree2"
17963         fi
17964
17965         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
17966         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
17967         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
17968                 skip "not enough free space $numfree1 $numfree2"
17969         fi
17970
17971         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
17972                 error "setdirstripe fails"
17973
17974         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
17975                 error "create dirs fails"
17976
17977         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
17978         ls $DIR/$tdir/striped_dir > /dev/null ||
17979                 error "ls striped dir fails"
17980         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
17981                 error "unlink big striped dir fails"
17982 }
17983 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
17984
17985 test_300p() {
17986         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17987         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17988         remote_mds_nodsh && skip "remote MDS with nodsh"
17989
17990         mkdir -p $DIR/$tdir
17991
17992         #define OBD_FAIL_OUT_ENOSPC     0x1704
17993         do_facet mds2 lctl set_param fail_loc=0x80001704
17994         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
17995                  && error "create striped directory should fail"
17996
17997         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
17998
17999         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18000         true
18001 }
18002 run_test 300p "create striped directory without space"
18003
18004 test_300q() {
18005         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18006         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18007
18008         local fd=$(free_fd)
18009         local cmd="exec $fd<$tdir"
18010         cd $DIR
18011         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18012         eval $cmd
18013         cmd="exec $fd<&-"
18014         trap "eval $cmd" EXIT
18015         cd $tdir || error "cd $tdir fails"
18016         rmdir  ../$tdir || error "rmdir $tdir fails"
18017         mkdir local_dir && error "create dir succeeds"
18018         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18019         eval $cmd
18020         return 0
18021 }
18022 run_test 300q "create remote directory under orphan directory"
18023
18024 prepare_remote_file() {
18025         mkdir $DIR/$tdir/src_dir ||
18026                 error "create remote source failed"
18027
18028         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18029                  error "cp to remote source failed"
18030         touch $DIR/$tdir/src_dir/a
18031
18032         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18033                 error "create remote target dir failed"
18034
18035         touch $DIR/$tdir/tgt_dir/b
18036
18037         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18038                 error "rename dir cross MDT failed!"
18039
18040         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18041                 error "src_child still exists after rename"
18042
18043         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18044                 error "missing file(a) after rename"
18045
18046         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18047                 error "diff after rename"
18048 }
18049
18050 test_310a() {
18051         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18052         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18053
18054         local remote_file=$DIR/$tdir/tgt_dir/b
18055
18056         mkdir -p $DIR/$tdir
18057
18058         prepare_remote_file || error "prepare remote file failed"
18059
18060         #open-unlink file
18061         $OPENUNLINK $remote_file $remote_file ||
18062                 error "openunlink $remote_file failed"
18063         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18064 }
18065 run_test 310a "open unlink remote file"
18066
18067 test_310b() {
18068         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18069         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18070
18071         local remote_file=$DIR/$tdir/tgt_dir/b
18072
18073         mkdir -p $DIR/$tdir
18074
18075         prepare_remote_file || error "prepare remote file failed"
18076
18077         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18078         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18079         $CHECKSTAT -t file $remote_file || error "check file failed"
18080 }
18081 run_test 310b "unlink remote file with multiple links while open"
18082
18083 test_310c() {
18084         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18085         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18086
18087         local remote_file=$DIR/$tdir/tgt_dir/b
18088
18089         mkdir -p $DIR/$tdir
18090
18091         prepare_remote_file || error "prepare remote file failed"
18092
18093         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18094         multiop_bg_pause $remote_file O_uc ||
18095                         error "mulitop failed for remote file"
18096         MULTIPID=$!
18097         $MULTIOP $DIR/$tfile Ouc
18098         kill -USR1 $MULTIPID
18099         wait $MULTIPID
18100 }
18101 run_test 310c "open-unlink remote file with multiple links"
18102
18103 #LU-4825
18104 test_311() {
18105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18106         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18107         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18108                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18109         remote_mds_nodsh && skip "remote MDS with nodsh"
18110
18111         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18112
18113         mkdir -p $DIR/$tdir
18114         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18115         createmany -o $DIR/$tdir/$tfile. 1000
18116
18117         # statfs data is not real time, let's just calculate it
18118         old_iused=$((old_iused + 1000))
18119
18120         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18121                         osp.*OST0000*MDT0000.create_count")
18122         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18123                                 osp.*OST0000*MDT0000.max_create_count")
18124         for idx in $(seq $MDSCOUNT); do
18125                 do_facet mds$idx "lctl set_param -n \
18126                         osp.*OST0000*MDT000?.max_create_count=0"
18127         done
18128
18129         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18130         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18131         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18132
18133         unlinkmany $DIR/$tdir/$tfile. 1000
18134
18135         for idx in $(seq $MDSCOUNT); do
18136                 do_facet mds$idx "lctl set_param -n \
18137                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18138                 do_facet mds$idx "lctl set_param -n \
18139                         osp.*OST0000*MDT000?.create_count=$count"
18140         done
18141
18142         local new_iused
18143         for i in $(seq 120); do
18144                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18145                 # system may be too busy to destroy all objs in time, use
18146                 # a somewhat small value to not fail autotest
18147                 [ $((old_iused - new_iused)) -gt 400 ] && break
18148                 sleep 1
18149         done
18150
18151         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18152         [ $((old_iused - new_iused)) -gt 400 ] ||
18153                 error "objs not destroyed after unlink"
18154 }
18155 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18156
18157 zfs_oid_to_objid()
18158 {
18159         local ost=$1
18160         local objid=$2
18161
18162         local vdevdir=$(dirname $(facet_vdevice $ost))
18163         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18164         local zfs_zapid=$(do_facet $ost $cmd |
18165                           grep -w "/O/0/d$((objid%32))" -C 5 |
18166                           awk '/Object/{getline; print $1}')
18167         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18168                           awk "/$objid = /"'{printf $3}')
18169
18170         echo $zfs_objid
18171 }
18172
18173 zfs_object_blksz() {
18174         local ost=$1
18175         local objid=$2
18176
18177         local vdevdir=$(dirname $(facet_vdevice $ost))
18178         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18179         local blksz=$(do_facet $ost $cmd $objid |
18180                       awk '/dblk/{getline; printf $4}')
18181
18182         case "${blksz: -1}" in
18183                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18184                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18185                 *) ;;
18186         esac
18187
18188         echo $blksz
18189 }
18190
18191 test_312() { # LU-4856
18192         remote_ost_nodsh && skip "remote OST with nodsh"
18193         [ $(facet_fstype ost1) = "zfs" ] ||
18194                 skip_env "the test only applies to zfs"
18195
18196         local max_blksz=$(do_facet ost1 \
18197                           $ZFS get -p recordsize $(facet_device ost1) |
18198                           awk '!/VALUE/{print $3}')
18199         local min_blksz=$(getconf PAGE_SIZE)
18200
18201         # to make life a little bit easier
18202         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18203         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18204
18205         local tf=$DIR/$tdir/$tfile
18206         touch $tf
18207         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18208
18209         # Get ZFS object id
18210         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18211
18212         # block size change by sequential over write
18213         local blksz
18214         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
18215                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18216
18217                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18218                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18219         done
18220         rm -f $tf
18221
18222         # block size change by sequential append write
18223         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
18224         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18225         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18226
18227         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
18228                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
18229                         oflag=sync conv=notrunc
18230
18231                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18232                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
18233                         error "blksz error, actual $blksz, "    \
18234                                 "expected: 2 * $count * $min_blksz"
18235         done
18236         rm -f $tf
18237
18238         # random write
18239         touch $tf
18240         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18241         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18242
18243         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18244         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18245         [ $blksz -eq $min_blksz ] ||
18246                 error "blksz error: $blksz, expected: $min_blksz"
18247
18248         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18249         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18250         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18251
18252         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18253         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18254         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18255 }
18256 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18257
18258 test_313() {
18259         remote_ost_nodsh && skip "remote OST with nodsh"
18260
18261         local file=$DIR/$tfile
18262         rm -f $file
18263         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18264
18265         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18266         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18267         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
18268                 error "write should failed"
18269         do_facet ost1 "$LCTL set_param fail_loc=0"
18270         rm -f $file
18271 }
18272 run_test 313 "io should fail after last_rcvd update fail"
18273
18274 test_314() {
18275         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18276
18277         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18278         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18279         rm -f $DIR/$tfile
18280         wait_delete_completed
18281         do_facet ost1 "$LCTL set_param fail_loc=0"
18282 }
18283 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18284
18285 test_315() { # LU-618
18286         local file=$DIR/$tfile
18287         rm -f $file
18288
18289         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4096000c
18290         $MULTIOP $file oO_RDONLY:r4096000_c &
18291         PID=$!
18292
18293         sleep 2
18294
18295         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18296         kill -USR1 $PID
18297
18298         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18299         rm -f $file
18300 }
18301 run_test 315 "read should be accounted"
18302
18303 test_316() {
18304         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18305         large_xattr_enabled || skip_env "ea_inode feature disabled"
18306
18307         rm -rf $DIR/$tdir/d
18308         mkdir -p $DIR/$tdir/d
18309         chown nobody $DIR/$tdir/d
18310         touch $DIR/$tdir/d/file
18311
18312         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18313 }
18314 run_test 316 "lfs mv"
18315
18316 test_317() {
18317         local trunc_sz
18318         local grant_blk_size
18319
18320         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18321                 skip "LU-10370: no implementation for ZFS" && return
18322         fi
18323
18324         stack_trap "rm -f $DIR/$tfile" EXIT
18325         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18326                         awk '/grant_block_size:/ { print $2; exit; }')
18327         #
18328         # Create File of size 5M. Truncate it to below size's and verify
18329         # blocks count.
18330         #
18331         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18332                 error "Create file : $DIR/$tfile"
18333
18334         for trunc_sz in 2097152 4097 4000 509 0; do
18335                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18336                         error "truncate $tfile to $trunc_sz failed"
18337                 local sz=$(stat --format=%s $DIR/$tfile)
18338                 local blk=$(stat --format=%b $DIR/$tfile)
18339                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18340                                      grant_blk_size) * 8))
18341
18342                 if [[ $blk -ne $trunc_blk ]]; then
18343                         $(which stat) $DIR/$tfile
18344                         error "Expected Block $trunc_blk got $blk for $tfile"
18345                 fi
18346
18347                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18348                         error "Expected Size $trunc_sz got $sz for $tfile"
18349         done
18350
18351         #
18352         # sparse file test
18353         # Create file with a hole and write actual two blocks. Block count
18354         # must be 16.
18355         #
18356         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18357                 conv=fsync || error "Create file : $DIR/$tfile"
18358
18359         # Calculate the final truncate size.
18360         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18361
18362         #
18363         # truncate to size $trunc_sz bytes. Strip the last block
18364         # The block count must drop to 8
18365         #
18366         $TRUNCATE $DIR/$tfile $trunc_sz ||
18367                 error "truncate $tfile to $trunc_sz failed"
18368
18369         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18370         sz=$(stat --format=%s $DIR/$tfile)
18371         blk=$(stat --format=%b $DIR/$tfile)
18372
18373         if [[ $blk -ne $trunc_bsz ]]; then
18374                 $(which stat) $DIR/$tfile
18375                 error "Expected Block $trunc_bsz got $blk for $tfile"
18376         fi
18377
18378         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18379                 error "Expected Size $trunc_sz got $sz for $tfile"
18380 }
18381 run_test 317 "Verify blocks get correctly update after truncate"
18382
18383 test_fake_rw() {
18384         local read_write=$1
18385         if [ "$read_write" = "write" ]; then
18386                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18387         elif [ "$read_write" = "read" ]; then
18388                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18389         else
18390                 error "argument error"
18391         fi
18392
18393         # turn off debug for performance testing
18394         local saved_debug=$($LCTL get_param -n debug)
18395         $LCTL set_param debug=0
18396
18397         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18398
18399         # get ost1 size - lustre-OST0000
18400         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18401         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18402         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18403
18404         if [ "$read_write" = "read" ]; then
18405                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18406         fi
18407
18408         local start_time=$(date +%s.%N)
18409         $dd_cmd bs=1M count=$blocks oflag=sync ||
18410                 error "real dd $read_write error"
18411         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18412
18413         if [ "$read_write" = "write" ]; then
18414                 rm -f $DIR/$tfile
18415         fi
18416
18417         # define OBD_FAIL_OST_FAKE_RW           0x238
18418         do_facet ost1 $LCTL set_param fail_loc=0x238
18419
18420         local start_time=$(date +%s.%N)
18421         $dd_cmd bs=1M count=$blocks oflag=sync ||
18422                 error "fake dd $read_write error"
18423         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18424
18425         if [ "$read_write" = "write" ]; then
18426                 # verify file size
18427                 cancel_lru_locks osc
18428                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18429                         error "$tfile size not $blocks MB"
18430         fi
18431         do_facet ost1 $LCTL set_param fail_loc=0
18432
18433         echo "fake $read_write $duration_fake vs. normal $read_write" \
18434                 "$duration in seconds"
18435         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18436                 error_not_in_vm "fake write is slower"
18437
18438         $LCTL set_param -n debug="$saved_debug"
18439         rm -f $DIR/$tfile
18440 }
18441 test_399a() { # LU-7655 for OST fake write
18442         remote_ost_nodsh && skip "remote OST with nodsh"
18443
18444         test_fake_rw write
18445 }
18446 run_test 399a "fake write should not be slower than normal write"
18447
18448 test_399b() { # LU-8726 for OST fake read
18449         remote_ost_nodsh && skip "remote OST with nodsh"
18450         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18451                 skip_env "ldiskfs only test"
18452         fi
18453
18454         test_fake_rw read
18455 }
18456 run_test 399b "fake read should not be slower than normal read"
18457
18458 test_400a() { # LU-1606, was conf-sanity test_74
18459         if ! which $CC > /dev/null 2>&1; then
18460                 skip_env "$CC is not installed"
18461         fi
18462
18463         local extra_flags=''
18464         local out=$TMP/$tfile
18465         local prefix=/usr/include/lustre
18466         local prog
18467
18468         if ! [[ -d $prefix ]]; then
18469                 # Assume we're running in tree and fixup the include path.
18470                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18471                 extra_flags+=" -L$LUSTRE/utils/.lib"
18472         fi
18473
18474         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18475                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18476                         error "client api broken"
18477         done
18478         rm -f $out
18479 }
18480 run_test 400a "Lustre client api program can compile and link"
18481
18482 test_400b() { # LU-1606, LU-5011
18483         local header
18484         local out=$TMP/$tfile
18485         local prefix=/usr/include/linux/lustre
18486
18487         # We use a hard coded prefix so that this test will not fail
18488         # when run in tree. There are headers in lustre/include/lustre/
18489         # that are not packaged (like lustre_idl.h) and have more
18490         # complicated include dependencies (like config.h and lnet/types.h).
18491         # Since this test about correct packaging we just skip them when
18492         # they don't exist (see below) rather than try to fixup cppflags.
18493
18494         if ! which $CC > /dev/null 2>&1; then
18495                 skip_env "$CC is not installed"
18496         fi
18497
18498         for header in $prefix/*.h; do
18499                 if ! [[ -f "$header" ]]; then
18500                         continue
18501                 fi
18502
18503                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18504                         continue # lustre_ioctl.h is internal header
18505                 fi
18506
18507                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18508                         error "cannot compile '$header'"
18509         done
18510         rm -f $out
18511 }
18512 run_test 400b "packaged headers can be compiled"
18513
18514 test_401a() { #LU-7437
18515         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18516         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18517
18518         #count the number of parameters by "list_param -R"
18519         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18520         #count the number of parameters by listing proc files
18521         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18522         echo "proc_dirs='$proc_dirs'"
18523         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18524         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18525                       sort -u | wc -l)
18526
18527         [ $params -eq $procs ] ||
18528                 error "found $params parameters vs. $procs proc files"
18529
18530         # test the list_param -D option only returns directories
18531         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18532         #count the number of parameters by listing proc directories
18533         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18534                 sort -u | wc -l)
18535
18536         [ $params -eq $procs ] ||
18537                 error "found $params parameters vs. $procs proc files"
18538 }
18539 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18540
18541 test_401b() {
18542         local save=$($LCTL get_param -n jobid_var)
18543         local tmp=testing
18544
18545         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18546                 error "no error returned when setting bad parameters"
18547
18548         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18549         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18550
18551         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18552         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18553         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18554 }
18555 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18556
18557 test_401c() {
18558         local jobid_var_old=$($LCTL get_param -n jobid_var)
18559         local jobid_var_new
18560
18561         $LCTL set_param jobid_var= &&
18562                 error "no error returned for 'set_param a='"
18563
18564         jobid_var_new=$($LCTL get_param -n jobid_var)
18565         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18566                 error "jobid_var was changed by setting without value"
18567
18568         $LCTL set_param jobid_var &&
18569                 error "no error returned for 'set_param a'"
18570
18571         jobid_var_new=$($LCTL get_param -n jobid_var)
18572         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18573                 error "jobid_var was changed by setting without value"
18574 }
18575 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18576
18577 test_401d() {
18578         local jobid_var_old=$($LCTL get_param -n jobid_var)
18579         local jobid_var_new
18580         local new_value="foo=bar"
18581
18582         $LCTL set_param jobid_var=$new_value ||
18583                 error "'set_param a=b' did not accept a value containing '='"
18584
18585         jobid_var_new=$($LCTL get_param -n jobid_var)
18586         [[ "$jobid_var_new" == "$new_value" ]] ||
18587                 error "'set_param a=b' failed on a value containing '='"
18588
18589         # Reset the jobid_var to test the other format
18590         $LCTL set_param jobid_var=$jobid_var_old
18591         jobid_var_new=$($LCTL get_param -n jobid_var)
18592         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18593                 error "failed to reset jobid_var"
18594
18595         $LCTL set_param jobid_var $new_value ||
18596                 error "'set_param a b' did not accept a value containing '='"
18597
18598         jobid_var_new=$($LCTL get_param -n jobid_var)
18599         [[ "$jobid_var_new" == "$new_value" ]] ||
18600                 error "'set_param a b' failed on a value containing '='"
18601
18602         $LCTL set_param jobid_var $jobid_var_old
18603         jobid_var_new=$($LCTL get_param -n jobid_var)
18604         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18605                 error "failed to reset jobid_var"
18606 }
18607 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18608
18609 test_402() {
18610         local server_version=$(lustre_version_code $SINGLEMDS)
18611         [[ $server_version -ge $(version_code 2.7.66) ]] ||
18612         [[ $server_version -ge $(version_code 2.7.18.4) &&
18613                 $server_version -lt $(version_code 2.7.50) ]] ||
18614         [[ $server_version -ge $(version_code 2.7.2) &&
18615                 $server_version -lt $(version_code 2.7.11) ]] ||
18616                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18617         remote_mds_nodsh && skip "remote MDS with nodsh"
18618
18619         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18620 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18621         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18622         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18623                 echo "Touch failed - OK"
18624 }
18625 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18626
18627 test_403() {
18628         local file1=$DIR/$tfile.1
18629         local file2=$DIR/$tfile.2
18630         local tfile=$TMP/$tfile
18631
18632         rm -f $file1 $file2 $tfile
18633
18634         touch $file1
18635         ln $file1 $file2
18636
18637         # 30 sec OBD_TIMEOUT in ll_getattr()
18638         # right before populating st_nlink
18639         $LCTL set_param fail_loc=0x80001409
18640         stat -c %h $file1 > $tfile &
18641
18642         # create an alias, drop all locks and reclaim the dentry
18643         < $file2
18644         cancel_lru_locks mdc
18645         cancel_lru_locks osc
18646         sysctl -w vm.drop_caches=2
18647
18648         wait
18649
18650         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18651
18652         rm -f $tfile $file1 $file2
18653 }
18654 run_test 403 "i_nlink should not drop to zero due to aliasing"
18655
18656 test_404() { # LU-6601
18657         local server_version=$(lustre_version_code $SINGLEMDS)
18658         [[ $server_version -ge $(version_code 2.8.53) ]] ||
18659                 skip "Need server version newer than 2.8.52"
18660         remote_mds_nodsh && skip "remote MDS with nodsh"
18661
18662         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18663                 awk '/osp .*-osc-MDT/ { print $4}')
18664
18665         local osp
18666         for osp in $mosps; do
18667                 echo "Deactivate: " $osp
18668                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18669                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18670                         awk -vp=$osp '$4 == p { print $2 }')
18671                 [ $stat = IN ] || {
18672                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18673                         error "deactivate error"
18674                 }
18675                 echo "Activate: " $osp
18676                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18677                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18678                         awk -vp=$osp '$4 == p { print $2 }')
18679                 [ $stat = UP ] || {
18680                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18681                         error "activate error"
18682                 }
18683         done
18684 }
18685 run_test 404 "validate manual {de}activated works properly for OSPs"
18686
18687 test_405() {
18688         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
18689         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
18690                 skip "Layout swap lock is not supported"
18691         check_swap_layouts_support
18692
18693         test_mkdir $DIR/$tdir
18694         swap_lock_test -d $DIR/$tdir ||
18695                 error "One layout swap locked test failed"
18696 }
18697 run_test 405 "Various layout swap lock tests"
18698
18699 test_406() {
18700         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18701         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18702         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18703         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18704         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
18705                 skip "Need MDS version at least 2.8.50"
18706
18707         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18708         local test_pool=$TESTNAME
18709
18710         if ! combined_mgs_mds ; then
18711                 mount_mgs_client
18712         fi
18713         pool_add $test_pool || error "pool_add failed"
18714         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18715                 error "pool_add_targets failed"
18716
18717         save_layout_restore_at_exit $MOUNT
18718
18719         # parent set default stripe count only, child will stripe from both
18720         # parent and fs default
18721         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18722                 error "setstripe $MOUNT failed"
18723         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18724         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18725         for i in $(seq 10); do
18726                 local f=$DIR/$tdir/$tfile.$i
18727                 touch $f || error "touch failed"
18728                 local count=$($LFS getstripe -c $f)
18729                 [ $count -eq $OSTCOUNT ] ||
18730                         error "$f stripe count $count != $OSTCOUNT"
18731                 local offset=$($LFS getstripe -i $f)
18732                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18733                 local size=$($LFS getstripe -S $f)
18734                 [ $size -eq $((def_stripe_size * 2)) ] ||
18735                         error "$f stripe size $size != $((def_stripe_size * 2))"
18736                 local pool=$($LFS getstripe -p $f)
18737                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
18738         done
18739
18740         # change fs default striping, delete parent default striping, now child
18741         # will stripe from new fs default striping only
18742         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
18743                 error "change $MOUNT default stripe failed"
18744         $LFS setstripe -c 0 $DIR/$tdir ||
18745                 error "delete $tdir default stripe failed"
18746         for i in $(seq 11 20); do
18747                 local f=$DIR/$tdir/$tfile.$i
18748                 touch $f || error "touch $f failed"
18749                 local count=$($LFS getstripe -c $f)
18750                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
18751                 local offset=$($LFS getstripe -i $f)
18752                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
18753                 local size=$($LFS getstripe -S $f)
18754                 [ $size -eq $def_stripe_size ] ||
18755                         error "$f stripe size $size != $def_stripe_size"
18756                 local pool=$($LFS getstripe -p $f)
18757                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
18758         done
18759
18760         unlinkmany $DIR/$tdir/$tfile. 1 20
18761
18762         local f=$DIR/$tdir/$tfile
18763         pool_remove_all_targets $test_pool $f
18764         pool_remove $test_pool $f
18765
18766         if ! combined_mgs_mds ; then
18767                 umount_mgs_client
18768         fi
18769 }
18770 run_test 406 "DNE support fs default striping"
18771
18772 test_407() {
18773         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18774         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
18775                 skip "Need MDS version at least 2.8.55"
18776         remote_mds_nodsh && skip "remote MDS with nodsh"
18777
18778         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
18779                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
18780         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
18781                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
18782         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
18783
18784         #define OBD_FAIL_DT_TXN_STOP    0x2019
18785         for idx in $(seq $MDSCOUNT); do
18786                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
18787         done
18788         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
18789         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
18790                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
18791         true
18792 }
18793 run_test 407 "transaction fail should cause operation fail"
18794
18795 test_408() {
18796         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
18797
18798         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
18799         lctl set_param fail_loc=0x8000040a
18800         # let ll_prepare_partial_page() fail
18801         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
18802
18803         rm -f $DIR/$tfile
18804
18805         # create at least 100 unused inodes so that
18806         # shrink_icache_memory(0) should not return 0
18807         touch $DIR/$tfile-{0..100}
18808         rm -f $DIR/$tfile-{0..100}
18809         sync
18810
18811         echo 2 > /proc/sys/vm/drop_caches
18812 }
18813 run_test 408 "drop_caches should not hang due to page leaks"
18814
18815 test_409()
18816 {
18817         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18818         check_mount_and_prep
18819
18820         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
18821         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
18822         touch $DIR/$tdir/guard || error "(2) Fail to create"
18823
18824         local PREFIX=$(str_repeat 'A' 128)
18825         echo "Create 1K hard links start at $(date)"
18826         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18827                 error "(3) Fail to hard link"
18828
18829         echo "Links count should be right although linkEA overflow"
18830         stat $DIR/$tdir/guard || error "(4) Fail to stat"
18831         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
18832         [ $linkcount -eq 1001 ] ||
18833                 error "(5) Unexpected hard links count: $linkcount"
18834
18835         echo "List all links start at $(date)"
18836         ls -l $DIR/$tdir/foo > /dev/null ||
18837                 error "(6) Fail to list $DIR/$tdir/foo"
18838
18839         echo "Unlink hard links start at $(date)"
18840         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
18841                 error "(7) Fail to unlink"
18842 }
18843 run_test 409 "Large amount of cross-MDTs hard links on the same file"
18844
18845 test_410()
18846 {
18847         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
18848                 skip "Need client version at least 2.9.59"
18849
18850         # Create a file, and stat it from the kernel
18851         local testfile=$DIR/$tfile
18852         touch $testfile
18853
18854         local run_id=$RANDOM
18855         local my_ino=$(stat --format "%i" $testfile)
18856
18857         # Try to insert the module. This will always fail as the
18858         # module is designed to not be inserted.
18859         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
18860             &> /dev/null
18861
18862         # Anything but success is a test failure
18863         dmesg | grep -q \
18864             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
18865             error "no inode match"
18866 }
18867 run_test 410 "Test inode number returned from kernel thread"
18868
18869 cleanup_test411_cgroup() {
18870         trap 0
18871         rmdir "$1"
18872 }
18873
18874 test_411() {
18875         local cg_basedir=/sys/fs/cgroup/memory
18876         # LU-9966
18877         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
18878                 skip "no setup for cgroup"
18879
18880         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
18881                 error "test file creation failed"
18882         cancel_lru_locks osc
18883
18884         # Create a very small memory cgroup to force a slab allocation error
18885         local cgdir=$cg_basedir/osc_slab_alloc
18886         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
18887         trap "cleanup_test411_cgroup $cgdir" EXIT
18888         echo 2M > $cgdir/memory.kmem.limit_in_bytes
18889         echo 1M > $cgdir/memory.limit_in_bytes
18890
18891         # Should not LBUG, just be killed by oom-killer
18892         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
18893                 error "fail to trigger a memory allocation error"
18894
18895         cleanup_test411_cgroup $cgdir
18896
18897         return 0
18898 }
18899 run_test 411 "Slab allocation error with cgroup does not LBUG"
18900
18901 test_412() {
18902         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18903         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18904                 skip "Need server version at least 2.10.55"
18905         fi
18906
18907         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
18908                 error "mkdir failed"
18909         $LFS getdirstripe $DIR/$tdir
18910         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
18911         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
18912                 error "expect $((MDSCOUT - 1)) get $stripe_index"
18913         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
18914         [ $stripe_count -eq 2 ] ||
18915                 error "expect 2 get $stripe_count"
18916 }
18917 run_test 412 "mkdir on specific MDTs"
18918
18919 test_413() {
18920         [ $MDSCOUNT -lt 2 ] &&
18921                 skip "We need at least 2 MDTs for this test"
18922
18923         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
18924                 skip "Need server version at least 2.10.55"
18925         fi
18926
18927         mkdir $DIR/$tdir || error "mkdir failed"
18928
18929         # find MDT that is the most full
18930         local max=$($LFS df | grep MDT |
18931                 awk 'BEGIN { a=0 }
18932                         { sub("%", "", $5)
18933                           if (0+$5 >= a)
18934                           {
18935                                 a = $5
18936                                 b = $6
18937                           }
18938                         }
18939                      END { split(b, c, ":")
18940                            sub("]", "", c[2])
18941                            print c[2]
18942                          }')
18943
18944         for i in $(seq $((MDSCOUNT - 1))); do
18945                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
18946                         error "mkdir d$i failed"
18947                 $LFS getdirstripe $DIR/$tdir/d$i
18948                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
18949                 [ $stripe_index -ne $max ] ||
18950                         error "don't expect $max"
18951         done
18952 }
18953 run_test 413 "mkdir on less full MDTs"
18954
18955 test_414() {
18956 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
18957         $LCTL set_param fail_loc=0x80000521
18958         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
18959         rm -f $DIR/$tfile
18960 }
18961 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
18962
18963 test_415() {
18964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18965         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
18966                 skip "Need server version at least 2.11.52"
18967
18968         # LU-11102
18969         local total
18970         local setattr_pid
18971         local start_time
18972         local end_time
18973         local duration
18974
18975         total=500
18976         # this test may be slow on ZFS
18977         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
18978
18979         # though this test is designed for striped directory, let's test normal
18980         # directory too since lock is always saved as CoS lock.
18981         test_mkdir $DIR/$tdir || error "mkdir $tdir"
18982         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
18983
18984         (
18985                 while true; do
18986                         touch $DIR/$tdir
18987                 done
18988         ) &
18989         setattr_pid=$!
18990
18991         start_time=$(date +%s)
18992         for i in $(seq $total); do
18993                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
18994                         > /dev/null
18995         done
18996         end_time=$(date +%s)
18997         duration=$((end_time - start_time))
18998
18999         kill -9 $setattr_pid
19000
19001         echo "rename $total files took $duration sec"
19002         [ $duration -lt 100 ] || error "rename took $duration sec"
19003 }
19004 run_test 415 "lock revoke is not missing"
19005
19006 prep_801() {
19007         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19008         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19009                 skip "Need server version at least 2.9.55"
19010
19011         start_full_debug_logging
19012 }
19013
19014 post_801() {
19015         stop_full_debug_logging
19016 }
19017
19018 barrier_stat() {
19019         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19020                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19021                            awk '/The barrier for/ { print $7 }')
19022                 echo $st
19023         else
19024                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19025                 echo \'$st\'
19026         fi
19027 }
19028
19029 barrier_expired() {
19030         local expired
19031
19032         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19033                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19034                           awk '/will be expired/ { print $7 }')
19035         else
19036                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19037         fi
19038
19039         echo $expired
19040 }
19041
19042 test_801a() {
19043         prep_801
19044
19045         echo "Start barrier_freeze at: $(date)"
19046         #define OBD_FAIL_BARRIER_DELAY          0x2202
19047         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19048         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19049
19050         sleep 2
19051         local b_status=$(barrier_stat)
19052         echo "Got barrier status at: $(date)"
19053         [ "$b_status" = "'freezing_p1'" ] ||
19054                 error "(1) unexpected barrier status $b_status"
19055
19056         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19057         wait
19058         b_status=$(barrier_stat)
19059         [ "$b_status" = "'frozen'" ] ||
19060                 error "(2) unexpected barrier status $b_status"
19061
19062         local expired=$(barrier_expired)
19063         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19064         sleep $((expired + 3))
19065
19066         b_status=$(barrier_stat)
19067         [ "$b_status" = "'expired'" ] ||
19068                 error "(3) unexpected barrier status $b_status"
19069
19070         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19071                 error "(4) fail to freeze barrier"
19072
19073         b_status=$(barrier_stat)
19074         [ "$b_status" = "'frozen'" ] ||
19075                 error "(5) unexpected barrier status $b_status"
19076
19077         echo "Start barrier_thaw at: $(date)"
19078         #define OBD_FAIL_BARRIER_DELAY          0x2202
19079         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19080         do_facet mgs $LCTL barrier_thaw $FSNAME &
19081
19082         sleep 2
19083         b_status=$(barrier_stat)
19084         echo "Got barrier status at: $(date)"
19085         [ "$b_status" = "'thawing'" ] ||
19086                 error "(6) unexpected barrier status $b_status"
19087
19088         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19089         wait
19090         b_status=$(barrier_stat)
19091         [ "$b_status" = "'thawed'" ] ||
19092                 error "(7) unexpected barrier status $b_status"
19093
19094         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19095         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19096         do_facet mgs $LCTL barrier_freeze $FSNAME
19097
19098         b_status=$(barrier_stat)
19099         [ "$b_status" = "'failed'" ] ||
19100                 error "(8) unexpected barrier status $b_status"
19101
19102         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19103         do_facet mgs $LCTL barrier_thaw $FSNAME
19104
19105         post_801
19106 }
19107 run_test 801a "write barrier user interfaces and stat machine"
19108
19109 test_801b() {
19110         prep_801
19111
19112         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19113         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19114         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19115         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19116         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19117
19118         cancel_lru_locks mdc
19119
19120         # 180 seconds should be long enough
19121         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19122
19123         local b_status=$(barrier_stat)
19124         [ "$b_status" = "'frozen'" ] ||
19125                 error "(6) unexpected barrier status $b_status"
19126
19127         mkdir $DIR/$tdir/d0/d10 &
19128         mkdir_pid=$!
19129
19130         touch $DIR/$tdir/d1/f13 &
19131         touch_pid=$!
19132
19133         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19134         ln_pid=$!
19135
19136         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19137         mv_pid=$!
19138
19139         rm -f $DIR/$tdir/d4/f12 &
19140         rm_pid=$!
19141
19142         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19143
19144         # To guarantee taht the 'stat' is not blocked
19145         b_status=$(barrier_stat)
19146         [ "$b_status" = "'frozen'" ] ||
19147                 error "(8) unexpected barrier status $b_status"
19148
19149         # let above commands to run at background
19150         sleep 5
19151
19152         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19153         ps -p $touch_pid || error "(10) touch should be blocked"
19154         ps -p $ln_pid || error "(11) link should be blocked"
19155         ps -p $mv_pid || error "(12) rename should be blocked"
19156         ps -p $rm_pid || error "(13) unlink should be blocked"
19157
19158         b_status=$(barrier_stat)
19159         [ "$b_status" = "'frozen'" ] ||
19160                 error "(14) unexpected barrier status $b_status"
19161
19162         do_facet mgs $LCTL barrier_thaw $FSNAME
19163         b_status=$(barrier_stat)
19164         [ "$b_status" = "'thawed'" ] ||
19165                 error "(15) unexpected barrier status $b_status"
19166
19167         wait $mkdir_pid || error "(16) mkdir should succeed"
19168         wait $touch_pid || error "(17) touch should succeed"
19169         wait $ln_pid || error "(18) link should succeed"
19170         wait $mv_pid || error "(19) rename should succeed"
19171         wait $rm_pid || error "(20) unlink should succeed"
19172
19173         post_801
19174 }
19175 run_test 801b "modification will be blocked by write barrier"
19176
19177 test_801c() {
19178         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19179
19180         prep_801
19181
19182         stop mds2 || error "(1) Fail to stop mds2"
19183
19184         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19185
19186         local b_status=$(barrier_stat)
19187         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19188                 do_facet mgs $LCTL barrier_thaw $FSNAME
19189                 error "(2) unexpected barrier status $b_status"
19190         }
19191
19192         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19193                 error "(3) Fail to rescan barrier bitmap"
19194
19195         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19196
19197         b_status=$(barrier_stat)
19198         [ "$b_status" = "'frozen'" ] ||
19199                 error "(4) unexpected barrier status $b_status"
19200
19201         do_facet mgs $LCTL barrier_thaw $FSNAME
19202         b_status=$(barrier_stat)
19203         [ "$b_status" = "'thawed'" ] ||
19204                 error "(5) unexpected barrier status $b_status"
19205
19206         local devname=$(mdsdevname 2)
19207
19208         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19209
19210         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19211                 error "(7) Fail to rescan barrier bitmap"
19212
19213         post_801
19214 }
19215 run_test 801c "rescan barrier bitmap"
19216
19217 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19218 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19219 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19220
19221 cleanup_802() {
19222         trap 0
19223
19224         stopall
19225         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19226         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19227         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19228         setupall
19229 }
19230
19231 test_802() {
19232
19233         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19234         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19235                 skip "Need server version at least 2.9.55"
19236
19237         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19238
19239         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19240
19241         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19242                 error "(2) Fail to copy"
19243
19244         trap cleanup_802 EXIT
19245
19246         # sync by force before remount as readonly
19247         sync; sync_all_data; sleep 3; sync_all_data
19248
19249         stopall
19250
19251         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19252         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19253         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19254
19255         echo "Mount the server as read only"
19256         setupall server_only || error "(3) Fail to start servers"
19257
19258         echo "Mount client without ro should fail"
19259         mount_client $MOUNT &&
19260                 error "(4) Mount client without 'ro' should fail"
19261
19262         echo "Mount client with ro should succeed"
19263         mount_client $MOUNT ro ||
19264                 error "(5) Mount client with 'ro' should succeed"
19265
19266         echo "Modify should be refused"
19267         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19268
19269         echo "Read should be allowed"
19270         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19271                 error "(7) Read should succeed under ro mode"
19272
19273         cleanup_802
19274 }
19275 run_test 802 "simulate readonly device"
19276
19277 test_803() {
19278         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19279         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19280                 skip "MDS needs to be newer than 2.10.54"
19281
19282         mkdir -p $DIR/$tdir
19283         # Create some objects on all MDTs to trigger related logs objects
19284         for idx in $(seq $MDSCOUNT); do
19285                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19286                         $DIR/$tdir/dir${idx} ||
19287                         error "Fail to create $DIR/$tdir/dir${idx}"
19288         done
19289
19290         sync; sleep 3
19291         echo "before create:"
19292         $LFS df -i $MOUNT
19293         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19294
19295         for ((i=0; i<10; i++)); do
19296                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19297                         error "Fail to create $DIR/$tdir/foo$i"
19298         done
19299
19300         sync; sleep 3
19301         echo "after create:"
19302         $LFS df -i $MOUNT
19303         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19304
19305         [ $after_used -ge $((before_used + 10)) ] ||
19306                 error "before ($before_used) + 10 > after ($after_used)"
19307
19308         for ((i=0; i<10; i++)); do
19309                 rm -rf $DIR/$tdir/foo$i ||
19310                         error "Fail to remove $DIR/$tdir/foo$i"
19311         done
19312
19313         sleep 3 # avoid MDT return cached statfs
19314         wait_delete_completed
19315         echo "after unlink:"
19316         $LFS df -i $MOUNT
19317         before_used=$after_used
19318         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19319
19320         [ $after_used -le $((before_used - 8)) ] ||
19321                 error "before ($before_used) - 8 < after ($after_used)"
19322 }
19323 run_test 803 "verify agent object for remote object"
19324
19325 test_804() {
19326         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19327         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19328                 skip "MDS needs to be newer than 2.10.54"
19329         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19330                 skip_env "ldiskfs only test"
19331
19332         mkdir -p $DIR/$tdir
19333         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19334                 error "Fail to create $DIR/$tdir/dir0"
19335
19336         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19337         local dev=$(mdsdevname 2)
19338
19339         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19340                 grep ${fid} || error "NOT found agent entry for dir0"
19341
19342         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19343                 error "Fail to create $DIR/$tdir/dir1"
19344
19345         touch $DIR/$tdir/dir1/foo0 ||
19346                 error "Fail to create $DIR/$tdir/dir1/foo0"
19347         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19348         local rc=0
19349
19350         for idx in $(seq $MDSCOUNT); do
19351                 dev=$(mdsdevname $idx)
19352                 do_facet mds${idx} \
19353                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19354                         grep ${fid} && rc=$idx
19355         done
19356
19357         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19358                 error "Fail to rename foo0 to foo1"
19359         if [ $rc -eq 0 ]; then
19360                 for idx in $(seq $MDSCOUNT); do
19361                         dev=$(mdsdevname $idx)
19362                         do_facet mds${idx} \
19363                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19364                         grep ${fid} && rc=$idx
19365                 done
19366         fi
19367
19368         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19369                 error "Fail to rename foo1 to foo2"
19370         if [ $rc -eq 0 ]; then
19371                 for idx in $(seq $MDSCOUNT); do
19372                         dev=$(mdsdevname $idx)
19373                         do_facet mds${idx} \
19374                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19375                         grep ${fid} && rc=$idx
19376                 done
19377         fi
19378
19379         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19380
19381         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19382                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19383         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19384                 error "Fail to rename foo2 to foo0"
19385         unlink $DIR/$tdir/dir1/foo0 ||
19386                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19387         rm -rf $DIR/$tdir/dir0 ||
19388                 error "Fail to rm $DIR/$tdir/dir0"
19389
19390         for idx in $(seq $MDSCOUNT); do
19391                 dev=$(mdsdevname $idx)
19392                 rc=0
19393
19394                 stop mds${idx}
19395                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19396                         rc=$?
19397                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19398                         error "mount mds$idx failed"
19399                 df $MOUNT > /dev/null 2>&1
19400
19401                 # e2fsck should not return error
19402                 [ $rc -eq 0 ] ||
19403                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19404         done
19405 }
19406 run_test 804 "verify agent entry for remote entry"
19407
19408 cleanup_805() {
19409         do_facet $SINGLEMDS zfs set quota=$old $fsset
19410         unlinkmany $DIR/$tdir/f- 1000000
19411         trap 0
19412 }
19413
19414 test_805() {
19415         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19416         [ "$(facet_fstype mds1)" != "zfs" ] &&
19417                 skip "ZFS specific test"
19418         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19419                 skip "netfree not implemented before 0.7"
19420         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19421                 skip "Need MDS version at least 2.10.57"
19422
19423         local fsset
19424         local freekb
19425         local usedkb
19426         local old
19427         local quota
19428         local pref="osd-zfs.lustre-MDT0000."
19429
19430         # limit available space on MDS dataset to meet nospace issue
19431         # quickly. then ZFS 0.7.2 can use reserved space if asked
19432         # properly (using netfree flag in osd_declare_destroy()
19433         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19434         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19435                 gawk '{print $3}')
19436         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19437         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19438         let "usedkb=usedkb-freekb"
19439         let "freekb=freekb/2"
19440         if let "freekb > 5000"; then
19441                 let "freekb=5000"
19442         fi
19443         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19444         trap cleanup_805 EXIT
19445         mkdir $DIR/$tdir
19446         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19447         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19448         rm -rf $DIR/$tdir || error "not able to remove"
19449         do_facet $SINGLEMDS zfs set quota=$old $fsset
19450         trap 0
19451 }
19452 run_test 805 "ZFS can remove from full fs"
19453
19454 # Size-on-MDS test
19455 check_lsom_data()
19456 {
19457         local file=$1
19458         local size=$($LFS getsom -s $file)
19459         local expect=$(stat -c %s $file)
19460
19461         [[ $size == $expect ]] ||
19462                 error "$file expected size: $expect, got: $size"
19463
19464         local blocks=$($LFS getsom -b $file)
19465         expect=$(stat -c %b $file)
19466         [[ $blocks == $expect ]] ||
19467                 error "$file expected blocks: $expect, got: $blocks"
19468 }
19469
19470 check_lsom_size()
19471 {
19472         local size=$($LFS getsom -s $1)
19473         local expect=$2
19474
19475         [[ $size == $expect ]] ||
19476                 error "$file expected size: $expect, got: $size"
19477 }
19478
19479 test_806() {
19480         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19481                 skip "Need MDS version at least 2.11.52" && return
19482
19483         local bs=1048576
19484
19485         touch $DIR/$tfile || error "touch $tfile failed"
19486
19487         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19488         save_lustre_params client "llite.*.xattr_cache" > $save
19489         lctl set_param llite.*.xattr_cache=0
19490         stack_trap "restore_lustre_params < $save" EXIT
19491
19492         # single-threaded write
19493         echo "Test SOM for single-threaded write"
19494         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19495                 error "write $tfile failed"
19496         check_lsom_size $DIR/$tfile $bs
19497
19498         local num=32
19499         local size=$(($num * $bs))
19500         local offset=0
19501         local i
19502
19503         echo "Test SOM for single client muti-threaded($num) write"
19504         $TRUNCATE $DIR/$tfile 0
19505         for ((i = 0; i < $num; i++)); do
19506                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19507                 local pids[$i]=$!
19508                 offset=$((offset + $bs))
19509         done
19510         for (( i=0; i < $num; i++ )); do
19511                 wait ${pids[$i]}
19512         done
19513         check_lsom_size $DIR/$tfile $size
19514
19515         $TRUNCATE $DIR/$tfile 0
19516         for ((i = 0; i < $num; i++)); do
19517                 offset=$((offset - $bs))
19518                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19519                 local pids[$i]=$!
19520         done
19521         for (( i=0; i < $num; i++ )); do
19522                 wait ${pids[$i]}
19523         done
19524         check_lsom_size $DIR/$tfile $size
19525
19526         # multi-client wirtes
19527         num=$(get_node_count ${CLIENTS//,/ })
19528         size=$(($num * $bs))
19529         offset=0
19530         i=0
19531
19532         echo "Test SOM for muti-client ($num) writes"
19533         $TRUNCATE $DIR/$tfile 0
19534         for client in ${CLIENTS//,/ }; do
19535                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19536                 local pids[$i]=$!
19537                 i=$((i + 1))
19538                 offset=$((offset + $bs))
19539         done
19540         for (( i=0; i < $num; i++ )); do
19541                 wait ${pids[$i]}
19542         done
19543         check_lsom_size $DIR/$tfile $offset
19544
19545         i=0
19546         $TRUNCATE $DIR/$tfile 0
19547         for client in ${CLIENTS//,/ }; do
19548                 offset=$((offset - $bs))
19549                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19550                 local pids[$i]=$!
19551                 i=$((i + 1))
19552         done
19553         for (( i=0; i < $num; i++ )); do
19554                 wait ${pids[$i]}
19555         done
19556         check_lsom_size $DIR/$tfile $size
19557
19558         # verify truncate
19559         echo "Test SOM for truncate"
19560         $TRUNCATE $DIR/$tfile 1048576
19561         check_lsom_size $DIR/$tfile 1048576
19562         $TRUNCATE $DIR/$tfile 1234
19563         check_lsom_size $DIR/$tfile 1234
19564
19565         # verify SOM blocks count
19566         echo "Verify SOM block count"
19567         $TRUNCATE $DIR/$tfile 0
19568         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19569                 error "failed to write file $tfile"
19570         check_lsom_data $DIR/$tfile
19571 }
19572 run_test 806 "Verify Lazy Size on MDS"
19573
19574 test_807() {
19575         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19576                 skip "Need MDS version at least 2.11.52" && return
19577
19578         # Registration step
19579         changelog_register || error "changelog_register failed"
19580         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19581         changelog_users $SINGLEMDS | grep -q $cl_user ||
19582                 error "User $cl_user not found in changelog_users"
19583
19584         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19585         save_lustre_params client "llite.*.xattr_cache" > $save
19586         lctl set_param llite.*.xattr_cache=0
19587         stack_trap "restore_lustre_params < $save" EXIT
19588
19589         rm -rf $DIR/$tdir || error "rm $tdir failed"
19590         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19591         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19592         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19593         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19594                 error "truncate $tdir/trunc failed"
19595
19596         local bs=1048576
19597         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19598                 error "write $tfile failed"
19599
19600         # multi-client wirtes
19601         local num=$(get_node_count ${CLIENTS//,/ })
19602         local offset=0
19603         local i=0
19604
19605         echo "Test SOM for muti-client ($num) writes"
19606         touch $DIR/$tfile || error "touch $tfile failed"
19607         $TRUNCATE $DIR/$tfile 0
19608         for client in ${CLIENTS//,/ }; do
19609                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19610                 local pids[$i]=$!
19611                 i=$((i + 1))
19612                 offset=$((offset + $bs))
19613         done
19614         for (( i=0; i < $num; i++ )); do
19615                 wait ${pids[$i]}
19616         done
19617
19618         sleep 5
19619         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
19620         check_lsom_data $DIR/$tdir/trunc
19621         check_lsom_data $DIR/$tdir/single_dd
19622         check_lsom_data $DIR/$tfile
19623
19624         rm -rf $DIR/$tdir
19625         # Deregistration step
19626         changelog_deregister || error "changelog_deregister failed"
19627 }
19628 run_test 807 "verify LSOM syncing tool"
19629
19630 #
19631 # tests that do cleanup/setup should be run at the end
19632 #
19633
19634 test_900() {
19635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19636         local ls
19637
19638         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
19639         $LCTL set_param fail_loc=0x903
19640
19641         cancel_lru_locks MGC
19642
19643         FAIL_ON_ERROR=true cleanup
19644         FAIL_ON_ERROR=true setup
19645 }
19646 run_test 900 "umount should not race with any mgc requeue thread"
19647
19648 complete $SECONDS
19649 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
19650 check_and_cleanup_lustre
19651 if [ "$I_MOUNTED" != "yes" ]; then
19652         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
19653 fi
19654 exit_status