Whamcloud - gitweb
d81f090d2d776737749ce945225c291a12f58193
[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 if $SHARED_KEY; then
19 # bug number for skipped tests: LU-9795 (all below)
20         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   17n     60a     133g    300f"
21 fi
22
23 # Check Grants after these tests
24 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
25 SRCDIR=$(cd $(dirname $0); echo $PWD)
26 export PATH=$PATH:/sbin
27
28 TMP=${TMP:-/tmp}
29 OSC=${OSC:-"osc"}
30
31 CC=${CC:-cc}
32 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
33 CREATETEST=${CREATETEST:-createtest}
34 LFS=${LFS:-lfs}
35 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
36 LCTL=${LCTL:-lctl}
37 OPENFILE=${OPENFILE:-openfile}
38 OPENUNLINK=${OPENUNLINK:-openunlink}
39 export MULTIOP=${MULTIOP:-multiop}
40 READS=${READS:-"reads"}
41 MUNLINK=${MUNLINK:-munlink}
42 SOCKETSERVER=${SOCKETSERVER:-socketserver}
43 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
44 MEMHOG=${MEMHOG:-memhog}
45 DIRECTIO=${DIRECTIO:-directio}
46 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
47 DEF_STRIPE_COUNT=-1
48 CHECK_GRANT=${CHECK_GRANT:-"yes"}
49 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
50 export PARALLEL=${PARALLEL:-"no"}
51
52 export NAME=${NAME:-local}
53
54 SAVE_PWD=$PWD
55
56 CLEANUP=${CLEANUP:-:}
57 SETUP=${SETUP:-:}
58 TRACE=${TRACE:-""}
59 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
60 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
61 . $LUSTRE/tests/test-framework.sh
62 init_test_env $@
63 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
64 init_logging
65
66 if [[ $MDSCOUNT -gt 1 ]]; then
67         # bug number:    LU-11161
68         ALWAYS_EXCEPT+=" 160g"
69 fi
70
71 #                                  5          12          (min)"
72 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
73
74 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
75         # bug number for skipped test: LU-1957
76         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
77         #                                               13    (min)"
78         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
79 fi
80
81 # Get the SLES distro version
82 #
83 # Returns a version string that should only be used in comparing
84 # strings returned by version_code()
85 sles_version_code()
86 {
87         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
88
89         # All SuSE Linux versions have one decimal. version_code expects two
90         local sles_version=$version.0
91         version_code $sles_version
92 }
93
94 # Check if we are running on Ubuntu or SLES so we can make decisions on
95 # what tests to run
96 if [ -r /etc/SuSE-release ]; then
97         sles_version=$(sles_version_code)
98         [ $sles_version -lt $(version_code 11.4.0) ] &&
99                 # bug number for skipped test: LU-4341
100                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
101         [ $sles_version -lt $(version_code 12.0.0) ] &&
102                 # bug number for skipped test: LU-3703
103                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
104 elif [ -r /etc/os-release ]; then
105         if grep -qi ubuntu /etc/os-release; then
106                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
107                                                 -e 's/^VERSION=//p' \
108                                                 /etc/os-release |
109                                                 awk '{ print $1 }'))
110
111                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
112                         # bug number for skipped test:
113                         #                LU-10334 LU-10366
114                         ALWAYS_EXCEPT+=" 103a     410"
115                 fi
116         fi
117 fi
118
119 FAIL_ON_ERROR=false
120
121 cleanup() {
122         echo -n "cln.."
123         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
124         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
125 }
126 setup() {
127         echo -n "mnt.."
128         load_modules
129         setupall || exit 10
130         echo "done"
131 }
132
133 check_swap_layouts_support()
134 {
135         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
136                 skip "Does not support layout lock."
137 }
138
139 check_and_setup_lustre
140 DIR=${DIR:-$MOUNT}
141 assert_DIR
142
143 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
144
145 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
146 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
147 rm -rf $DIR/[Rdfs][0-9]*
148
149 # $RUNAS_ID may get set incorrectly somewhere else
150 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
151
152 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
153
154 build_test_filter
155
156 if [ "${ONLY}" = "MOUNT" ] ; then
157         echo "Lustre is up, please go on"
158         exit
159 fi
160
161 echo "preparing for tests involving mounts"
162 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
163 touch $EXT2_DEV
164 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
165 echo # add a newline after mke2fs.
166
167 umask 077
168
169 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
170 lctl set_param debug=-1 2> /dev/null || true
171 test_0a() {
172         touch $DIR/$tfile
173         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
174         rm $DIR/$tfile
175         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
176 }
177 run_test 0a "touch; rm ====================="
178
179 test_0b() {
180         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
181         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
182 }
183 run_test 0b "chmod 0755 $DIR ============================="
184
185 test_0c() {
186         $LCTL get_param mdc.*.import | grep "state: FULL" ||
187                 error "import not FULL"
188         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
189                 error "bad target"
190 }
191 run_test 0c "check import proc"
192
193 test_0d() { # LU-3397
194         [ $(lustre_version_code mgs) -lt $(version_code 2.10.57) ] &&
195                 skip "proc exports not supported before 2.10.57"
196
197         local mgs_exp="mgs.MGS.exports"
198         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
199         local exp_client_nid
200         local exp_client_version
201         local exp_val
202         local imp_val
203         local temp_imp=$DIR/$tfile.import
204         local temp_exp=$DIR/$tfile.export
205
206         # save mgc import file to $temp_imp
207         $LCTL get_param mgc.*.import | tee $temp_imp
208         # Check if client uuid is found in MGS export
209         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
210                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
211                         $client_uuid ] &&
212                         break;
213         done
214         # save mgs export file to $temp_exp
215         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
216
217         # Compare the value of field "connect_flags"
218         imp_val=$(grep "connect_flags" $temp_imp)
219         exp_val=$(grep "connect_flags" $temp_exp)
220         [ "$exp_val" == "$imp_val" ] ||
221                 error "export flags '$exp_val' != import flags '$imp_val'"
222
223         # Compare the value of client version
224         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
225         exp_val=$(version_code $exp_client_version)
226         imp_val=$(lustre_version_code client)
227         [ "$exp_val" == "$imp_val" ] ||
228                 error "export client version '$exp_val' != '$imp_val'"
229 }
230 run_test 0d "check export proc ============================="
231
232 test_1() {
233         test_mkdir $DIR/$tdir
234         test_mkdir $DIR/$tdir/d2
235         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
236         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
237         rmdir $DIR/$tdir/d2
238         rmdir $DIR/$tdir
239         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
240 }
241 run_test 1 "mkdir; remkdir; rmdir"
242
243 test_2() {
244         test_mkdir $DIR/$tdir
245         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
246         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
247         rm -r $DIR/$tdir
248         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
249 }
250 run_test 2 "mkdir; touch; rmdir; check file"
251
252 test_3() {
253         test_mkdir $DIR/$tdir
254         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
255         touch $DIR/$tdir/$tfile
256         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
257         rm -r $DIR/$tdir
258         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
259 }
260 run_test 3 "mkdir; touch; rmdir; check dir"
261
262 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
263 test_4() {
264         test_mkdir -i 1 $DIR/$tdir
265
266         touch $DIR/$tdir/$tfile ||
267                 error "Create file under remote directory failed"
268
269         rmdir $DIR/$tdir &&
270                 error "Expect error removing in-use dir $DIR/$tdir"
271
272         test -d $DIR/$tdir || error "Remote directory disappeared"
273
274         rm -rf $DIR/$tdir || error "remove remote dir error"
275 }
276 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
277
278 test_5() {
279         test_mkdir $DIR/$tdir
280         test_mkdir $DIR/$tdir/d2
281         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
282         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
283         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
284 }
285 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
286
287 test_6a() {
288         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
289         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
290         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
291                 error "$tfile does not have perm 0666 or UID $UID"
292         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
293         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
294                 error "$tfile should be 0666 and owned by UID $UID"
295 }
296 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
297
298 test_6c() {
299         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
300
301         touch $DIR/$tfile
302         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
303         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
304                 error "$tfile should be owned by UID $RUNAS_ID"
305         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
306         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
307                 error "$tfile should be owned by UID $RUNAS_ID"
308 }
309 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
310
311 test_6e() {
312         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
313
314         touch $DIR/$tfile
315         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
316         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
317                 error "$tfile should be owned by GID $UID"
318         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
319         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
320                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
321 }
322 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
323
324 test_6g() {
325         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
326
327         test_mkdir $DIR/$tdir
328         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
329         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
330         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
331         test_mkdir $DIR/$tdir/d/subdir
332         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
333                 error "$tdir/d/subdir should be GID $RUNAS_GID"
334         if [[ $MDSCOUNT -gt 1 ]]; then
335                 # check remote dir sgid inherite
336                 $LFS mkdir -i 0 $DIR/$tdir.local ||
337                         error "mkdir $tdir.local failed"
338                 chmod g+s $DIR/$tdir.local ||
339                         error "chmod $tdir.local failed"
340                 chgrp $RUNAS_GID $DIR/$tdir.local ||
341                         error "chgrp $tdir.local failed"
342                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
343                         error "mkdir $tdir.remote failed"
344                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
345                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
346                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
347                         error "$tdir.remote should be mode 02755"
348         fi
349 }
350 run_test 6g "verify new dir in sgid dir inherits group"
351
352 test_6h() { # bug 7331
353         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
354
355         touch $DIR/$tfile || error "touch failed"
356         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
357         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
358                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
359         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
360                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
361 }
362 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
363
364 test_7a() {
365         test_mkdir $DIR/$tdir
366         $MCREATE $DIR/$tdir/$tfile
367         chmod 0666 $DIR/$tdir/$tfile
368         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
369                 error "$tdir/$tfile should be mode 0666"
370 }
371 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
372
373 test_7b() {
374         if [ ! -d $DIR/$tdir ]; then
375                 test_mkdir $DIR/$tdir
376         fi
377         $MCREATE $DIR/$tdir/$tfile
378         echo -n foo > $DIR/$tdir/$tfile
379         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
380         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
381 }
382 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
383
384 test_8() {
385         test_mkdir $DIR/$tdir
386         touch $DIR/$tdir/$tfile
387         chmod 0666 $DIR/$tdir/$tfile
388         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
389                 error "$tfile mode not 0666"
390 }
391 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
392
393 test_9() {
394         test_mkdir $DIR/$tdir
395         test_mkdir $DIR/$tdir/d2
396         test_mkdir $DIR/$tdir/d2/d3
397         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
398 }
399 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
400
401 test_10() {
402         test_mkdir $DIR/$tdir
403         test_mkdir $DIR/$tdir/d2
404         touch $DIR/$tdir/d2/$tfile
405         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
406                 error "$tdir/d2/$tfile not a file"
407 }
408 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
409
410 test_11() {
411         test_mkdir $DIR/$tdir
412         test_mkdir $DIR/$tdir/d2
413         chmod 0666 $DIR/$tdir/d2
414         chmod 0705 $DIR/$tdir/d2
415         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
416                 error "$tdir/d2 mode not 0705"
417 }
418 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
419
420 test_12() {
421         test_mkdir $DIR/$tdir
422         touch $DIR/$tdir/$tfile
423         chmod 0666 $DIR/$tdir/$tfile
424         chmod 0654 $DIR/$tdir/$tfile
425         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
426                 error "$tdir/d2 mode not 0654"
427 }
428 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
429
430 test_13() {
431         test_mkdir $DIR/$tdir
432         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
433         >  $DIR/$tdir/$tfile
434         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
435                 error "$tdir/$tfile size not 0 after truncate"
436 }
437 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
438
439 test_14() {
440         test_mkdir $DIR/$tdir
441         touch $DIR/$tdir/$tfile
442         rm $DIR/$tdir/$tfile
443         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
444 }
445 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
446
447 test_15() {
448         test_mkdir $DIR/$tdir
449         touch $DIR/$tdir/$tfile
450         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
451         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
452                 error "$tdir/${tfile_2} not a file after rename"
453         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
454 }
455 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
456
457 test_16() {
458         test_mkdir $DIR/$tdir
459         touch $DIR/$tdir/$tfile
460         rm -rf $DIR/$tdir/$tfile
461         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
462 }
463 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
464
465 test_17a() {
466         test_mkdir $DIR/$tdir
467         touch $DIR/$tdir/$tfile
468         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
469         ls -l $DIR/$tdir
470         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
471                 error "$tdir/l-exist not a symlink"
472         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
473                 error "$tdir/l-exist not referencing a file"
474         rm -f $DIR/$tdir/l-exist
475         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
476 }
477 run_test 17a "symlinks: create, remove (real)"
478
479 test_17b() {
480         test_mkdir $DIR/$tdir
481         ln -s no-such-file $DIR/$tdir/l-dangle
482         ls -l $DIR/$tdir
483         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
484                 error "$tdir/l-dangle not referencing no-such-file"
485         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
486                 error "$tdir/l-dangle not referencing non-existent file"
487         rm -f $DIR/$tdir/l-dangle
488         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
489 }
490 run_test 17b "symlinks: create, remove (dangling)"
491
492 test_17c() { # bug 3440 - don't save failed open RPC for replay
493         test_mkdir $DIR/$tdir
494         ln -s foo $DIR/$tdir/$tfile
495         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
496 }
497 run_test 17c "symlinks: open dangling (should return error)"
498
499 test_17d() {
500         test_mkdir $DIR/$tdir
501         ln -s foo $DIR/$tdir/$tfile
502         touch $DIR/$tdir/$tfile || error "creating to new symlink"
503 }
504 run_test 17d "symlinks: create dangling"
505
506 test_17e() {
507         test_mkdir $DIR/$tdir
508         local foo=$DIR/$tdir/$tfile
509         ln -s $foo $foo || error "create symlink failed"
510         ls -l $foo || error "ls -l failed"
511         ls $foo && error "ls not failed" || true
512 }
513 run_test 17e "symlinks: create recursive symlink (should return error)"
514
515 test_17f() {
516         test_mkdir $DIR/$tdir
517         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
518         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
519         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
520         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
521         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
522         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
523         ls -l  $DIR/$tdir
524 }
525 run_test 17f "symlinks: long and very long symlink name"
526
527 # str_repeat(S, N) generate a string that is string S repeated N times
528 str_repeat() {
529         local s=$1
530         local n=$2
531         local ret=''
532         while [ $((n -= 1)) -ge 0 ]; do
533                 ret=$ret$s
534         done
535         echo $ret
536 }
537
538 # Long symlinks and LU-2241
539 test_17g() {
540         test_mkdir $DIR/$tdir
541         local TESTS="59 60 61 4094 4095"
542
543         # Fix for inode size boundary in 2.1.4
544         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
545                 TESTS="4094 4095"
546
547         # Patch not applied to 2.2 or 2.3 branches
548         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
549         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
550                 TESTS="4094 4095"
551
552         # skip long symlink name for rhel6.5.
553         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
554         grep -q '6.5' /etc/redhat-release &>/dev/null &&
555                 TESTS="59 60 61 4062 4063"
556
557         for i in $TESTS; do
558                 local SYMNAME=$(str_repeat 'x' $i)
559                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
560                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
561         done
562 }
563 run_test 17g "symlinks: really long symlink name and inode boundaries"
564
565 test_17h() { #bug 17378
566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
567         remote_mds_nodsh && skip "remote MDS with nodsh"
568
569         local mdt_idx
570
571         test_mkdir $DIR/$tdir
572         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
573         $LFS setstripe -c -1 $DIR/$tdir
574         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
575         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
576         touch $DIR/$tdir/$tfile || true
577 }
578 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
579
580 test_17i() { #bug 20018
581         [ $PARALLEL == "yes" ] && skip "skip parallel run"
582         remote_mds_nodsh && skip "remote MDS with nodsh"
583
584         local foo=$DIR/$tdir/$tfile
585         local mdt_idx
586
587         test_mkdir -c1 $DIR/$tdir
588         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
589         ln -s $foo $foo || error "create symlink failed"
590 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
591         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
592         ls -l $foo && error "error not detected"
593         return 0
594 }
595 run_test 17i "don't panic on short symlink (should return error)"
596
597 test_17k() { #bug 22301
598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
599         [[ -z "$(which rsync 2>/dev/null)" ]] &&
600                 skip "no rsync command"
601         rsync --help | grep -q xattr ||
602                 skip_env "$(rsync --version | head -n1) does not support xattrs"
603         test_mkdir $DIR/$tdir
604         test_mkdir $DIR/$tdir.new
605         touch $DIR/$tdir/$tfile
606         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
607         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
608                 error "rsync failed with xattrs enabled"
609 }
610 run_test 17k "symlinks: rsync with xattrs enabled"
611
612 test_17l() { # LU-279
613         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
614                 skip "no getfattr command"
615
616         test_mkdir $DIR/$tdir
617         touch $DIR/$tdir/$tfile
618         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
619         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
620                 # -h to not follow symlinks. -m '' to list all the xattrs.
621                 # grep to remove first line: '# file: $path'.
622                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
623                 do
624                         lgetxattr_size_check $path $xattr ||
625                                 error "lgetxattr_size_check $path $xattr failed"
626                 done
627         done
628 }
629 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
630
631 # LU-1540
632 test_17m() {
633         [ $PARALLEL == "yes" ] && skip "skip parallel run"
634         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
635                 skip_env "ldiskfs only test"
636         remote_mds_nodsh && skip "remote MDS with nodsh"
637         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
638         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
639                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
640
641         local short_sym="0123456789"
642         local wdir=$DIR/$tdir
643         local i
644
645         test_mkdir $wdir
646         long_sym=$short_sym
647         # create a long symlink file
648         for ((i = 0; i < 4; ++i)); do
649                 long_sym=${long_sym}${long_sym}
650         done
651
652         echo "create 512 short and long symlink files under $wdir"
653         for ((i = 0; i < 256; ++i)); do
654                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
655                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
656         done
657
658         echo "erase them"
659         rm -f $wdir/*
660         sync
661         wait_delete_completed
662
663         echo "recreate the 512 symlink files with a shorter string"
664         for ((i = 0; i < 512; ++i)); do
665                 # rewrite the symlink file with a shorter string
666                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
667                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
668         done
669
670         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
671         local devname=$(mdsdevname $mds_index)
672
673         echo "stop and checking mds${mds_index}:"
674         # e2fsck should not return error
675         stop mds${mds_index}
676         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
677         rc=$?
678
679         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
680                 error "start mds${mds_index} failed"
681         df $MOUNT > /dev/null 2>&1
682         [ $rc -eq 0 ] ||
683                 error "e2fsck detected error for short/long symlink: rc=$rc"
684         rm -f $wdir/*
685 }
686 run_test 17m "run e2fsck against MDT which contains short/long symlink"
687
688 check_fs_consistency_17n() {
689         local mdt_index
690         local rc=0
691
692         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
693         # so it only check MDT1/MDT2 instead of all of MDTs.
694         for mdt_index in 1 2; do
695                 local devname=$(mdsdevname $mdt_index)
696                 # e2fsck should not return error
697                 stop mds${mdt_index}
698                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
699                         rc=$((rc + $?))
700
701                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
702                         error "mount mds$mdt_index failed"
703                 df $MOUNT > /dev/null 2>&1
704         done
705         return $rc
706 }
707
708 test_17n() {
709         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
711         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
712                 skip_env "ldiskfs only test"
713         remote_mds_nodsh && skip "remote MDS with nodsh"
714         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
715         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
716                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
717
718         local i
719
720         test_mkdir $DIR/$tdir
721         for ((i=0; i<10; i++)); do
722                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
723                         error "create remote dir error $i"
724                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
725                         error "create files under remote dir failed $i"
726         done
727
728         check_fs_consistency_17n ||
729                 error "e2fsck report error after create files under remote dir"
730
731         for ((i = 0; i < 10; i++)); do
732                 rm -rf $DIR/$tdir/remote_dir_${i} ||
733                         error "destroy remote dir error $i"
734         done
735
736         check_fs_consistency_17n ||
737                 error "e2fsck report error after unlink files under remote dir"
738
739         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
740                 skip "lustre < 2.4.50 does not support migrate mv"
741
742         for ((i = 0; i < 10; i++)); do
743                 mkdir -p $DIR/$tdir/remote_dir_${i}
744                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
745                         error "create files under remote dir failed $i"
746                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
747                         error "migrate remote dir error $i"
748         done
749         check_fs_consistency_17n || error "e2fsck report error after migration"
750
751         for ((i = 0; i < 10; i++)); do
752                 rm -rf $DIR/$tdir/remote_dir_${i} ||
753                         error "destroy remote dir error $i"
754         done
755
756         check_fs_consistency_17n || error "e2fsck report error after unlink"
757 }
758 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
759
760 test_17o() {
761         remote_mds_nodsh && skip "remote MDS with nodsh"
762         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
763                 skip "Need MDS version at least 2.3.64"
764
765         local wdir=$DIR/${tdir}o
766         local mdt_index
767         local rc=0
768
769         test_mkdir $wdir
770         touch $wdir/$tfile
771         mdt_index=$($LFS getstripe -m $wdir/$tfile)
772         mdt_index=$((mdt_index + 1))
773
774         cancel_lru_locks mdc
775         #fail mds will wait the failover finish then set
776         #following fail_loc to avoid interfer the recovery process.
777         fail mds${mdt_index}
778
779         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
780         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
781         ls -l $wdir/$tfile && rc=1
782         do_facet mds${mdt_index} lctl set_param fail_loc=0
783         [[ $rc -eq 0 ]] || error "stat file should fail"
784 }
785 run_test 17o "stat file with incompat LMA feature"
786
787 test_18() {
788         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
789         ls $DIR || error "Failed to ls $DIR: $?"
790 }
791 run_test 18 "touch .../f ; ls ... =============================="
792
793 test_19a() {
794         touch $DIR/$tfile
795         ls -l $DIR
796         rm $DIR/$tfile
797         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
798 }
799 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
800
801 test_19b() {
802         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
803 }
804 run_test 19b "ls -l .../f19 (should return error) =============="
805
806 test_19c() {
807         [ $RUNAS_ID -eq $UID ] &&
808                 skip_env "RUNAS_ID = UID = $UID -- skipping"
809
810         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
811 }
812 run_test 19c "$RUNAS touch .../f19 (should return error) =="
813
814 test_19d() {
815         cat $DIR/f19 && error || true
816 }
817 run_test 19d "cat .../f19 (should return error) =============="
818
819 test_20() {
820         touch $DIR/$tfile
821         rm $DIR/$tfile
822         touch $DIR/$tfile
823         rm $DIR/$tfile
824         touch $DIR/$tfile
825         rm $DIR/$tfile
826         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
827 }
828 run_test 20 "touch .../f ; ls -l ..."
829
830 test_21() {
831         test_mkdir $DIR/$tdir
832         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
833         ln -s dangle $DIR/$tdir/link
834         echo foo >> $DIR/$tdir/link
835         cat $DIR/$tdir/dangle
836         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
837         $CHECKSTAT -f -t file $DIR/$tdir/link ||
838                 error "$tdir/link not linked to a file"
839 }
840 run_test 21 "write to dangling link"
841
842 test_22() {
843         local wdir=$DIR/$tdir
844         test_mkdir $wdir
845         chown $RUNAS_ID:$RUNAS_GID $wdir
846         (cd $wdir || error "cd $wdir failed";
847                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
848                 $RUNAS tar xf -)
849         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
850         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
851         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
852                 error "checkstat -u failed"
853 }
854 run_test 22 "unpack tar archive as non-root user"
855
856 # was test_23
857 test_23a() {
858         test_mkdir $DIR/$tdir
859         local file=$DIR/$tdir/$tfile
860
861         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
862         openfile -f O_CREAT:O_EXCL $file &&
863                 error "$file recreate succeeded" || true
864 }
865 run_test 23a "O_CREAT|O_EXCL in subdir"
866
867 test_23b() { # bug 18988
868         test_mkdir $DIR/$tdir
869         local file=$DIR/$tdir/$tfile
870
871         rm -f $file
872         echo foo > $file || error "write filed"
873         echo bar >> $file || error "append filed"
874         $CHECKSTAT -s 8 $file || error "wrong size"
875         rm $file
876 }
877 run_test 23b "O_APPEND check"
878
879 # LU-9409, size with O_APPEND and tiny writes
880 test_23c() {
881         local file=$DIR/$tfile
882
883         # single dd
884         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
885         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
886         rm -f $file
887
888         # racing tiny writes
889         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
890         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
891         wait
892         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
893         rm -f $file
894
895         #racing tiny & normal writes
896         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
897         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
898         wait
899         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
900         rm -f $file
901
902         #racing tiny & normal writes 2, ugly numbers
903         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
904         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
905         wait
906         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
907         rm -f $file
908 }
909 run_test 23c "O_APPEND size checks for tiny writes"
910
911 # LU-11069 file offset is correct after appending writes
912 test_23d() {
913         local file=$DIR/$tfile
914         local offset
915
916         echo CentaurHauls > $file
917         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
918         if ((offset != 26)); then
919                 error "wrong offset, expected 26, got '$offset'"
920         fi
921 }
922 run_test 23d "file offset is correct after appending writes"
923
924 # rename sanity
925 test_24a() {
926         echo '-- same directory rename'
927         test_mkdir $DIR/$tdir
928         touch $DIR/$tdir/$tfile.1
929         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
930         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
931 }
932 run_test 24a "rename file to non-existent target"
933
934 test_24b() {
935         test_mkdir $DIR/$tdir
936         touch $DIR/$tdir/$tfile.{1,2}
937         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
938         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
939         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
940 }
941 run_test 24b "rename file to existing target"
942
943 test_24c() {
944         test_mkdir $DIR/$tdir
945         test_mkdir $DIR/$tdir/d$testnum.1
946         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
947         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
948         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
949 }
950 run_test 24c "rename directory to non-existent target"
951
952 test_24d() {
953         test_mkdir -c1 $DIR/$tdir
954         test_mkdir -c1 $DIR/$tdir/d$testnum.1
955         test_mkdir -c1 $DIR/$tdir/d$testnum.2
956         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
957         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
958         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
959 }
960 run_test 24d "rename directory to existing target"
961
962 test_24e() {
963         echo '-- cross directory renames --'
964         test_mkdir $DIR/R5a
965         test_mkdir $DIR/R5b
966         touch $DIR/R5a/f
967         mv $DIR/R5a/f $DIR/R5b/g
968         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
969         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
970 }
971 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
972
973 test_24f() {
974         test_mkdir $DIR/R6a
975         test_mkdir $DIR/R6b
976         touch $DIR/R6a/f $DIR/R6b/g
977         mv $DIR/R6a/f $DIR/R6b/g
978         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
979         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
980 }
981 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
982
983 test_24g() {
984         test_mkdir $DIR/R7a
985         test_mkdir $DIR/R7b
986         test_mkdir $DIR/R7a/d
987         mv $DIR/R7a/d $DIR/R7b/e
988         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
989         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
990 }
991 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
992
993 test_24h() {
994         test_mkdir -c1 $DIR/R8a
995         test_mkdir -c1 $DIR/R8b
996         test_mkdir -c1 $DIR/R8a/d
997         test_mkdir -c1 $DIR/R8b/e
998         mrename $DIR/R8a/d $DIR/R8b/e
999         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1000         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1001 }
1002 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1003
1004 test_24i() {
1005         echo "-- rename error cases"
1006         test_mkdir $DIR/R9
1007         test_mkdir $DIR/R9/a
1008         touch $DIR/R9/f
1009         mrename $DIR/R9/f $DIR/R9/a
1010         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1011         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1012         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1013 }
1014 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1015
1016 test_24j() {
1017         test_mkdir $DIR/R10
1018         mrename $DIR/R10/f $DIR/R10/g
1019         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1020         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1021         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1022 }
1023 run_test 24j "source does not exist ============================"
1024
1025 test_24k() {
1026         test_mkdir $DIR/R11a
1027         test_mkdir $DIR/R11a/d
1028         touch $DIR/R11a/f
1029         mv $DIR/R11a/f $DIR/R11a/d
1030         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1031         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1032 }
1033 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1034
1035 # bug 2429 - rename foo foo foo creates invalid file
1036 test_24l() {
1037         f="$DIR/f24l"
1038         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1039 }
1040 run_test 24l "Renaming a file to itself ========================"
1041
1042 test_24m() {
1043         f="$DIR/f24m"
1044         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1045         # on ext3 this does not remove either the source or target files
1046         # though the "expected" operation would be to remove the source
1047         $CHECKSTAT -t file ${f} || error "${f} missing"
1048         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1049 }
1050 run_test 24m "Renaming a file to a hard link to itself ========="
1051
1052 test_24n() {
1053     f="$DIR/f24n"
1054     # this stats the old file after it was renamed, so it should fail
1055     touch ${f}
1056     $CHECKSTAT ${f} || error "${f} missing"
1057     mv ${f} ${f}.rename
1058     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1059     $CHECKSTAT -a ${f} || error "${f} exists"
1060 }
1061 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1062
1063 test_24o() {
1064         test_mkdir $DIR/$tdir
1065         rename_many -s random -v -n 10 $DIR/$tdir
1066 }
1067 run_test 24o "rename of files during htree split"
1068
1069 test_24p() {
1070         test_mkdir $DIR/R12a
1071         test_mkdir $DIR/R12b
1072         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1073         mrename $DIR/R12a $DIR/R12b
1074         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1075         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1076         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1077         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1078 }
1079 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1080
1081 cleanup_multiop_pause() {
1082         trap 0
1083         kill -USR1 $MULTIPID
1084 }
1085
1086 test_24q() {
1087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1088
1089         test_mkdir $DIR/R13a
1090         test_mkdir $DIR/R13b
1091         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1092         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1093         MULTIPID=$!
1094
1095         trap cleanup_multiop_pause EXIT
1096         mrename $DIR/R13a $DIR/R13b
1097         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1098         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1099         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1100         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1101         cleanup_multiop_pause
1102         wait $MULTIPID || error "multiop close failed"
1103 }
1104 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1105
1106 test_24r() { #bug 3789
1107         test_mkdir $DIR/R14a
1108         test_mkdir $DIR/R14a/b
1109         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1110         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1111         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1112 }
1113 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1114
1115 test_24s() {
1116         test_mkdir $DIR/R15a
1117         test_mkdir $DIR/R15a/b
1118         test_mkdir $DIR/R15a/b/c
1119         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1120         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1121         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1122 }
1123 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1124 test_24t() {
1125         test_mkdir $DIR/R16a
1126         test_mkdir $DIR/R16a/b
1127         test_mkdir $DIR/R16a/b/c
1128         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1129         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1130         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1131 }
1132 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1133
1134 test_24u() { # bug12192
1135         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1136         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1137 }
1138 run_test 24u "create stripe file"
1139
1140 simple_cleanup_common() {
1141         local rc=0
1142         trap 0
1143         [ -z "$DIR" -o -z "$tdir" ] && return 0
1144
1145         local start=$SECONDS
1146         rm -rf $DIR/$tdir
1147         rc=$?
1148         wait_delete_completed
1149         echo "cleanup time $((SECONDS - start))"
1150         return $rc
1151 }
1152
1153 max_pages_per_rpc() {
1154         local mdtname="$(printf "MDT%04x" ${1:-0})"
1155         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1156 }
1157
1158 test_24v() {
1159         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1160
1161         local nrfiles=${COUNT:-100000}
1162         local fname="$DIR/$tdir/$tfile"
1163
1164         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1165         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1166
1167         test_mkdir "$(dirname $fname)"
1168         # assume MDT0000 has the fewest inodes
1169         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1170         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1171         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1172
1173         trap simple_cleanup_common EXIT
1174
1175         createmany -m "$fname" $nrfiles
1176
1177         cancel_lru_locks mdc
1178         lctl set_param mdc.*.stats clear
1179
1180         # was previously test_24D: LU-6101
1181         # readdir() returns correct number of entries after cursor reload
1182         local num_ls=$(ls $DIR/$tdir | wc -l)
1183         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1184         local num_all=$(ls -a $DIR/$tdir | wc -l)
1185         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1186              $num_all -ne $((nrfiles + 2)) ]; then
1187                 error "Expected $nrfiles files, got $num_ls " \
1188                         "($num_uniq unique $num_all .&..)"
1189         fi
1190         # LU-5 large readdir
1191         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1192         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1193         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1194         # take into account of overhead in lu_dirpage header and end mark in
1195         # each page, plus one in rpc_num calculation.
1196         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1197         local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1198         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1199         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1200         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1201         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1202         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1203         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1204                 error "large readdir doesn't take effect: " \
1205                       "$mds_readpage should be about $rpc_max"
1206
1207         simple_cleanup_common
1208 }
1209 run_test 24v "list large directory (test hash collision, b=17560)"
1210
1211 test_24w() { # bug21506
1212         SZ1=234852
1213         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1214         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1215         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1216         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1217         [[ "$SZ1" -eq "$SZ2" ]] ||
1218                 error "Error reading at the end of the file $tfile"
1219 }
1220 run_test 24w "Reading a file larger than 4Gb"
1221
1222 test_24x() {
1223         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1224         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1225         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1226                 skip "Need MDS version at least 2.7.56"
1227
1228         local MDTIDX=1
1229         local remote_dir=$DIR/$tdir/remote_dir
1230
1231         test_mkdir $DIR/$tdir
1232         $LFS mkdir -i $MDTIDX $remote_dir ||
1233                 error "create remote directory failed"
1234
1235         test_mkdir $DIR/$tdir/src_dir
1236         touch $DIR/$tdir/src_file
1237         test_mkdir $remote_dir/tgt_dir
1238         touch $remote_dir/tgt_file
1239
1240         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1241                 error "rename dir cross MDT failed!"
1242
1243         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1244                 error "rename file cross MDT failed!"
1245
1246         touch $DIR/$tdir/ln_file
1247         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1248                 error "ln file cross MDT failed"
1249
1250         rm -rf $DIR/$tdir || error "Can not delete directories"
1251 }
1252 run_test 24x "cross MDT rename/link"
1253
1254 test_24y() {
1255         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1257
1258         local remote_dir=$DIR/$tdir/remote_dir
1259         local mdtidx=1
1260
1261         test_mkdir $DIR/$tdir
1262         $LFS mkdir -i $mdtidx $remote_dir ||
1263                 error "create remote directory failed"
1264
1265         test_mkdir $remote_dir/src_dir
1266         touch $remote_dir/src_file
1267         test_mkdir $remote_dir/tgt_dir
1268         touch $remote_dir/tgt_file
1269
1270         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1271                 error "rename subdir in the same remote dir failed!"
1272
1273         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1274                 error "rename files in the same remote dir failed!"
1275
1276         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1277                 error "link files in the same remote dir failed!"
1278
1279         rm -rf $DIR/$tdir || error "Can not delete directories"
1280 }
1281 run_test 24y "rename/link on the same dir should succeed"
1282
1283 test_24A() { # LU-3182
1284         local NFILES=5000
1285
1286         rm -rf $DIR/$tdir
1287         test_mkdir $DIR/$tdir
1288         trap simple_cleanup_common EXIT
1289         createmany -m $DIR/$tdir/$tfile $NFILES
1290         local t=$(ls $DIR/$tdir | wc -l)
1291         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1292         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1293         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1294                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1295         fi
1296
1297         simple_cleanup_common || error "Can not delete directories"
1298 }
1299 run_test 24A "readdir() returns correct number of entries."
1300
1301 test_24B() { # LU-4805
1302         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1303
1304         local count
1305
1306         test_mkdir $DIR/$tdir
1307         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1308                 error "create striped dir failed"
1309
1310         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1311         [ $count -eq 2 ] || error "Expected 2, got $count"
1312
1313         touch $DIR/$tdir/striped_dir/a
1314
1315         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1316         [ $count -eq 3 ] || error "Expected 3, got $count"
1317
1318         touch $DIR/$tdir/striped_dir/.f
1319
1320         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1321         [ $count -eq 4 ] || error "Expected 4, got $count"
1322
1323         rm -rf $DIR/$tdir || error "Can not delete directories"
1324 }
1325 run_test 24B "readdir for striped dir return correct number of entries"
1326
1327 test_24C() {
1328         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1329
1330         mkdir $DIR/$tdir
1331         mkdir $DIR/$tdir/d0
1332         mkdir $DIR/$tdir/d1
1333
1334         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1335                 error "create striped dir failed"
1336
1337         cd $DIR/$tdir/d0/striped_dir
1338
1339         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1340         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1341         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1342
1343         [ "$d0_ino" = "$parent_ino" ] ||
1344                 error ".. wrong, expect $d0_ino, get $parent_ino"
1345
1346         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1347                 error "mv striped dir failed"
1348
1349         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1350
1351         [ "$d1_ino" = "$parent_ino" ] ||
1352                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1353 }
1354 run_test 24C "check .. in striped dir"
1355
1356 test_24E() {
1357         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1358         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1359
1360         mkdir -p $DIR/$tdir
1361         mkdir $DIR/$tdir/src_dir
1362         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1363                 error "create remote source failed"
1364
1365         touch $DIR/$tdir/src_dir/src_child/a
1366
1367         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1368                 error "create remote target dir failed"
1369
1370         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1371                 error "create remote target child failed"
1372
1373         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1374                 error "rename dir cross MDT failed!"
1375
1376         find $DIR/$tdir
1377
1378         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1379                 error "src_child still exists after rename"
1380
1381         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1382                 error "missing file(a) after rename"
1383
1384         rm -rf $DIR/$tdir || error "Can not delete directories"
1385 }
1386 run_test 24E "cross MDT rename/link"
1387
1388 test_25a() {
1389         echo '== symlink sanity ============================================='
1390
1391         test_mkdir $DIR/d25
1392         ln -s d25 $DIR/s25
1393         touch $DIR/s25/foo ||
1394                 error "File creation in symlinked directory failed"
1395 }
1396 run_test 25a "create file in symlinked directory ==============="
1397
1398 test_25b() {
1399         [ ! -d $DIR/d25 ] && test_25a
1400         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1401 }
1402 run_test 25b "lookup file in symlinked directory ==============="
1403
1404 test_26a() {
1405         test_mkdir $DIR/d26
1406         test_mkdir $DIR/d26/d26-2
1407         ln -s d26/d26-2 $DIR/s26
1408         touch $DIR/s26/foo || error "File creation failed"
1409 }
1410 run_test 26a "multiple component symlink ======================="
1411
1412 test_26b() {
1413         test_mkdir -p $DIR/$tdir/d26-2
1414         ln -s $tdir/d26-2/foo $DIR/s26-2
1415         touch $DIR/s26-2 || error "File creation failed"
1416 }
1417 run_test 26b "multiple component symlink at end of lookup ======"
1418
1419 test_26c() {
1420         test_mkdir $DIR/d26.2
1421         touch $DIR/d26.2/foo
1422         ln -s d26.2 $DIR/s26.2-1
1423         ln -s s26.2-1 $DIR/s26.2-2
1424         ln -s s26.2-2 $DIR/s26.2-3
1425         chmod 0666 $DIR/s26.2-3/foo
1426 }
1427 run_test 26c "chain of symlinks"
1428
1429 # recursive symlinks (bug 439)
1430 test_26d() {
1431         ln -s d26-3/foo $DIR/d26-3
1432 }
1433 run_test 26d "create multiple component recursive symlink"
1434
1435 test_26e() {
1436         [ ! -h $DIR/d26-3 ] && test_26d
1437         rm $DIR/d26-3
1438 }
1439 run_test 26e "unlink multiple component recursive symlink"
1440
1441 # recursive symlinks (bug 7022)
1442 test_26f() {
1443         test_mkdir $DIR/$tdir
1444         test_mkdir $DIR/$tdir/$tfile
1445         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1446         test_mkdir -p lndir/bar1
1447         test_mkdir $DIR/$tdir/$tfile/$tfile
1448         cd $tfile                || error "cd $tfile failed"
1449         ln -s .. dotdot          || error "ln dotdot failed"
1450         ln -s dotdot/lndir lndir || error "ln lndir failed"
1451         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1452         output=`ls $tfile/$tfile/lndir/bar1`
1453         [ "$output" = bar1 ] && error "unexpected output"
1454         rm -r $tfile             || error "rm $tfile failed"
1455         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1456 }
1457 run_test 26f "rm -r of a directory which has recursive symlink"
1458
1459 test_27a() {
1460         test_mkdir $DIR/$tdir
1461         $LFS getstripe $DIR/$tdir
1462         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1463         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1464         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1465 }
1466 run_test 27a "one stripe file"
1467
1468 test_27b() {
1469         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1470
1471         test_mkdir $DIR/$tdir
1472         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1473         $LFS getstripe -c $DIR/$tdir/$tfile
1474         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1475                 error "two-stripe file doesn't have two stripes"
1476
1477         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1478 }
1479 run_test 27b "create and write to two stripe file"
1480
1481 test_27d() {
1482         test_mkdir $DIR/$tdir
1483         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1484                 error "setstripe failed"
1485         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1486         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1487 }
1488 run_test 27d "create file with default settings"
1489
1490 test_27e() {
1491         # LU-5839 adds check for existed layout before setting it
1492         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1493                 skip "Need MDS version at least 2.7.56"
1494
1495         test_mkdir $DIR/$tdir
1496         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1497         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1498         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1499 }
1500 run_test 27e "setstripe existing file (should return error)"
1501
1502 test_27f() {
1503         test_mkdir $DIR/$tdir
1504         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1505                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1506         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1507                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1508         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1509         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1510 }
1511 run_test 27f "setstripe with bad stripe size (should return error)"
1512
1513 test_27g() {
1514         test_mkdir $DIR/$tdir
1515         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1516         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1517                 error "$DIR/$tdir/$tfile has object"
1518 }
1519 run_test 27g "$LFS getstripe with no objects"
1520
1521 test_27i() {
1522         test_mkdir $DIR/$tdir
1523         touch $DIR/$tdir/$tfile || error "touch failed"
1524         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1525                 error "missing objects"
1526 }
1527 run_test 27i "$LFS getstripe with some objects"
1528
1529 test_27j() {
1530         test_mkdir $DIR/$tdir
1531         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1532                 error "setstripe failed" || true
1533 }
1534 run_test 27j "setstripe with bad stripe offset (should return error)"
1535
1536 test_27k() { # bug 2844
1537         test_mkdir $DIR/$tdir
1538         local file=$DIR/$tdir/$tfile
1539         local ll_max_blksize=$((4 * 1024 * 1024))
1540         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1541         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1542         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1543         dd if=/dev/zero of=$file bs=4k count=1
1544         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1545         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1546 }
1547 run_test 27k "limit i_blksize for broken user apps"
1548
1549 test_27l() {
1550         mcreate $DIR/$tfile || error "creating file"
1551         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1552                 error "setstripe should have failed" || true
1553 }
1554 run_test 27l "check setstripe permissions (should return error)"
1555
1556 test_27m() {
1557         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1558
1559         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1560                    head -n1)
1561         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1562                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1563         fi
1564         trap simple_cleanup_common EXIT
1565         test_mkdir $DIR/$tdir
1566         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1567         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1568                 error "dd should fill OST0"
1569         i=2
1570         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1571                 i=$((i + 1))
1572                 [ $i -gt 256 ] && break
1573         done
1574         i=$((i + 1))
1575         touch $DIR/$tdir/$tfile.$i
1576         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1577             awk '{print $1}'| grep -w "0") ] &&
1578                 error "OST0 was full but new created file still use it"
1579         i=$((i + 1))
1580         touch $DIR/$tdir/$tfile.$i
1581         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1582             awk '{print $1}'| grep -w "0") ] &&
1583                 error "OST0 was full but new created file still use it"
1584         simple_cleanup_common
1585 }
1586 run_test 27m "create file while OST0 was full"
1587
1588 sleep_maxage() {
1589         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1590                       awk '{ print $1 * 2; exit; }')
1591         sleep $delay
1592 }
1593
1594 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1595 # if the OST isn't full anymore.
1596 reset_enospc() {
1597         local OSTIDX=${1:-""}
1598
1599         local list=$(comma_list $(osts_nodes))
1600         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1601
1602         do_nodes $list lctl set_param fail_loc=0
1603         sync    # initiate all OST_DESTROYs from MDS to OST
1604         sleep_maxage
1605 }
1606
1607 exhaust_precreations() {
1608         local OSTIDX=$1
1609         local FAILLOC=$2
1610         local FAILIDX=${3:-$OSTIDX}
1611         local ofacet=ost$((OSTIDX + 1))
1612
1613         test_mkdir -p -c1 $DIR/$tdir
1614         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1615         local mfacet=mds$((mdtidx + 1))
1616         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1617
1618         local OST=$(ostname_from_index $OSTIDX)
1619
1620         # on the mdt's osc
1621         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1622         local last_id=$(do_facet $mfacet lctl get_param -n \
1623                         osc.$mdtosc_proc1.prealloc_last_id)
1624         local next_id=$(do_facet $mfacet lctl get_param -n \
1625                         osc.$mdtosc_proc1.prealloc_next_id)
1626
1627         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1628         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1629
1630         test_mkdir -p $DIR/$tdir/${OST}
1631         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1632 #define OBD_FAIL_OST_ENOSPC              0x215
1633         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1634         echo "Creating to objid $last_id on ost $OST..."
1635         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1636         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1637         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1638         sleep_maxage
1639 }
1640
1641 exhaust_all_precreations() {
1642         local i
1643         for (( i=0; i < OSTCOUNT; i++ )) ; do
1644                 exhaust_precreations $i $1 -1
1645         done
1646 }
1647
1648 test_27n() {
1649         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1650         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1651         remote_mds_nodsh && skip "remote MDS with nodsh"
1652         remote_ost_nodsh && skip "remote OST with nodsh"
1653
1654         reset_enospc
1655         rm -f $DIR/$tdir/$tfile
1656         exhaust_precreations 0 0x80000215
1657         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1658         touch $DIR/$tdir/$tfile || error "touch failed"
1659         $LFS getstripe $DIR/$tdir/$tfile
1660         reset_enospc
1661 }
1662 run_test 27n "create file with some full OSTs"
1663
1664 test_27o() {
1665         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1666         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1667         remote_mds_nodsh && skip "remote MDS with nodsh"
1668         remote_ost_nodsh && skip "remote OST with nodsh"
1669
1670         reset_enospc
1671         rm -f $DIR/$tdir/$tfile
1672         exhaust_all_precreations 0x215
1673
1674         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1675
1676         reset_enospc
1677         rm -rf $DIR/$tdir/*
1678 }
1679 run_test 27o "create file with all full OSTs (should error)"
1680
1681 test_27p() {
1682         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1683         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1684         remote_mds_nodsh && skip "remote MDS with nodsh"
1685         remote_ost_nodsh && skip "remote OST with nodsh"
1686
1687         reset_enospc
1688         rm -f $DIR/$tdir/$tfile
1689         test_mkdir $DIR/$tdir
1690
1691         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1692         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1693         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1694
1695         exhaust_precreations 0 0x80000215
1696         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1697         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1698         $LFS getstripe $DIR/$tdir/$tfile
1699
1700         reset_enospc
1701 }
1702 run_test 27p "append to a truncated file with some full OSTs"
1703
1704 test_27q() {
1705         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1706         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1707         remote_mds_nodsh && skip "remote MDS with nodsh"
1708         remote_ost_nodsh && skip "remote OST with nodsh"
1709
1710         reset_enospc
1711         rm -f $DIR/$tdir/$tfile
1712
1713         test_mkdir $DIR/$tdir
1714         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1715         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1716                 error "truncate $DIR/$tdir/$tfile failed"
1717         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1718
1719         exhaust_all_precreations 0x215
1720
1721         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1722         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1723
1724         reset_enospc
1725 }
1726 run_test 27q "append to truncated file with all OSTs full (should error)"
1727
1728 test_27r() {
1729         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1730         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1731         remote_mds_nodsh && skip "remote MDS with nodsh"
1732         remote_ost_nodsh && skip "remote OST with nodsh"
1733
1734         reset_enospc
1735         rm -f $DIR/$tdir/$tfile
1736         exhaust_precreations 0 0x80000215
1737
1738         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1739
1740         reset_enospc
1741 }
1742 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1743
1744 test_27s() { # bug 10725
1745         test_mkdir $DIR/$tdir
1746         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1747         local stripe_count=0
1748         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1749         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1750                 error "stripe width >= 2^32 succeeded" || true
1751
1752 }
1753 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1754
1755 test_27t() { # bug 10864
1756         WDIR=$(pwd)
1757         WLFS=$(which lfs)
1758         cd $DIR
1759         touch $tfile
1760         $WLFS getstripe $tfile
1761         cd $WDIR
1762 }
1763 run_test 27t "check that utils parse path correctly"
1764
1765 test_27u() { # bug 4900
1766         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1767         remote_mds_nodsh && skip "remote MDS with nodsh"
1768
1769         local index
1770         local list=$(comma_list $(mdts_nodes))
1771
1772 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1773         do_nodes $list $LCTL set_param fail_loc=0x139
1774         test_mkdir -p $DIR/$tdir
1775         trap simple_cleanup_common EXIT
1776         createmany -o $DIR/$tdir/t- 1000
1777         do_nodes $list $LCTL set_param fail_loc=0
1778
1779         TLOG=$TMP/$tfile.getstripe
1780         $LFS getstripe $DIR/$tdir > $TLOG
1781         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1782         unlinkmany $DIR/$tdir/t- 1000
1783         trap 0
1784         [[ $OBJS -gt 0 ]] &&
1785                 error "$OBJS objects created on OST-0. See $TLOG" ||
1786                 rm -f $TLOG
1787 }
1788 run_test 27u "skip object creation on OSC w/o objects"
1789
1790 test_27v() { # bug 4900
1791         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1792         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1793         remote_mds_nodsh && skip "remote MDS with nodsh"
1794         remote_ost_nodsh && skip "remote OST with nodsh"
1795
1796         exhaust_all_precreations 0x215
1797         reset_enospc
1798
1799         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1800
1801         touch $DIR/$tdir/$tfile
1802         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1803         # all except ost1
1804         for (( i=1; i < OSTCOUNT; i++ )); do
1805                 do_facet ost$i lctl set_param fail_loc=0x705
1806         done
1807         local START=`date +%s`
1808         createmany -o $DIR/$tdir/$tfile 32
1809
1810         local FINISH=`date +%s`
1811         local TIMEOUT=`lctl get_param -n timeout`
1812         local PROCESS=$((FINISH - START))
1813         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1814                error "$FINISH - $START >= $TIMEOUT / 2"
1815         sleep $((TIMEOUT / 2 - PROCESS))
1816         reset_enospc
1817 }
1818 run_test 27v "skip object creation on slow OST"
1819
1820 test_27w() { # bug 10997
1821         test_mkdir $DIR/$tdir
1822         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1823         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1824                 error "stripe size $size != 65536" || true
1825         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1826                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1827 }
1828 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1829
1830 test_27wa() {
1831         [[ $OSTCOUNT -lt 2 ]] &&
1832                 skip_env "skipping multiple stripe count/offset test"
1833
1834         test_mkdir $DIR/$tdir
1835         for i in $(seq 1 $OSTCOUNT); do
1836                 offset=$((i - 1))
1837                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1838                         error "setstripe -c $i -i $offset failed"
1839                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1840                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1841                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1842                 [ $index -ne $offset ] &&
1843                         error "stripe offset $index != $offset" || true
1844         done
1845 }
1846 run_test 27wa "check $LFS setstripe -c -i options"
1847
1848 test_27x() {
1849         remote_ost_nodsh && skip "remote OST with nodsh"
1850         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1851         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1852
1853         OFFSET=$(($OSTCOUNT - 1))
1854         OSTIDX=0
1855         local OST=$(ostname_from_index $OSTIDX)
1856
1857         test_mkdir $DIR/$tdir
1858         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1859         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1860         sleep_maxage
1861         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1862         for i in $(seq 0 $OFFSET); do
1863                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1864                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1865                 error "OST0 was degraded but new created file still use it"
1866         done
1867         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1868 }
1869 run_test 27x "create files while OST0 is degraded"
1870
1871 test_27y() {
1872         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1873         remote_mds_nodsh && skip "remote MDS with nodsh"
1874         remote_ost_nodsh && skip "remote OST with nodsh"
1875         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1876
1877         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1878         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1879                 osc.$mdtosc.prealloc_last_id)
1880         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1881                 osc.$mdtosc.prealloc_next_id)
1882         local fcount=$((last_id - next_id))
1883         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1884         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1885
1886         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1887                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1888         local OST_DEACTIVE_IDX=-1
1889         local OSC
1890         local OSTIDX
1891         local OST
1892
1893         for OSC in $MDS_OSCS; do
1894                 OST=$(osc_to_ost $OSC)
1895                 OSTIDX=$(index_from_ostuuid $OST)
1896                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1897                         OST_DEACTIVE_IDX=$OSTIDX
1898                 fi
1899                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1900                         echo $OSC "is Deactivated:"
1901                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1902                 fi
1903         done
1904
1905         OSTIDX=$(index_from_ostuuid $OST)
1906         test_mkdir $DIR/$tdir
1907         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1908
1909         for OSC in $MDS_OSCS; do
1910                 OST=$(osc_to_ost $OSC)
1911                 OSTIDX=$(index_from_ostuuid $OST)
1912                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1913                         echo $OST "is degraded:"
1914                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1915                                                 obdfilter.$OST.degraded=1
1916                 fi
1917         done
1918
1919         sleep_maxage
1920         createmany -o $DIR/$tdir/$tfile $fcount
1921
1922         for OSC in $MDS_OSCS; do
1923                 OST=$(osc_to_ost $OSC)
1924                 OSTIDX=$(index_from_ostuuid $OST)
1925                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1926                         echo $OST "is recovered from degraded:"
1927                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1928                                                 obdfilter.$OST.degraded=0
1929                 else
1930                         do_facet $SINGLEMDS lctl --device %$OSC activate
1931                 fi
1932         done
1933
1934         # all osp devices get activated, hence -1 stripe count restored
1935         local stripe_count=0
1936
1937         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1938         # devices get activated.
1939         sleep_maxage
1940         $LFS setstripe -c -1 $DIR/$tfile
1941         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1942         rm -f $DIR/$tfile
1943         [ $stripe_count -ne $OSTCOUNT ] &&
1944                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1945         return 0
1946 }
1947 run_test 27y "create files while OST0 is degraded and the rest inactive"
1948
1949 check_seq_oid()
1950 {
1951         log "check file $1"
1952
1953         lmm_count=$($GETSTRIPE -c $1)
1954         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1955         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1956
1957         local old_ifs="$IFS"
1958         IFS=$'[:]'
1959         fid=($($LFS path2fid $1))
1960         IFS="$old_ifs"
1961
1962         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1963         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1964
1965         # compare lmm_seq and lu_fid->f_seq
1966         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1967         # compare lmm_object_id and lu_fid->oid
1968         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1969
1970         # check the trusted.fid attribute of the OST objects of the file
1971         local have_obdidx=false
1972         local stripe_nr=0
1973         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1974                 # skip lines up to and including "obdidx"
1975                 [ -z "$obdidx" ] && break
1976                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1977                 $have_obdidx || continue
1978
1979                 local ost=$((obdidx + 1))
1980                 local dev=$(ostdevname $ost)
1981                 local oid_hex
1982
1983                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1984
1985                 seq=$(echo $seq | sed -e "s/^0x//g")
1986                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1987                         oid_hex=$(echo $oid)
1988                 else
1989                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1990                 fi
1991                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1992
1993                 local ff=""
1994                 #
1995                 # Don't unmount/remount the OSTs if we don't need to do that.
1996                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1997                 # update too, until that use mount/ll_decode_filter_fid/mount.
1998                 # Re-enable when debugfs will understand new filter_fid.
1999                 #
2000                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2001                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2002                                 $dev 2>/dev/null" | grep "parent=")
2003                 fi
2004                 if [ -z "$ff" ]; then
2005                         stop ost$ost
2006                         mount_fstype ost$ost
2007                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2008                                 $(facet_mntpt ost$ost)/$obj_file)
2009                         unmount_fstype ost$ost
2010                         start ost$ost $dev $OST_MOUNT_OPTS
2011                         clients_up
2012                 fi
2013
2014                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2015
2016                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2017
2018                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2019                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2020                 #
2021                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2022                 #       stripe_size=1048576 component_id=1 component_start=0 \
2023                 #       component_end=33554432
2024                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2025                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2026                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2027                 local ff_pstripe
2028                 if grep -q 'stripe=' <<<$ff; then
2029                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2030                 else
2031                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2032                         # into f_ver in this case.  See comment on ff_parent.
2033                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2034                 fi
2035
2036                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2037                 [ $ff_pseq = $lmm_seq ] ||
2038                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2039                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2040                 [ $ff_poid = $lmm_oid ] ||
2041                         error "FF parent OID $ff_poid != $lmm_oid"
2042                 (($ff_pstripe == $stripe_nr)) ||
2043                         error "FF stripe $ff_pstripe != $stripe_nr"
2044
2045                 stripe_nr=$((stripe_nr + 1))
2046                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2047                         continue
2048                 if grep -q 'stripe_count=' <<<$ff; then
2049                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2050                                             -e 's/ .*//' <<<$ff)
2051                         [ $lmm_count = $ff_scnt ] ||
2052                                 error "FF stripe count $lmm_count != $ff_scnt"
2053                 fi
2054         done
2055 }
2056
2057 test_27z() {
2058         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2059         remote_ost_nodsh && skip "remote OST with nodsh"
2060
2061         test_mkdir $DIR/$tdir
2062         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2063                 { error "setstripe -c -1 failed"; return 1; }
2064         # We need to send a write to every object to get parent FID info set.
2065         # This _should_ also work for setattr, but does not currently.
2066         # touch $DIR/$tdir/$tfile-1 ||
2067         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2068                 { error "dd $tfile-1 failed"; return 2; }
2069         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2070                 { error "setstripe -c -1 failed"; return 3; }
2071         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2072                 { error "dd $tfile-2 failed"; return 4; }
2073
2074         # make sure write RPCs have been sent to OSTs
2075         sync; sleep 5; sync
2076
2077         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2078         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2079 }
2080 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2081
2082 test_27A() { # b=19102
2083         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2084
2085         save_layout_restore_at_exit $MOUNT
2086         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2087         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2088                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2089         local default_size=$($GETSTRIPE -S $MOUNT)
2090         local default_offset=$($GETSTRIPE -i $MOUNT)
2091         local dsize=$(do_facet $SINGLEMDS \
2092                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2093         [ $default_size -eq $dsize ] ||
2094                 error "stripe size $default_size != $dsize"
2095         [ $default_offset -eq -1 ] ||
2096                 error "stripe offset $default_offset != -1"
2097 }
2098 run_test 27A "check filesystem-wide default LOV EA values"
2099
2100 test_27B() { # LU-2523
2101         test_mkdir $DIR/$tdir
2102         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2103         touch $DIR/$tdir/f0
2104         # open f1 with O_LOV_DELAY_CREATE
2105         # rename f0 onto f1
2106         # call setstripe ioctl on open file descriptor for f1
2107         # close
2108         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2109                 $DIR/$tdir/f0
2110
2111         rm -f $DIR/$tdir/f1
2112         # open f1 with O_LOV_DELAY_CREATE
2113         # unlink f1
2114         # call setstripe ioctl on open file descriptor for f1
2115         # close
2116         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2117
2118         # Allow multiop to fail in imitation of NFS's busted semantics.
2119         true
2120 }
2121 run_test 27B "call setstripe on open unlinked file/rename victim"
2122
2123 test_27C() { #LU-2871
2124         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2125
2126         declare -a ost_idx
2127         local index
2128         local found
2129         local i
2130         local j
2131
2132         test_mkdir $DIR/$tdir
2133         cd $DIR/$tdir
2134         for i in $(seq 0 $((OSTCOUNT - 1))); do
2135                 # set stripe across all OSTs starting from OST$i
2136                 $SETSTRIPE -i $i -c -1 $tfile$i
2137                 # get striping information
2138                 ost_idx=($($GETSTRIPE $tfile$i |
2139                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2140                 echo ${ost_idx[@]}
2141
2142                 # check the layout
2143                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2144                         error "${#ost_idx[@]} != $OSTCOUNT"
2145
2146                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2147                         found=0
2148                         for j in $(echo ${ost_idx[@]}); do
2149                                 if [ $index -eq $j ]; then
2150                                         found=1
2151                                         break
2152                                 fi
2153                         done
2154                         [ $found = 1 ] ||
2155                                 error "Can not find $index in ${ost_idx[@]}"
2156                 done
2157         done
2158 }
2159 run_test 27C "check full striping across all OSTs"
2160
2161 test_27D() {
2162         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2163         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2164         remote_mds_nodsh && skip "remote MDS with nodsh"
2165
2166         local POOL=${POOL:-testpool}
2167         local first_ost=0
2168         local last_ost=$(($OSTCOUNT - 1))
2169         local ost_step=1
2170         local ost_list=$(seq $first_ost $ost_step $last_ost)
2171         local ost_range="$first_ost $last_ost $ost_step"
2172
2173         if ! combined_mgs_mds ; then
2174                 mount_mgs_client
2175         fi
2176
2177         test_mkdir $DIR/$tdir
2178         pool_add $POOL || error "pool_add failed"
2179         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2180
2181         local skip27D
2182         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2183                 skip27D+="-s 29"
2184         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2185           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2186                 skip27D+=" -s 30,31"
2187         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2188                 error "llapi_layout_test failed"
2189
2190         destroy_test_pools || error "destroy test pools failed"
2191
2192         if ! combined_mgs_mds ; then
2193                 umount_mgs_client
2194         fi
2195 }
2196 run_test 27D "validate llapi_layout API"
2197
2198 # Verify that default_easize is increased from its initial value after
2199 # accessing a widely striped file.
2200 test_27E() {
2201         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2202         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2203                 skip "client does not have LU-3338 fix"
2204
2205         # 72 bytes is the minimum space required to store striping
2206         # information for a file striped across one OST:
2207         # (sizeof(struct lov_user_md_v3) +
2208         #  sizeof(struct lov_user_ost_data_v1))
2209         local min_easize=72
2210         $LCTL set_param -n llite.*.default_easize $min_easize ||
2211                 error "lctl set_param failed"
2212         local easize=$($LCTL get_param -n llite.*.default_easize)
2213
2214         [ $easize -eq $min_easize ] ||
2215                 error "failed to set default_easize"
2216
2217         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2218                 error "setstripe failed"
2219         cat $DIR/$tfile
2220         rm $DIR/$tfile
2221
2222         easize=$($LCTL get_param -n llite.*.default_easize)
2223
2224         [ $easize -gt $min_easize ] ||
2225                 error "default_easize not updated"
2226 }
2227 run_test 27E "check that default extended attribute size properly increases"
2228
2229 test_27F() { # LU-5346/LU-7975
2230         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2231         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2232         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2233                 skip "Need MDS version at least 2.8.51"
2234         remote_ost_nodsh && skip "remote OST with nodsh"
2235
2236         test_mkdir $DIR/$tdir
2237         rm -f $DIR/$tdir/f0
2238         $SETSTRIPE -c 2 $DIR/$tdir
2239
2240         # stop all OSTs to reproduce situation for LU-7975 ticket
2241         for num in $(seq $OSTCOUNT); do
2242                 stop ost$num
2243         done
2244
2245         # open/create f0 with O_LOV_DELAY_CREATE
2246         # truncate f0 to a non-0 size
2247         # close
2248         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2249
2250         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2251         # open/write it again to force delayed layout creation
2252         cat /etc/hosts > $DIR/$tdir/f0 &
2253         catpid=$!
2254
2255         # restart OSTs
2256         for num in $(seq $OSTCOUNT); do
2257                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2258                         error "ost$num failed to start"
2259         done
2260
2261         wait $catpid || error "cat failed"
2262
2263         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2264         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2265
2266 }
2267 run_test 27F "Client resend delayed layout creation with non-zero size"
2268
2269 test_27G() { #LU-10629
2270         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2271         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2272         local POOL=${POOL:-testpool}
2273         local ostrange="0 0 1"
2274
2275         test_mkdir $DIR/$tdir
2276         pool_add $POOL || error "pool_add failed"
2277         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2278         $LFS setstripe -p $POOL $DIR/$tdir
2279
2280         local pool=$($LFS getstripe -p $DIR/$tdir)
2281
2282         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2283
2284         $LFS setstripe -d $DIR/$tdir
2285
2286         pool=$($LFS getstripe -p $DIR/$tdir)
2287
2288         rmdir $DIR/$tdir
2289
2290         [ -z "$pool" ] || error "'$pool' is not empty"
2291 }
2292 run_test 27G "Clear OST pool from stripe"
2293
2294 test_27H() {
2295         [[ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.11.54) ]] &&
2296                 skip "Need MDS version newer than 2.11.54"
2297         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2298         test_mkdir $DIR/$tdir
2299         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2300         touch $DIR/$tdir/$tfile
2301         $LFS getstripe -c $DIR/$tdir/$tfile
2302         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2303                 error "two-stripe file doesn't have two stripes"
2304
2305         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2306         $LFS getstripe -y $DIR/$tdir/$tfile
2307         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2308              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2309                 error "expected l_ost_idx: [02]$ not matched"
2310
2311         # make sure ost list have been cleared
2312         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
2313         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2314                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2315         touch $DIR/$tdir/f3
2316         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2317 }
2318 run_test 27H "Set specific OSTs stripe"
2319
2320 # createtest also checks that device nodes are created and
2321 # then visible correctly (#2091)
2322 test_28() { # bug 2091
2323         test_mkdir $DIR/d28
2324         $CREATETEST $DIR/d28/ct || error "createtest failed"
2325 }
2326 run_test 28 "create/mknod/mkdir with bad file types ============"
2327
2328 test_29() {
2329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2330
2331         sync; sleep 1; sync # flush out any dirty pages from previous tests
2332         cancel_lru_locks
2333         test_mkdir $DIR/d29
2334         touch $DIR/d29/foo
2335         log 'first d29'
2336         ls -l $DIR/d29
2337
2338         declare -i LOCKCOUNTORIG=0
2339         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2340                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2341         done
2342         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2343
2344         declare -i LOCKUNUSEDCOUNTORIG=0
2345         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2346                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2347         done
2348
2349         log 'second d29'
2350         ls -l $DIR/d29
2351         log 'done'
2352
2353         declare -i LOCKCOUNTCURRENT=0
2354         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2355                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2356         done
2357
2358         declare -i LOCKUNUSEDCOUNTCURRENT=0
2359         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2360                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2361         done
2362
2363         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2364                 $LCTL set_param -n ldlm.dump_namespaces ""
2365                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2366                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2367                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2368                 return 2
2369         fi
2370         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2371                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2372                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2373                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2374                 return 3
2375         fi
2376 }
2377 run_test 29 "IT_GETATTR regression  ============================"
2378
2379 test_30a() { # was test_30
2380         cp $(which ls) $DIR || cp /bin/ls $DIR
2381         $DIR/ls / || error "Can't execute binary from lustre"
2382         rm $DIR/ls
2383 }
2384 run_test 30a "execute binary from Lustre (execve) =============="
2385
2386 test_30b() {
2387         cp `which ls` $DIR || cp /bin/ls $DIR
2388         chmod go+rx $DIR/ls
2389         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2390         rm $DIR/ls
2391 }
2392 run_test 30b "execute binary from Lustre as non-root ==========="
2393
2394 test_30c() { # b=22376
2395         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2396
2397         cp `which ls` $DIR || cp /bin/ls $DIR
2398         chmod a-rw $DIR/ls
2399         cancel_lru_locks mdc
2400         cancel_lru_locks osc
2401         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2402         rm -f $DIR/ls
2403 }
2404 run_test 30c "execute binary from Lustre without read perms ===="
2405
2406 test_31a() {
2407         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2408         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2409 }
2410 run_test 31a "open-unlink file =================================="
2411
2412 test_31b() {
2413         touch $DIR/f31 || error "touch $DIR/f31 failed"
2414         ln $DIR/f31 $DIR/f31b || error "ln failed"
2415         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2416         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2417 }
2418 run_test 31b "unlink file with multiple links while open ======="
2419
2420 test_31c() {
2421         touch $DIR/f31 || error "touch $DIR/f31 failed"
2422         ln $DIR/f31 $DIR/f31c || error "ln failed"
2423         multiop_bg_pause $DIR/f31 O_uc ||
2424                 error "multiop_bg_pause for $DIR/f31 failed"
2425         MULTIPID=$!
2426         $MULTIOP $DIR/f31c Ouc
2427         kill -USR1 $MULTIPID
2428         wait $MULTIPID
2429 }
2430 run_test 31c "open-unlink file with multiple links ============="
2431
2432 test_31d() {
2433         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2434         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2435 }
2436 run_test 31d "remove of open directory ========================="
2437
2438 test_31e() { # bug 2904
2439         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2440 }
2441 run_test 31e "remove of open non-empty directory ==============="
2442
2443 test_31f() { # bug 4554
2444         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2445
2446         set -vx
2447         test_mkdir $DIR/d31f
2448         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2449         cp /etc/hosts $DIR/d31f
2450         ls -l $DIR/d31f
2451         $GETSTRIPE $DIR/d31f/hosts
2452         multiop_bg_pause $DIR/d31f D_c || return 1
2453         MULTIPID=$!
2454
2455         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2456         test_mkdir $DIR/d31f
2457         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2458         cp /etc/hosts $DIR/d31f
2459         ls -l $DIR/d31f
2460         $GETSTRIPE $DIR/d31f/hosts
2461         multiop_bg_pause $DIR/d31f D_c || return 1
2462         MULTIPID2=$!
2463
2464         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2465         wait $MULTIPID || error "first opendir $MULTIPID failed"
2466
2467         sleep 6
2468
2469         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2470         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2471         set +vx
2472 }
2473 run_test 31f "remove of open directory with open-unlink file ==="
2474
2475 test_31g() {
2476         echo "-- cross directory link --"
2477         test_mkdir -c1 $DIR/${tdir}ga
2478         test_mkdir -c1 $DIR/${tdir}gb
2479         touch $DIR/${tdir}ga/f
2480         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2481         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2482         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2483         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2484         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2485 }
2486 run_test 31g "cross directory link==============="
2487
2488 test_31h() {
2489         echo "-- cross directory link --"
2490         test_mkdir -c1 $DIR/${tdir}
2491         test_mkdir -c1 $DIR/${tdir}/dir
2492         touch $DIR/${tdir}/f
2493         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2494         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2495         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2496         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2497         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2498 }
2499 run_test 31h "cross directory link under child==============="
2500
2501 test_31i() {
2502         echo "-- cross directory link --"
2503         test_mkdir -c1 $DIR/$tdir
2504         test_mkdir -c1 $DIR/$tdir/dir
2505         touch $DIR/$tdir/dir/f
2506         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2507         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2508         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2509         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2510         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2511 }
2512 run_test 31i "cross directory link under parent==============="
2513
2514 test_31j() {
2515         test_mkdir -c1 -p $DIR/$tdir
2516         test_mkdir -c1 -p $DIR/$tdir/dir1
2517         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2518         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2519         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2520         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2521         return 0
2522 }
2523 run_test 31j "link for directory==============="
2524
2525 test_31k() {
2526         test_mkdir -c1 -p $DIR/$tdir
2527         touch $DIR/$tdir/s
2528         touch $DIR/$tdir/exist
2529         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2530         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2531         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2532         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2533         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2534         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2535         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2536         return 0
2537 }
2538 run_test 31k "link to file: the same, non-existing, dir==============="
2539
2540 test_31m() {
2541         mkdir $DIR/d31m
2542         touch $DIR/d31m/s
2543         mkdir $DIR/d31m2
2544         touch $DIR/d31m2/exist
2545         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2546         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2547         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2548         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2549         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2550         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2551         return 0
2552 }
2553 run_test 31m "link to file: the same, non-existing, dir==============="
2554
2555 test_31n() {
2556         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2557         nlink=$(stat --format=%h $DIR/$tfile)
2558         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2559         local fd=$(free_fd)
2560         local cmd="exec $fd<$DIR/$tfile"
2561         eval $cmd
2562         cmd="exec $fd<&-"
2563         trap "eval $cmd" EXIT
2564         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2565         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2566         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2567         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2568         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2569         eval $cmd
2570 }
2571 run_test 31n "check link count of unlinked file"
2572
2573 link_one() {
2574         local TEMPNAME=$(mktemp $1_XXXXXX)
2575         mlink $TEMPNAME $1 2> /dev/null &&
2576                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2577         munlink $TEMPNAME
2578 }
2579
2580 test_31o() { # LU-2901
2581         test_mkdir $DIR/$tdir
2582         for LOOP in $(seq 100); do
2583                 rm -f $DIR/$tdir/$tfile*
2584                 for THREAD in $(seq 8); do
2585                         link_one $DIR/$tdir/$tfile.$LOOP &
2586                 done
2587                 wait
2588                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2589                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2590                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2591                         break || true
2592         done
2593 }
2594 run_test 31o "duplicate hard links with same filename"
2595
2596 test_31p() {
2597         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2598
2599         test_mkdir $DIR/$tdir
2600         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2601         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2602
2603         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2604                 error "open unlink test1 failed"
2605         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2606                 error "open unlink test2 failed"
2607
2608         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2609                 error "test1 still exists"
2610         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2611                 error "test2 still exists"
2612 }
2613 run_test 31p "remove of open striped directory"
2614
2615 cleanup_test32_mount() {
2616         local rc=0
2617         trap 0
2618         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2619         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2620         losetup -d $loopdev || true
2621         rm -rf $DIR/$tdir
2622         return $rc
2623 }
2624
2625 test_32a() {
2626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2627
2628         echo "== more mountpoints and symlinks ================="
2629         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2630         trap cleanup_test32_mount EXIT
2631         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2632         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2633                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2634         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2635                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2636         cleanup_test32_mount
2637 }
2638 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2639
2640 test_32b() {
2641         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2642
2643         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2644         trap cleanup_test32_mount EXIT
2645         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2646         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2647                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2648         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2649                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2650         cleanup_test32_mount
2651 }
2652 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2653
2654 test_32c() {
2655         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2656
2657         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2658         trap cleanup_test32_mount EXIT
2659         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2660         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2661                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2662         test_mkdir -p $DIR/$tdir/d2/test_dir
2663         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2664                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2665         cleanup_test32_mount
2666 }
2667 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2668
2669 test_32d() {
2670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2671
2672         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2673         trap cleanup_test32_mount EXIT
2674         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2675         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2676                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2677         test_mkdir -p $DIR/$tdir/d2/test_dir
2678         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2679                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2680         cleanup_test32_mount
2681 }
2682 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2683
2684 test_32e() {
2685         rm -fr $DIR/$tdir
2686         test_mkdir -p $DIR/$tdir/tmp
2687         local tmp_dir=$DIR/$tdir/tmp
2688         ln -s $DIR/$tdir $tmp_dir/symlink11
2689         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2690         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2691         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2692 }
2693 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2694
2695 test_32f() {
2696         rm -fr $DIR/$tdir
2697         test_mkdir -p $DIR/$tdir/tmp
2698         local tmp_dir=$DIR/$tdir/tmp
2699         ln -s $DIR/$tdir $tmp_dir/symlink11
2700         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2701         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2702         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2703 }
2704 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2705
2706 test_32g() {
2707         local tmp_dir=$DIR/$tdir/tmp
2708         test_mkdir -p $tmp_dir
2709         test_mkdir $DIR/${tdir}2
2710         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2711         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2712         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2713         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2714         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2715         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2716 }
2717 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2718
2719 test_32h() {
2720         rm -fr $DIR/$tdir $DIR/${tdir}2
2721         tmp_dir=$DIR/$tdir/tmp
2722         test_mkdir -p $tmp_dir
2723         test_mkdir $DIR/${tdir}2
2724         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2725         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2726         ls $tmp_dir/symlink12 || error "listing symlink12"
2727         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2728 }
2729 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2730
2731 test_32i() {
2732         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2733
2734         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2735         trap cleanup_test32_mount EXIT
2736         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2737         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2738                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2739         touch $DIR/$tdir/test_file
2740         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2741                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2742         cleanup_test32_mount
2743 }
2744 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2745
2746 test_32j() {
2747         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2748
2749         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2750         trap cleanup_test32_mount EXIT
2751         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2752         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2753                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2754         touch $DIR/$tdir/test_file
2755         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2756                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2757         cleanup_test32_mount
2758 }
2759 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2760
2761 test_32k() {
2762         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2763
2764         rm -fr $DIR/$tdir
2765         trap cleanup_test32_mount EXIT
2766         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2767         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2768                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2769         test_mkdir -p $DIR/$tdir/d2
2770         touch $DIR/$tdir/d2/test_file || error "touch failed"
2771         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2772                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2773         cleanup_test32_mount
2774 }
2775 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2776
2777 test_32l() {
2778         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2779
2780         rm -fr $DIR/$tdir
2781         trap cleanup_test32_mount EXIT
2782         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2783         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2784                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2785         test_mkdir -p $DIR/$tdir/d2
2786         touch $DIR/$tdir/d2/test_file || error "touch failed"
2787         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2788                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2789         cleanup_test32_mount
2790 }
2791 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2792
2793 test_32m() {
2794         rm -fr $DIR/d32m
2795         test_mkdir -p $DIR/d32m/tmp
2796         TMP_DIR=$DIR/d32m/tmp
2797         ln -s $DIR $TMP_DIR/symlink11
2798         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2799         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2800                 error "symlink11 not a link"
2801         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2802                 error "symlink01 not a link"
2803 }
2804 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2805
2806 test_32n() {
2807         rm -fr $DIR/d32n
2808         test_mkdir -p $DIR/d32n/tmp
2809         TMP_DIR=$DIR/d32n/tmp
2810         ln -s $DIR $TMP_DIR/symlink11
2811         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2812         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2813         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2814 }
2815 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2816
2817 test_32o() {
2818         touch $DIR/$tfile
2819         test_mkdir -p $DIR/d32o/tmp
2820         TMP_DIR=$DIR/d32o/tmp
2821         ln -s $DIR/$tfile $TMP_DIR/symlink12
2822         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2823         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2824                 error "symlink12 not a link"
2825         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2826         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2827                 error "$DIR/d32o/tmp/symlink12 not file type"
2828         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2829                 error "$DIR/d32o/symlink02 not file type"
2830 }
2831 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2832
2833 test_32p() {
2834         log 32p_1
2835         rm -fr $DIR/d32p
2836         log 32p_2
2837         rm -f $DIR/$tfile
2838         log 32p_3
2839         touch $DIR/$tfile
2840         log 32p_4
2841         test_mkdir -p $DIR/d32p/tmp
2842         log 32p_5
2843         TMP_DIR=$DIR/d32p/tmp
2844         log 32p_6
2845         ln -s $DIR/$tfile $TMP_DIR/symlink12
2846         log 32p_7
2847         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2848         log 32p_8
2849         cat $DIR/d32p/tmp/symlink12 ||
2850                 error "Can't open $DIR/d32p/tmp/symlink12"
2851         log 32p_9
2852         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2853         log 32p_10
2854 }
2855 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2856
2857 test_32q() {
2858         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2859
2860         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2861         trap cleanup_test32_mount EXIT
2862         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2863         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2864         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2865                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2866         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2867         cleanup_test32_mount
2868 }
2869 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2870
2871 test_32r() {
2872         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2873
2874         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2875         trap cleanup_test32_mount EXIT
2876         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2877         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2878         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2879                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2880         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2881         cleanup_test32_mount
2882 }
2883 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2884
2885 test_33aa() {
2886         rm -f $DIR/$tfile
2887         touch $DIR/$tfile
2888         chmod 444 $DIR/$tfile
2889         chown $RUNAS_ID $DIR/$tfile
2890         log 33_1
2891         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2892         log 33_2
2893 }
2894 run_test 33aa "write file with mode 444 (should return error)"
2895
2896 test_33a() {
2897         rm -fr $DIR/$tdir
2898         test_mkdir $DIR/$tdir
2899         chown $RUNAS_ID $DIR/$tdir
2900         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2901                 error "$RUNAS create $tdir/$tfile failed"
2902         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2903                 error "open RDWR" || true
2904 }
2905 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2906
2907 test_33b() {
2908         rm -fr $DIR/$tdir
2909         test_mkdir $DIR/$tdir
2910         chown $RUNAS_ID $DIR/$tdir
2911         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2912 }
2913 run_test 33b "test open file with malformed flags (No panic)"
2914
2915 test_33c() {
2916         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2917         remote_ost_nodsh && skip "remote OST with nodsh"
2918
2919         local ostnum
2920         local ostname
2921         local write_bytes
2922         local all_zeros
2923
2924         all_zeros=:
2925         rm -fr $DIR/$tdir
2926         test_mkdir $DIR/$tdir
2927         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2928
2929         sync
2930         for ostnum in $(seq $OSTCOUNT); do
2931                 # test-framework's OST numbering is one-based, while Lustre's
2932                 # is zero-based
2933                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2934                 # Parsing llobdstat's output sucks; we could grep the /proc
2935                 # path, but that's likely to not be as portable as using the
2936                 # llobdstat utility.  So we parse lctl output instead.
2937                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2938                         obdfilter/$ostname/stats |
2939                         awk '/^write_bytes/ {print $7}' )
2940                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2941                 if (( ${write_bytes:-0} > 0 ))
2942                 then
2943                         all_zeros=false
2944                         break;
2945                 fi
2946         done
2947
2948         $all_zeros || return 0
2949
2950         # Write four bytes
2951         echo foo > $DIR/$tdir/bar
2952         # Really write them
2953         sync
2954
2955         # Total up write_bytes after writing.  We'd better find non-zeros.
2956         for ostnum in $(seq $OSTCOUNT); do
2957                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2958                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2959                         obdfilter/$ostname/stats |
2960                         awk '/^write_bytes/ {print $7}' )
2961                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2962                 if (( ${write_bytes:-0} > 0 ))
2963                 then
2964                         all_zeros=false
2965                         break;
2966                 fi
2967         done
2968
2969         if $all_zeros
2970         then
2971                 for ostnum in $(seq $OSTCOUNT); do
2972                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2973                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2974                         do_facet ost$ostnum lctl get_param -n \
2975                                 obdfilter/$ostname/stats
2976                 done
2977                 error "OST not keeping write_bytes stats (b22312)"
2978         fi
2979 }
2980 run_test 33c "test llobdstat and write_bytes"
2981
2982 test_33d() {
2983         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
2984         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2985
2986         local MDTIDX=1
2987         local remote_dir=$DIR/$tdir/remote_dir
2988
2989         test_mkdir $DIR/$tdir
2990         $LFS mkdir -i $MDTIDX $remote_dir ||
2991                 error "create remote directory failed"
2992
2993         touch $remote_dir/$tfile
2994         chmod 444 $remote_dir/$tfile
2995         chown $RUNAS_ID $remote_dir/$tfile
2996
2997         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2998
2999         chown $RUNAS_ID $remote_dir
3000         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3001                                         error "create" || true
3002         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3003                                     error "open RDWR" || true
3004         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3005 }
3006 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3007
3008 test_33e() {
3009         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3010
3011         mkdir $DIR/$tdir
3012
3013         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3014         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3015         mkdir $DIR/$tdir/local_dir
3016
3017         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3018         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3019         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3020
3021         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3022                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3023
3024         rmdir $DIR/$tdir/* || error "rmdir failed"
3025
3026         umask 777
3027         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3028         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3029         mkdir $DIR/$tdir/local_dir
3030
3031         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3032         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3033         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3034
3035         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3036                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3037
3038         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3039
3040         umask 000
3041         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3042         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3043         mkdir $DIR/$tdir/local_dir
3044
3045         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3046         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3047         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3048
3049         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3050                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3051 }
3052 run_test 33e "mkdir and striped directory should have same mode"
3053
3054 cleanup_33f() {
3055         trap 0
3056         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3057 }
3058
3059 test_33f() {
3060         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3061         remote_mds_nodsh && skip "remote MDS with nodsh"
3062
3063         mkdir $DIR/$tdir
3064         chmod go+rwx $DIR/$tdir
3065         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3066         trap cleanup_33f EXIT
3067
3068         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3069                 error "cannot create striped directory"
3070
3071         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3072                 error "cannot create files in striped directory"
3073
3074         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3075                 error "cannot remove files in striped directory"
3076
3077         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3078                 error "cannot remove striped directory"
3079
3080         cleanup_33f
3081 }
3082 run_test 33f "nonroot user can create, access, and remove a striped directory"
3083
3084 test_33g() {
3085         mkdir -p $DIR/$tdir/dir2
3086
3087         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3088         echo $err
3089         [[ $err =~ "exists" ]] || error "Not exists error"
3090 }
3091 run_test 33g "nonroot user create already existing root created file"
3092
3093 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3094 test_34a() {
3095         rm -f $DIR/f34
3096         $MCREATE $DIR/f34 || error "mcreate failed"
3097         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3098                 error "getstripe failed"
3099         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3100         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3101                 error "getstripe failed"
3102         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3103                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3104 }
3105 run_test 34a "truncate file that has not been opened ==========="
3106
3107 test_34b() {
3108         [ ! -f $DIR/f34 ] && test_34a
3109         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3110                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3111         $OPENFILE -f O_RDONLY $DIR/f34
3112         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3113                 error "getstripe failed"
3114         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3115                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3116 }
3117 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3118
3119 test_34c() {
3120         [ ! -f $DIR/f34 ] && test_34a
3121         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3122                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3123         $OPENFILE -f O_RDWR $DIR/f34
3124         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3125         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3126                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3127 }
3128 run_test 34c "O_RDWR opening file-with-size works =============="
3129
3130 test_34d() {
3131         [ ! -f $DIR/f34 ] && test_34a
3132         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3133                 error "dd failed"
3134         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3135                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3136         rm $DIR/f34
3137 }
3138 run_test 34d "write to sparse file ============================="
3139
3140 test_34e() {
3141         rm -f $DIR/f34e
3142         $MCREATE $DIR/f34e || error "mcreate failed"
3143         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3144         $CHECKSTAT -s 1000 $DIR/f34e ||
3145                 error "Size of $DIR/f34e not equal to 1000 bytes"
3146         $OPENFILE -f O_RDWR $DIR/f34e
3147         $CHECKSTAT -s 1000 $DIR/f34e ||
3148                 error "Size of $DIR/f34e not equal to 1000 bytes"
3149 }
3150 run_test 34e "create objects, some with size and some without =="
3151
3152 test_34f() { # bug 6242, 6243
3153         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3154
3155         SIZE34F=48000
3156         rm -f $DIR/f34f
3157         $MCREATE $DIR/f34f || error "mcreate failed"
3158         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3159         dd if=$DIR/f34f of=$TMP/f34f
3160         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3161         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3162         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3163         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3164         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3165 }
3166 run_test 34f "read from a file with no objects until EOF ======="
3167
3168 test_34g() {
3169         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3170
3171         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3172                 error "dd failed"
3173         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3174         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3175                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3176         cancel_lru_locks osc
3177         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3178                 error "wrong size after lock cancel"
3179
3180         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3181         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3182                 error "expanding truncate failed"
3183         cancel_lru_locks osc
3184         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3185                 error "wrong expanded size after lock cancel"
3186 }
3187 run_test 34g "truncate long file ==============================="
3188
3189 test_34h() {
3190         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3191
3192         local gid=10
3193         local sz=1000
3194
3195         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3196         sync # Flush the cache so that multiop below does not block on cache
3197              # flush when getting the group lock
3198         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3199         MULTIPID=$!
3200
3201         # Since just timed wait is not good enough, let's do a sync write
3202         # that way we are sure enough time for a roundtrip + processing
3203         # passed + 2 seconds of extra margin.
3204         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3205         rm $DIR/${tfile}-1
3206         sleep 2
3207
3208         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3209                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3210                 kill -9 $MULTIPID
3211         fi
3212         wait $MULTIPID
3213         local nsz=`stat -c %s $DIR/$tfile`
3214         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3215 }
3216 run_test 34h "ftruncate file under grouplock should not block"
3217
3218 test_35a() {
3219         cp /bin/sh $DIR/f35a
3220         chmod 444 $DIR/f35a
3221         chown $RUNAS_ID $DIR/f35a
3222         $RUNAS $DIR/f35a && error || true
3223         rm $DIR/f35a
3224 }
3225 run_test 35a "exec file with mode 444 (should return and not leak)"
3226
3227 test_36a() {
3228         rm -f $DIR/f36
3229         utime $DIR/f36 || error "utime failed for MDS"
3230 }
3231 run_test 36a "MDS utime check (mknod, utime)"
3232
3233 test_36b() {
3234         echo "" > $DIR/f36
3235         utime $DIR/f36 || error "utime failed for OST"
3236 }
3237 run_test 36b "OST utime check (open, utime)"
3238
3239 test_36c() {
3240         rm -f $DIR/d36/f36
3241         test_mkdir $DIR/d36
3242         chown $RUNAS_ID $DIR/d36
3243         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3244 }
3245 run_test 36c "non-root MDS utime check (mknod, utime)"
3246
3247 test_36d() {
3248         [ ! -d $DIR/d36 ] && test_36c
3249         echo "" > $DIR/d36/f36
3250         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3251 }
3252 run_test 36d "non-root OST utime check (open, utime)"
3253
3254 test_36e() {
3255         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3256
3257         test_mkdir $DIR/$tdir
3258         touch $DIR/$tdir/$tfile
3259         $RUNAS utime $DIR/$tdir/$tfile &&
3260                 error "utime worked, expected failure" || true
3261 }
3262 run_test 36e "utime on non-owned file (should return error)"
3263
3264 subr_36fh() {
3265         local fl="$1"
3266         local LANG_SAVE=$LANG
3267         local LC_LANG_SAVE=$LC_LANG
3268         export LANG=C LC_LANG=C # for date language
3269
3270         DATESTR="Dec 20  2000"
3271         test_mkdir $DIR/$tdir
3272         lctl set_param fail_loc=$fl
3273         date; date +%s
3274         cp /etc/hosts $DIR/$tdir/$tfile
3275         sync & # write RPC generated with "current" inode timestamp, but delayed
3276         sleep 1
3277         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3278         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3279         cancel_lru_locks osc
3280         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3281         date; date +%s
3282         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3283                 echo "BEFORE: $LS_BEFORE" && \
3284                 echo "AFTER : $LS_AFTER" && \
3285                 echo "WANT  : $DATESTR" && \
3286                 error "$DIR/$tdir/$tfile timestamps changed" || true
3287
3288         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3289 }
3290
3291 test_36f() {
3292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3293
3294         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3295         subr_36fh "0x80000214"
3296 }
3297 run_test 36f "utime on file racing with OST BRW write =========="
3298
3299 test_36g() {
3300         remote_ost_nodsh && skip "remote OST with nodsh"
3301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3302
3303         local fmd_max_age
3304         local fmd_before
3305         local fmd_after
3306
3307         test_mkdir $DIR/$tdir
3308         fmd_max_age=$(do_facet ost1 \
3309                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3310                 head -n 1")
3311
3312         fmd_before=$(do_facet ost1 \
3313                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3314         touch $DIR/$tdir/$tfile
3315         sleep $((fmd_max_age + 12))
3316         fmd_after=$(do_facet ost1 \
3317                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3318
3319         echo "fmd_before: $fmd_before"
3320         echo "fmd_after: $fmd_after"
3321         [[ $fmd_after -gt $fmd_before ]] &&
3322                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3323                 error "fmd didn't expire after ping" || true
3324 }
3325 run_test 36g "filter mod data cache expiry ====================="
3326
3327 test_36h() {
3328         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3329
3330         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3331         subr_36fh "0x80000227"
3332 }
3333 run_test 36h "utime on file racing with OST BRW write =========="
3334
3335 test_36i() {
3336         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3337
3338         test_mkdir $DIR/$tdir
3339         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3340
3341         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3342         local new_mtime=$((mtime + 200))
3343
3344         #change Modify time of striped dir
3345         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3346                         error "change mtime failed"
3347
3348         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3349
3350         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3351 }
3352 run_test 36i "change mtime on striped directory"
3353
3354 # test_37 - duplicate with tests 32q 32r
3355
3356 test_38() {
3357         local file=$DIR/$tfile
3358         touch $file
3359         openfile -f O_DIRECTORY $file
3360         local RC=$?
3361         local ENOTDIR=20
3362         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3363         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3364 }
3365 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3366
3367 test_39a() { # was test_39
3368         touch $DIR/$tfile
3369         touch $DIR/${tfile}2
3370 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3371 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3372 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3373         sleep 2
3374         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3375         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3376                 echo "mtime"
3377                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3378                 echo "atime"
3379                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3380                 echo "ctime"
3381                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3382                 error "O_TRUNC didn't change timestamps"
3383         fi
3384 }
3385 run_test 39a "mtime changed on create"
3386
3387 test_39b() {
3388         test_mkdir -c1 $DIR/$tdir
3389         cp -p /etc/passwd $DIR/$tdir/fopen
3390         cp -p /etc/passwd $DIR/$tdir/flink
3391         cp -p /etc/passwd $DIR/$tdir/funlink
3392         cp -p /etc/passwd $DIR/$tdir/frename
3393         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3394
3395         sleep 1
3396         echo "aaaaaa" >> $DIR/$tdir/fopen
3397         echo "aaaaaa" >> $DIR/$tdir/flink
3398         echo "aaaaaa" >> $DIR/$tdir/funlink
3399         echo "aaaaaa" >> $DIR/$tdir/frename
3400
3401         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3402         local link_new=`stat -c %Y $DIR/$tdir/flink`
3403         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3404         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3405
3406         cat $DIR/$tdir/fopen > /dev/null
3407         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3408         rm -f $DIR/$tdir/funlink2
3409         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3410
3411         for (( i=0; i < 2; i++ )) ; do
3412                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3413                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3414                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3415                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3416
3417                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3418                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3419                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3420                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3421
3422                 cancel_lru_locks osc
3423                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3424         done
3425 }
3426 run_test 39b "mtime change on open, link, unlink, rename  ======"
3427
3428 # this should be set to past
3429 TEST_39_MTIME=`date -d "1 year ago" +%s`
3430
3431 # bug 11063
3432 test_39c() {
3433         touch $DIR1/$tfile
3434         sleep 2
3435         local mtime0=`stat -c %Y $DIR1/$tfile`
3436
3437         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3438         local mtime1=`stat -c %Y $DIR1/$tfile`
3439         [ "$mtime1" = $TEST_39_MTIME ] || \
3440                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3441
3442         local d1=`date +%s`
3443         echo hello >> $DIR1/$tfile
3444         local d2=`date +%s`
3445         local mtime2=`stat -c %Y $DIR1/$tfile`
3446         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3447                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3448
3449         mv $DIR1/$tfile $DIR1/$tfile-1
3450
3451         for (( i=0; i < 2; i++ )) ; do
3452                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3453                 [ "$mtime2" = "$mtime3" ] || \
3454                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3455
3456                 cancel_lru_locks osc
3457                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3458         done
3459 }
3460 run_test 39c "mtime change on rename ==========================="
3461
3462 # bug 21114
3463 test_39d() {
3464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3465
3466         touch $DIR1/$tfile
3467         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3468
3469         for (( i=0; i < 2; i++ )) ; do
3470                 local mtime=`stat -c %Y $DIR1/$tfile`
3471                 [ $mtime = $TEST_39_MTIME ] || \
3472                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3473
3474                 cancel_lru_locks osc
3475                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3476         done
3477 }
3478 run_test 39d "create, utime, stat =============================="
3479
3480 # bug 21114
3481 test_39e() {
3482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3483
3484         touch $DIR1/$tfile
3485         local mtime1=`stat -c %Y $DIR1/$tfile`
3486
3487         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3488
3489         for (( i=0; i < 2; i++ )) ; do
3490                 local mtime2=`stat -c %Y $DIR1/$tfile`
3491                 [ $mtime2 = $TEST_39_MTIME ] || \
3492                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3493
3494                 cancel_lru_locks osc
3495                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3496         done
3497 }
3498 run_test 39e "create, stat, utime, stat ========================"
3499
3500 # bug 21114
3501 test_39f() {
3502         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3503
3504         touch $DIR1/$tfile
3505         mtime1=`stat -c %Y $DIR1/$tfile`
3506
3507         sleep 2
3508         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3509
3510         for (( i=0; i < 2; i++ )) ; do
3511                 local mtime2=`stat -c %Y $DIR1/$tfile`
3512                 [ $mtime2 = $TEST_39_MTIME ] || \
3513                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3514
3515                 cancel_lru_locks osc
3516                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3517         done
3518 }
3519 run_test 39f "create, stat, sleep, utime, stat ================="
3520
3521 # bug 11063
3522 test_39g() {
3523         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3524
3525         echo hello >> $DIR1/$tfile
3526         local mtime1=`stat -c %Y $DIR1/$tfile`
3527
3528         sleep 2
3529         chmod o+r $DIR1/$tfile
3530
3531         for (( i=0; i < 2; i++ )) ; do
3532                 local mtime2=`stat -c %Y $DIR1/$tfile`
3533                 [ "$mtime1" = "$mtime2" ] || \
3534                         error "lost mtime: $mtime2, should be $mtime1"
3535
3536                 cancel_lru_locks osc
3537                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3538         done
3539 }
3540 run_test 39g "write, chmod, stat ==============================="
3541
3542 # bug 11063
3543 test_39h() {
3544         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3545
3546         touch $DIR1/$tfile
3547         sleep 1
3548
3549         local d1=`date`
3550         echo hello >> $DIR1/$tfile
3551         local mtime1=`stat -c %Y $DIR1/$tfile`
3552
3553         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3554         local d2=`date`
3555         if [ "$d1" != "$d2" ]; then
3556                 echo "write and touch not within one second"
3557         else
3558                 for (( i=0; i < 2; i++ )) ; do
3559                         local mtime2=`stat -c %Y $DIR1/$tfile`
3560                         [ "$mtime2" = $TEST_39_MTIME ] || \
3561                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3562
3563                         cancel_lru_locks osc
3564                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3565                 done
3566         fi
3567 }
3568 run_test 39h "write, utime within one second, stat ============="
3569
3570 test_39i() {
3571         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3572
3573         touch $DIR1/$tfile
3574         sleep 1
3575
3576         echo hello >> $DIR1/$tfile
3577         local mtime1=`stat -c %Y $DIR1/$tfile`
3578
3579         mv $DIR1/$tfile $DIR1/$tfile-1
3580
3581         for (( i=0; i < 2; i++ )) ; do
3582                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3583
3584                 [ "$mtime1" = "$mtime2" ] || \
3585                         error "lost mtime: $mtime2, should be $mtime1"
3586
3587                 cancel_lru_locks osc
3588                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3589         done
3590 }
3591 run_test 39i "write, rename, stat =============================="
3592
3593 test_39j() {
3594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3595
3596         start_full_debug_logging
3597         touch $DIR1/$tfile
3598         sleep 1
3599
3600         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3601         lctl set_param fail_loc=0x80000412
3602         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3603                 error "multiop failed"
3604         local multipid=$!
3605         local mtime1=`stat -c %Y $DIR1/$tfile`
3606
3607         mv $DIR1/$tfile $DIR1/$tfile-1
3608
3609         kill -USR1 $multipid
3610         wait $multipid || error "multiop close failed"
3611
3612         for (( i=0; i < 2; i++ )) ; do
3613                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3614                 [ "$mtime1" = "$mtime2" ] ||
3615                         error "mtime is lost on close: $mtime2, " \
3616                               "should be $mtime1"
3617
3618                 cancel_lru_locks osc
3619                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3620         done
3621         lctl set_param fail_loc=0
3622         stop_full_debug_logging
3623 }
3624 run_test 39j "write, rename, close, stat ======================="
3625
3626 test_39k() {
3627         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3628
3629         touch $DIR1/$tfile
3630         sleep 1
3631
3632         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3633         local multipid=$!
3634         local mtime1=`stat -c %Y $DIR1/$tfile`
3635
3636         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3637
3638         kill -USR1 $multipid
3639         wait $multipid || error "multiop close failed"
3640
3641         for (( i=0; i < 2; i++ )) ; do
3642                 local mtime2=`stat -c %Y $DIR1/$tfile`
3643
3644                 [ "$mtime2" = $TEST_39_MTIME ] || \
3645                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3646
3647                 cancel_lru_locks osc
3648                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3649         done
3650 }
3651 run_test 39k "write, utime, close, stat ========================"
3652
3653 # this should be set to future
3654 TEST_39_ATIME=`date -d "1 year" +%s`
3655
3656 test_39l() {
3657         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3658         remote_mds_nodsh && skip "remote MDS with nodsh"
3659
3660         local atime_diff=$(do_facet $SINGLEMDS \
3661                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3662         rm -rf $DIR/$tdir
3663         mkdir -p $DIR/$tdir
3664
3665         # test setting directory atime to future
3666         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3667         local atime=$(stat -c %X $DIR/$tdir)
3668         [ "$atime" = $TEST_39_ATIME ] ||
3669                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3670
3671         # test setting directory atime from future to now
3672         local now=$(date +%s)
3673         touch -a -d @$now $DIR/$tdir
3674
3675         atime=$(stat -c %X $DIR/$tdir)
3676         [ "$atime" -eq "$now"  ] ||
3677                 error "atime is not updated from future: $atime, $now"
3678
3679         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3680         sleep 3
3681
3682         # test setting directory atime when now > dir atime + atime_diff
3683         local d1=$(date +%s)
3684         ls $DIR/$tdir
3685         local d2=$(date +%s)
3686         cancel_lru_locks mdc
3687         atime=$(stat -c %X $DIR/$tdir)
3688         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3689                 error "atime is not updated  : $atime, should be $d2"
3690
3691         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3692         sleep 3
3693
3694         # test not setting directory atime when now < dir atime + atime_diff
3695         ls $DIR/$tdir
3696         cancel_lru_locks mdc
3697         atime=$(stat -c %X $DIR/$tdir)
3698         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3699                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3700
3701         do_facet $SINGLEMDS \
3702                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3703 }
3704 run_test 39l "directory atime update ==========================="
3705
3706 test_39m() {
3707         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3708
3709         touch $DIR1/$tfile
3710         sleep 2
3711         local far_past_mtime=$(date -d "May 29 1953" +%s)
3712         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3713
3714         touch -m -d @$far_past_mtime $DIR1/$tfile
3715         touch -a -d @$far_past_atime $DIR1/$tfile
3716
3717         for (( i=0; i < 2; i++ )) ; do
3718                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3719                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3720                         error "atime or mtime set incorrectly"
3721
3722                 cancel_lru_locks osc
3723                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3724         done
3725 }
3726 run_test 39m "test atime and mtime before 1970"
3727
3728 test_39n() { # LU-3832
3729         remote_mds_nodsh && skip "remote MDS with nodsh"
3730
3731         local atime_diff=$(do_facet $SINGLEMDS \
3732                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3733         local atime0
3734         local atime1
3735         local atime2
3736
3737         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3738
3739         rm -rf $DIR/$tfile
3740         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3741         atime0=$(stat -c %X $DIR/$tfile)
3742
3743         sleep 5
3744         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3745         atime1=$(stat -c %X $DIR/$tfile)
3746
3747         sleep 5
3748         cancel_lru_locks mdc
3749         cancel_lru_locks osc
3750         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3751         atime2=$(stat -c %X $DIR/$tfile)
3752
3753         do_facet $SINGLEMDS \
3754                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3755
3756         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3757         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3758 }
3759 run_test 39n "check that O_NOATIME is honored"
3760
3761 test_39o() {
3762         TESTDIR=$DIR/$tdir/$tfile
3763         [ -e $TESTDIR ] && rm -rf $TESTDIR
3764         mkdir -p $TESTDIR
3765         cd $TESTDIR
3766         links1=2
3767         ls
3768         mkdir a b
3769         ls
3770         links2=$(stat -c %h .)
3771         [ $(($links1 + 2)) != $links2 ] &&
3772                 error "wrong links count $(($links1 + 2)) != $links2"
3773         rmdir b
3774         links3=$(stat -c %h .)
3775         [ $(($links1 + 1)) != $links3 ] &&
3776                 error "wrong links count $links1 != $links3"
3777         return 0
3778 }
3779 run_test 39o "directory cached attributes updated after create"
3780
3781 test_39p() {
3782         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3783
3784         local MDTIDX=1
3785         TESTDIR=$DIR/$tdir/$tdir
3786         [ -e $TESTDIR ] && rm -rf $TESTDIR
3787         test_mkdir -p $TESTDIR
3788         cd $TESTDIR
3789         links1=2
3790         ls
3791         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3792         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3793         ls
3794         links2=$(stat -c %h .)
3795         [ $(($links1 + 2)) != $links2 ] &&
3796                 error "wrong links count $(($links1 + 2)) != $links2"
3797         rmdir remote_dir2
3798         links3=$(stat -c %h .)
3799         [ $(($links1 + 1)) != $links3 ] &&
3800                 error "wrong links count $links1 != $links3"
3801         return 0
3802 }
3803 run_test 39p "remote directory cached attributes updated after create ========"
3804
3805
3806 test_39q() { # LU-8041
3807         local testdir=$DIR/$tdir
3808         mkdir -p $testdir
3809         multiop_bg_pause $testdir D_c || error "multiop failed"
3810         local multipid=$!
3811         cancel_lru_locks mdc
3812         kill -USR1 $multipid
3813         local atime=$(stat -c %X $testdir)
3814         [ "$atime" -ne 0 ] || error "atime is zero"
3815 }
3816 run_test 39q "close won't zero out atime"
3817
3818 test_40() {
3819         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3820         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3821                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3822         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3823                 error "$tfile is not 4096 bytes in size"
3824 }
3825 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3826
3827 test_41() {
3828         # bug 1553
3829         small_write $DIR/f41 18
3830 }
3831 run_test 41 "test small file write + fstat ====================="
3832
3833 count_ost_writes() {
3834         lctl get_param -n ${OSC}.*.stats |
3835                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3836                         END { printf("%0.0f", writes) }'
3837 }
3838
3839 # decent default
3840 WRITEBACK_SAVE=500
3841 DIRTY_RATIO_SAVE=40
3842 MAX_DIRTY_RATIO=50
3843 BG_DIRTY_RATIO_SAVE=10
3844 MAX_BG_DIRTY_RATIO=25
3845
3846 start_writeback() {
3847         trap 0
3848         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3849         # dirty_ratio, dirty_background_ratio
3850         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3851                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3852                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3853                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3854         else
3855                 # if file not here, we are a 2.4 kernel
3856                 kill -CONT `pidof kupdated`
3857         fi
3858 }
3859
3860 stop_writeback() {
3861         # setup the trap first, so someone cannot exit the test at the
3862         # exact wrong time and mess up a machine
3863         trap start_writeback EXIT
3864         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3865         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3866                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3867                 sysctl -w vm.dirty_writeback_centisecs=0
3868                 sysctl -w vm.dirty_writeback_centisecs=0
3869                 # save and increase /proc/sys/vm/dirty_ratio
3870                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3871                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3872                 # save and increase /proc/sys/vm/dirty_background_ratio
3873                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3874                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3875         else
3876                 # if file not here, we are a 2.4 kernel
3877                 kill -STOP `pidof kupdated`
3878         fi
3879 }
3880
3881 # ensure that all stripes have some grant before we test client-side cache
3882 setup_test42() {
3883         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3884                 dd if=/dev/zero of=$i bs=4k count=1
3885                 rm $i
3886         done
3887 }
3888
3889 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3890 # file truncation, and file removal.
3891 test_42a() {
3892         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3893
3894         setup_test42
3895         cancel_lru_locks $OSC
3896         stop_writeback
3897         sync; sleep 1; sync # just to be safe
3898         BEFOREWRITES=`count_ost_writes`
3899         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3900         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3901         AFTERWRITES=`count_ost_writes`
3902         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3903                 error "$BEFOREWRITES < $AFTERWRITES"
3904         start_writeback
3905 }
3906 run_test 42a "ensure that we don't flush on close"
3907
3908 test_42b() {
3909         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3910
3911         setup_test42
3912         cancel_lru_locks $OSC
3913         stop_writeback
3914         sync
3915         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3916         BEFOREWRITES=$(count_ost_writes)
3917         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3918         AFTERWRITES=$(count_ost_writes)
3919         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3920                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3921         fi
3922         BEFOREWRITES=$(count_ost_writes)
3923         sync || error "sync: $?"
3924         AFTERWRITES=$(count_ost_writes)
3925         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3926                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3927         fi
3928         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3929         start_writeback
3930         return 0
3931 }
3932 run_test 42b "test destroy of file with cached dirty data ======"
3933
3934 # if these tests just want to test the effect of truncation,
3935 # they have to be very careful.  consider:
3936 # - the first open gets a {0,EOF}PR lock
3937 # - the first write conflicts and gets a {0, count-1}PW
3938 # - the rest of the writes are under {count,EOF}PW
3939 # - the open for truncate tries to match a {0,EOF}PR
3940 #   for the filesize and cancels the PWs.
3941 # any number of fixes (don't get {0,EOF} on open, match
3942 # composite locks, do smarter file size management) fix
3943 # this, but for now we want these tests to verify that
3944 # the cancellation with truncate intent works, so we
3945 # start the file with a full-file pw lock to match against
3946 # until the truncate.
3947 trunc_test() {
3948         test=$1
3949         file=$DIR/$test
3950         offset=$2
3951         cancel_lru_locks $OSC
3952         stop_writeback
3953         # prime the file with 0,EOF PW to match
3954         touch $file
3955         $TRUNCATE $file 0
3956         sync; sync
3957         # now the real test..
3958         dd if=/dev/zero of=$file bs=1024 count=100
3959         BEFOREWRITES=`count_ost_writes`
3960         $TRUNCATE $file $offset
3961         cancel_lru_locks $OSC
3962         AFTERWRITES=`count_ost_writes`
3963         start_writeback
3964 }
3965
3966 test_42c() {
3967         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3968
3969         trunc_test 42c 1024
3970         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3971                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3972         rm $file
3973 }
3974 run_test 42c "test partial truncate of file with cached dirty data"
3975
3976 test_42d() {
3977         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3978
3979         trunc_test 42d 0
3980         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
3981                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3982         rm $file
3983 }
3984 run_test 42d "test complete truncate of file with cached dirty data"
3985
3986 test_42e() { # bug22074
3987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3988
3989         local TDIR=$DIR/${tdir}e
3990         local pages=16 # hardcoded 16 pages, don't change it.
3991         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3992         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3993         local max_dirty_mb
3994         local warmup_files
3995
3996         test_mkdir $DIR/${tdir}e
3997         $SETSTRIPE -c 1 $TDIR
3998         createmany -o $TDIR/f $files
3999
4000         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4001
4002         # we assume that with $OSTCOUNT files, at least one of them will
4003         # be allocated on OST0.
4004         warmup_files=$((OSTCOUNT * max_dirty_mb))
4005         createmany -o $TDIR/w $warmup_files
4006
4007         # write a large amount of data into one file and sync, to get good
4008         # avail_grant number from OST.
4009         for ((i=0; i<$warmup_files; i++)); do
4010                 idx=$($GETSTRIPE -i $TDIR/w$i)
4011                 [ $idx -ne 0 ] && continue
4012                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4013                 break
4014         done
4015         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4016         sync
4017         $LCTL get_param $proc_osc0/cur_dirty_bytes
4018         $LCTL get_param $proc_osc0/cur_grant_bytes
4019
4020         # create as much dirty pages as we can while not to trigger the actual
4021         # RPCs directly. but depends on the env, VFS may trigger flush during this
4022         # period, hopefully we are good.
4023         for ((i=0; i<$warmup_files; i++)); do
4024                 idx=$($GETSTRIPE -i $TDIR/w$i)
4025                 [ $idx -ne 0 ] && continue
4026                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4027         done
4028         $LCTL get_param $proc_osc0/cur_dirty_bytes
4029         $LCTL get_param $proc_osc0/cur_grant_bytes
4030
4031         # perform the real test
4032         $LCTL set_param $proc_osc0/rpc_stats 0
4033         for ((;i<$files; i++)); do
4034                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4035                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4036         done
4037         sync
4038         $LCTL get_param $proc_osc0/rpc_stats
4039
4040         local percent=0
4041         local have_ppr=false
4042         $LCTL get_param $proc_osc0/rpc_stats |
4043                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4044                         # skip lines until we are at the RPC histogram data
4045                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4046                         $have_ppr || continue
4047
4048                         # we only want the percent stat for < 16 pages
4049                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4050
4051                         percent=$((percent + WPCT))
4052                         if [[ $percent -gt 15 ]]; then
4053                                 error "less than 16-pages write RPCs" \
4054                                       "$percent% > 15%"
4055                                 break
4056                         fi
4057                 done
4058         rm -rf $TDIR
4059 }
4060 run_test 42e "verify sub-RPC writes are not done synchronously"
4061
4062 test_43A() { # was test_43
4063         test_mkdir $DIR/$tdir
4064         cp -p /bin/ls $DIR/$tdir/$tfile
4065         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4066         pid=$!
4067         # give multiop a chance to open
4068         sleep 1
4069
4070         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4071         kill -USR1 $pid
4072 }
4073 run_test 43A "execution of file opened for write should return -ETXTBSY"
4074
4075 test_43a() {
4076         test_mkdir $DIR/$tdir
4077         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4078                 cp -p multiop $DIR/$tdir/multiop
4079         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4080                 error "multiop open $TMP/$tfile.junk failed"
4081         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4082         MULTIOP_PID=$!
4083         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4084         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4085         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4086 }
4087 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4088
4089 test_43b() {
4090         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4091
4092         test_mkdir $DIR/$tdir
4093         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4094                 cp -p multiop $DIR/$tdir/multiop
4095         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4096                 error "multiop open $TMP/$tfile.junk failed"
4097         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4098         MULTIOP_PID=$!
4099         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4100         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4101         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4102 }
4103 run_test 43b "truncate of file being executed should return -ETXTBSY"
4104
4105 test_43c() {
4106         local testdir="$DIR/$tdir"
4107         test_mkdir $testdir
4108         cp $SHELL $testdir/
4109         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4110                 ( cd $testdir && md5sum -c )
4111 }
4112 run_test 43c "md5sum of copy into lustre"
4113
4114 test_44A() { # was test_44
4115         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4116
4117         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4118         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4119 }
4120 run_test 44A "zero length read from a sparse stripe"
4121
4122 test_44a() {
4123         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4124                 awk '{ print $2 }')
4125         [ -z "$nstripe" ] && skip "can't get stripe info"
4126         [[ $nstripe -gt $OSTCOUNT ]] &&
4127                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4128
4129         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4130                 awk '{ print $2 }')
4131         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4132                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4133                         awk '{ print $2 }')
4134         fi
4135
4136         OFFSETS="0 $((stride/2)) $((stride-1))"
4137         for offset in $OFFSETS; do
4138                 for i in $(seq 0 $((nstripe-1))); do
4139                         local GLOBALOFFSETS=""
4140                         # size in Bytes
4141                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4142                         local myfn=$DIR/d44a-$size
4143                         echo "--------writing $myfn at $size"
4144                         ll_sparseness_write $myfn $size ||
4145                                 error "ll_sparseness_write"
4146                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4147                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4148                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4149
4150                         for j in $(seq 0 $((nstripe-1))); do
4151                                 # size in Bytes
4152                                 size=$((((j + $nstripe )*$stride + $offset)))
4153                                 ll_sparseness_write $myfn $size ||
4154                                         error "ll_sparseness_write"
4155                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4156                         done
4157                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4158                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4159                         rm -f $myfn
4160                 done
4161         done
4162 }
4163 run_test 44a "test sparse pwrite ==============================="
4164
4165 dirty_osc_total() {
4166         tot=0
4167         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4168                 tot=$(($tot + $d))
4169         done
4170         echo $tot
4171 }
4172 do_dirty_record() {
4173         before=`dirty_osc_total`
4174         echo executing "\"$*\""
4175         eval $*
4176         after=`dirty_osc_total`
4177         echo before $before, after $after
4178 }
4179 test_45() {
4180         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4181
4182         f="$DIR/f45"
4183         # Obtain grants from OST if it supports it
4184         echo blah > ${f}_grant
4185         stop_writeback
4186         sync
4187         do_dirty_record "echo blah > $f"
4188         [[ $before -eq $after ]] && error "write wasn't cached"
4189         do_dirty_record "> $f"
4190         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4191         do_dirty_record "echo blah > $f"
4192         [[ $before -eq $after ]] && error "write wasn't cached"
4193         do_dirty_record "sync"
4194         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4195         do_dirty_record "echo blah > $f"
4196         [[ $before -eq $after ]] && error "write wasn't cached"
4197         do_dirty_record "cancel_lru_locks osc"
4198         [[ $before -gt $after ]] ||
4199                 error "lock cancellation didn't lower dirty count"
4200         start_writeback
4201 }
4202 run_test 45 "osc io page accounting ============================"
4203
4204 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4205 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4206 # objects offset and an assert hit when an rpc was built with 1023's mapped
4207 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4208 test_46() {
4209         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4210
4211         f="$DIR/f46"
4212         stop_writeback
4213         sync
4214         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4215         sync
4216         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4217         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4218         sync
4219         start_writeback
4220 }
4221 run_test 46 "dirtying a previously written page ================"
4222
4223 # test_47 is removed "Device nodes check" is moved to test_28
4224
4225 test_48a() { # bug 2399
4226         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
4227         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
4228                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4229
4230         test_mkdir $DIR/$tdir
4231         cd $DIR/$tdir
4232         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4233         test_mkdir $DIR/$tdir
4234         touch foo || error "'touch foo' failed after recreating cwd"
4235         test_mkdir bar
4236         touch .foo || error "'touch .foo' failed after recreating cwd"
4237         test_mkdir .bar
4238         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4239         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4240         cd . || error "'cd .' failed after recreating cwd"
4241         mkdir . && error "'mkdir .' worked after recreating cwd"
4242         rmdir . && error "'rmdir .' worked after recreating cwd"
4243         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4244         cd .. || error "'cd ..' failed after recreating cwd"
4245 }
4246 run_test 48a "Access renamed working dir (should return errors)="
4247
4248 test_48b() { # bug 2399
4249         rm -rf $DIR/$tdir
4250         test_mkdir $DIR/$tdir
4251         cd $DIR/$tdir
4252         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4253         touch foo && error "'touch foo' worked after removing cwd"
4254         mkdir foo && error "'mkdir foo' worked after removing cwd"
4255         touch .foo && error "'touch .foo' worked after removing cwd"
4256         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4257         ls . > /dev/null && error "'ls .' worked after removing cwd"
4258         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4259         mkdir . && error "'mkdir .' worked after removing cwd"
4260         rmdir . && error "'rmdir .' worked after removing cwd"
4261         ln -s . foo && error "'ln -s .' worked after removing cwd"
4262         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4263 }
4264 run_test 48b "Access removed working dir (should return errors)="
4265
4266 test_48c() { # bug 2350
4267         #lctl set_param debug=-1
4268         #set -vx
4269         rm -rf $DIR/$tdir
4270         test_mkdir -p $DIR/$tdir/dir
4271         cd $DIR/$tdir/dir
4272         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4273         $TRACE touch foo && error "touch foo worked after removing cwd"
4274         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4275         touch .foo && error "touch .foo worked after removing cwd"
4276         mkdir .foo && error "mkdir .foo worked after removing cwd"
4277         $TRACE ls . && error "'ls .' worked after removing cwd"
4278         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4279         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4280         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4281         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4282         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4283 }
4284 run_test 48c "Access removed working subdir (should return errors)"
4285
4286 test_48d() { # bug 2350
4287         #lctl set_param debug=-1
4288         #set -vx
4289         rm -rf $DIR/$tdir
4290         test_mkdir -p $DIR/$tdir/dir
4291         cd $DIR/$tdir/dir
4292         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4293         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4294         $TRACE touch foo && error "'touch foo' worked after removing parent"
4295         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4296         touch .foo && error "'touch .foo' worked after removing parent"
4297         mkdir .foo && error "mkdir .foo worked after removing parent"
4298         $TRACE ls . && error "'ls .' worked after removing parent"
4299         $TRACE ls .. && error "'ls ..' worked after removing parent"
4300         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4301         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4302         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4303         true
4304 }
4305 run_test 48d "Access removed parent subdir (should return errors)"
4306
4307 test_48e() { # bug 4134
4308         #lctl set_param debug=-1
4309         #set -vx
4310         rm -rf $DIR/$tdir
4311         test_mkdir -p $DIR/$tdir/dir
4312         cd $DIR/$tdir/dir
4313         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4314         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4315         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4316         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4317         # On a buggy kernel addition of "touch foo" after cd .. will
4318         # produce kernel oops in lookup_hash_it
4319         touch ../foo && error "'cd ..' worked after recreate parent"
4320         cd $DIR
4321         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4322 }
4323 run_test 48e "Access to recreated parent subdir (should return errors)"
4324
4325 test_49() { # LU-1030
4326         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4327         remote_ost_nodsh && skip "remote OST with nodsh"
4328
4329         # get ost1 size - lustre-OST0000
4330         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4331                 awk '{ print $4 }')
4332         # write 800M at maximum
4333         [[ $ost1_size -lt 2 ]] && ost1_size=2
4334         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4335
4336         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4337         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4338         local dd_pid=$!
4339
4340         # change max_pages_per_rpc while writing the file
4341         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4342         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4343         # loop until dd process exits
4344         while ps ax -opid | grep -wq $dd_pid; do
4345                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4346                 sleep $((RANDOM % 5 + 1))
4347         done
4348         # restore original max_pages_per_rpc
4349         $LCTL set_param $osc1_mppc=$orig_mppc
4350         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4351 }
4352 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4353
4354 test_50() {
4355         # bug 1485
4356         test_mkdir $DIR/$tdir
4357         cd $DIR/$tdir
4358         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4359 }
4360 run_test 50 "special situations: /proc symlinks  ==============="
4361
4362 test_51a() {    # was test_51
4363         # bug 1516 - create an empty entry right after ".." then split dir
4364         test_mkdir -c1 $DIR/$tdir
4365         touch $DIR/$tdir/foo
4366         $MCREATE $DIR/$tdir/bar
4367         rm $DIR/$tdir/foo
4368         createmany -m $DIR/$tdir/longfile 201
4369         FNUM=202
4370         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4371                 $MCREATE $DIR/$tdir/longfile$FNUM
4372                 FNUM=$(($FNUM + 1))
4373                 echo -n "+"
4374         done
4375         echo
4376         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4377 }
4378 run_test 51a "special situations: split htree with empty entry =="
4379
4380 cleanup_print_lfs_df () {
4381         trap 0
4382         $LFS df
4383         $LFS df -i
4384 }
4385
4386 test_51b() {
4387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4388
4389         local dir=$DIR/$tdir
4390         local nrdirs=$((65536 + 100))
4391
4392         # cleanup the directory
4393         rm -fr $dir
4394
4395         test_mkdir -c1 $dir
4396
4397         $LFS df
4398         $LFS df -i
4399         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4400         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4401         [[ $numfree -lt $nrdirs ]] &&
4402                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4403
4404         # need to check free space for the directories as well
4405         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4406         numfree=$(( blkfree / $(fs_inode_ksize) ))
4407         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4408
4409         trap cleanup_print_lfs_df EXIT
4410
4411         # create files
4412         createmany -d $dir/d $nrdirs || {
4413                 unlinkmany $dir/d $nrdirs
4414                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4415         }
4416
4417         # really created :
4418         nrdirs=$(ls -U $dir | wc -l)
4419
4420         # unlink all but 100 subdirectories, then check it still works
4421         local left=100
4422         local delete=$((nrdirs - left))
4423
4424         $LFS df
4425         $LFS df -i
4426
4427         # for ldiskfs the nlink count should be 1, but this is OSD specific
4428         # and so this is listed for informational purposes only
4429         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4430         unlinkmany -d $dir/d $delete ||
4431                 error "unlink of first $delete subdirs failed"
4432
4433         echo "nlink between: $(stat -c %h $dir)"
4434         local found=$(ls -U $dir | wc -l)
4435         [ $found -ne $left ] &&
4436                 error "can't find subdirs: found only $found, expected $left"
4437
4438         unlinkmany -d $dir/d $delete $left ||
4439                 error "unlink of second $left subdirs failed"
4440         # regardless of whether the backing filesystem tracks nlink accurately
4441         # or not, the nlink count shouldn't be more than "." and ".." here
4442         local after=$(stat -c %h $dir)
4443         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4444                 echo "nlink after: $after"
4445
4446         cleanup_print_lfs_df
4447 }
4448 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4449
4450 test_51d() {
4451         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4452         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4453
4454         test_mkdir $DIR/$tdir
4455         createmany -o $DIR/$tdir/t- 1000
4456         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4457         for N in $(seq 0 $((OSTCOUNT - 1))); do
4458                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4459                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4460                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4461                         '($1 == '$N') { objs += 1 } \
4462                         END { printf("%0.0f", objs) }')
4463                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4464         done
4465         unlinkmany $DIR/$tdir/t- 1000
4466
4467         NLAST=0
4468         for N in $(seq 1 $((OSTCOUNT - 1))); do
4469                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4470                         error "OST $N has less objects vs OST $NLAST" \
4471                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4472                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4473                         error "OST $N has less objects vs OST $NLAST" \
4474                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4475
4476                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4477                         error "OST $N has less #0 objects vs OST $NLAST" \
4478                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4479                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4480                         error "OST $N has less #0 objects vs OST $NLAST" \
4481                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4482                 NLAST=$N
4483         done
4484         rm -f $TMP/$tfile
4485 }
4486 run_test 51d "check object distribution"
4487
4488 test_51e() {
4489         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4490                 skip_env "ldiskfs only test"
4491         fi
4492
4493         test_mkdir -c1 $DIR/$tdir
4494         test_mkdir -c1 $DIR/$tdir/d0
4495
4496         touch $DIR/$tdir/d0/foo
4497         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4498                 error "file exceed 65000 nlink limit!"
4499         unlinkmany $DIR/$tdir/d0/f- 65001
4500         return 0
4501 }
4502 run_test 51e "check file nlink limit"
4503
4504 test_51f() {
4505         test_mkdir $DIR/$tdir
4506
4507         local max=100000
4508         local ulimit_old=$(ulimit -n)
4509         local spare=20 # number of spare fd's for scripts/libraries, etc.
4510         local mdt=$($LFS getstripe -m $DIR/$tdir)
4511         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4512
4513         echo "MDT$mdt numfree=$numfree, max=$max"
4514         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4515         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4516                 while ! ulimit -n $((numfree + spare)); do
4517                         numfree=$((numfree * 3 / 4))
4518                 done
4519                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4520         else
4521                 echo "left ulimit at $ulimit_old"
4522         fi
4523
4524         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4525                 unlinkmany $DIR/$tdir/f $numfree
4526                 error "create+open $numfree files in $DIR/$tdir failed"
4527         }
4528         ulimit -n $ulimit_old
4529
4530         # if createmany exits at 120s there will be fewer than $numfree files
4531         unlinkmany $DIR/$tdir/f $numfree || true
4532 }
4533 run_test 51f "check many open files limit"
4534
4535 test_52a() {
4536         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4537         test_mkdir $DIR/$tdir
4538         touch $DIR/$tdir/foo
4539         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4540         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4541         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4542         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4543         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4544                                         error "link worked"
4545         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4546         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4547         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4548                                                      error "lsattr"
4549         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4550         cp -r $DIR/$tdir $TMP/
4551         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4552 }
4553 run_test 52a "append-only flag test (should return errors)"
4554
4555 test_52b() {
4556         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4557         test_mkdir $DIR/$tdir
4558         touch $DIR/$tdir/foo
4559         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4560         cat test > $DIR/$tdir/foo && error "cat test worked"
4561         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4562         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4563         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4564                                         error "link worked"
4565         echo foo >> $DIR/$tdir/foo && error "echo worked"
4566         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4567         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4568         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4569         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4570                                                         error "lsattr"
4571         chattr -i $DIR/$tdir/foo || error "chattr failed"
4572
4573         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4574 }
4575 run_test 52b "immutable flag test (should return errors) ======="
4576
4577 test_53() {
4578         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4579         remote_mds_nodsh && skip "remote MDS with nodsh"
4580         remote_ost_nodsh && skip "remote OST with nodsh"
4581
4582         local param
4583         local param_seq
4584         local ostname
4585         local mds_last
4586         local mds_last_seq
4587         local ost_last
4588         local ost_last_seq
4589         local ost_last_id
4590         local ostnum
4591         local node
4592         local found=false
4593         local support_last_seq=true
4594
4595         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4596                 support_last_seq=false
4597
4598         # only test MDT0000
4599         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4600         local value
4601         for value in $(do_facet $SINGLEMDS \
4602                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4603                 param=$(echo ${value[0]} | cut -d "=" -f1)
4604                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4605
4606                 if $support_last_seq; then
4607                         param_seq=$(echo $param |
4608                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4609                         mds_last_seq=$(do_facet $SINGLEMDS \
4610                                        $LCTL get_param -n $param_seq)
4611                 fi
4612                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4613
4614                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4615                 node=$(facet_active_host ost$((ostnum+1)))
4616                 param="obdfilter.$ostname.last_id"
4617                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4618                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4619                         ost_last_id=$ost_last
4620
4621                         if $support_last_seq; then
4622                                 ost_last_id=$(echo $ost_last |
4623                                               awk -F':' '{print $2}' |
4624                                               sed -e "s/^0x//g")
4625                                 ost_last_seq=$(echo $ost_last |
4626                                                awk -F':' '{print $1}')
4627                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4628                         fi
4629
4630                         if [[ $ost_last_id != $mds_last ]]; then
4631                                 error "$ost_last_id != $mds_last"
4632                         else
4633                                 found=true
4634                                 break
4635                         fi
4636                 done
4637         done
4638         $found || error "can not match last_seq/last_id for $mdtosc"
4639         return 0
4640 }
4641 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4642
4643 test_54a() {
4644         perl -MSocket -e ';' || skip "no Socket perl module installed"
4645
4646         $SOCKETSERVER $DIR/socket ||
4647                 error "$SOCKETSERVER $DIR/socket failed: $?"
4648         $SOCKETCLIENT $DIR/socket ||
4649                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4650         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4651 }
4652 run_test 54a "unix domain socket test =========================="
4653
4654 test_54b() {
4655         f="$DIR/f54b"
4656         mknod $f c 1 3
4657         chmod 0666 $f
4658         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4659 }
4660 run_test 54b "char device works in lustre ======================"
4661
4662 find_loop_dev() {
4663         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4664         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4665         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4666
4667         for i in $(seq 3 7); do
4668                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4669                 LOOPDEV=$LOOPBASE$i
4670                 LOOPNUM=$i
4671                 break
4672         done
4673 }
4674
4675 cleanup_54c() {
4676         local rc=0
4677         loopdev="$DIR/loop54c"
4678
4679         trap 0
4680         $UMOUNT $DIR/$tdir || rc=$?
4681         losetup -d $loopdev || true
4682         losetup -d $LOOPDEV || true
4683         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4684         return $rc
4685 }
4686
4687 test_54c() {
4688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4689
4690         loopdev="$DIR/loop54c"
4691
4692         find_loop_dev
4693         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4694         trap cleanup_54c EXIT
4695         mknod $loopdev b 7 $LOOPNUM
4696         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4697         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4698         losetup $loopdev $DIR/$tfile ||
4699                 error "can't set up $loopdev for $DIR/$tfile"
4700         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4701         test_mkdir $DIR/$tdir
4702         mount -t ext2 $loopdev $DIR/$tdir ||
4703                 error "error mounting $loopdev on $DIR/$tdir"
4704         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4705                 error "dd write"
4706         df $DIR/$tdir
4707         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4708                 error "dd read"
4709         cleanup_54c
4710 }
4711 run_test 54c "block device works in lustre ====================="
4712
4713 test_54d() {
4714         f="$DIR/f54d"
4715         string="aaaaaa"
4716         mknod $f p
4717         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4718 }
4719 run_test 54d "fifo device works in lustre ======================"
4720
4721 test_54e() {
4722         f="$DIR/f54e"
4723         string="aaaaaa"
4724         cp -aL /dev/console $f
4725         echo $string > $f || error "echo $string to $f failed"
4726 }
4727 run_test 54e "console/tty device works in lustre ======================"
4728
4729 test_56a() {
4730         local numfiles=3
4731         local dir=$DIR/$tdir
4732
4733         rm -rf $dir
4734         test_mkdir -p $dir/dir
4735         for i in $(seq $numfiles); do
4736                 touch $dir/file$i
4737                 touch $dir/dir/file$i
4738         done
4739
4740         local numcomp=$($LFS getstripe --component-count $dir)
4741
4742         [[ $numcomp == 0 ]] && numcomp=1
4743
4744         # test lfs getstripe with --recursive
4745         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4746
4747         [[ $filenum -eq $((numfiles * 2)) ]] ||
4748                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4749         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4750         [[ $filenum -eq $numfiles ]] ||
4751                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4752         echo "$LFS getstripe showed obdidx or l_ost_idx"
4753
4754         # test lfs getstripe with file instead of dir
4755         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4756         [[ $filenum -eq 1 ]] ||
4757                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4758         echo "$LFS getstripe file1 passed"
4759
4760         #test lfs getstripe with --verbose
4761         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4762         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4763                 error "$LFS getstripe --verbose $dir: "\
4764                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4765         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4766                 error "$LFS getstripe $dir: showed lmm_magic"
4767
4768         #test lfs getstripe with -v prints lmm_fid
4769         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4770         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4771                 error "$LFS getstripe -v $dir: "\
4772                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4773         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4774                 error "$LFS getstripe $dir: showed lmm_fid by default"
4775         echo "$LFS getstripe --verbose passed"
4776
4777         #check for FID information
4778         local fid1=$($LFS getstripe --fid $dir/file1)
4779         local fid2=$($LFS getstripe --verbose $dir/file1 |
4780                      awk '/lmm_fid: / { print $2; exit; }')
4781         local fid3=$($LFS path2fid $dir/file1)
4782
4783         [ "$fid1" != "$fid2" ] &&
4784                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4785         [ "$fid1" != "$fid3" ] &&
4786                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4787         echo "$LFS getstripe --fid passed"
4788
4789         #test lfs getstripe with --obd
4790         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4791                 error "$LFS getstripe --obd wrong_uuid: should return error"
4792
4793         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4794
4795         local ostidx=1
4796         local obduuid=$(ostuuid_from_index $ostidx)
4797         local found=$($LFS getstripe -r --obd $obduuid $dir |
4798                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4799
4800         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4801         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4802                 ((filenum--))
4803         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4804                 ((filenum--))
4805
4806         [[ $found -eq $filenum ]] ||
4807                 error "$LFS getstripe --obd: found $found expect $filenum"
4808         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4809                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4810                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4811                 error "$LFS getstripe --obd: should not show file on other obd"
4812         echo "$LFS getstripe --obd passed"
4813 }
4814 run_test 56a "check $LFS getstripe"
4815
4816 test_56b() {
4817         local dir=$DIR/$tdir
4818         local numdirs=3
4819
4820         test_mkdir $dir
4821         for i in $(seq $numdirs); do
4822                 test_mkdir $dir/dir$i
4823         done
4824
4825         # test lfs getdirstripe default mode is non-recursion, which is
4826         # different from lfs getstripe
4827         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4828
4829         [[ $dircnt -eq 1 ]] ||
4830                 error "$LFS getdirstripe: found $dircnt, not 1"
4831         dircnt=$($LFS getdirstripe --recursive $dir |
4832                 grep -c lmv_stripe_count)
4833         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4834                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4835 }
4836 run_test 56b "check $LFS getdirstripe"
4837
4838 test_56c() {
4839         remote_ost_nodsh && skip "remote OST with nodsh"
4840
4841         local ost_idx=0
4842         local ost_name=$(ostname_from_index $ost_idx)
4843         local old_status=$(ost_dev_status $ost_idx)
4844
4845         [[ -z "$old_status" ]] ||
4846                 skip_env "OST $ost_name is in $old_status status"
4847
4848         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4849         sleep_maxage
4850
4851         local new_status=$(ost_dev_status $ost_idx)
4852
4853         [[ "$new_status" = "D" ]] ||
4854                 error "OST $ost_name is in status of '$new_status', not 'D'"
4855
4856         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4857         sleep_maxage
4858
4859         new_status=$(ost_dev_status $ost_idx)
4860         [[ -z "$new_status" ]] ||
4861                 error "OST $ost_name is in status of '$new_status', not ''"
4862 }
4863 run_test 56c "check 'lfs df' showing device status"
4864
4865 NUMFILES=3
4866 NUMDIRS=3
4867 setup_56() {
4868         local local_tdir="$1"
4869         local local_numfiles="$2"
4870         local local_numdirs="$3"
4871         local dir_params="$4"
4872         local dir_stripe_params="$5"
4873
4874         if [ ! -d "$local_tdir" ] ; then
4875                 test_mkdir -p $dir_stripe_params $local_tdir
4876                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4877                 for i in $(seq $local_numfiles) ; do
4878                         touch $local_tdir/file$i
4879                 done
4880                 for i in $(seq $local_numdirs) ; do
4881                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4882                         for j in $(seq $local_numfiles) ; do
4883                                 touch $local_tdir/dir$i/file$j
4884                         done
4885                 done
4886         fi
4887 }
4888
4889 setup_56_special() {
4890         local local_tdir=$1
4891         local local_numfiles=$2
4892         local local_numdirs=$3
4893
4894         setup_56 $local_tdir $local_numfiles $local_numdirs
4895
4896         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4897                 for i in $(seq $local_numfiles) ; do
4898                         mknod $local_tdir/loop${i}b b 7 $i
4899                         mknod $local_tdir/null${i}c c 1 3
4900                         ln -s $local_tdir/file1 $local_tdir/link${i}
4901                 done
4902                 for i in $(seq $local_numdirs) ; do
4903                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4904                         mknod $local_tdir/dir$i/null${i}c c 1 3
4905                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4906                 done
4907         fi
4908 }
4909
4910 test_56g() {
4911         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4912         local expected=$(($NUMDIRS + 2))
4913
4914         setup_56 $dir $NUMFILES $NUMDIRS
4915
4916         # test lfs find with -name
4917         for i in $(seq $NUMFILES) ; do
4918                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4919
4920                 [ $nums -eq $expected ] ||
4921                         error "lfs find -name '*$i' $dir wrong: "\
4922                               "found $nums, expected $expected"
4923         done
4924 }
4925 run_test 56g "check lfs find -name"
4926
4927 test_56h() {
4928         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4929         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4930
4931         setup_56 $dir $NUMFILES $NUMDIRS
4932
4933         # test lfs find with ! -name
4934         for i in $(seq $NUMFILES) ; do
4935                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4936
4937                 [ $nums -eq $expected ] ||
4938                         error "lfs find ! -name '*$i' $dir wrong: "\
4939                               "found $nums, expected $expected"
4940         done
4941 }
4942 run_test 56h "check lfs find ! -name"
4943
4944 test_56i() {
4945         local dir=$DIR/$tdir
4946
4947         test_mkdir $dir
4948
4949         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4950         local out=$($cmd)
4951
4952         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4953 }
4954 run_test 56i "check 'lfs find -ost UUID' skips directories"
4955
4956 test_56j() {
4957         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4958
4959         setup_56_special $dir $NUMFILES $NUMDIRS
4960
4961         local expected=$((NUMDIRS + 1))
4962         local cmd="$LFS find -type d $dir"
4963         local nums=$($cmd | wc -l)
4964
4965         [ $nums -eq $expected ] ||
4966                 error "'$cmd' wrong: found $nums, expected $expected"
4967 }
4968 run_test 56j "check lfs find -type d"
4969
4970 test_56k() {
4971         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4972
4973         setup_56_special $dir $NUMFILES $NUMDIRS
4974
4975         local expected=$(((NUMDIRS + 1) * NUMFILES))
4976         local cmd="$LFS find -type f $dir"
4977         local nums=$($cmd | wc -l)
4978
4979         [ $nums -eq $expected ] ||
4980                 error "'$cmd' wrong: found $nums, expected $expected"
4981 }
4982 run_test 56k "check lfs find -type f"
4983
4984 test_56l() {
4985         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4986
4987         setup_56_special $dir $NUMFILES $NUMDIRS
4988
4989         local expected=$((NUMDIRS + NUMFILES))
4990         local cmd="$LFS find -type b $dir"
4991         local nums=$($cmd | wc -l)
4992
4993         [ $nums -eq $expected ] ||
4994                 error "'$cmd' wrong: found $nums, expected $expected"
4995 }
4996 run_test 56l "check lfs find -type b"
4997
4998 test_56m() {
4999         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5000
5001         setup_56_special $dir $NUMFILES $NUMDIRS
5002
5003         local expected=$((NUMDIRS + NUMFILES))
5004         local cmd="$LFS find -type c $dir"
5005         local nums=$($cmd | wc -l)
5006         [ $nums -eq $expected ] ||
5007                 error "'$cmd' wrong: found $nums, expected $expected"
5008 }
5009 run_test 56m "check lfs find -type c"
5010
5011 test_56n() {
5012         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5013         setup_56_special $dir $NUMFILES $NUMDIRS
5014
5015         local expected=$((NUMDIRS + NUMFILES))
5016         local cmd="$LFS find -type l $dir"
5017         local nums=$($cmd | wc -l)
5018
5019         [ $nums -eq $expected ] ||
5020                 error "'$cmd' wrong: found $nums, expected $expected"
5021 }
5022 run_test 56n "check lfs find -type l"
5023
5024 test_56o() {
5025         local dir=$DIR/$tdir
5026
5027         setup_56 $dir $NUMFILES $NUMDIRS
5028         utime $dir/file1 > /dev/null || error "utime (1)"
5029         utime $dir/file2 > /dev/null || error "utime (2)"
5030         utime $dir/dir1 > /dev/null || error "utime (3)"
5031         utime $dir/dir2 > /dev/null || error "utime (4)"
5032         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5033         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5034
5035         local expected=4
5036         local nums=$($LFS find -mtime +0 $dir | wc -l)
5037
5038         [ $nums -eq $expected ] ||
5039                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5040
5041         expected=12
5042         cmd="$LFS find -mtime 0 $dir"
5043         nums=$($cmd | wc -l)
5044         [ $nums -eq $expected ] ||
5045                 error "'$cmd' wrong: found $nums, expected $expected"
5046 }
5047 run_test 56o "check lfs find -mtime for old files"
5048
5049 test_56p() {
5050         [ $RUNAS_ID -eq $UID ] &&
5051                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5052
5053         local dir=$DIR/$tdir
5054
5055         setup_56 $dir $NUMFILES $NUMDIRS
5056         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5057
5058         local expected=$NUMFILES
5059         local cmd="$LFS find -uid $RUNAS_ID $dir"
5060         local nums=$($cmd | wc -l)
5061
5062         [ $nums -eq $expected ] ||
5063                 error "'$cmd' wrong: found $nums, expected $expected"
5064
5065         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5066         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5067         nums=$($cmd | wc -l)
5068         [ $nums -eq $expected ] ||
5069                 error "'$cmd' wrong: found $nums, expected $expected"
5070 }
5071 run_test 56p "check lfs find -uid and ! -uid"
5072
5073 test_56q() {
5074         [ $RUNAS_ID -eq $UID ] &&
5075                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5076
5077         local dir=$DIR/$tdir
5078
5079         setup_56 $dir $NUMFILES $NUMDIRS
5080         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5081
5082         local expected=$NUMFILES
5083         local cmd="$LFS find -gid $RUNAS_GID $dir"
5084         local nums=$($cmd | wc -l)
5085
5086         [ $nums -eq $expected ] ||
5087                 error "'$cmd' wrong: found $nums, expected $expected"
5088
5089         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5090         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5091         nums=$($cmd | wc -l)
5092         [ $nums -eq $expected ] ||
5093                 error "'$cmd' wrong: found $nums, expected $expected"
5094 }
5095 run_test 56q "check lfs find -gid and ! -gid"
5096
5097 test_56r() {
5098         local dir=$DIR/$tdir
5099
5100         setup_56 $dir $NUMFILES $NUMDIRS
5101
5102         local expected=12
5103         local cmd="$LFS find -size 0 -type f $dir"
5104         local nums=$($cmd | wc -l)
5105
5106         [ $nums -eq $expected ] ||
5107                 error "'$cmd' wrong: found $nums, expected $expected"
5108         expected=0
5109         cmd="$LFS find ! -size 0 -type f $dir"
5110         nums=$($cmd | wc -l)
5111         [ $nums -eq $expected ] ||
5112                 error "'$cmd' wrong: found $nums, expected $expected"
5113         echo "test" > $dir/$tfile
5114         echo "test2" > $dir/$tfile.2 && sync
5115         expected=1
5116         cmd="$LFS find -size 5 -type f $dir"
5117         nums=$($cmd | wc -l)
5118         [ $nums -eq $expected ] ||
5119                 error "'$cmd' wrong: found $nums, expected $expected"
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=2
5126         cmd="$LFS find -size +0 -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 -5 -type f $dir"
5132         nums=$($cmd | wc -l)
5133         [ $nums -eq $expected ] ||
5134                 error "'$cmd' wrong: found $nums, expected $expected"
5135         expected=12
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 }
5141 run_test 56r "check lfs find -size works"
5142
5143 test_56s() { # LU-611 #LU-9369
5144         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5145
5146         local dir=$DIR/$tdir
5147         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5148
5149         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5150         for i in $(seq $NUMDIRS); do
5151                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5152         done
5153
5154         local expected=$NUMDIRS
5155         local cmd="$LFS find -c $OSTCOUNT $dir"
5156         local nums=$($cmd | wc -l)
5157
5158         [ $nums -eq $expected ] || {
5159                 $LFS getstripe -R $dir
5160                 error "'$cmd' wrong: found $nums, expected $expected"
5161         }
5162
5163         expected=$((NUMDIRS + onestripe))
5164         cmd="$LFS find -stripe-count +0 -type f $dir"
5165         nums=$($cmd | wc -l)
5166         [ $nums -eq $expected ] || {
5167                 $LFS getstripe -R $dir
5168                 error "'$cmd' wrong: found $nums, expected $expected"
5169         }
5170
5171         expected=$onestripe
5172         cmd="$LFS find -stripe-count 1 -type f $dir"
5173         nums=$($cmd | wc -l)
5174         [ $nums -eq $expected ] || {
5175                 $LFS getstripe -R $dir
5176                 error "'$cmd' wrong: found $nums, expected $expected"
5177         }
5178
5179         cmd="$LFS find -stripe-count -2 -type f $dir"
5180         nums=$($cmd | wc -l)
5181         [ $nums -eq $expected ] || {
5182                 $LFS getstripe -R $dir
5183                 error "'$cmd' wrong: found $nums, expected $expected"
5184         }
5185
5186         expected=0
5187         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5188         nums=$($cmd | wc -l)
5189         [ $nums -eq $expected ] || {
5190                 $LFS getstripe -R $dir
5191                 error "'$cmd' wrong: found $nums, expected $expected"
5192         }
5193 }
5194 run_test 56s "check lfs find -stripe-count works"
5195
5196 test_56t() { # LU-611 #LU-9369
5197         local dir=$DIR/$tdir
5198
5199         setup_56 $dir 0 $NUMDIRS
5200         for i in $(seq $NUMDIRS); do
5201                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5202         done
5203
5204         local expected=$NUMDIRS
5205         local cmd="$LFS find -S 8M $dir"
5206         local nums=$($cmd | wc -l)
5207
5208         [ $nums -eq $expected ] || {
5209                 $LFS getstripe -R $dir
5210                 error "'$cmd' wrong: found $nums, expected $expected"
5211         }
5212         rm -rf $dir
5213
5214         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5215
5216         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5217
5218         expected=$(((NUMDIRS + 1) * NUMFILES))
5219         cmd="$LFS find -stripe-size 512k -type f $dir"
5220         nums=$($cmd | wc -l)
5221         [ $nums -eq $expected ] ||
5222                 error "'$cmd' wrong: found $nums, expected $expected"
5223
5224         cmd="$LFS find -stripe-size +320k -type f $dir"
5225         nums=$($cmd | wc -l)
5226         [ $nums -eq $expected ] ||
5227                 error "'$cmd' wrong: found $nums, expected $expected"
5228
5229         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5230         cmd="$LFS find -stripe-size +200k -type f $dir"
5231         nums=$($cmd | wc -l)
5232         [ $nums -eq $expected ] ||
5233                 error "'$cmd' wrong: found $nums, expected $expected"
5234
5235         cmd="$LFS find -stripe-size -640k -type f $dir"
5236         nums=$($cmd | wc -l)
5237         [ $nums -eq $expected ] ||
5238                 error "'$cmd' wrong: found $nums, expected $expected"
5239
5240         expected=4
5241         cmd="$LFS find -stripe-size 256k -type f $dir"
5242         nums=$($cmd | wc -l)
5243         [ $nums -eq $expected ] ||
5244                 error "'$cmd' wrong: found $nums, expected $expected"
5245
5246         cmd="$LFS find -stripe-size -320k -type f $dir"
5247         nums=$($cmd | wc -l)
5248         [ $nums -eq $expected ] ||
5249                 error "'$cmd' wrong: found $nums, expected $expected"
5250
5251         expected=0
5252         cmd="$LFS find -stripe-size 1024k -type f $dir"
5253         nums=$($cmd | wc -l)
5254         [ $nums -eq $expected ] ||
5255                 error "'$cmd' wrong: found $nums, expected $expected"
5256 }
5257 run_test 56t "check lfs find -stripe-size works"
5258
5259 test_56u() { # LU-611
5260         local dir=$DIR/$tdir
5261
5262         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5263
5264         if [[ $OSTCOUNT -gt 1 ]]; then
5265                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5266                 onestripe=4
5267         else
5268                 onestripe=0
5269         fi
5270
5271         local expected=$(((NUMDIRS + 1) * NUMFILES))
5272         local cmd="$LFS find -stripe-index 0 -type f $dir"
5273         local nums=$($cmd | wc -l)
5274
5275         [ $nums -eq $expected ] ||
5276                 error "'$cmd' wrong: found $nums, expected $expected"
5277
5278         expected=$onestripe
5279         cmd="$LFS find -stripe-index 1 -type f $dir"
5280         nums=$($cmd | wc -l)
5281         [ $nums -eq $expected ] ||
5282                 error "'$cmd' wrong: found $nums, expected $expected"
5283
5284         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5285         nums=$($cmd | wc -l)
5286         [ $nums -eq $expected ] ||
5287                 error "'$cmd' wrong: found $nums, expected $expected"
5288
5289         expected=0
5290         # This should produce an error and not return any files
5291         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5292         nums=$($cmd 2>/dev/null | wc -l)
5293         [ $nums -eq $expected ] ||
5294                 error "'$cmd' wrong: found $nums, expected $expected"
5295
5296         if [[ $OSTCOUNT -gt 1 ]]; then
5297                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5298                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5299                 nums=$($cmd | wc -l)
5300                 [ $nums -eq $expected ] ||
5301                         error "'$cmd' wrong: found $nums, expected $expected"
5302         fi
5303 }
5304 run_test 56u "check lfs find -stripe-index works"
5305
5306 test_56v() {
5307         local mdt_idx=0
5308         local dir=$DIR/$tdir
5309
5310         setup_56 $dir $NUMFILES $NUMDIRS
5311
5312         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5313         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5314
5315         for file in $($LFS find -m $UUID $dir); do
5316                 file_midx=$($LFS getstripe -m $file)
5317                 [ $file_midx -eq $mdt_idx ] ||
5318                         error "lfs find -m $UUID != getstripe -m $file_midx"
5319         done
5320 }
5321 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5322
5323 test_56w() {
5324         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5325         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5326
5327         local dir=$DIR/$tdir
5328
5329         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5330
5331         local stripe_size=$($LFS getstripe -S -d $dir) ||
5332                 error "$LFS getstripe -S -d $dir failed"
5333         stripe_size=${stripe_size%% *}
5334
5335         local file_size=$((stripe_size * OSTCOUNT))
5336         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5337         local required_space=$((file_num * file_size))
5338         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5339                            head -n1)
5340         [[ $free_space -le $((required_space / 1024)) ]] &&
5341                 skip_env "need $required_space, have $free_space kbytes"
5342
5343         local dd_bs=65536
5344         local dd_count=$((file_size / dd_bs))
5345
5346         # write data into the files
5347         local i
5348         local j
5349         local file
5350
5351         for i in $(seq $NUMFILES); do
5352                 file=$dir/file$i
5353                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5354                         error "write data into $file failed"
5355         done
5356         for i in $(seq $NUMDIRS); do
5357                 for j in $(seq $NUMFILES); do
5358                         file=$dir/dir$i/file$j
5359                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5360                                 error "write data into $file failed"
5361                 done
5362         done
5363
5364         # $LFS_MIGRATE will fail if hard link migration is unsupported
5365         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5366                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5367                         error "creating links to $dir/dir1/file1 failed"
5368         fi
5369
5370         local expected=-1
5371
5372         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5373
5374         # lfs_migrate file
5375         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5376
5377         echo "$cmd"
5378         eval $cmd || error "$cmd failed"
5379
5380         check_stripe_count $dir/file1 $expected
5381
5382         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5383         then
5384                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5385                 # OST 1 if it is on OST 0. This file is small enough to
5386                 # be on only one stripe.
5387                 file=$dir/migr_1_ost
5388                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5389                         error "write data into $file failed"
5390                 local obdidx=$($LFS getstripe -i $file)
5391                 local oldmd5=$(md5sum $file)
5392                 local newobdidx=0
5393
5394                 [[ $obdidx -eq 0 ]] && newobdidx=1
5395                 cmd="$LFS migrate -i $newobdidx $file"
5396                 echo $cmd
5397                 eval $cmd || error "$cmd failed"
5398
5399                 local realobdix=$($LFS getstripe -i $file)
5400                 local newmd5=$(md5sum $file)
5401
5402                 [[ $newobdidx -ne $realobdix ]] &&
5403                         error "new OST is different (was=$obdidx, "\
5404                               "wanted=$newobdidx, got=$realobdix)"
5405                 [[ "$oldmd5" != "$newmd5" ]] &&
5406                         error "md5sum differ: $oldmd5, $newmd5"
5407         fi
5408
5409         # lfs_migrate dir
5410         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5411         echo "$cmd"
5412         eval $cmd || error "$cmd failed"
5413
5414         for j in $(seq $NUMFILES); do
5415                 check_stripe_count $dir/dir1/file$j $expected
5416         done
5417
5418         # lfs_migrate works with lfs find
5419         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5420              $LFS_MIGRATE -y -c $expected"
5421         echo "$cmd"
5422         eval $cmd || error "$cmd failed"
5423
5424         for i in $(seq 2 $NUMFILES); do
5425                 check_stripe_count $dir/file$i $expected
5426         done
5427         for i in $(seq 2 $NUMDIRS); do
5428                 for j in $(seq $NUMFILES); do
5429                 check_stripe_count $dir/dir$i/file$j $expected
5430                 done
5431         done
5432 }
5433 run_test 56w "check lfs_migrate -c stripe_count works"
5434
5435 test_56wb() {
5436         local file1=$DIR/$tdir/file1
5437         local create_pool=false
5438         local initial_pool=$($LFS getstripe -p $DIR)
5439         local pool_list=()
5440         local pool=""
5441
5442         echo -n "Creating test dir..."
5443         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5444         echo "done."
5445
5446         echo -n "Creating test file..."
5447         touch $file1 || error "cannot create file"
5448         echo "done."
5449
5450         echo -n "Detecting existing pools..."
5451         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5452
5453         if [ ${#pool_list[@]} -gt 0 ]; then
5454                 echo "${pool_list[@]}"
5455                 for thispool in "${pool_list[@]}"; do
5456                         if [[ -z "$initial_pool" ||
5457                               "$initial_pool" != "$thispool" ]]; then
5458                                 pool="$thispool"
5459                                 echo "Using existing pool '$pool'"
5460                                 break
5461                         fi
5462                 done
5463         else
5464                 echo "none detected."
5465         fi
5466         if [ -z "$pool" ]; then
5467                 pool=${POOL:-testpool}
5468                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5469                 echo -n "Creating pool '$pool'..."
5470                 create_pool=true
5471                 pool_add $pool &> /dev/null ||
5472                         error "pool_add failed"
5473                 echo "done."
5474
5475                 echo -n "Adding target to pool..."
5476                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5477                         error "pool_add_targets failed"
5478                 echo "done."
5479         fi
5480
5481         echo -n "Setting pool using -p option..."
5482         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5483                 error "migrate failed rc = $?"
5484         echo "done."
5485
5486         echo -n "Verifying test file is in pool after migrating..."
5487         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5488                 error "file was not migrated to pool $pool"
5489         echo "done."
5490
5491         echo -n "Removing test file from pool '$pool'..."
5492         $LFS migrate $file1 &> /dev/null ||
5493                 error "cannot remove from pool"
5494         [ "$($LFS getstripe -p $file1)" ] &&
5495                 error "pool still set"
5496         echo "done."
5497
5498         echo -n "Setting pool using --pool option..."
5499         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5500                 error "migrate failed rc = $?"
5501         echo "done."
5502
5503         # Clean up
5504         rm -f $file1
5505         if $create_pool; then
5506                 destroy_test_pools 2> /dev/null ||
5507                         error "destroy test pools failed"
5508         fi
5509 }
5510 run_test 56wb "check lfs_migrate pool support"
5511
5512 test_56wc() {
5513         local file1="$DIR/$tdir/file1"
5514
5515         echo -n "Creating test dir..."
5516         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5517         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5518         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5519                 error "cannot set stripe"
5520         echo "done"
5521
5522         echo -n "Setting initial stripe for test file..."
5523         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5524                 error "cannot set stripe"
5525         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5526                 error "stripe size not set"
5527         echo "done."
5528
5529         # File currently set to -S 512K -c 1
5530
5531         # Ensure -c and -S options are rejected when -R is set
5532         echo -n "Verifying incompatible options are detected..."
5533         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5534                 error "incompatible -c and -R options not detected"
5535         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5536                 error "incompatible -S and -R options not detected"
5537         echo "done."
5538
5539         # Ensure unrecognized options are passed through to 'lfs migrate'
5540         echo -n "Verifying -S option is passed through to lfs migrate..."
5541         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5542                 error "migration failed"
5543         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5544                 error "file was not restriped"
5545         echo "done."
5546
5547         # File currently set to -S 1M -c 1
5548
5549         # Ensure long options are supported
5550         echo -n "Verifying long options supported..."
5551         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5552                 error "long option without argument not supported"
5553         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5554                 error "long option with argument not supported"
5555         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5556                 error "file not restriped with --stripe-size option"
5557         echo "done."
5558
5559         # File currently set to -S 512K -c 1
5560
5561         if [ "$OSTCOUNT" -gt 1 ]; then
5562                 echo -n "Verifying explicit stripe count can be set..."
5563                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5564                         error "migrate failed"
5565                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5566                         error "file not restriped to explicit count"
5567                 echo "done."
5568         fi
5569
5570         # File currently set to -S 512K -c 1 or -S 512K -c 2
5571
5572         # Ensure parent striping is used if -R is set, and no stripe
5573         # count or size is specified
5574         echo -n "Setting stripe for parent directory..."
5575         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5576                 error "cannot set stripe"
5577         echo "done."
5578
5579         echo -n "Verifying restripe option uses parent stripe settings..."
5580         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5581                 error "migrate failed"
5582         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5583                 error "file not restriped to parent settings"
5584         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5585                 error "file not restriped to parent settings"
5586         echo "done."
5587
5588         # File currently set to -S 1M -c 1
5589
5590         # Ensure striping is preserved if -R is not set, and no stripe
5591         # count or size is specified
5592         echo -n "Verifying striping size preserved when not specified..."
5593         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5594         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5595                 error "cannot set stripe on parent directory"
5596         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5597                 error "migrate failed"
5598         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5599                 error "file was restriped"
5600         echo "done."
5601
5602         # Ensure file name properly detected when final option has no argument
5603         echo -n "Verifying file name properly detected..."
5604         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5605                 error "file name interpreted as option argument"
5606         echo "done."
5607
5608         # Clean up
5609         rm -f "$file1"
5610 }
5611 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5612
5613 test_56wd() {
5614         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5615
5616         local file1=$DIR/$tdir/file1
5617
5618         echo -n "Creating test dir..."
5619         test_mkdir $DIR/$tdir || error "cannot create dir"
5620         echo "done."
5621
5622         echo -n "Creating test file..."
5623         touch $file1
5624         echo "done."
5625
5626         # Ensure 'lfs migrate' will fail by using a non-existent option,
5627         # and make sure rsync is not called to recover
5628         echo -n "Make sure --no-rsync option works..."
5629         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5630                 grep -q 'refusing to fall back to rsync' ||
5631                 error "rsync was called with --no-rsync set"
5632         echo "done."
5633
5634         # Ensure rsync is called without trying 'lfs migrate' first
5635         echo -n "Make sure --rsync option works..."
5636         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5637                 grep -q 'falling back to rsync' &&
5638                 error "lfs migrate was called with --rsync set"
5639         echo "done."
5640
5641         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5642         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5643                 grep -q 'at the same time' ||
5644                 error "--rsync and --no-rsync accepted concurrently"
5645         echo "done."
5646
5647         # Clean up
5648         rm -f $file1
5649 }
5650 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5651
5652 test_56x() {
5653         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5654         check_swap_layouts_support
5655
5656         local dir=$DIR/$tdir
5657         local ref1=/etc/passwd
5658         local file1=$dir/file1
5659
5660         test_mkdir $dir || error "creating dir $dir"
5661         $LFS setstripe -c 2 $file1
5662         cp $ref1 $file1
5663         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5664         stripe=$($LFS getstripe -c $file1)
5665         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5666         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5667
5668         # clean up
5669         rm -f $file1
5670 }
5671 run_test 56x "lfs migration support"
5672
5673 test_56xa() {
5674         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5675         check_swap_layouts_support
5676
5677         local dir=$DIR/$tdir/$testnum
5678
5679         test_mkdir -p $dir
5680
5681         local ref1=/etc/passwd
5682         local file1=$dir/file1
5683
5684         $LFS setstripe -c 2 $file1
5685         cp $ref1 $file1
5686         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5687
5688         local stripe=$($LFS getstripe -c $file1)
5689
5690         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5691         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5692
5693         # clean up
5694         rm -f $file1
5695 }
5696 run_test 56xa "lfs migration --block support"
5697
5698 check_migrate_links() {
5699         local dir="$1"
5700         local file1="$dir/file1"
5701         local begin="$2"
5702         local count="$3"
5703         local total_count=$(($begin + $count - 1))
5704         local symlink_count=10
5705         local uniq_count=10
5706
5707         if [ ! -f "$file1" ]; then
5708                 echo -n "creating initial file..."
5709                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5710                         error "cannot setstripe initial file"
5711                 echo "done"
5712
5713                 echo -n "creating symlinks..."
5714                 for s in $(seq 1 $symlink_count); do
5715                         ln -s "$file1" "$dir/slink$s" ||
5716                                 error "cannot create symlinks"
5717                 done
5718                 echo "done"
5719
5720                 echo -n "creating nonlinked files..."
5721                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5722                         error "cannot create nonlinked files"
5723                 echo "done"
5724         fi
5725
5726         # create hard links
5727         if [ ! -f "$dir/file$total_count" ]; then
5728                 echo -n "creating hard links $begin:$total_count..."
5729                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5730                         /dev/null || error "cannot create hard links"
5731                 echo "done"
5732         fi
5733
5734         echo -n "checking number of hard links listed in xattrs..."
5735         local fid=$($LFS getstripe -F "$file1")
5736         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5737
5738         echo "${#paths[*]}"
5739         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5740                         skip "hard link list has unexpected size, skipping test"
5741         fi
5742         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5743                         error "link names should exceed xattrs size"
5744         fi
5745
5746         echo -n "migrating files..."
5747         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5748         local rc=$?
5749         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5750         echo "done"
5751
5752         # make sure all links have been properly migrated
5753         echo -n "verifying files..."
5754         fid=$($LFS getstripe -F "$file1") ||
5755                 error "cannot get fid for file $file1"
5756         for i in $(seq 2 $total_count); do
5757                 local fid2=$($LFS getstripe -F $dir/file$i)
5758
5759                 [ "$fid2" == "$fid" ] ||
5760                         error "migrated hard link has mismatched FID"
5761         done
5762
5763         # make sure hard links were properly detected, and migration was
5764         # performed only once for the entire link set; nonlinked files should
5765         # also be migrated
5766         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5767         local expected=$(($uniq_count + 1))
5768
5769         [ "$actual" -eq  "$expected" ] ||
5770                 error "hard links individually migrated ($actual != $expected)"
5771
5772         # make sure the correct number of hard links are present
5773         local hardlinks=$(stat -c '%h' "$file1")
5774
5775         [ $hardlinks -eq $total_count ] ||
5776                 error "num hard links $hardlinks != $total_count"
5777         echo "done"
5778
5779         return 0
5780 }
5781
5782 test_56xb() {
5783         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
5784                 skip "Need MDS version at least 2.10.55"
5785
5786         local dir="$DIR/$tdir"
5787
5788         test_mkdir "$dir" || error "cannot create dir $dir"
5789
5790         echo "testing lfs migrate mode when all links fit within xattrs"
5791         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5792
5793         echo "testing rsync mode when all links fit within xattrs"
5794         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5795
5796         echo "testing lfs migrate mode when all links do not fit within xattrs"
5797         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5798
5799         echo "testing rsync mode when all links do not fit within xattrs"
5800         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5801
5802         # clean up
5803         rm -rf $dir
5804 }
5805 run_test 56xb "lfs migration hard link support"
5806
5807 test_56y() {
5808         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5809                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5810
5811         local res=""
5812         local dir=$DIR/$tdir
5813         local f1=$dir/file1
5814         local f2=$dir/file2
5815
5816         test_mkdir -p $dir || error "creating dir $dir"
5817         touch $f1 || error "creating std file $f1"
5818         $MULTIOP $f2 H2c || error "creating released file $f2"
5819
5820         # a directory can be raid0, so ask only for files
5821         res=$($LFS find $dir -L raid0 -type f | wc -l)
5822         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5823
5824         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5825         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5826
5827         # only files can be released, so no need to force file search
5828         res=$($LFS find $dir -L released)
5829         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5830
5831         res=$($LFS find $dir -type f \! -L released)
5832         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5833 }
5834 run_test 56y "lfs find -L raid0|released"
5835
5836 test_56z() { # LU-4824
5837         # This checks to make sure 'lfs find' continues after errors
5838         # There are two classes of errors that should be caught:
5839         # - If multiple paths are provided, all should be searched even if one
5840         #   errors out
5841         # - If errors are encountered during the search, it should not terminate
5842         #   early
5843         local dir=$DIR/$tdir
5844         local i
5845
5846         test_mkdir $dir
5847         for i in d{0..9}; do
5848                 test_mkdir $dir/$i
5849         done
5850         touch $dir/d{0..9}/$tfile
5851         $LFS find $DIR/non_existent_dir $dir &&
5852                 error "$LFS find did not return an error"
5853         # Make a directory unsearchable. This should NOT be the last entry in
5854         # directory order.  Arbitrarily pick the 6th entry
5855         chmod 700 $($LFS find $dir -type d | sed '6!d')
5856
5857         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5858
5859         # The user should be able to see 10 directories and 9 files
5860         [ $count == 19 ] || error "$LFS find did not continue after error"
5861 }
5862 run_test 56z "lfs find should continue after an error"
5863
5864 test_56aa() { # LU-5937
5865         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5866
5867         local dir=$DIR/$tdir
5868
5869         mkdir $dir
5870         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5871
5872         createmany -o $dir/striped_dir/${tfile}- 1024
5873         local dirs=$($LFS find --size +8k $dir/)
5874
5875         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5876 }
5877 run_test 56aa "lfs find --size under striped dir"
5878
5879 test_56ab() { # LU-10705
5880         test_mkdir $DIR/$tdir
5881         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5882         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5883         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5884         # Flush writes to ensure valid blocks.  Need to be more thorough for
5885         # ZFS, since blocks are not allocated/returned to client immediately.
5886         sync_all_data
5887         wait_zfs_commit ost1 2
5888         cancel_lru_locks osc
5889         ls -ls $DIR/$tdir
5890
5891         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5892
5893         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5894
5895         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5896         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5897
5898         rm -f $DIR/$tdir/$tfile.[123]
5899 }
5900 run_test 56ab "lfs find --blocks"
5901
5902 test_56ba() {
5903         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.50) ] &&
5904                 skip "Need MDS version at least 2.10.50"
5905
5906         # Create composite files with one component
5907         local dir=$DIR/$tdir
5908
5909         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5910         # Create composite files with three components
5911         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5912         # Create non-composite files
5913         createmany -o $dir/${tfile}- 10
5914
5915         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5916
5917         [[ $nfiles == 10 ]] ||
5918                 error "lfs find -E 1M found $nfiles != 10 files"
5919
5920         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5921         [[ $nfiles == 25 ]] ||
5922                 error "lfs find ! -E 1M found $nfiles != 25 files"
5923
5924         # All files have a component that starts at 0
5925         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5926         [[ $nfiles == 35 ]] ||
5927                 error "lfs find --component-start 0 - $nfiles != 35 files"
5928
5929         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5930         [[ $nfiles == 15 ]] ||
5931                 error "lfs find --component-start 2M - $nfiles != 15 files"
5932
5933         # All files created here have a componenet that does not starts at 2M
5934         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5935         [[ $nfiles == 35 ]] ||
5936                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5937
5938         # Find files with a specified number of components
5939         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5940         [[ $nfiles == 15 ]] ||
5941                 error "lfs find --component-count 3 - $nfiles != 15 files"
5942
5943         # Remember non-composite files have a component count of zero
5944         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5945         [[ $nfiles == 10 ]] ||
5946                 error "lfs find --component-count 0 - $nfiles != 10 files"
5947
5948         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5949         [[ $nfiles == 20 ]] ||
5950                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5951
5952         # All files have a flag called "init"
5953         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5954         [[ $nfiles == 35 ]] ||
5955                 error "lfs find --component-flags init - $nfiles != 35 files"
5956
5957         # Multi-component files will have a component not initialized
5958         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5959         [[ $nfiles == 15 ]] ||
5960                 error "lfs find !--component-flags init - $nfiles != 15 files"
5961
5962         rm -rf $dir
5963
5964 }
5965 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5966
5967 test_56ca() {
5968         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
5969                 skip "Need MDS version at least 2.10.57"
5970
5971         local td=$DIR/$tdir
5972         local tf=$td/$tfile
5973         local dir
5974         local nfiles
5975         local cmd
5976         local i
5977         local j
5978
5979         # create mirrored directories and mirrored files
5980         mkdir $td || error "mkdir $td failed"
5981         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
5982         createmany -o $tf- 10 || error "create $tf- failed"
5983
5984         for i in $(seq 2); do
5985                 dir=$td/dir$i
5986                 mkdir $dir || error "mkdir $dir failed"
5987                 $LFS mirror create -N$((3 + i)) $dir ||
5988                         error "create mirrored dir $dir failed"
5989                 createmany -o $dir/$tfile- 10 ||
5990                         error "create $dir/$tfile- failed"
5991         done
5992
5993         # change the states of some mirrored files
5994         echo foo > $tf-6
5995         for i in $(seq 2); do
5996                 dir=$td/dir$i
5997                 for j in $(seq 4 9); do
5998                         echo foo > $dir/$tfile-$j
5999                 done
6000         done
6001
6002         # find mirrored files with specific mirror count
6003         cmd="$LFS find --mirror-count 3 --type f $td"
6004         nfiles=$($cmd | wc -l)
6005         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6006
6007         cmd="$LFS find ! --mirror-count 3 --type f $td"
6008         nfiles=$($cmd | wc -l)
6009         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6010
6011         cmd="$LFS find --mirror-count +2 --type f $td"
6012         nfiles=$($cmd | wc -l)
6013         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6014
6015         cmd="$LFS find --mirror-count -6 --type f $td"
6016         nfiles=$($cmd | wc -l)
6017         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6018
6019         # find mirrored files with specific file state
6020         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6021         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6022
6023         cmd="$LFS find --mirror-state=ro --type f $td"
6024         nfiles=$($cmd | wc -l)
6025         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6026
6027         cmd="$LFS find ! --mirror-state=ro --type f $td"
6028         nfiles=$($cmd | wc -l)
6029         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6030
6031         cmd="$LFS find --mirror-state=wp --type f $td"
6032         nfiles=$($cmd | wc -l)
6033         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6034
6035         cmd="$LFS find ! --mirror-state=sp --type f $td"
6036         nfiles=$($cmd | wc -l)
6037         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6038 }
6039 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6040
6041 test_57a() {
6042         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6043         # note test will not do anything if MDS is not local
6044         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6045                 skip_env "ldiskfs only test"
6046         fi
6047         remote_mds_nodsh && skip "remote MDS with nodsh"
6048
6049         local MNTDEV="osd*.*MDT*.mntdev"
6050         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6051         [ -z "$DEV" ] && error "can't access $MNTDEV"
6052         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6053                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6054                         error "can't access $DEV"
6055                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6056                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6057                 rm $TMP/t57a.dump
6058         done
6059 }
6060 run_test 57a "verify MDS filesystem created with large inodes =="
6061
6062 test_57b() {
6063         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6064         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
6065                 skip_env "ldiskfs only test"
6066         fi
6067         remote_mds_nodsh && skip "remote MDS with nodsh"
6068
6069         local dir=$DIR/$tdir
6070         local filecount=100
6071         local file1=$dir/f1
6072         local fileN=$dir/f$filecount
6073
6074         rm -rf $dir || error "removing $dir"
6075         test_mkdir -c1 $dir
6076         local mdtidx=$($LFS getstripe -m $dir)
6077         local mdtname=MDT$(printf %04x $mdtidx)
6078         local facet=mds$((mdtidx + 1))
6079
6080         echo "mcreating $filecount files"
6081         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6082
6083         # verify that files do not have EAs yet
6084         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6085                 error "$file1 has an EA"
6086         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6087                 error "$fileN has an EA"
6088
6089         sync
6090         sleep 1
6091         df $dir  #make sure we get new statfs data
6092         local mdsfree=$(do_facet $facet \
6093                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6094         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6095         local file
6096
6097         echo "opening files to create objects/EAs"
6098         for file in $(seq -f $dir/f%g 1 $filecount); do
6099                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6100                         error "opening $file"
6101         done
6102
6103         # verify that files have EAs now
6104         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6105         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6106
6107         sleep 1  #make sure we get new statfs data
6108         df $dir
6109         local mdsfree2=$(do_facet $facet \
6110                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6111         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6112
6113         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6114                 if [ "$mdsfree" != "$mdsfree2" ]; then
6115                         error "MDC before $mdcfree != after $mdcfree2"
6116                 else
6117                         echo "MDC before $mdcfree != after $mdcfree2"
6118                         echo "unable to confirm if MDS has large inodes"
6119                 fi
6120         fi
6121         rm -rf $dir
6122 }
6123 run_test 57b "default LOV EAs are stored inside large inodes ==="
6124
6125 test_58() {
6126         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6127         [ -z "$(which wiretest 2>/dev/null)" ] &&
6128                         skip_env "could not find wiretest"
6129
6130         wiretest
6131 }
6132 run_test 58 "verify cross-platform wire constants =============="
6133
6134 test_59() {
6135         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6136
6137         echo "touch 130 files"
6138         createmany -o $DIR/f59- 130
6139         echo "rm 130 files"
6140         unlinkmany $DIR/f59- 130
6141         sync
6142         # wait for commitment of removal
6143         wait_delete_completed
6144 }
6145 run_test 59 "verify cancellation of llog records async ========="
6146
6147 TEST60_HEAD="test_60 run $RANDOM"
6148 test_60a() {
6149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6150         remote_mgs_nodsh && skip "remote MGS with nodsh"
6151         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6152                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6153                         skip_env "missing subtest run-llog.sh"
6154
6155         log "$TEST60_HEAD - from kernel mode"
6156         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6157         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6158         do_facet mgs $LCTL dk > $TMP/$tfile
6159
6160         # LU-6388: test llog_reader
6161         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6162         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6163         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6164                         skip_env "missing llog_reader"
6165         local fstype=$(facet_fstype mgs)
6166         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6167                 skip_env "Only for ldiskfs or zfs type mgs"
6168
6169         local mntpt=$(facet_mntpt mgs)
6170         local mgsdev=$(mgsdevname 1)
6171         local fid_list
6172         local fid
6173         local rec_list
6174         local rec
6175         local rec_type
6176         local obj_file
6177         local path
6178         local seq
6179         local oid
6180         local pass=true
6181
6182         #get fid and record list
6183         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6184                 tail -n 4))
6185         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6186                 tail -n 4))
6187         #remount mgs as ldiskfs or zfs type
6188         stop mgs || error "stop mgs failed"
6189         mount_fstype mgs || error "remount mgs failed"
6190         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6191                 fid=${fid_list[i]}
6192                 rec=${rec_list[i]}
6193                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6194                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6195                 oid=$((16#$oid))
6196
6197                 case $fstype in
6198                         ldiskfs )
6199                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6200                         zfs )
6201                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6202                 esac
6203                 echo "obj_file is $obj_file"
6204                 do_facet mgs $llog_reader $obj_file
6205
6206                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6207                         awk '{ print $3 }' | sed -e "s/^type=//g")
6208                 if [ $rec_type != $rec ]; then
6209                         echo "FAILED test_60a wrong record type $rec_type," \
6210                               "should be $rec"
6211                         pass=false
6212                         break
6213                 fi
6214
6215                 #check obj path if record type is LLOG_LOGID_MAGIC
6216                 if [ "$rec" == "1064553b" ]; then
6217                         path=$(do_facet mgs $llog_reader $obj_file |
6218                                 grep "path=" | awk '{ print $NF }' |
6219                                 sed -e "s/^path=//g")
6220                         if [ $obj_file != $mntpt/$path ]; then
6221                                 echo "FAILED test_60a wrong obj path" \
6222                                       "$montpt/$path, should be $obj_file"
6223                                 pass=false
6224                                 break
6225                         fi
6226                 fi
6227         done
6228         rm -f $TMP/$tfile
6229         #restart mgs before "error", otherwise it will block the next test
6230         stop mgs || error "stop mgs failed"
6231         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6232         $pass || error "test failed, see FAILED test_60a messages for specifics"
6233 }
6234 run_test 60a "llog_test run from kernel module and test llog_reader"
6235
6236 test_60aa() {
6237         remote_mgs_nodsh && skip "remote MGS with nodsh"
6238
6239         # test old logid format
6240         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
6241                 do_facet mgs $LCTL dl | grep MGS
6242                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6243                         error "old llog_print failed"
6244         fi
6245
6246         # test new logid format
6247         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
6248                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6249                         error "new llog_print failed"
6250         fi
6251 }
6252 run_test 60aa "llog_print works with FIDs and simple names"
6253
6254 test_60ab() {
6255         # test llog_print with params
6256
6257         [[ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.11.51) ]] ||
6258                 skip "Need server version greater than 2.11.51"
6259
6260         local yaml
6261         local orig_val
6262
6263         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6264         do_facet mgs $LCTL set_param -P jobid_name="testname"
6265
6266         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6267             grep jobid_name | tail -n 1)
6268
6269         local param=`awk '{ print $10 }' <<< "$yaml"`
6270         local val=`awk '{ print $12 }' <<< "$yaml"`
6271         #return to the default
6272         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6273         [ $val = "testname" ] || error "bad value: $val"
6274         [ $param = "jobid_name," ] || error "Bad param: $param"
6275 }
6276 run_test 60ab "llog_print params output values from set_param -P"
6277
6278 test_60b() { # bug 6411
6279         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6280
6281         dmesg > $DIR/$tfile
6282         LLOG_COUNT=$(do_facet mgs dmesg |
6283                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6284                           /llog_[a-z]*.c:[0-9]/ {
6285                                 if (marker)
6286                                         from_marker++
6287                                 from_begin++
6288                           }
6289                           END {
6290                                 if (marker)
6291                                         print from_marker
6292                                 else
6293                                         print from_begin
6294                           }")
6295
6296         [[ $LLOG_COUNT -gt 120 ]] &&
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_60g() {
6345         local pid
6346
6347         test_mkdir -c $MDSCOUNT $DIR/$tdir
6348         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6349
6350         (
6351                 local index=0
6352                 while true; do
6353                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6354                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6355                         index=$((index + 1))
6356                 done
6357         ) &
6358
6359         pid=$!
6360
6361         for i in $(seq 100); do 
6362                 # define OBD_FAIL_OSD_TXN_START    0x19a
6363                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6364                 usleep 100
6365         done
6366
6367         kill -9 $pid
6368
6369         mkdir $DIR/$tdir/new || error "mkdir failed"
6370         rmdir $DIR/$tdir/new || error "rmdir failed"
6371 }
6372 run_test 60g "transaction abort won't cause MDT hung"
6373
6374 test_61() {
6375         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6376
6377         f="$DIR/f61"
6378         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6379         cancel_lru_locks osc
6380         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6381         sync
6382 }
6383 run_test 61 "mmap() writes don't make sync hang ================"
6384
6385 # bug 2330 - insufficient obd_match error checking causes LBUG
6386 test_62() {
6387         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6388
6389         f="$DIR/f62"
6390         echo foo > $f
6391         cancel_lru_locks osc
6392         lctl set_param fail_loc=0x405
6393         cat $f && error "cat succeeded, expect -EIO"
6394         lctl set_param fail_loc=0
6395 }
6396 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6397 # match every page all of the time.
6398 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6399
6400 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6401 # Though this test is irrelevant anymore, it helped to reveal some
6402 # other grant bugs (LU-4482), let's keep it.
6403 test_63a() {   # was test_63
6404         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6405
6406         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6407
6408         for i in `seq 10` ; do
6409                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6410                 sleep 5
6411                 kill $!
6412                 sleep 1
6413         done
6414
6415         rm -f $DIR/f63 || true
6416 }
6417 run_test 63a "Verify oig_wait interruption does not crash ======="
6418
6419 # bug 2248 - async write errors didn't return to application on sync
6420 # bug 3677 - async write errors left page locked
6421 test_63b() {
6422         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6423
6424         debugsave
6425         lctl set_param debug=-1
6426
6427         # ensure we have a grant to do async writes
6428         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6429         rm $DIR/$tfile
6430
6431         sync    # sync lest earlier test intercept the fail_loc
6432
6433         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6434         lctl set_param fail_loc=0x80000406
6435         $MULTIOP $DIR/$tfile Owy && \
6436                 error "sync didn't return ENOMEM"
6437         sync; sleep 2; sync     # do a real sync this time to flush page
6438         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6439                 error "locked page left in cache after async error" || true
6440         debugrestore
6441 }
6442 run_test 63b "async write errors should be returned to fsync ==="
6443
6444 test_64a () {
6445         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6446
6447         df $DIR
6448         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6449 }
6450 run_test 64a "verify filter grant calculations (in kernel) ====="
6451
6452 test_64b () {
6453         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6454
6455         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6456 }
6457 run_test 64b "check out-of-space detection on client"
6458
6459 test_64c() {
6460         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6461 }
6462 run_test 64c "verify grant shrink"
6463
6464 # this does exactly what osc_request.c:osc_announce_cached() does in
6465 # order to calculate max amount of grants to ask from server
6466 want_grant() {
6467         local tgt=$1
6468
6469         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6470         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6471
6472         ((rpc_in_flight ++));
6473         nrpages=$((nrpages * rpc_in_flight))
6474
6475         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6476
6477         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6478
6479         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6480         local undirty=$((nrpages * PAGE_SIZE))
6481
6482         local max_extent_pages
6483         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6484             grep grant_max_extent_size | awk '{print $2}')
6485         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6486         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6487         local grant_extent_tax
6488         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6489             grep grant_extent_tax | awk '{print $2}')
6490
6491         undirty=$((undirty + nrextents * grant_extent_tax))
6492
6493         echo $undirty
6494 }
6495
6496 # this is size of unit for grant allocation. It should be equal to
6497 # what tgt_grant.c:tgt_grant_chunk() calculates
6498 grant_chunk() {
6499         local tgt=$1
6500         local max_brw_size
6501         local grant_extent_tax
6502
6503         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6504             grep max_brw_size | awk '{print $2}')
6505
6506         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6507             grep grant_extent_tax | awk '{print $2}')
6508
6509         echo $(((max_brw_size + grant_extent_tax) * 2))
6510 }
6511
6512 test_64d() {
6513         [ $(lustre_version_code ost1) -lt $(version_code 2.10.56) ] &&
6514                 skip "OST < 2.10.55 doesn't limit grants enough"
6515
6516         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6517         local file=$DIR/$tfile
6518
6519         [[ $($LCTL get_param osc.${tgt}.import |
6520              grep "connect_flags:.*grant_param") ]] ||
6521                 skip "no grant_param connect flag"
6522
6523         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6524
6525         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6526
6527         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6528         stack_trap "rm -f $file" EXIT
6529
6530         $SETSTRIPE $file -i 0 -c 1
6531         dd if=/dev/zero of=$file bs=1M count=1000 &
6532         ddpid=$!
6533
6534         while true
6535         do
6536                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6537                 if [[ $cur_grant -gt $max_cur_granted ]]
6538                 then
6539                         kill $ddpid
6540                         error "cur_grant $cur_grant > $max_cur_granted"
6541                 fi
6542                 kill -0 $ddpid
6543                 [[ $? -ne 0 ]] && break;
6544                 sleep 2
6545         done
6546
6547         rm -f $DIR/$tfile
6548         wait_delete_completed
6549         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6550 }
6551 run_test 64d "check grant limit exceed"
6552
6553 # bug 1414 - set/get directories' stripe info
6554 test_65a() {
6555         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6556
6557         test_mkdir $DIR/$tdir
6558         touch $DIR/$tdir/f1
6559         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6560 }
6561 run_test 65a "directory with no stripe info"
6562
6563 test_65b() {
6564         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6565
6566         test_mkdir $DIR/$tdir
6567         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6568
6569         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6570                                                 error "setstripe"
6571         touch $DIR/$tdir/f2
6572         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6573 }
6574 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6575
6576 test_65c() {
6577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6578         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6579
6580         test_mkdir $DIR/$tdir
6581         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6582
6583         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6584                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6585         touch $DIR/$tdir/f3
6586         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6587 }
6588 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6589
6590 test_65d() {
6591         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6592
6593         test_mkdir $DIR/$tdir
6594         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6595         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6596
6597         if [[ $STRIPECOUNT -le 0 ]]; then
6598                 sc=1
6599         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6600 #LOV_MAX_STRIPE_COUNT is 2000
6601                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6602         else
6603                 sc=$(($STRIPECOUNT - 1))
6604         fi
6605         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6606         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6607         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6608                 error "lverify failed"
6609 }
6610 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6611
6612 test_65e() {
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6614
6615         test_mkdir $DIR/$tdir
6616
6617         $SETSTRIPE $DIR/$tdir || error "setstripe"
6618         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6619                                         error "no stripe info failed"
6620         touch $DIR/$tdir/f6
6621         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6622 }
6623 run_test 65e "directory setstripe defaults"
6624
6625 test_65f() {
6626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6627
6628         test_mkdir $DIR/${tdir}f
6629         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6630 }
6631 run_test 65f "dir setstripe permission (should return error) ==="
6632
6633 test_65g() {
6634         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6635
6636         test_mkdir $DIR/$tdir
6637         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6638
6639         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6640                 error "setstripe -S failed"
6641         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6642         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6643                 error "delete default stripe failed"
6644 }
6645 run_test 65g "directory setstripe -d"
6646
6647 test_65h() {
6648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6649
6650         test_mkdir $DIR/$tdir
6651         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6652
6653         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6654                 error "setstripe -S failed"
6655         test_mkdir $DIR/$tdir/dd1
6656         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6657                 error "stripe info inherit failed"
6658 }
6659 run_test 65h "directory stripe info inherit ===================="
6660
6661 test_65i() {
6662         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6663
6664         save_layout_restore_at_exit $MOUNT
6665
6666         # bug6367: set non-default striping on root directory
6667         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6668
6669         # bug12836: getstripe on -1 default directory striping
6670         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6671
6672         # bug12836: getstripe -v on -1 default directory striping
6673         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6674
6675         # bug12836: new find on -1 default directory striping
6676         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6677 }
6678 run_test 65i "various tests to set root directory striping"
6679
6680 test_65j() { # bug6367
6681         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6682
6683         sync; sleep 1
6684
6685         # if we aren't already remounting for each test, do so for this test
6686         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6687                 cleanup || error "failed to unmount"
6688                 setup
6689         fi
6690
6691         save_layout_restore_at_exit $MOUNT
6692
6693         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6694 }
6695 run_test 65j "set default striping on root directory (bug 6367)="
6696
6697 cleaup_65k() {
6698         rm -rf $DIR/$tdir
6699         wait_delete_completed
6700         do_facet $SINGLEMDS "lctl set_param -n \
6701                 osp.$ost*MDT0000.max_create_count=$max_count"
6702         do_facet $SINGLEMDS "lctl set_param -n \
6703                 osp.$ost*MDT0000.create_count=$count"
6704         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6705         echo $INACTIVE_OSC "is Activate"
6706
6707         wait_osc_import_state mds ost$ostnum FULL
6708 }
6709
6710 test_65k() { # bug11679
6711         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6712         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6713         remote_mds_nodsh && skip "remote MDS with nodsh"
6714
6715         local disable_precreate=true
6716         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
6717                 disable_precreate=false
6718
6719         echo "Check OST status: "
6720         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6721                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6722
6723         for OSC in $MDS_OSCS; do
6724                 echo $OSC "is active"
6725                 do_facet $SINGLEMDS lctl --device %$OSC activate
6726         done
6727
6728         for INACTIVE_OSC in $MDS_OSCS; do
6729                 local ost=$(osc_to_ost $INACTIVE_OSC)
6730                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6731                                lov.*md*.target_obd |
6732                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6733
6734                 mkdir -p $DIR/$tdir
6735                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6736                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6737
6738                 echo "Deactivate: " $INACTIVE_OSC
6739                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6740
6741                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6742                               osp.$ost*MDT0000.create_count")
6743                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6744                                   osp.$ost*MDT0000.max_create_count")
6745                 $disable_precreate &&
6746                         do_facet $SINGLEMDS "lctl set_param -n \
6747                                 osp.$ost*MDT0000.max_create_count=0"
6748
6749                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6750                         [ -f $DIR/$tdir/$idx ] && continue
6751                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6752                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6753                                 { cleanup_65k;
6754                                   error "setstripe $idx should succeed"; }
6755                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6756                 done
6757                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6758                 rmdir $DIR/$tdir
6759
6760                 do_facet $SINGLEMDS "lctl set_param -n \
6761                         osp.$ost*MDT0000.max_create_count=$max_count"
6762                 do_facet $SINGLEMDS "lctl set_param -n \
6763                         osp.$ost*MDT0000.create_count=$count"
6764                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6765                 echo $INACTIVE_OSC "is Activate"
6766
6767                 wait_osc_import_state mds ost$ostnum FULL
6768         done
6769 }
6770 run_test 65k "validate manual striping works properly with deactivated OSCs"
6771
6772 test_65l() { # bug 12836
6773         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6774
6775         test_mkdir -p $DIR/$tdir/test_dir
6776         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6777         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6778 }
6779 run_test 65l "lfs find on -1 stripe dir ========================"
6780
6781 test_65m() {
6782         local layout=$(save_layout $MOUNT)
6783         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6784                 restore_layout $MOUNT $layout
6785                 error "setstripe should fail by non-root users"
6786         }
6787         true
6788 }
6789 run_test 65m "normal user can't set filesystem default stripe"
6790
6791 # bug 2543 - update blocks count on client
6792 test_66() {
6793         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6794
6795         COUNT=${COUNT:-8}
6796         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6797         sync; sync_all_data; sync; sync_all_data
6798         cancel_lru_locks osc
6799         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6800         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6801 }
6802 run_test 66 "update inode blocks count on client ==============="
6803
6804 meminfo() {
6805         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6806 }
6807
6808 swap_used() {
6809         swapon -s | awk '($1 == "'$1'") { print $4 }'
6810 }
6811
6812 # bug5265, obdfilter oa2dentry return -ENOENT
6813 # #define OBD_FAIL_SRV_ENOENT 0x217
6814 test_69() {
6815         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6816         remote_ost_nodsh && skip "remote OST with nodsh"
6817
6818         f="$DIR/$tfile"
6819         $SETSTRIPE -c 1 -i 0 $f
6820
6821         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6822
6823         do_facet ost1 lctl set_param fail_loc=0x217
6824         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6825         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6826
6827         do_facet ost1 lctl set_param fail_loc=0
6828         $DIRECTIO write $f 0 2 || error "write error"
6829
6830         cancel_lru_locks osc
6831         $DIRECTIO read $f 0 1 || error "read error"
6832
6833         do_facet ost1 lctl set_param fail_loc=0x217
6834         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6835
6836         do_facet ost1 lctl set_param fail_loc=0
6837         rm -f $f
6838 }
6839 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6840
6841 test_71() {
6842         test_mkdir $DIR/$tdir
6843         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6844         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6845 }
6846 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6847
6848 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6850         [ "$RUNAS_ID" = "$UID" ] &&
6851                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6852         # Check that testing environment is properly set up. Skip if not
6853         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6854                 skip_env "User $RUNAS_ID does not exist - skipping"
6855
6856         touch $DIR/$tfile
6857         chmod 777 $DIR/$tfile
6858         chmod ug+s $DIR/$tfile
6859         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6860                 error "$RUNAS dd $DIR/$tfile failed"
6861         # See if we are still setuid/sgid
6862         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6863                 error "S/gid is not dropped on write"
6864         # Now test that MDS is updated too
6865         cancel_lru_locks mdc
6866         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6867                 error "S/gid is not dropped on MDS"
6868         rm -f $DIR/$tfile
6869 }
6870 run_test 72a "Test that remove suid works properly (bug5695) ===="
6871
6872 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6873         local perm
6874
6875         [ "$RUNAS_ID" = "$UID" ] &&
6876                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6877         [ "$RUNAS_ID" -eq 0 ] &&
6878                 skip_env "RUNAS_ID = 0 -- skipping"
6879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6880         # Check that testing environment is properly set up. Skip if not
6881         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6882                 skip_env "User $RUNAS_ID does not exist - skipping"
6883
6884         touch $DIR/${tfile}-f{g,u}
6885         test_mkdir $DIR/${tfile}-dg
6886         test_mkdir $DIR/${tfile}-du
6887         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6888         chmod g+s $DIR/${tfile}-{f,d}g
6889         chmod u+s $DIR/${tfile}-{f,d}u
6890         for perm in 777 2777 4777; do
6891                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6892                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6893                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6894                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6895         done
6896         true
6897 }
6898 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6899
6900 # bug 3462 - multiple simultaneous MDC requests
6901 test_73() {
6902         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6903
6904         test_mkdir $DIR/d73-1
6905         test_mkdir $DIR/d73-2
6906         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6907         pid1=$!
6908
6909         lctl set_param fail_loc=0x80000129
6910         $MULTIOP $DIR/d73-1/f73-2 Oc &
6911         sleep 1
6912         lctl set_param fail_loc=0
6913
6914         $MULTIOP $DIR/d73-2/f73-3 Oc &
6915         pid3=$!
6916
6917         kill -USR1 $pid1
6918         wait $pid1 || return 1
6919
6920         sleep 25
6921
6922         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6923         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6924         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6925
6926         rm -rf $DIR/d73-*
6927 }
6928 run_test 73 "multiple MDC requests (should not deadlock)"
6929
6930 test_74a() { # bug 6149, 6184
6931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6932
6933         touch $DIR/f74a
6934         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6935         #
6936         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6937         # will spin in a tight reconnection loop
6938         $LCTL set_param fail_loc=0x8000030e
6939         # get any lock that won't be difficult - lookup works.
6940         ls $DIR/f74a
6941         $LCTL set_param fail_loc=0
6942         rm -f $DIR/f74a
6943         true
6944 }
6945 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6946
6947 test_74b() { # bug 13310
6948         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6949
6950         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6951         #
6952         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6953         # will spin in a tight reconnection loop
6954         $LCTL set_param fail_loc=0x8000030e
6955         # get a "difficult" lock
6956         touch $DIR/f74b
6957         $LCTL set_param fail_loc=0
6958         rm -f $DIR/f74b
6959         true
6960 }
6961 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6962
6963 test_74c() {
6964         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6965
6966         #define OBD_FAIL_LDLM_NEW_LOCK
6967         $LCTL set_param fail_loc=0x319
6968         touch $DIR/$tfile && error "touch successful"
6969         $LCTL set_param fail_loc=0
6970         true
6971 }
6972 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6973
6974 num_inodes() {
6975         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6976 }
6977
6978 test_76() { # Now for bug 20433, added originally in bug 1443
6979         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6980
6981         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6982
6983         cancel_lru_locks osc
6984         BEFORE_INODES=$(num_inodes)
6985         echo "before inodes: $BEFORE_INODES"
6986         local COUNT=1000
6987         [ "$SLOW" = "no" ] && COUNT=100
6988         for i in $(seq $COUNT); do
6989                 touch $DIR/$tfile
6990                 rm -f $DIR/$tfile
6991         done
6992         cancel_lru_locks osc
6993         AFTER_INODES=$(num_inodes)
6994         echo "after inodes: $AFTER_INODES"
6995         local wait=0
6996         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6997                 sleep 2
6998                 AFTER_INODES=$(num_inodes)
6999                 wait=$((wait+2))
7000                 echo "wait $wait seconds inodes: $AFTER_INODES"
7001                 if [ $wait -gt 30 ]; then
7002                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7003                 fi
7004         done
7005 }
7006 run_test 76 "confirm clients recycle inodes properly ===="
7007
7008
7009 export ORIG_CSUM=""
7010 set_checksums()
7011 {
7012         # Note: in sptlrpc modes which enable its own bulk checksum, the
7013         # original crc32_le bulk checksum will be automatically disabled,
7014         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7015         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7016         # In this case set_checksums() will not be no-op, because sptlrpc
7017         # bulk checksum will be enabled all through the test.
7018
7019         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7020         lctl set_param -n osc.*.checksums $1
7021         return 0
7022 }
7023
7024 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7025                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7026 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7027                              tr -d [] | head -n1)}
7028 set_checksum_type()
7029 {
7030         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7031         log "set checksum type to $1"
7032         return 0
7033 }
7034 F77_TMP=$TMP/f77-temp
7035 F77SZ=8
7036 setup_f77() {
7037         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7038                 error "error writing to $F77_TMP"
7039 }
7040
7041 test_77a() { # bug 10889
7042         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7043         $GSS && skip_env "could not run with gss"
7044
7045         [ ! -f $F77_TMP ] && setup_f77
7046         set_checksums 1
7047         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7048         set_checksums 0
7049         rm -f $DIR/$tfile
7050 }
7051 run_test 77a "normal checksum read/write operation"
7052
7053 test_77b() { # bug 10889
7054         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7055         $GSS && skip_env "could not run with gss"
7056
7057         [ ! -f $F77_TMP ] && setup_f77
7058         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7059         $LCTL set_param fail_loc=0x80000409
7060         set_checksums 1
7061
7062         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7063                 error "dd error: $?"
7064         $LCTL set_param fail_loc=0
7065
7066         for algo in $CKSUM_TYPES; do
7067                 cancel_lru_locks osc
7068                 set_checksum_type $algo
7069                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7070                 $LCTL set_param fail_loc=0x80000408
7071                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7072                 $LCTL set_param fail_loc=0
7073         done
7074         set_checksums 0
7075         set_checksum_type $ORIG_CSUM_TYPE
7076         rm -f $DIR/$tfile
7077 }
7078 run_test 77b "checksum error on client write, read"
7079
7080 cleanup_77c() {
7081         trap 0
7082         set_checksums 0
7083         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7084         $check_ost &&
7085                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7086         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7087         $check_ost && [ -n "$ost_file_prefix" ] &&
7088                 do_facet ost1 rm -f ${ost_file_prefix}\*
7089 }
7090
7091 test_77c() {
7092         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7093         $GSS && skip_env "could not run with gss"
7094         remote_ost_nodsh && skip "remote OST with nodsh"
7095
7096         local bad1
7097         local osc_file_prefix
7098         local osc_file
7099         local check_ost=false
7100         local ost_file_prefix
7101         local ost_file
7102         local orig_cksum
7103         local dump_cksum
7104         local fid
7105
7106         # ensure corruption will occur on first OSS/OST
7107         $LFS setstripe -i 0 $DIR/$tfile
7108
7109         [ ! -f $F77_TMP ] && setup_f77
7110         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7111                 error "dd write error: $?"
7112         fid=$($LFS path2fid $DIR/$tfile)
7113
7114         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
7115         then
7116                 check_ost=true
7117                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7118                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7119         else
7120                 echo "OSS do not support bulk pages dump upon error"
7121         fi
7122
7123         osc_file_prefix=$($LCTL get_param -n debug_path)
7124         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7125
7126         trap cleanup_77c EXIT
7127
7128         set_checksums 1
7129         # enable bulk pages dump upon error on Client
7130         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7131         # enable bulk pages dump upon error on OSS
7132         $check_ost &&
7133                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7134
7135         # flush Client cache to allow next read to reach OSS
7136         cancel_lru_locks osc
7137
7138         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7139         $LCTL set_param fail_loc=0x80000408
7140         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7141         $LCTL set_param fail_loc=0
7142
7143         rm -f $DIR/$tfile
7144
7145         # check cksum dump on Client
7146         osc_file=$(ls ${osc_file_prefix}*)
7147         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7148         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7149         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7150         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7151         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7152                      cksum)
7153         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7154         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7155                 error "dump content does not match on Client"
7156
7157         $check_ost || skip "No need to check cksum dump on OSS"
7158
7159         # check cksum dump on OSS
7160         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7161         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7162         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7163         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7164         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7165                 error "dump content does not match on OSS"
7166
7167         cleanup_77c
7168 }
7169 run_test 77c "checksum error on client read with debug"
7170
7171 test_77d() { # bug 10889
7172         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7173         $GSS && skip_env "could not run with gss"
7174
7175         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7176         $LCTL set_param fail_loc=0x80000409
7177         set_checksums 1
7178         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7179                 error "direct write: rc=$?"
7180         $LCTL set_param fail_loc=0
7181         set_checksums 0
7182
7183         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7184         $LCTL set_param fail_loc=0x80000408
7185         set_checksums 1
7186         cancel_lru_locks osc
7187         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7188                 error "direct read: rc=$?"
7189         $LCTL set_param fail_loc=0
7190         set_checksums 0
7191 }
7192 run_test 77d "checksum error on OST direct write, read"
7193
7194 test_77f() { # bug 10889
7195         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7196         $GSS && skip_env "could not run with gss"
7197
7198         set_checksums 1
7199         for algo in $CKSUM_TYPES; do
7200                 cancel_lru_locks osc
7201                 set_checksum_type $algo
7202                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7203                 $LCTL set_param fail_loc=0x409
7204                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7205                         error "direct write succeeded"
7206                 $LCTL set_param fail_loc=0
7207         done
7208         set_checksum_type $ORIG_CSUM_TYPE
7209         set_checksums 0
7210 }
7211 run_test 77f "repeat checksum error on write (expect error)"
7212
7213 test_77g() { # bug 10889
7214         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7215         $GSS && skip_env "could not run with gss"
7216         remote_ost_nodsh && skip "remote OST with nodsh"
7217
7218         [ ! -f $F77_TMP ] && setup_f77
7219
7220         local file=$DIR/$tfile
7221         stack_trap "rm -f $file" EXIT
7222
7223         $SETSTRIPE -c 1 -i 0 $file
7224         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7225         do_facet ost1 lctl set_param fail_loc=0x8000021a
7226         set_checksums 1
7227         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7228                 error "write error: rc=$?"
7229         do_facet ost1 lctl set_param fail_loc=0
7230         set_checksums 0
7231
7232         cancel_lru_locks osc
7233         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7234         do_facet ost1 lctl set_param fail_loc=0x8000021b
7235         set_checksums 1
7236         cmp $F77_TMP $file || error "file compare failed"
7237         do_facet ost1 lctl set_param fail_loc=0
7238         set_checksums 0
7239 }
7240 run_test 77g "checksum error on OST write, read"
7241
7242 test_77k() { # LU-10906
7243         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7244         $GSS && skip_env "could not run with gss"
7245
7246         local cksum_param="osc.$FSNAME*.checksums"
7247         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7248         local checksum
7249         local i
7250
7251         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7252         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7253         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7254                 EXIT
7255
7256         for i in 0 1; do
7257                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7258                         error "failed to set checksum=$i on MGS"
7259                 wait_update $HOSTNAME "$get_checksum" $i
7260                 #remount
7261                 echo "remount client, checksum should be $i"
7262                 remount_client $MOUNT || "failed to remount client"
7263                 checksum=$(eval $get_checksum)
7264                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7265         done
7266
7267         for opt in "checksum" "nochecksum"; do
7268                 #remount with mount option
7269                 echo "remount client with option $opt, checksum should be $i"
7270                 umount_client $MOUNT || "failed to umount client"
7271                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7272                         "failed to mount client with option '$opt'"
7273                 checksum=$(eval $get_checksum)
7274                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7275                 i=$((i - 1))
7276         done
7277
7278         remount_client $MOUNT || "failed to remount client"
7279 }
7280 run_test 77k "enable/disable checksum correctly"
7281
7282 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7283 rm -f $F77_TMP
7284 unset F77_TMP
7285
7286 cleanup_test_78() {
7287         trap 0
7288         rm -f $DIR/$tfile
7289 }
7290
7291 test_78() { # bug 10901
7292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7293         remote_ost || skip_env "local OST"
7294
7295         NSEQ=5
7296         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7297         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7298         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7299         echo "MemTotal: $MEMTOTAL"
7300
7301         # reserve 256MB of memory for the kernel and other running processes,
7302         # and then take 1/2 of the remaining memory for the read/write buffers.
7303         if [ $MEMTOTAL -gt 512 ] ;then
7304                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7305         else
7306                 # for those poor memory-starved high-end clusters...
7307                 MEMTOTAL=$((MEMTOTAL / 2))
7308         fi
7309         echo "Mem to use for directio: $MEMTOTAL"
7310
7311         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7312         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7313         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7314         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7315                 head -n1)
7316         echo "Smallest OST: $SMALLESTOST"
7317         [[ $SMALLESTOST -lt 10240 ]] &&
7318                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7319
7320         trap cleanup_test_78 EXIT
7321
7322         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7323                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7324
7325         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7326         echo "File size: $F78SIZE"
7327         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7328         for i in $(seq 1 $NSEQ); do
7329                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7330                 echo directIO rdwr round $i of $NSEQ
7331                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7332         done
7333
7334         cleanup_test_78
7335 }
7336 run_test 78 "handle large O_DIRECT writes correctly ============"
7337
7338 test_79() { # bug 12743
7339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7340
7341         wait_delete_completed
7342
7343         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7344         BKFREE=$(calc_osc_kbytes kbytesfree)
7345         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7346
7347         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7348         DFTOTAL=`echo $STRING | cut -d, -f1`
7349         DFUSED=`echo $STRING  | cut -d, -f2`
7350         DFAVAIL=`echo $STRING | cut -d, -f3`
7351         DFFREE=$(($DFTOTAL - $DFUSED))
7352
7353         ALLOWANCE=$((64 * $OSTCOUNT))
7354
7355         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7356            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7357                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7358         fi
7359         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7360            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7361                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7362         fi
7363         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7364            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7365                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7366         fi
7367 }
7368 run_test 79 "df report consistency check ======================="
7369
7370 test_80() { # bug 10718
7371         remote_ost_nodsh && skip "remote OST with nodsh"
7372         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7373
7374         # relax strong synchronous semantics for slow backends like ZFS
7375         local soc="obdfilter.*.sync_on_lock_cancel"
7376         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7377         local hosts=
7378         if [ "$soc_old" != "never" ] &&
7379                 [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
7380                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7381                                 facet_active_host $host; done | sort -u)
7382                         do_nodes $hosts lctl set_param $soc=never
7383         fi
7384
7385         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7386         sync; sleep 1; sync
7387         local BEFORE=`date +%s`
7388         cancel_lru_locks osc
7389         local AFTER=`date +%s`
7390         local DIFF=$((AFTER-BEFORE))
7391         if [ $DIFF -gt 1 ] ; then
7392                 error "elapsed for 1M@1T = $DIFF"
7393         fi
7394
7395         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7396
7397         rm -f $DIR/$tfile
7398 }
7399 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7400
7401 test_81a() { # LU-456
7402         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7403         remote_ost_nodsh && skip "remote OST with nodsh"
7404
7405         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7406         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7407         do_facet ost1 lctl set_param fail_loc=0x80000228
7408
7409         # write should trigger a retry and success
7410         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7411         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7412         RC=$?
7413         if [ $RC -ne 0 ] ; then
7414                 error "write should success, but failed for $RC"
7415         fi
7416 }
7417 run_test 81a "OST should retry write when get -ENOSPC ==============="
7418
7419 test_81b() { # LU-456
7420         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7421         remote_ost_nodsh && skip "remote OST with nodsh"
7422
7423         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7424         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7425         do_facet ost1 lctl set_param fail_loc=0x228
7426
7427         # write should retry several times and return -ENOSPC finally
7428         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7429         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7430         RC=$?
7431         ENOSPC=28
7432         if [ $RC -ne $ENOSPC ] ; then
7433                 error "dd should fail for -ENOSPC, but succeed."
7434         fi
7435 }
7436 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7437
7438 test_82() { # LU-1031
7439         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7440         local gid1=14091995
7441         local gid2=16022000
7442
7443         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7444         local MULTIPID1=$!
7445         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7446         local MULTIPID2=$!
7447         kill -USR1 $MULTIPID2
7448         sleep 2
7449         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7450                 error "First grouplock does not block second one"
7451         else
7452                 echo "Second grouplock blocks first one"
7453         fi
7454         kill -USR1 $MULTIPID1
7455         wait $MULTIPID1
7456         wait $MULTIPID2
7457 }
7458 run_test 82 "Basic grouplock test"
7459
7460 test_83() {
7461         local sfile="/boot/System.map-$(uname -r)"
7462         [ ! -f $sfile ] && skip "No $sfile found"
7463         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7464         $LCTL set_param fail_loc=0x140d
7465         cp $sfile $DIR/$tfile || error "write failed"
7466         diff -c $sfile $DIR/$tfile || error "files are different"
7467         $LCTL set_param fail_loc=0
7468         rm -f $DIR/$tfile
7469 }
7470 run_test 83 "Short write in ptask ==============================="
7471
7472 test_99() {
7473         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7474
7475         test_mkdir $DIR/$tdir.cvsroot
7476         chown $RUNAS_ID $DIR/$tdir.cvsroot
7477
7478         cd $TMP
7479         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7480
7481         cd /etc/init.d
7482         # some versions of cvs import exit(1) when asked to import links or
7483         # files they can't read.  ignore those files.
7484         local toignore=$(find . -type l -printf '-I %f\n' -o \
7485                          ! -perm /4 -printf '-I %f\n')
7486         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7487                 $tdir.reposname vtag rtag
7488
7489         cd $DIR
7490         test_mkdir $DIR/$tdir.reposname
7491         chown $RUNAS_ID $DIR/$tdir.reposname
7492         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7493
7494         cd $DIR/$tdir.reposname
7495         $RUNAS touch foo99
7496         $RUNAS cvs add -m 'addmsg' foo99
7497         $RUNAS cvs update
7498         $RUNAS cvs commit -m 'nomsg' foo99
7499         rm -fr $DIR/$tdir.cvsroot
7500 }
7501 run_test 99 "cvs strange file/directory operations"
7502
7503 test_100() {
7504         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7505         [[ "$NETTYPE" =~ tcp ]] ||
7506                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7507         remote_ost_nodsh && skip "remote OST with nodsh"
7508         remote_mds_nodsh && skip "remote MDS with nodsh"
7509         remote_servers ||
7510                 skip "useless for local single node setup"
7511
7512         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7513                 [ "$PROT" != "tcp" ] && continue
7514                 RPORT=$(echo $REMOTE | cut -d: -f2)
7515                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7516
7517                 rc=0
7518                 LPORT=`echo $LOCAL | cut -d: -f2`
7519                 if [ $LPORT -ge 1024 ]; then
7520                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7521                         netstat -tna
7522                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7523                 fi
7524         done
7525         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7526 }
7527 run_test 100 "check local port using privileged port ==========="
7528
7529 function get_named_value()
7530 {
7531     local tag
7532
7533     tag=$1
7534     while read ;do
7535         line=$REPLY
7536         case $line in
7537         $tag*)
7538             echo $line | sed "s/^$tag[ ]*//"
7539             break
7540             ;;
7541         esac
7542     done
7543 }
7544
7545 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7546                    awk '/^max_cached_mb/ { print $2 }')
7547
7548 cleanup_101a() {
7549         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7550         trap 0
7551 }
7552
7553 test_101a() {
7554         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7555         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7556
7557         local s
7558         local discard
7559         local nreads=10000
7560         local cache_limit=32
7561
7562         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7563         trap cleanup_101a EXIT
7564         $LCTL set_param -n llite.*.read_ahead_stats 0
7565         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7566
7567         #
7568         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7569         #
7570         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7571         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7572
7573         discard=0
7574         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7575                 get_named_value 'read but discarded' | cut -d" " -f1); do
7576                         discard=$(($discard + $s))
7577         done
7578         cleanup_101a
7579
7580         if [[ $(($discard * 10)) -gt $nreads ]]; then
7581                 $LCTL get_param osc.*-osc*.rpc_stats
7582                 $LCTL get_param llite.*.read_ahead_stats
7583                 error "too many ($discard) discarded pages"
7584         fi
7585         rm -f $DIR/$tfile || true
7586 }
7587 run_test 101a "check read-ahead for random reads"
7588
7589 setup_test101bc() {
7590         test_mkdir $DIR/$tdir
7591         local STRIPE_SIZE=$1
7592         local FILE_LENGTH=$2
7593         STRIPE_OFFSET=0
7594
7595         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7596
7597         local list=$(comma_list $(osts_nodes))
7598         set_osd_param $list '' read_cache_enable 0
7599         set_osd_param $list '' writethrough_cache_enable 0
7600
7601         trap cleanup_test101bc EXIT
7602         # prepare the read-ahead file
7603         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7604
7605         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7606                                 count=$FILE_SIZE_MB 2> /dev/null
7607
7608 }
7609
7610 cleanup_test101bc() {
7611         trap 0
7612         rm -rf $DIR/$tdir
7613         rm -f $DIR/$tfile
7614
7615         local list=$(comma_list $(osts_nodes))
7616         set_osd_param $list '' read_cache_enable 1
7617         set_osd_param $list '' writethrough_cache_enable 1
7618 }
7619
7620 calc_total() {
7621         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7622 }
7623
7624 ra_check_101() {
7625         local READ_SIZE=$1
7626         local STRIPE_SIZE=$2
7627         local FILE_LENGTH=$3
7628         local RA_INC=1048576
7629         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7630         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7631                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7632         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7633                         get_named_value 'read but discarded' |
7634                         cut -d" " -f1 | calc_total)
7635         if [[ $DISCARD -gt $discard_limit ]]; then
7636                 $LCTL get_param llite.*.read_ahead_stats
7637                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7638         else
7639                 echo "Read-ahead success for size ${READ_SIZE}"
7640         fi
7641 }
7642
7643 test_101b() {
7644         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7645         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7646
7647         local STRIPE_SIZE=1048576
7648         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7649
7650         if [ $SLOW == "yes" ]; then
7651                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7652         else
7653                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7654         fi
7655
7656         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7657
7658         # prepare the read-ahead file
7659         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7660         cancel_lru_locks osc
7661         for BIDX in 2 4 8 16 32 64 128 256
7662         do
7663                 local BSIZE=$((BIDX*4096))
7664                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7665                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7666                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7667                 $LCTL set_param -n llite.*.read_ahead_stats 0
7668                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7669                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7670                 cancel_lru_locks osc
7671                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7672         done
7673         cleanup_test101bc
7674         true
7675 }
7676 run_test 101b "check stride-io mode read-ahead ================="
7677
7678 test_101c() {
7679         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7680
7681         local STRIPE_SIZE=1048576
7682         local FILE_LENGTH=$((STRIPE_SIZE*100))
7683         local nreads=10000
7684         local osc_rpc_stats
7685
7686         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7687
7688         cancel_lru_locks osc
7689         $LCTL set_param osc.*.rpc_stats 0
7690         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7691         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7692                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7693                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7694                 local size
7695
7696                 if [ $lines -le 20 ]; then
7697                         continue
7698                 fi
7699                 for size in 1 2 4 8; do
7700                         local rpc=$(echo "$stats" |
7701                                     awk '($1 == "'$size':") {print $2; exit; }')
7702                         [ $rpc != 0 ] &&
7703                                 error "Small $((size*4))k read IO $rpc !"
7704                 done
7705                 echo "$osc_rpc_stats check passed!"
7706         done
7707         cleanup_test101bc
7708         true
7709 }
7710 run_test 101c "check stripe_size aligned read-ahead ================="
7711
7712 set_read_ahead() {
7713         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7714         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7715 }
7716
7717 test_101d() {
7718         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7719
7720         local file=$DIR/$tfile
7721         local sz_MB=${FILESIZE_101d:-500}
7722         local ra_MB=${READAHEAD_MB:-40}
7723
7724         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7725         [ $free_MB -lt $sz_MB ] &&
7726                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7727
7728         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7729         $SETSTRIPE -c -1 $file || error "setstripe failed"
7730
7731         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7732         echo Cancel LRU locks on lustre client to flush the client cache
7733         cancel_lru_locks osc
7734
7735         echo Disable read-ahead
7736         local old_READAHEAD=$(set_read_ahead 0)
7737
7738         echo Reading the test file $file with read-ahead disabled
7739         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7740
7741         echo Cancel LRU locks on lustre client to flush the client cache
7742         cancel_lru_locks osc
7743         echo Enable read-ahead with ${ra_MB}MB
7744         set_read_ahead $ra_MB
7745
7746         echo Reading the test file $file with read-ahead enabled
7747         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7748
7749         echo "read-ahead disabled time read $raOFF"
7750         echo "read-ahead enabled  time read $raON"
7751
7752         set_read_ahead $old_READAHEAD
7753         rm -f $file
7754         wait_delete_completed
7755
7756         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7757                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7758 }
7759 run_test 101d "file read with and without read-ahead enabled"
7760
7761 test_101e() {
7762         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7763
7764         local file=$DIR/$tfile
7765         local size_KB=500  #KB
7766         local count=100
7767         local bsize=1024
7768
7769         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7770         local need_KB=$((count * size_KB))
7771         [[ $free_KB -le $need_KB ]] &&
7772                 skip_env "Need free space $need_KB, have $free_KB"
7773
7774         echo "Creating $count ${size_KB}K test files"
7775         for ((i = 0; i < $count; i++)); do
7776                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7777         done
7778
7779         echo "Cancel LRU locks on lustre client to flush the client cache"
7780         cancel_lru_locks $OSC
7781
7782         echo "Reset readahead stats"
7783         $LCTL set_param -n llite.*.read_ahead_stats 0
7784
7785         for ((i = 0; i < $count; i++)); do
7786                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7787         done
7788
7789         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7790                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7791
7792         for ((i = 0; i < $count; i++)); do
7793                 rm -rf $file.$i 2>/dev/null
7794         done
7795
7796         #10000 means 20% reads are missing in readahead
7797         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7798 }
7799 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7800
7801 test_101f() {
7802         which iozone || skip_env "no iozone installed"
7803
7804         local old_debug=$($LCTL get_param debug)
7805         old_debug=${old_debug#*=}
7806         $LCTL set_param debug="reada mmap"
7807
7808         # create a test file
7809         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7810
7811         echo Cancel LRU locks on lustre client to flush the client cache
7812         cancel_lru_locks osc
7813
7814         echo Reset readahead stats
7815         $LCTL set_param -n llite.*.read_ahead_stats 0
7816
7817         echo mmap read the file with small block size
7818         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7819                 > /dev/null 2>&1
7820
7821         echo checking missing pages
7822         $LCTL get_param llite.*.read_ahead_stats
7823         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7824                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7825
7826         $LCTL set_param debug="$old_debug"
7827         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7828         rm -f $DIR/$tfile
7829 }
7830 run_test 101f "check mmap read performance"
7831
7832 test_101g_brw_size_test() {
7833         local mb=$1
7834         local pages=$((mb * 1048576 / PAGE_SIZE))
7835         local file=$DIR/$tfile
7836
7837         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7838                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7839         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7840                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7841                         return 2
7842         done
7843
7844         stack_trap "rm -f $file" EXIT
7845         $LCTL set_param -n osc.*.rpc_stats=0
7846
7847         # 10 RPCs should be enough for the test
7848         local count=10
7849         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7850                 { error "dd write ${mb} MB blocks failed"; return 3; }
7851         cancel_lru_locks osc
7852         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7853                 { error "dd write ${mb} MB blocks failed"; return 4; }
7854
7855         # calculate number of full-sized read and write RPCs
7856         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7857                 sed -n '/pages per rpc/,/^$/p' |
7858                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7859                 END { print reads,writes }'))
7860         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7861                 return 5
7862         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7863                 return 6
7864
7865         return 0
7866 }
7867
7868 test_101g() {
7869         remote_ost_nodsh && skip "remote OST with nodsh"
7870
7871         local rpcs
7872         local osts=$(get_facets OST)
7873         local list=$(comma_list $(osts_nodes))
7874         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7875         local brw_size="obdfilter.*.brw_size"
7876         local ostver=$(lustre_version_code ost1)
7877         local cliver=$(lustre_version_code client)
7878
7879         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7880
7881         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7882         if [ $ostver -ge $(version_code 2.8.52) -o \
7883              \( $ostver -ge $(version_code 2.7.17) -a \
7884                 $ostver -lt $(version_code 2.7.50) \) ] &&
7885            [ $cliver -ge $(version_code 2.8.52) -o \
7886              \( $cliver -ge $(version_code 2.7.17) -a \
7887                 $cliver -lt $(version_code 2.7.50) \) ]; then
7888                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
7889                 if [[ $orig_mb -lt 16 ]]; then
7890                         save_lustre_params $osts "$brw_size" > $p
7891                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7892                                 error "set 16MB RPC size failed"
7893
7894                         echo "remount client to enable new RPC size"
7895                         remount_client $MOUNT || error "remount_client failed"
7896                 fi
7897
7898                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7899                 # should be able to set brw_size=12, but no rpc_stats for that
7900                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7901         fi
7902
7903         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7904
7905         if [[ $orig_mb -lt 16 ]]; then
7906                 restore_lustre_params < $p
7907                 remount_client $MOUNT || error "remount_client restore failed"
7908         fi
7909
7910         rm -f $p $DIR/$tfile
7911 }
7912 run_test 101g "Big bulk(4/16 MiB) readahead"
7913
7914 setup_test102() {
7915         test_mkdir $DIR/$tdir
7916         chown $RUNAS_ID $DIR/$tdir
7917         STRIPE_SIZE=65536
7918         STRIPE_OFFSET=1
7919         STRIPE_COUNT=$OSTCOUNT
7920         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7921
7922         trap cleanup_test102 EXIT
7923         cd $DIR
7924         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7925         cd $DIR/$tdir
7926         for num in 1 2 3 4; do
7927                 for count in $(seq 1 $STRIPE_COUNT); do
7928                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7929                                 local size=`expr $STRIPE_SIZE \* $num`
7930                                 local file=file"$num-$idx-$count"
7931                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7932                         done
7933                 done
7934         done
7935
7936         cd $DIR
7937         $1 tar cf $TMP/f102.tar $tdir --xattrs
7938 }
7939
7940 cleanup_test102() {
7941         trap 0
7942         rm -f $TMP/f102.tar
7943         rm -rf $DIR/d0.sanity/d102
7944 }
7945
7946 test_102a() {
7947         [ "$UID" != 0 ] && skip "must run as root"
7948         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7949                 skip_env "must have user_xattr"
7950
7951         [ -z "$(which setfattr 2>/dev/null)" ] &&
7952                 skip_env "could not find setfattr"
7953
7954         local testfile=$DIR/$tfile
7955
7956         touch $testfile
7957         echo "set/get xattr..."
7958         setfattr -n trusted.name1 -v value1 $testfile ||
7959                 error "setfattr -n trusted.name1=value1 $testfile failed"
7960         getfattr -n trusted.name1 $testfile 2> /dev/null |
7961           grep "trusted.name1=.value1" ||
7962                 error "$testfile missing trusted.name1=value1"
7963
7964         setfattr -n user.author1 -v author1 $testfile ||
7965                 error "setfattr -n user.author1=author1 $testfile failed"
7966         getfattr -n user.author1 $testfile 2> /dev/null |
7967           grep "user.author1=.author1" ||
7968                 error "$testfile missing trusted.author1=author1"
7969
7970         echo "listxattr..."
7971         setfattr -n trusted.name2 -v value2 $testfile ||
7972                 error "$testfile unable to set trusted.name2"
7973         setfattr -n trusted.name3 -v value3 $testfile ||
7974                 error "$testfile unable to set trusted.name3"
7975         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7976             grep "trusted.name" | wc -l) -eq 3 ] ||
7977                 error "$testfile missing 3 trusted.name xattrs"
7978
7979         setfattr -n user.author2 -v author2 $testfile ||
7980                 error "$testfile unable to set user.author2"
7981         setfattr -n user.author3 -v author3 $testfile ||
7982                 error "$testfile unable to set user.author3"
7983         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7984             grep "user.author" | wc -l) -eq 3 ] ||
7985                 error "$testfile missing 3 user.author xattrs"
7986
7987         echo "remove xattr..."
7988         setfattr -x trusted.name1 $testfile ||
7989                 error "$testfile error deleting trusted.name1"
7990         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7991                 error "$testfile did not delete trusted.name1 xattr"
7992
7993         setfattr -x user.author1 $testfile ||
7994                 error "$testfile error deleting user.author1"
7995         echo "set lustre special xattr ..."
7996         $LFS setstripe -c1 $testfile
7997         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7998                 awk -F "=" '/trusted.lov/ { print $2 }' )
7999         setfattr -n "trusted.lov" -v $lovea $testfile ||
8000                 error "$testfile doesn't ignore setting trusted.lov again"
8001         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8002                 error "$testfile allow setting invalid trusted.lov"
8003         rm -f $testfile
8004 }
8005 run_test 102a "user xattr test =================================="
8006
8007 test_102b() {
8008         [ -z "$(which setfattr 2>/dev/null)" ] &&
8009                 skip_env "could not find setfattr"
8010         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8011
8012         # b10930: get/set/list trusted.lov xattr
8013         echo "get/set/list trusted.lov xattr ..."
8014         local testfile=$DIR/$tfile
8015         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8016                 error "setstripe failed"
8017         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
8018                 error "getstripe failed"
8019         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8020                 error "can't get trusted.lov from $testfile"
8021
8022         local testfile2=${testfile}2
8023         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8024                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8025
8026         $MCREATE $testfile2
8027         setfattr -n trusted.lov -v $value $testfile2
8028         local stripe_size=$($GETSTRIPE -S $testfile2)
8029         local stripe_count=$($GETSTRIPE -c $testfile2)
8030         [[ $stripe_size -eq 65536 ]] ||
8031                 error "stripe size $stripe_size != 65536"
8032         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8033                 error "stripe count $stripe_count != $STRIPECOUNT"
8034         rm -f $DIR/$tfile
8035 }
8036 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8037
8038 test_102c() {
8039         [ -z "$(which setfattr 2>/dev/null)" ] &&
8040                 skip_env "could not find setfattr"
8041         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8042
8043         # b10930: get/set/list lustre.lov xattr
8044         echo "get/set/list lustre.lov xattr ..."
8045         test_mkdir $DIR/$tdir
8046         chown $RUNAS_ID $DIR/$tdir
8047         local testfile=$DIR/$tdir/$tfile
8048         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8049                 error "setstripe failed"
8050         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8051                 error "getstripe failed"
8052         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8053         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8054
8055         local testfile2=${testfile}2
8056         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8057                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8058
8059         $RUNAS $MCREATE $testfile2
8060         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8061         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8062         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8063         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8064         [ $stripe_count -eq $STRIPECOUNT ] ||
8065                 error "stripe count $stripe_count != $STRIPECOUNT"
8066 }
8067 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8068
8069 compare_stripe_info1() {
8070         local stripe_index_all_zero=true
8071
8072         for num in 1 2 3 4; do
8073                 for count in $(seq 1 $STRIPE_COUNT); do
8074                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8075                                 local size=$((STRIPE_SIZE * num))
8076                                 local file=file"$num-$offset-$count"
8077                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8078                                 [[ $stripe_size -ne $size ]] &&
8079                                     error "$file: size $stripe_size != $size"
8080                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8081                                 # allow fewer stripes to be created, ORI-601
8082                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8083                                     error "$file: count $stripe_count != $count"
8084                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8085                                 [[ $stripe_index -ne 0 ]] &&
8086                                         stripe_index_all_zero=false
8087                         done
8088                 done
8089         done
8090         $stripe_index_all_zero &&
8091                 error "all files are being extracted starting from OST index 0"
8092         return 0
8093 }
8094
8095 have_xattrs_include() {
8096         tar --help | grep -q xattrs-include &&
8097                 echo --xattrs-include="lustre.*"
8098 }
8099
8100 test_102d() {
8101         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8102         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8103
8104         XINC=$(have_xattrs_include)
8105         setup_test102
8106         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8107         cd $DIR/$tdir/$tdir
8108         compare_stripe_info1
8109 }
8110 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8111
8112 test_102f() {
8113         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8114         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8115
8116         XINC=$(have_xattrs_include)
8117         setup_test102
8118         test_mkdir $DIR/$tdir.restore
8119         cd $DIR
8120         tar cf - --xattrs $tdir | tar xf - \
8121                 -C $DIR/$tdir.restore --xattrs $XINC
8122         cd $DIR/$tdir.restore/$tdir
8123         compare_stripe_info1
8124 }
8125 run_test 102f "tar copy files, not keep osts"
8126
8127 grow_xattr() {
8128         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8129                 skip "must have user_xattr"
8130         [ -z "$(which setfattr 2>/dev/null)" ] &&
8131                 skip_env "could not find setfattr"
8132         [ -z "$(which getfattr 2>/dev/null)" ] &&
8133                 skip_env "could not find getfattr"
8134
8135         local xsize=${1:-1024}  # in bytes
8136         local file=$DIR/$tfile
8137         local value="$(generate_string $xsize)"
8138         local xbig=trusted.big
8139
8140         touch $file
8141         log "save $xbig on $file"
8142         setfattr -n $xbig -v $value $file ||
8143                 error "saving $xbig on $file failed"
8144
8145         local orig=$(get_xattr_value $xbig $file)
8146         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8147
8148         local xsml=trusted.sml
8149         log "save $xsml on $file"
8150         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8151
8152         local new=$(get_xattr_value $xbig $file)
8153         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8154
8155         log "grow $xsml on $file"
8156         setfattr -n $xsml -v "$value" $file ||
8157                 error "growing $xsml on $file failed"
8158
8159         new=$(get_xattr_value $xbig $file)
8160         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8161         log "$xbig still valid after growing $xsml"
8162
8163         rm -f $file
8164 }
8165
8166 test_102h() { # bug 15777
8167         grow_xattr 1024
8168 }
8169 run_test 102h "grow xattr from inside inode to external block"
8170
8171 test_102ha() {
8172         large_xattr_enabled || skip_env "ea_inode feature disabled"
8173
8174         grow_xattr $(max_xattr_size)
8175 }
8176 run_test 102ha "grow xattr from inside inode to external inode"
8177
8178 test_102i() { # bug 17038
8179         [ -z "$(which getfattr 2>/dev/null)" ] &&
8180                 skip "could not find getfattr"
8181
8182         touch $DIR/$tfile
8183         ln -s $DIR/$tfile $DIR/${tfile}link
8184         getfattr -n trusted.lov $DIR/$tfile ||
8185                 error "lgetxattr on $DIR/$tfile failed"
8186         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8187                 grep -i "no such attr" ||
8188                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8189         rm -f $DIR/$tfile $DIR/${tfile}link
8190 }
8191 run_test 102i "lgetxattr test on symbolic link ============"
8192
8193 test_102j() {
8194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8195         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8196
8197         XINC=$(have_xattrs_include)
8198         setup_test102 "$RUNAS"
8199         chown $RUNAS_ID $DIR/$tdir
8200         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8201         cd $DIR/$tdir/$tdir
8202         compare_stripe_info1 "$RUNAS"
8203 }
8204 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8205
8206 test_102k() {
8207         [ -z "$(which setfattr 2>/dev/null)" ] &&
8208                 skip "could not find setfattr"
8209
8210         touch $DIR/$tfile
8211         # b22187 just check that does not crash for regular file.
8212         setfattr -n trusted.lov $DIR/$tfile
8213         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8214         local test_kdir=$DIR/$tdir
8215         test_mkdir $test_kdir
8216         local default_size=$($LFS getstripe -S $test_kdir)
8217         local default_count=$($LFS getstripe -c $test_kdir)
8218         local default_offset=$($LFS getstripe -i $test_kdir)
8219         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8220                 error 'dir setstripe failed'
8221         setfattr -n trusted.lov $test_kdir
8222         local stripe_size=$($LFS getstripe -S $test_kdir)
8223         local stripe_count=$($LFS getstripe -c $test_kdir)
8224         local stripe_offset=$($LFS getstripe -i $test_kdir)
8225         [ $stripe_size -eq $default_size ] ||
8226                 error "stripe size $stripe_size != $default_size"
8227         [ $stripe_count -eq $default_count ] ||
8228                 error "stripe count $stripe_count != $default_count"
8229         [ $stripe_offset -eq $default_offset ] ||
8230                 error "stripe offset $stripe_offset != $default_offset"
8231         rm -rf $DIR/$tfile $test_kdir
8232 }
8233 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8234
8235 test_102l() {
8236         [ -z "$(which getfattr 2>/dev/null)" ] &&
8237                 skip "could not find getfattr"
8238
8239         # LU-532 trusted. xattr is invisible to non-root
8240         local testfile=$DIR/$tfile
8241
8242         touch $testfile
8243
8244         echo "listxattr as user..."
8245         chown $RUNAS_ID $testfile
8246         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8247             grep -q "trusted" &&
8248                 error "$testfile trusted xattrs are user visible"
8249
8250         return 0;
8251 }
8252 run_test 102l "listxattr size test =================================="
8253
8254 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8255         local path=$DIR/$tfile
8256         touch $path
8257
8258         listxattr_size_check $path || error "listattr_size_check $path failed"
8259 }
8260 run_test 102m "Ensure listxattr fails on small bufffer ========"
8261
8262 cleanup_test102
8263
8264 getxattr() { # getxattr path name
8265         # Return the base64 encoding of the value of xattr name on path.
8266         local path=$1
8267         local name=$2
8268
8269         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8270         # file: $path
8271         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8272         #
8273         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8274
8275         getfattr --absolute-names --encoding=base64 --name=$name $path |
8276                 awk -F= -v name=$name '$1 == name {
8277                         print substr($0, index($0, "=") + 1);
8278         }'
8279 }
8280
8281 test_102n() { # LU-4101 mdt: protect internal xattrs
8282         [ -z "$(which setfattr 2>/dev/null)" ] &&
8283                 skip "could not find setfattr"
8284         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
8285         then
8286                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8287         fi
8288
8289         local file0=$DIR/$tfile.0
8290         local file1=$DIR/$tfile.1
8291         local xattr0=$TMP/$tfile.0
8292         local xattr1=$TMP/$tfile.1
8293         local namelist="lov lma lmv link fid version som hsm"
8294         local name
8295         local value
8296
8297         rm -rf $file0 $file1 $xattr0 $xattr1
8298         touch $file0 $file1
8299
8300         # Get 'before' xattrs of $file1.
8301         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8302
8303         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
8304                 namelist+=" lfsck_namespace"
8305         for name in $namelist; do
8306                 # Try to copy xattr from $file0 to $file1.
8307                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8308
8309                 setfattr --name=trusted.$name --value="$value" $file1 ||
8310                         error "setxattr 'trusted.$name' failed"
8311
8312                 # Try to set a garbage xattr.
8313                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8314
8315                 if [[ x$name == "xlov" ]]; then
8316                         setfattr --name=trusted.lov --value="$value" $file1 &&
8317                         error "setxattr invalid 'trusted.lov' success"
8318                 else
8319                         setfattr --name=trusted.$name --value="$value" $file1 ||
8320                                 error "setxattr invalid 'trusted.$name' failed"
8321                 fi
8322
8323                 # Try to remove the xattr from $file1. We don't care if this
8324                 # appears to succeed or fail, we just don't want there to be
8325                 # any changes or crashes.
8326                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8327         done
8328
8329         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
8330         then
8331                 name="lfsck_ns"
8332                 # Try to copy xattr from $file0 to $file1.
8333                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8334
8335                 setfattr --name=trusted.$name --value="$value" $file1 ||
8336                         error "setxattr 'trusted.$name' failed"
8337
8338                 # Try to set a garbage xattr.
8339                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8340
8341                 setfattr --name=trusted.$name --value="$value" $file1 ||
8342                         error "setxattr 'trusted.$name' failed"
8343
8344                 # Try to remove the xattr from $file1. We don't care if this
8345                 # appears to succeed or fail, we just don't want there to be
8346                 # any changes or crashes.
8347                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8348         fi
8349
8350         # Get 'after' xattrs of file1.
8351         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8352
8353         if ! diff $xattr0 $xattr1; then
8354                 error "before and after xattrs of '$file1' differ"
8355         fi
8356
8357         rm -rf $file0 $file1 $xattr0 $xattr1
8358
8359         return 0
8360 }
8361 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8362
8363 test_102p() { # LU-4703 setxattr did not check ownership
8364         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
8365                 skip "MDS needs to be at least 2.5.56"
8366
8367         local testfile=$DIR/$tfile
8368
8369         touch $testfile
8370
8371         echo "setfacl as user..."
8372         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8373         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8374
8375         echo "setfattr as user..."
8376         setfacl -m "u:$RUNAS_ID:---" $testfile
8377         $RUNAS setfattr -x system.posix_acl_access $testfile
8378         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8379 }
8380 run_test 102p "check setxattr(2) correctly fails without permission"
8381
8382 test_102q() {
8383         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
8384                 skip "MDS needs to be at least 2.6.92"
8385
8386         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8387 }
8388 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8389
8390 test_102r() {
8391         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
8392                 skip "MDS needs to be at least 2.6.93"
8393
8394         touch $DIR/$tfile || error "touch"
8395         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8396         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8397         rm $DIR/$tfile || error "rm"
8398
8399         #normal directory
8400         mkdir -p $DIR/$tdir || error "mkdir"
8401         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8402         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8403         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8404                 error "$testfile error deleting user.author1"
8405         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8406                 grep "user.$(basename $tdir)" &&
8407                 error "$tdir did not delete user.$(basename $tdir)"
8408         rmdir $DIR/$tdir || error "rmdir"
8409
8410         #striped directory
8411         test_mkdir $DIR/$tdir
8412         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8413         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8414         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8415                 error "$testfile error deleting user.author1"
8416         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8417                 grep "user.$(basename $tdir)" &&
8418                 error "$tdir did not delete user.$(basename $tdir)"
8419         rmdir $DIR/$tdir || error "rm striped dir"
8420 }
8421 run_test 102r "set EAs with empty values"
8422
8423 test_102s() {
8424         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8425                 skip "MDS needs to be at least 2.11.52"
8426
8427         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8428
8429         save_lustre_params client "llite.*.xattr_cache" > $save
8430
8431         for cache in 0 1; do
8432                 lctl set_param llite.*.xattr_cache=$cache
8433
8434                 rm -f $DIR/$tfile
8435                 touch $DIR/$tfile || error "touch"
8436                 for prefix in lustre security system trusted user; do
8437                         # Note getxattr() may fail with 'Operation not
8438                         # supported' or 'No such attribute' depending
8439                         # on prefix and cache.
8440                         getfattr -n $prefix.n102s $DIR/$tfile &&
8441                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8442                 done
8443         done
8444
8445         restore_lustre_params < $save
8446 }
8447 run_test 102s "getting nonexistent xattrs should fail"
8448
8449 test_102t() {
8450         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
8451                 skip "MDS needs to be at least 2.11.52"
8452
8453         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8454
8455         save_lustre_params client "llite.*.xattr_cache" > $save
8456
8457         for cache in 0 1; do
8458                 lctl set_param llite.*.xattr_cache=$cache
8459
8460                 for buf_size in 0 256; do
8461                         rm -f $DIR/$tfile
8462                         touch $DIR/$tfile || error "touch"
8463                         setfattr -n user.multiop $DIR/$tfile
8464                         $MULTIOP $DIR/$tfile oa$buf_size ||
8465                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8466                 done
8467         done
8468
8469         restore_lustre_params < $save
8470 }
8471 run_test 102t "zero length xattr values handled correctly"
8472
8473 run_acl_subtest()
8474 {
8475     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8476     return $?
8477 }
8478
8479 test_103a() {
8480         [ "$UID" != 0 ] && skip "must run as root"
8481         $GSS && skip_env "could not run under gss"
8482         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8483                 skip_env "must have acl enabled"
8484         [ -z "$(which setfacl 2>/dev/null)" ] &&
8485                 skip_env "could not find setfacl"
8486         remote_mds_nodsh && skip "remote MDS with nodsh"
8487
8488         gpasswd -a daemon bin                           # LU-5641
8489         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8490
8491         declare -a identity_old
8492
8493         for num in $(seq $MDSCOUNT); do
8494                 switch_identity $num true || identity_old[$num]=$?
8495         done
8496
8497         SAVE_UMASK=$(umask)
8498         umask 0022
8499         mkdir -p $DIR/$tdir
8500         cd $DIR/$tdir
8501
8502         echo "performing cp ..."
8503         run_acl_subtest cp || error "run_acl_subtest cp failed"
8504         echo "performing getfacl-noacl..."
8505         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8506         echo "performing misc..."
8507         run_acl_subtest misc || error  "misc test failed"
8508         echo "performing permissions..."
8509         run_acl_subtest permissions || error "permissions failed"
8510         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8511         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
8512              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
8513              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
8514         then
8515                 echo "performing permissions xattr..."
8516                 run_acl_subtest permissions_xattr ||
8517                         error "permissions_xattr failed"
8518         fi
8519         echo "performing setfacl..."
8520         run_acl_subtest setfacl || error  "setfacl test failed"
8521
8522         # inheritance test got from HP
8523         echo "performing inheritance..."
8524         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8525         chmod +x make-tree || error "chmod +x failed"
8526         run_acl_subtest inheritance || error "inheritance test failed"
8527         rm -f make-tree
8528
8529         echo "LU-974 ignore umask when acl is enabled..."
8530         run_acl_subtest 974 || error "LU-974 umask test failed"
8531         if [ $MDSCOUNT -ge 2 ]; then
8532                 run_acl_subtest 974_remote ||
8533                         error "LU-974 umask test failed under remote dir"
8534         fi
8535
8536         echo "LU-2561 newly created file is same size as directory..."
8537         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
8538                 run_acl_subtest 2561 || error "LU-2561 test failed"
8539         else
8540                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8541         fi
8542
8543         run_acl_subtest 4924 || error "LU-4924 test failed"
8544
8545         cd $SAVE_PWD
8546         umask $SAVE_UMASK
8547
8548         for num in $(seq $MDSCOUNT); do
8549                 if [ "${identity_old[$num]}" = 1 ]; then
8550                         switch_identity $num false || identity_old[$num]=$?
8551                 fi
8552         done
8553 }
8554 run_test 103a "acl test"
8555
8556 test_103b() {
8557         local U
8558
8559         for U in {0..511}; do
8560                 {
8561                 local O=$(printf "%04o" $U)
8562
8563                 umask $(printf "%04o" $((511 ^ $O)))
8564                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8565                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8566
8567                 (( $S == ($O & 0666) )) ||
8568                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8569
8570                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8571                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8572                 (( $S == ($O & 0666) )) ||
8573                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8574
8575                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8576                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8577                 (( $S == ($O & 0666) )) ||
8578                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8579                 rm -f $DIR/$tfile.[smp]$0
8580                 } &
8581         done
8582         wait
8583 }
8584 run_test 103b "umask lfs setstripe"
8585
8586 test_103c() {
8587         mkdir -p $DIR/$tdir
8588         cp -rp $DIR/$tdir $DIR/$tdir.bak
8589
8590         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8591                 error "$DIR/$tdir shouldn't contain default ACL"
8592         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8593                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8594         true
8595 }
8596 run_test 103c "'cp -rp' won't set empty acl"
8597
8598 test_104a() {
8599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8600
8601         touch $DIR/$tfile
8602         lfs df || error "lfs df failed"
8603         lfs df -ih || error "lfs df -ih failed"
8604         lfs df -h $DIR || error "lfs df -h $DIR failed"
8605         lfs df -i $DIR || error "lfs df -i $DIR failed"
8606         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8607         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8608
8609         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8610         lctl --device %$OSC deactivate
8611         lfs df || error "lfs df with deactivated OSC failed"
8612         lctl --device %$OSC activate
8613         # wait the osc back to normal
8614         wait_osc_import_state client ost FULL
8615
8616         lfs df || error "lfs df with reactivated OSC failed"
8617         rm -f $DIR/$tfile
8618 }
8619 run_test 104a "lfs df [-ih] [path] test ========================="
8620
8621 test_104b() {
8622         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8623         [ $RUNAS_ID -eq $UID ] &&
8624                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8625
8626         chmod 666 /dev/obd
8627         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8628                         grep "Permission denied" | wc -l)))
8629         if [ $denied_cnt -ne 0 ]; then
8630                 error "lfs check servers test failed"
8631         fi
8632 }
8633 run_test 104b "$RUNAS lfs check servers test ===================="
8634
8635 test_105a() {
8636         # doesn't work on 2.4 kernels
8637         touch $DIR/$tfile
8638         if $(flock_is_enabled); then
8639                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8640         else
8641                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8642         fi
8643         rm -f $DIR/$tfile
8644 }
8645 run_test 105a "flock when mounted without -o flock test ========"
8646
8647 test_105b() {
8648         touch $DIR/$tfile
8649         if $(flock_is_enabled); then
8650                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8651         else
8652                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8653         fi
8654         rm -f $DIR/$tfile
8655 }
8656 run_test 105b "fcntl when mounted without -o flock test ========"
8657
8658 test_105c() {
8659         touch $DIR/$tfile
8660         if $(flock_is_enabled); then
8661                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8662         else
8663                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8664         fi
8665         rm -f $DIR/$tfile
8666 }
8667 run_test 105c "lockf when mounted without -o flock test"
8668
8669 test_105d() { # bug 15924
8670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8671
8672         test_mkdir $DIR/$tdir
8673         flock_is_enabled || skip_env "mount w/o flock enabled"
8674         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8675         $LCTL set_param fail_loc=0x80000315
8676         flocks_test 2 $DIR/$tdir
8677 }
8678 run_test 105d "flock race (should not freeze) ========"
8679
8680 test_105e() { # bug 22660 && 22040
8681         flock_is_enabled || skip_env "mount w/o flock enabled"
8682
8683         touch $DIR/$tfile
8684         flocks_test 3 $DIR/$tfile
8685 }
8686 run_test 105e "Two conflicting flocks from same process"
8687
8688 test_106() { #bug 10921
8689         test_mkdir $DIR/$tdir
8690         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8691         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8692 }
8693 run_test 106 "attempt exec of dir followed by chown of that dir"
8694
8695 test_107() {
8696         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8697
8698         CDIR=`pwd`
8699         local file=core
8700
8701         cd $DIR
8702         rm -f $file
8703
8704         local save_pattern=$(sysctl -n kernel.core_pattern)
8705         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8706         sysctl -w kernel.core_pattern=$file
8707         sysctl -w kernel.core_uses_pid=0
8708
8709         ulimit -c unlimited
8710         sleep 60 &
8711         SLEEPPID=$!
8712
8713         sleep 1
8714
8715         kill -s 11 $SLEEPPID
8716         wait $SLEEPPID
8717         if [ -e $file ]; then
8718                 size=`stat -c%s $file`
8719                 [ $size -eq 0 ] && error "Fail to create core file $file"
8720         else
8721                 error "Fail to create core file $file"
8722         fi
8723         rm -f $file
8724         sysctl -w kernel.core_pattern=$save_pattern
8725         sysctl -w kernel.core_uses_pid=$save_uses_pid
8726         cd $CDIR
8727 }
8728 run_test 107 "Coredump on SIG"
8729
8730 test_110() {
8731         test_mkdir $DIR/$tdir
8732         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8733         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8734                 error "mkdir with 256 char should fail, but did not"
8735         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8736                 error "create with 255 char failed"
8737         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8738                 error "create with 256 char should fail, but did not"
8739
8740         ls -l $DIR/$tdir
8741         rm -rf $DIR/$tdir
8742 }
8743 run_test 110 "filename length checking"
8744
8745 #
8746 # Purpose: To verify dynamic thread (OSS) creation.
8747 #
8748 test_115() {
8749         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8750         remote_ost_nodsh && skip "remote OST with nodsh"
8751
8752         # Lustre does not stop service threads once they are started.
8753         # Reset number of running threads to default.
8754         stopall
8755         setupall
8756
8757         local OSTIO_pre
8758         local save_params="$TMP/sanity-$TESTNAME.parameters"
8759
8760         # Get ll_ost_io count before I/O
8761         OSTIO_pre=$(do_facet ost1 \
8762                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8763         # Exit if lustre is not running (ll_ost_io not running).
8764         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8765
8766         echo "Starting with $OSTIO_pre threads"
8767         local thread_max=$((OSTIO_pre * 2))
8768         local rpc_in_flight=$((thread_max * 2))
8769         # Number of I/O Process proposed to be started.
8770         local nfiles
8771         local facets=$(get_facets OST)
8772
8773         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8774         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8775
8776         # Set in_flight to $rpc_in_flight
8777         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8778                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8779         nfiles=${rpc_in_flight}
8780         # Set ost thread_max to $thread_max
8781         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8782
8783         # 5 Minutes should be sufficient for max number of OSS
8784         # threads(thread_max) to be created.
8785         local timeout=300
8786
8787         # Start I/O.
8788         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8789         test_mkdir $DIR/$tdir
8790         for i in $(seq $nfiles); do
8791                 local file=$DIR/$tdir/${tfile}-$i
8792                 $LFS setstripe -c -1 -i 0 $file
8793                 ($WTL $file $timeout)&
8794         done
8795
8796         # I/O Started - Wait for thread_started to reach thread_max or report
8797         # error if thread_started is more than thread_max.
8798         echo "Waiting for thread_started to reach thread_max"
8799         local thread_started=0
8800         local end_time=$((SECONDS + timeout))
8801
8802         while [ $SECONDS -le $end_time ] ; do
8803                 echo -n "."
8804                 # Get ost i/o thread_started count.
8805                 thread_started=$(do_facet ost1 \
8806                         "$LCTL get_param \
8807                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8808                 # Break out if thread_started is equal/greater than thread_max
8809                 if [[ $thread_started -ge $thread_max ]]; then
8810                         echo ll_ost_io thread_started $thread_started, \
8811                                 equal/greater than thread_max $thread_max
8812                         break
8813                 fi
8814                 sleep 1
8815         done
8816
8817         # Cleanup - We have the numbers, Kill i/o jobs if running.
8818         jobcount=($(jobs -p))
8819         for i in $(seq 0 $((${#jobcount[@]}-1)))
8820         do
8821                 kill -9 ${jobcount[$i]}
8822                 if [ $? -ne 0 ] ; then
8823                         echo Warning: \
8824                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8825                 fi
8826         done
8827
8828         # Cleanup files left by WTL binary.
8829         for i in $(seq $nfiles); do
8830                 local file=$DIR/$tdir/${tfile}-$i
8831                 rm -rf $file
8832                 if [ $? -ne 0 ] ; then
8833                         echo "Warning: Failed to delete file $file"
8834                 fi
8835         done
8836
8837         restore_lustre_params <$save_params
8838         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8839
8840         # Error out if no new thread has started or Thread started is greater
8841         # than thread max.
8842         if [[ $thread_started -le $OSTIO_pre ||
8843                         $thread_started -gt $thread_max ]]; then
8844                 error "ll_ost_io: thread_started $thread_started" \
8845                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8846                       "No new thread started or thread started greater " \
8847                       "than thread_max."
8848         fi
8849 }
8850 run_test 115 "verify dynamic thread creation===================="
8851
8852 free_min_max () {
8853         wait_delete_completed
8854         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8855         echo "OST kbytes available: ${AVAIL[@]}"
8856         MAXV=${AVAIL[0]}
8857         MAXI=0
8858         MINV=${AVAIL[0]}
8859         MINI=0
8860         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8861                 #echo OST $i: ${AVAIL[i]}kb
8862                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8863                         MAXV=${AVAIL[i]}
8864                         MAXI=$i
8865                 fi
8866                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8867                         MINV=${AVAIL[i]}
8868                         MINI=$i
8869                 fi
8870         done
8871         echo "Min free space: OST $MINI: $MINV"
8872         echo "Max free space: OST $MAXI: $MAXV"
8873 }
8874
8875 test_116a() { # was previously test_116()
8876         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8877         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8878         remote_mds_nodsh && skip "remote MDS with nodsh"
8879
8880         echo -n "Free space priority "
8881         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
8882                 head -n1
8883         declare -a AVAIL
8884         free_min_max
8885
8886         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
8887         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
8888         trap simple_cleanup_common EXIT
8889
8890         # Check if we need to generate uneven OSTs
8891         test_mkdir -p $DIR/$tdir/OST${MINI}
8892         local FILL=$((MINV / 4))
8893         local DIFF=$((MAXV - MINV))
8894         local DIFF2=$((DIFF * 100 / MINV))
8895
8896         local threshold=$(do_facet $SINGLEMDS \
8897                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
8898         threshold=${threshold%%%}
8899         echo -n "Check for uneven OSTs: "
8900         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
8901
8902         if [[ $DIFF2 -gt $threshold ]]; then
8903                 echo "ok"
8904                 echo "Don't need to fill OST$MINI"
8905         else
8906                 # generate uneven OSTs. Write 2% over the QOS threshold value
8907                 echo "no"
8908                 DIFF=$((threshold - DIFF2 + 2))
8909                 DIFF2=$((MINV * DIFF / 100))
8910                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
8911                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
8912                         error "setstripe failed"
8913                 DIFF=$((DIFF2 / 2048))
8914                 i=0
8915                 while [ $i -lt $DIFF ]; do
8916                         i=$((i + 1))
8917                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
8918                                 bs=2M count=1 2>/dev/null
8919                         echo -n .
8920                 done
8921                 echo .
8922                 sync
8923                 sleep_maxage
8924                 free_min_max
8925         fi
8926
8927         DIFF=$((MAXV - MINV))
8928         DIFF2=$((DIFF * 100 / MINV))
8929         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8930         if [ $DIFF2 -gt $threshold ]; then
8931                 echo "ok"
8932         else
8933                 echo "failed - QOS mode won't be used"
8934                 simple_cleanup_common
8935                 skip "QOS imbalance criteria not met"
8936         fi
8937
8938         MINI1=$MINI
8939         MINV1=$MINV
8940         MAXI1=$MAXI
8941         MAXV1=$MAXV
8942
8943         # now fill using QOS
8944         $SETSTRIPE -c 1 $DIR/$tdir
8945         FILL=$((FILL / 200))
8946         if [ $FILL -gt 600 ]; then
8947                 FILL=600
8948         fi
8949         echo "writing $FILL files to QOS-assigned OSTs"
8950         i=0
8951         while [ $i -lt $FILL ]; do
8952                 i=$((i + 1))
8953                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8954                         count=1 2>/dev/null
8955                 echo -n .
8956         done
8957         echo "wrote $i 200k files"
8958         sync
8959         sleep_maxage
8960
8961         echo "Note: free space may not be updated, so measurements might be off"
8962         free_min_max
8963         DIFF2=$((MAXV - MINV))
8964         echo "free space delta: orig $DIFF final $DIFF2"
8965         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8966         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8967         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8968         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8969         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8970         if [[ $DIFF -gt 0 ]]; then
8971                 FILL=$((DIFF2 * 100 / DIFF - 100))
8972                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8973         fi
8974
8975         # Figure out which files were written where
8976         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8977                awk '/'$MINI1': / {print $2; exit}')
8978         echo $UUID
8979         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8980         echo "$MINC files created on smaller OST $MINI1"
8981         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8982                awk '/'$MAXI1': / {print $2; exit}')
8983         echo $UUID
8984         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8985         echo "$MAXC files created on larger OST $MAXI1"
8986         if [[ $MINC -gt 0 ]]; then
8987                 FILL=$((MAXC * 100 / MINC - 100))
8988                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8989         fi
8990         [[ $MAXC -gt $MINC ]] ||
8991                 error_ignore LU-9 "stripe QOS didn't balance free space"
8992         simple_cleanup_common
8993 }
8994 run_test 116a "stripe QOS: free space balance ==================="
8995
8996 test_116b() { # LU-2093
8997         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8998         remote_mds_nodsh && skip "remote MDS with nodsh"
8999
9000 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9001         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9002                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9003         [ -z "$old_rr" ] && skip "no QOS"
9004         do_facet $SINGLEMDS lctl set_param \
9005                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9006         mkdir -p $DIR/$tdir
9007         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9008         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9009         do_facet $SINGLEMDS lctl set_param fail_loc=0
9010         rm -rf $DIR/$tdir
9011         do_facet $SINGLEMDS lctl set_param \
9012                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9013 }
9014 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9015
9016 test_117() # bug 10891
9017 {
9018         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9019
9020         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9021         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9022         lctl set_param fail_loc=0x21e
9023         > $DIR/$tfile || error "truncate failed"
9024         lctl set_param fail_loc=0
9025         echo "Truncate succeeded."
9026         rm -f $DIR/$tfile
9027 }
9028 run_test 117 "verify osd extend =========="
9029
9030 NO_SLOW_RESENDCOUNT=4
9031 export OLD_RESENDCOUNT=""
9032 set_resend_count () {
9033         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9034         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9035         lctl set_param -n $PROC_RESENDCOUNT $1
9036         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9037 }
9038
9039 # for reduce test_118* time (b=14842)
9040 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9041
9042 # Reset async IO behavior after error case
9043 reset_async() {
9044         FILE=$DIR/reset_async
9045
9046         # Ensure all OSCs are cleared
9047         $SETSTRIPE -c -1 $FILE
9048         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9049         sync
9050         rm $FILE
9051 }
9052
9053 test_118a() #bug 11710
9054 {
9055         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9056
9057         reset_async
9058
9059         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9060         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9061         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9062
9063         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9064                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9065                 return 1;
9066         fi
9067         rm -f $DIR/$tfile
9068 }
9069 run_test 118a "verify O_SYNC works =========="
9070
9071 test_118b()
9072 {
9073         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9074         remote_ost_nodsh && skip "remote OST with nodsh"
9075
9076         reset_async
9077
9078         #define OBD_FAIL_SRV_ENOENT 0x217
9079         set_nodes_failloc "$(osts_nodes)" 0x217
9080         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9081         RC=$?
9082         set_nodes_failloc "$(osts_nodes)" 0
9083         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9084         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9085                     grep -c writeback)
9086
9087         if [[ $RC -eq 0 ]]; then
9088                 error "Must return error due to dropped pages, rc=$RC"
9089                 return 1;
9090         fi
9091
9092         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9093                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9094                 return 1;
9095         fi
9096
9097         echo "Dirty pages not leaked on ENOENT"
9098
9099         # Due to the above error the OSC will issue all RPCs syncronously
9100         # until a subsequent RPC completes successfully without error.
9101         $MULTIOP $DIR/$tfile Ow4096yc
9102         rm -f $DIR/$tfile
9103
9104         return 0
9105 }
9106 run_test 118b "Reclaim dirty pages on fatal error =========="
9107
9108 test_118c()
9109 {
9110         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9111
9112         # for 118c, restore the original resend count, LU-1940
9113         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9114                                 set_resend_count $OLD_RESENDCOUNT
9115         remote_ost_nodsh && skip "remote OST with nodsh"
9116
9117         reset_async
9118
9119         #define OBD_FAIL_OST_EROFS               0x216
9120         set_nodes_failloc "$(osts_nodes)" 0x216
9121
9122         # multiop should block due to fsync until pages are written
9123         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9124         MULTIPID=$!
9125         sleep 1
9126
9127         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9128                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9129         fi
9130
9131         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9132                     grep -c writeback)
9133         if [[ $WRITEBACK -eq 0 ]]; then
9134                 error "No page in writeback, writeback=$WRITEBACK"
9135         fi
9136
9137         set_nodes_failloc "$(osts_nodes)" 0
9138         wait $MULTIPID
9139         RC=$?
9140         if [[ $RC -ne 0 ]]; then
9141                 error "Multiop fsync failed, rc=$RC"
9142         fi
9143
9144         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9145         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9146                     grep -c writeback)
9147         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9148                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9149         fi
9150
9151         rm -f $DIR/$tfile
9152         echo "Dirty pages flushed via fsync on EROFS"
9153         return 0
9154 }
9155 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9156
9157 # continue to use small resend count to reduce test_118* time (b=14842)
9158 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9159
9160 test_118d()
9161 {
9162         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9163         remote_ost_nodsh && skip "remote OST with nodsh"
9164
9165         reset_async
9166
9167         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9168         set_nodes_failloc "$(osts_nodes)" 0x214
9169         # multiop should block due to fsync until pages are written
9170         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9171         MULTIPID=$!
9172         sleep 1
9173
9174         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9175                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9176         fi
9177
9178         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9179                     grep -c writeback)
9180         if [[ $WRITEBACK -eq 0 ]]; then
9181                 error "No page in writeback, writeback=$WRITEBACK"
9182         fi
9183
9184         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9185         set_nodes_failloc "$(osts_nodes)" 0
9186
9187         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9188         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9189                     grep -c writeback)
9190         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9191                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9192         fi
9193
9194         rm -f $DIR/$tfile
9195         echo "Dirty pages gaurenteed flushed via fsync"
9196         return 0
9197 }
9198 run_test 118d "Fsync validation inject a delay of the bulk =========="
9199
9200 test_118f() {
9201         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9202
9203         reset_async
9204
9205         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9206         lctl set_param fail_loc=0x8000040a
9207
9208         # Should simulate EINVAL error which is fatal
9209         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9210         RC=$?
9211         if [[ $RC -eq 0 ]]; then
9212                 error "Must return error due to dropped pages, rc=$RC"
9213         fi
9214
9215         lctl set_param fail_loc=0x0
9216
9217         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9218         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9219         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9220                     grep -c writeback)
9221         if [[ $LOCKED -ne 0 ]]; then
9222                 error "Locked pages remain in cache, locked=$LOCKED"
9223         fi
9224
9225         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9226                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9227         fi
9228
9229         rm -f $DIR/$tfile
9230         echo "No pages locked after fsync"
9231
9232         reset_async
9233         return 0
9234 }
9235 run_test 118f "Simulate unrecoverable OSC side error =========="
9236
9237 test_118g() {
9238         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9239
9240         reset_async
9241
9242         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9243         lctl set_param fail_loc=0x406
9244
9245         # simulate local -ENOMEM
9246         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9247         RC=$?
9248
9249         lctl set_param fail_loc=0
9250         if [[ $RC -eq 0 ]]; then
9251                 error "Must return error due to dropped pages, rc=$RC"
9252         fi
9253
9254         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9255         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9256         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9257                         grep -c writeback)
9258         if [[ $LOCKED -ne 0 ]]; then
9259                 error "Locked pages remain in cache, locked=$LOCKED"
9260         fi
9261
9262         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9263                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9264         fi
9265
9266         rm -f $DIR/$tfile
9267         echo "No pages locked after fsync"
9268
9269         reset_async
9270         return 0
9271 }
9272 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9273
9274 test_118h() {
9275         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9276         remote_ost_nodsh && skip "remote OST with nodsh"
9277
9278         reset_async
9279
9280         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9281         set_nodes_failloc "$(osts_nodes)" 0x20e
9282         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9283         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9284         RC=$?
9285
9286         set_nodes_failloc "$(osts_nodes)" 0
9287         if [[ $RC -eq 0 ]]; then
9288                 error "Must return error due to dropped pages, rc=$RC"
9289         fi
9290
9291         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9292         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9293         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9294                     grep -c writeback)
9295         if [[ $LOCKED -ne 0 ]]; then
9296                 error "Locked pages remain in cache, locked=$LOCKED"
9297         fi
9298
9299         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9300                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9301         fi
9302
9303         rm -f $DIR/$tfile
9304         echo "No pages locked after fsync"
9305
9306         return 0
9307 }
9308 run_test 118h "Verify timeout in handling recoverables errors  =========="
9309
9310 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9311
9312 test_118i() {
9313         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9314         remote_ost_nodsh && skip "remote OST with nodsh"
9315
9316         reset_async
9317
9318         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9319         set_nodes_failloc "$(osts_nodes)" 0x20e
9320
9321         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9322         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9323         PID=$!
9324         sleep 5
9325         set_nodes_failloc "$(osts_nodes)" 0
9326
9327         wait $PID
9328         RC=$?
9329         if [[ $RC -ne 0 ]]; then
9330                 error "got error, but should be not, rc=$RC"
9331         fi
9332
9333         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9334         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9335         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9336         if [[ $LOCKED -ne 0 ]]; then
9337                 error "Locked pages remain in cache, locked=$LOCKED"
9338         fi
9339
9340         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9341                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9342         fi
9343
9344         rm -f $DIR/$tfile
9345         echo "No pages locked after fsync"
9346
9347         return 0
9348 }
9349 run_test 118i "Fix error before timeout in recoverable error  =========="
9350
9351 [ "$SLOW" = "no" ] && set_resend_count 4
9352
9353 test_118j() {
9354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9355         remote_ost_nodsh && skip "remote OST with nodsh"
9356
9357         reset_async
9358
9359         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9360         set_nodes_failloc "$(osts_nodes)" 0x220
9361
9362         # return -EIO from OST
9363         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9364         RC=$?
9365         set_nodes_failloc "$(osts_nodes)" 0x0
9366         if [[ $RC -eq 0 ]]; then
9367                 error "Must return error due to dropped pages, rc=$RC"
9368         fi
9369
9370         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9371         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9372         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9373         if [[ $LOCKED -ne 0 ]]; then
9374                 error "Locked pages remain in cache, locked=$LOCKED"
9375         fi
9376
9377         # in recoverable error on OST we want resend and stay until it finished
9378         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9379                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9380         fi
9381
9382         rm -f $DIR/$tfile
9383         echo "No pages locked after fsync"
9384
9385         return 0
9386 }
9387 run_test 118j "Simulate unrecoverable OST side error =========="
9388
9389 test_118k()
9390 {
9391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9392         remote_ost_nodsh && skip "remote OSTs with nodsh"
9393
9394         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9395         set_nodes_failloc "$(osts_nodes)" 0x20e
9396         test_mkdir $DIR/$tdir
9397
9398         for ((i=0;i<10;i++)); do
9399                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9400                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9401                 SLEEPPID=$!
9402                 sleep 0.500s
9403                 kill $SLEEPPID
9404                 wait $SLEEPPID
9405         done
9406
9407         set_nodes_failloc "$(osts_nodes)" 0
9408         rm -rf $DIR/$tdir
9409 }
9410 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9411
9412 test_118l() # LU-646
9413 {
9414         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9415
9416         test_mkdir $DIR/$tdir
9417         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9418         rm -rf $DIR/$tdir
9419 }
9420 run_test 118l "fsync dir"
9421
9422 test_118m() # LU-3066
9423 {
9424         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9425
9426         test_mkdir $DIR/$tdir
9427         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9428         rm -rf $DIR/$tdir
9429 }
9430 run_test 118m "fdatasync dir ========="
9431
9432 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9433
9434 test_118n()
9435 {
9436         local begin
9437         local end
9438
9439         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9440         remote_ost_nodsh && skip "remote OSTs with nodsh"
9441
9442         # Sleep to avoid a cached response.
9443         #define OBD_STATFS_CACHE_SECONDS 1
9444         sleep 2
9445
9446         # Inject a 10 second delay in the OST_STATFS handler.
9447         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9448         set_nodes_failloc "$(osts_nodes)" 0x242
9449
9450         begin=$SECONDS
9451         stat --file-system $MOUNT > /dev/null
9452         end=$SECONDS
9453
9454         set_nodes_failloc "$(osts_nodes)" 0
9455
9456         if ((end - begin > 20)); then
9457             error "statfs took $((end - begin)) seconds, expected 10"
9458         fi
9459 }
9460 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9461
9462 test_119a() # bug 11737
9463 {
9464         BSIZE=$((512 * 1024))
9465         directio write $DIR/$tfile 0 1 $BSIZE
9466         # We ask to read two blocks, which is more than a file size.
9467         # directio will indicate an error when requested and actual
9468         # sizes aren't equeal (a normal situation in this case) and
9469         # print actual read amount.
9470         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9471         if [ "$NOB" != "$BSIZE" ]; then
9472                 error "read $NOB bytes instead of $BSIZE"
9473         fi
9474         rm -f $DIR/$tfile
9475 }
9476 run_test 119a "Short directIO read must return actual read amount"
9477
9478 test_119b() # bug 11737
9479 {
9480         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9481
9482         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9483         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9484         sync
9485         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9486                 error "direct read failed"
9487         rm -f $DIR/$tfile
9488 }
9489 run_test 119b "Sparse directIO read must return actual read amount"
9490
9491 test_119c() # bug 13099
9492 {
9493         BSIZE=1048576
9494         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9495         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9496         rm -f $DIR/$tfile
9497 }
9498 run_test 119c "Testing for direct read hitting hole"
9499
9500 test_119d() # bug 15950
9501 {
9502         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9503
9504         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9505         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9506         BSIZE=1048576
9507         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9508         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9509         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9510         lctl set_param fail_loc=0x40d
9511         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9512         pid_dio=$!
9513         sleep 1
9514         cat $DIR/$tfile > /dev/null &
9515         lctl set_param fail_loc=0
9516         pid_reads=$!
9517         wait $pid_dio
9518         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9519         sleep 2
9520         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9521         error "the read rpcs have not completed in 2s"
9522         rm -f $DIR/$tfile
9523         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9524 }
9525 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9526
9527 test_120a() {
9528         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9529         remote_mds_nodsh && skip "remote MDS with nodsh"
9530         test_mkdir $DIR/$tdir
9531         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9532                 skip_env "no early lock cancel on server"
9533
9534         lru_resize_disable mdc
9535         lru_resize_disable osc
9536         cancel_lru_locks mdc
9537         # asynchronous object destroy at MDT could cause bl ast to client
9538         cancel_lru_locks osc
9539
9540         stat $DIR/$tdir > /dev/null
9541         can1=$(do_facet $SINGLEMDS \
9542                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9543                awk '/ldlm_cancel/ {print $2}')
9544         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9545                awk '/ldlm_bl_callback/ {print $2}')
9546         test_mkdir -c1 $DIR/$tdir/d1
9547         can2=$(do_facet $SINGLEMDS \
9548                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9549                awk '/ldlm_cancel/ {print $2}')
9550         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9551                awk '/ldlm_bl_callback/ {print $2}')
9552         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9553         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9554         lru_resize_enable mdc
9555         lru_resize_enable osc
9556 }
9557 run_test 120a "Early Lock Cancel: mkdir test"
9558
9559 test_120b() {
9560         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9561         remote_mds_nodsh && skip "remote MDS with nodsh"
9562         test_mkdir $DIR/$tdir
9563         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9564                 skip_env "no early lock cancel on server"
9565
9566         lru_resize_disable mdc
9567         lru_resize_disable osc
9568         cancel_lru_locks mdc
9569         stat $DIR/$tdir > /dev/null
9570         can1=$(do_facet $SINGLEMDS \
9571                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9572                awk '/ldlm_cancel/ {print $2}')
9573         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9574                awk '/ldlm_bl_callback/ {print $2}')
9575         touch $DIR/$tdir/f1
9576         can2=$(do_facet $SINGLEMDS \
9577                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9578                awk '/ldlm_cancel/ {print $2}')
9579         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9580                awk '/ldlm_bl_callback/ {print $2}')
9581         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9582         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9583         lru_resize_enable mdc
9584         lru_resize_enable osc
9585 }
9586 run_test 120b "Early Lock Cancel: create test"
9587
9588 test_120c() {
9589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9590         remote_mds_nodsh && skip "remote MDS with nodsh"
9591         test_mkdir -c1 $DIR/$tdir
9592         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9593                 skip "no early lock cancel on server"
9594
9595         lru_resize_disable mdc
9596         lru_resize_disable osc
9597         test_mkdir -c1 $DIR/$tdir/d1
9598         test_mkdir -c1 $DIR/$tdir/d2
9599         touch $DIR/$tdir/d1/f1
9600         cancel_lru_locks mdc
9601         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9602         can1=$(do_facet $SINGLEMDS \
9603                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9604                awk '/ldlm_cancel/ {print $2}')
9605         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9606                awk '/ldlm_bl_callback/ {print $2}')
9607         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9608         can2=$(do_facet $SINGLEMDS \
9609                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9610                awk '/ldlm_cancel/ {print $2}')
9611         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9612                awk '/ldlm_bl_callback/ {print $2}')
9613         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9614         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9615         lru_resize_enable mdc
9616         lru_resize_enable osc
9617 }
9618 run_test 120c "Early Lock Cancel: link test"
9619
9620 test_120d() {
9621         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9622         remote_mds_nodsh && skip "remote MDS with nodsh"
9623         test_mkdir -c1 $DIR/$tdir
9624         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9625                 skip_env "no early lock cancel on server"
9626
9627         lru_resize_disable mdc
9628         lru_resize_disable osc
9629         touch $DIR/$tdir
9630         cancel_lru_locks mdc
9631         stat $DIR/$tdir > /dev/null
9632         can1=$(do_facet $SINGLEMDS \
9633                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9634                awk '/ldlm_cancel/ {print $2}')
9635         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9636                awk '/ldlm_bl_callback/ {print $2}')
9637         chmod a+x $DIR/$tdir
9638         can2=$(do_facet $SINGLEMDS \
9639                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9640                awk '/ldlm_cancel/ {print $2}')
9641         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9642                awk '/ldlm_bl_callback/ {print $2}')
9643         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9644         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9645         lru_resize_enable mdc
9646         lru_resize_enable osc
9647 }
9648 run_test 120d "Early Lock Cancel: setattr test"
9649
9650 test_120e() {
9651         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9652         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9653                 skip_env "no early lock cancel on server"
9654         remote_mds_nodsh && skip "remote MDS with nodsh"
9655
9656         local dlmtrace_set=false
9657
9658         test_mkdir -c1 $DIR/$tdir
9659         lru_resize_disable mdc
9660         lru_resize_disable osc
9661         ! $LCTL get_param debug | grep -q dlmtrace &&
9662                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9663         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9664         cancel_lru_locks mdc
9665         cancel_lru_locks osc
9666         dd if=$DIR/$tdir/f1 of=/dev/null
9667         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9668         # XXX client can not do early lock cancel of OST lock
9669         # during unlink (LU-4206), so cancel osc lock now.
9670         sleep 2
9671         cancel_lru_locks osc
9672         can1=$(do_facet $SINGLEMDS \
9673                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9674                awk '/ldlm_cancel/ {print $2}')
9675         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9676                awk '/ldlm_bl_callback/ {print $2}')
9677         unlink $DIR/$tdir/f1
9678         sleep 5
9679         can2=$(do_facet $SINGLEMDS \
9680                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9681                awk '/ldlm_cancel/ {print $2}')
9682         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9683                awk '/ldlm_bl_callback/ {print $2}')
9684         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9685                 $LCTL dk $TMP/cancel.debug.txt
9686         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9687                 $LCTL dk $TMP/blocking.debug.txt
9688         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9689         lru_resize_enable mdc
9690         lru_resize_enable osc
9691 }
9692 run_test 120e "Early Lock Cancel: unlink test"
9693
9694 test_120f() {
9695         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9696         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9697                 skip_env "no early lock cancel on server"
9698         remote_mds_nodsh && skip "remote MDS with nodsh"
9699
9700         test_mkdir -c1 $DIR/$tdir
9701         lru_resize_disable mdc
9702         lru_resize_disable osc
9703         test_mkdir -c1 $DIR/$tdir/d1
9704         test_mkdir -c1 $DIR/$tdir/d2
9705         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9706         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9707         cancel_lru_locks mdc
9708         cancel_lru_locks osc
9709         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9710         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9711         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9712         # XXX client can not do early lock cancel of OST lock
9713         # during rename (LU-4206), so cancel osc lock now.
9714         sleep 2
9715         cancel_lru_locks osc
9716         can1=$(do_facet $SINGLEMDS \
9717                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9718                awk '/ldlm_cancel/ {print $2}')
9719         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9720                awk '/ldlm_bl_callback/ {print $2}')
9721         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9722         sleep 5
9723         can2=$(do_facet $SINGLEMDS \
9724                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9725                awk '/ldlm_cancel/ {print $2}')
9726         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9727                awk '/ldlm_bl_callback/ {print $2}')
9728         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9729         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9730         lru_resize_enable mdc
9731         lru_resize_enable osc
9732 }
9733 run_test 120f "Early Lock Cancel: rename test"
9734
9735 test_120g() {
9736         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9737         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9738                 skip_env "no early lock cancel on server"
9739         remote_mds_nodsh && skip "remote MDS with nodsh"
9740
9741         lru_resize_disable mdc
9742         lru_resize_disable osc
9743         count=10000
9744         echo create $count files
9745         test_mkdir $DIR/$tdir
9746         cancel_lru_locks mdc
9747         cancel_lru_locks osc
9748         t0=$(date +%s)
9749
9750         can0=$(do_facet $SINGLEMDS \
9751                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9752                awk '/ldlm_cancel/ {print $2}')
9753         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9754                awk '/ldlm_bl_callback/ {print $2}')
9755         createmany -o $DIR/$tdir/f $count
9756         sync
9757         can1=$(do_facet $SINGLEMDS \
9758                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9759                awk '/ldlm_cancel/ {print $2}')
9760         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9761                awk '/ldlm_bl_callback/ {print $2}')
9762         t1=$(date +%s)
9763         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9764         echo rm $count files
9765         rm -r $DIR/$tdir
9766         sync
9767         can2=$(do_facet $SINGLEMDS \
9768                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9769                awk '/ldlm_cancel/ {print $2}')
9770         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9771                awk '/ldlm_bl_callback/ {print $2}')
9772         t2=$(date +%s)
9773         echo total: $count removes in $((t2-t1))
9774         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9775         sleep 2
9776         # wait for commitment of removal
9777         lru_resize_enable mdc
9778         lru_resize_enable osc
9779 }
9780 run_test 120g "Early Lock Cancel: performance test"
9781
9782 test_121() { #bug #10589
9783         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9784
9785         rm -rf $DIR/$tfile
9786         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9787 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9788         lctl set_param fail_loc=0x310
9789         cancel_lru_locks osc > /dev/null
9790         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9791         lctl set_param fail_loc=0
9792         [[ $reads -eq $writes ]] ||
9793                 error "read $reads blocks, must be $writes blocks"
9794 }
9795 run_test 121 "read cancel race ========="
9796
9797 test_123a() { # was test 123, statahead(bug 11401)
9798         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9799
9800         SLOWOK=0
9801         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9802                 log "testing UP system. Performance may be lower than expected."
9803                 SLOWOK=1
9804         fi
9805
9806         rm -rf $DIR/$tdir
9807         test_mkdir $DIR/$tdir
9808         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9809         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9810         MULT=10
9811         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9812                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9813
9814                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9815                 lctl set_param -n llite.*.statahead_max 0
9816                 lctl get_param llite.*.statahead_max
9817                 cancel_lru_locks mdc
9818                 cancel_lru_locks osc
9819                 stime=`date +%s`
9820                 time ls -l $DIR/$tdir | wc -l
9821                 etime=`date +%s`
9822                 delta=$((etime - stime))
9823                 log "ls $i files without statahead: $delta sec"
9824                 lctl set_param llite.*.statahead_max=$max
9825
9826                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9827                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9828                 cancel_lru_locks mdc
9829                 cancel_lru_locks osc
9830                 stime=`date +%s`
9831                 time ls -l $DIR/$tdir | wc -l
9832                 etime=`date +%s`
9833                 delta_sa=$((etime - stime))
9834                 log "ls $i files with statahead: $delta_sa sec"
9835                 lctl get_param -n llite.*.statahead_stats
9836                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9837
9838                 [[ $swrong -lt $ewrong ]] &&
9839                         log "statahead was stopped, maybe too many locks held!"
9840                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9841
9842                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9843                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9844                     lctl set_param -n llite.*.statahead_max 0
9845                     lctl get_param llite.*.statahead_max
9846                     cancel_lru_locks mdc
9847                     cancel_lru_locks osc
9848                     stime=`date +%s`
9849                     time ls -l $DIR/$tdir | wc -l
9850                     etime=`date +%s`
9851                     delta=$((etime - stime))
9852                     log "ls $i files again without statahead: $delta sec"
9853                     lctl set_param llite.*.statahead_max=$max
9854                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9855                         if [  $SLOWOK -eq 0 ]; then
9856                                 error "ls $i files is slower with statahead!"
9857                         else
9858                                 log "ls $i files is slower with statahead!"
9859                         fi
9860                         break
9861                     fi
9862                 fi
9863
9864                 [ $delta -gt 20 ] && break
9865                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9866                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9867         done
9868         log "ls done"
9869
9870         stime=`date +%s`
9871         rm -r $DIR/$tdir
9872         sync
9873         etime=`date +%s`
9874         delta=$((etime - stime))
9875         log "rm -r $DIR/$tdir/: $delta seconds"
9876         log "rm done"
9877         lctl get_param -n llite.*.statahead_stats
9878 }
9879 run_test 123a "verify statahead work"
9880
9881 test_123b () { # statahead(bug 15027)
9882         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9883
9884         test_mkdir $DIR/$tdir
9885         createmany -o $DIR/$tdir/$tfile-%d 1000
9886
9887         cancel_lru_locks mdc
9888         cancel_lru_locks osc
9889
9890 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
9891         lctl set_param fail_loc=0x80000803
9892         ls -lR $DIR/$tdir > /dev/null
9893         log "ls done"
9894         lctl set_param fail_loc=0x0
9895         lctl get_param -n llite.*.statahead_stats
9896         rm -r $DIR/$tdir
9897         sync
9898
9899 }
9900 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
9901
9902 test_124a() {
9903         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9904         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9905                 skip_env "no lru resize on server"
9906
9907         local NR=2000
9908
9909         test_mkdir $DIR/$tdir
9910
9911         log "create $NR files at $DIR/$tdir"
9912         createmany -o $DIR/$tdir/f $NR ||
9913                 error "failed to create $NR files in $DIR/$tdir"
9914
9915         cancel_lru_locks mdc
9916         ls -l $DIR/$tdir > /dev/null
9917
9918         local NSDIR=""
9919         local LRU_SIZE=0
9920         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
9921                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
9922                 LRU_SIZE=$($LCTL get_param -n $PARAM)
9923                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
9924                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
9925                         log "NSDIR=$NSDIR"
9926                         log "NS=$(basename $NSDIR)"
9927                         break
9928                 fi
9929         done
9930
9931         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
9932                 skip "Not enough cached locks created!"
9933         fi
9934         log "LRU=$LRU_SIZE"
9935
9936         local SLEEP=30
9937
9938         # We know that lru resize allows one client to hold $LIMIT locks
9939         # for 10h. After that locks begin to be killed by client.
9940         local MAX_HRS=10
9941         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
9942         log "LIMIT=$LIMIT"
9943         if [ $LIMIT -lt $LRU_SIZE ]; then
9944                 skip "Limit is too small $LIMIT"
9945         fi
9946
9947         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
9948         # killing locks. Some time was spent for creating locks. This means
9949         # that up to the moment of sleep finish we must have killed some of
9950         # them (10-100 locks). This depends on how fast ther were created.
9951         # Many of them were touched in almost the same moment and thus will
9952         # be killed in groups.
9953         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
9954
9955         # Use $LRU_SIZE_B here to take into account real number of locks
9956         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
9957         local LRU_SIZE_B=$LRU_SIZE
9958         log "LVF=$LVF"
9959         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
9960         log "OLD_LVF=$OLD_LVF"
9961         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9962
9963         # Let's make sure that we really have some margin. Client checks
9964         # cached locks every 10 sec.
9965         SLEEP=$((SLEEP+20))
9966         log "Sleep ${SLEEP} sec"
9967         local SEC=0
9968         while ((SEC<$SLEEP)); do
9969                 echo -n "..."
9970                 sleep 5
9971                 SEC=$((SEC+5))
9972                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9973                 echo -n "$LRU_SIZE"
9974         done
9975         echo ""
9976         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9977         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9978
9979         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9980                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9981                 unlinkmany $DIR/$tdir/f $NR
9982                 return
9983         }
9984
9985         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9986         log "unlink $NR files at $DIR/$tdir"
9987         unlinkmany $DIR/$tdir/f $NR
9988 }
9989 run_test 124a "lru resize ======================================="
9990
9991 get_max_pool_limit()
9992 {
9993         local limit=$($LCTL get_param \
9994                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9995         local max=0
9996         for l in $limit; do
9997                 if [[ $l -gt $max ]]; then
9998                         max=$l
9999                 fi
10000         done
10001         echo $max
10002 }
10003
10004 test_124b() {
10005         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10006         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10007                 skip_env "no lru resize on server"
10008
10009         LIMIT=$(get_max_pool_limit)
10010
10011         NR=$(($(default_lru_size)*20))
10012         if [[ $NR -gt $LIMIT ]]; then
10013                 log "Limit lock number by $LIMIT locks"
10014                 NR=$LIMIT
10015         fi
10016
10017         IFree=$(mdsrate_inodes_available)
10018         if [ $IFree -lt $NR ]; then
10019                 log "Limit lock number by $IFree inodes"
10020                 NR=$IFree
10021         fi
10022
10023         lru_resize_disable mdc
10024         test_mkdir -p $DIR/$tdir/disable_lru_resize
10025
10026         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10027         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10028         cancel_lru_locks mdc
10029         stime=`date +%s`
10030         PID=""
10031         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10032         PID="$PID $!"
10033         sleep 2
10034         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10035         PID="$PID $!"
10036         sleep 2
10037         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10038         PID="$PID $!"
10039         wait $PID
10040         etime=`date +%s`
10041         nolruresize_delta=$((etime-stime))
10042         log "ls -la time: $nolruresize_delta seconds"
10043         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10044         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10045
10046         lru_resize_enable mdc
10047         test_mkdir -p $DIR/$tdir/enable_lru_resize
10048
10049         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10050         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10051         cancel_lru_locks mdc
10052         stime=`date +%s`
10053         PID=""
10054         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10055         PID="$PID $!"
10056         sleep 2
10057         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10058         PID="$PID $!"
10059         sleep 2
10060         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10061         PID="$PID $!"
10062         wait $PID
10063         etime=`date +%s`
10064         lruresize_delta=$((etime-stime))
10065         log "ls -la time: $lruresize_delta seconds"
10066         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10067
10068         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10069                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10070         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10071                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10072         else
10073                 log "lru resize performs the same with no lru resize"
10074         fi
10075         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10076 }
10077 run_test 124b "lru resize (performance test) ======================="
10078
10079 test_124c() {
10080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10081         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10082                 skip_env "no lru resize on server"
10083
10084         # cache ununsed locks on client
10085         local nr=100
10086         cancel_lru_locks mdc
10087         test_mkdir $DIR/$tdir
10088         createmany -o $DIR/$tdir/f $nr ||
10089                 error "failed to create $nr files in $DIR/$tdir"
10090         ls -l $DIR/$tdir > /dev/null
10091
10092         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10093         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10094         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10095         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10096         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10097
10098         # set lru_max_age to 1 sec
10099         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10100         echo "sleep $((recalc_p * 2)) seconds..."
10101         sleep $((recalc_p * 2))
10102
10103         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10104         # restore lru_max_age
10105         $LCTL set_param -n $nsdir.lru_max_age $max_age
10106         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10107         unlinkmany $DIR/$tdir/f $nr
10108 }
10109 run_test 124c "LRUR cancel very aged locks"
10110
10111 test_125() { # 13358
10112         $LCTL get_param -n llite.*.client_type | grep -q local ||
10113                 skip "must run as local client"
10114         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10115                 skip_env "must have acl enabled"
10116         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10117
10118         test_mkdir $DIR/$tdir
10119         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10120         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10121         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10122 }
10123 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10124
10125 test_126() { # bug 12829/13455
10126         $GSS && skip_env "must run as gss disabled"
10127         $LCTL get_param -n llite.*.client_type | grep -q local ||
10128                 skip "must run as local client"
10129         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10130
10131         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10132         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10133         rm -f $DIR/$tfile
10134         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10135 }
10136 run_test 126 "check that the fsgid provided by the client is taken into account"
10137
10138 test_127a() { # bug 15521
10139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10140
10141         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10142         $LCTL set_param osc.*.stats=0
10143         FSIZE=$((2048 * 1024))
10144         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10145         cancel_lru_locks osc
10146         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10147
10148         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10149         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10150                 echo "got $COUNT $NAME"
10151                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10152                 eval $NAME=$COUNT || error "Wrong proc format"
10153
10154                 case $NAME in
10155                         read_bytes|write_bytes)
10156                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10157                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10158                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10159                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10160                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10161                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10162                                 error "sumsquare is too small: $SUMSQ"
10163                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10164                                 error "sumsquare is too big: $SUMSQ"
10165                         ;;
10166                         *) ;;
10167                 esac
10168         done < $DIR/${tfile}.tmp
10169
10170         #check that we actually got some stats
10171         [ "$read_bytes" ] || error "Missing read_bytes stats"
10172         [ "$write_bytes" ] || error "Missing write_bytes stats"
10173         [ "$read_bytes" != 0 ] || error "no read done"
10174         [ "$write_bytes" != 0 ] || error "no write done"
10175 }
10176 run_test 127a "verify the client stats are sane"
10177
10178 test_127b() { # bug LU-333
10179         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10180         local name count samp unit min max sum sumsq
10181
10182         $LCTL set_param llite.*.stats=0
10183
10184         # perform 2 reads and writes so MAX is different from SUM.
10185         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10186         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10187         cancel_lru_locks osc
10188         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10189         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10190
10191         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10192         while read name count samp unit min max sum sumsq; do
10193                 echo "got $count $name"
10194                 eval $name=$count || error "Wrong proc format"
10195
10196                 case $name in
10197                 read_bytes)
10198                         [ $count -ne 2 ] && error "count is not 2: $count"
10199                         [ $min -ne $PAGE_SIZE ] &&
10200                                 error "min is not $PAGE_SIZE: $min"
10201                         [ $max -ne $PAGE_SIZE ] &&
10202                                 error "max is incorrect: $max"
10203                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10204                                 error "sum is wrong: $sum"
10205                         ;;
10206                 write_bytes)
10207                         [ $count -ne 2 ] && error "count is not 2: $count"
10208                         [ $min -ne $PAGE_SIZE ] &&
10209                                 error "min is not $PAGE_SIZE: $min"
10210                         [ $max -ne $PAGE_SIZE ] &&
10211                                 error "max is incorrect: $max"
10212                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10213                                 error "sum is wrong: $sum"
10214                         ;;
10215                 *) ;;
10216                 esac
10217         done < $TMP/$tfile.tmp
10218
10219         #check that we actually got some stats
10220         [ "$read_bytes" ] || error "Missing read_bytes stats"
10221         [ "$write_bytes" ] || error "Missing write_bytes stats"
10222         [ "$read_bytes" != 0 ] || error "no read done"
10223         [ "$write_bytes" != 0 ] || error "no write done"
10224
10225         rm -f $TMP/${tfile}.tmp
10226 }
10227 run_test 127b "verify the llite client stats are sane"
10228
10229 test_128() { # bug 15212
10230         touch $DIR/$tfile
10231         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10232                 find $DIR/$tfile
10233                 find $DIR/$tfile
10234         EOF
10235
10236         result=$(grep error $TMP/$tfile.log)
10237         rm -f $DIR/$tfile $TMP/$tfile.log
10238         [ -z "$result" ] ||
10239                 error "consecutive find's under interactive lfs failed"
10240 }
10241 run_test 128 "interactive lfs for 2 consecutive find's"
10242
10243 set_dir_limits () {
10244         local mntdev
10245         local canondev
10246         local node
10247
10248         local ldproc=/proc/fs/ldiskfs
10249         local facets=$(get_facets MDS)
10250
10251         for facet in ${facets//,/ }; do
10252                 canondev=$(ldiskfs_canon \
10253                            *.$(convert_facet2label $facet).mntdev $facet)
10254                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10255                         ldproc=/sys/fs/ldiskfs
10256                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10257                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10258         done
10259 }
10260
10261 check_mds_dmesg() {
10262         local facets=$(get_facets MDS)
10263         for facet in ${facets//,/ }; do
10264                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10265         done
10266         return 1
10267 }
10268
10269 test_129() {
10270         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10271         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
10272                 skip "Need MDS version with at least 2.5.56"
10273         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
10274                 skip_env "ldiskfs only test"
10275         fi
10276         remote_mds_nodsh && skip "remote MDS with nodsh"
10277
10278         local ENOSPC=28
10279         local EFBIG=27
10280         local has_warning=false
10281
10282         rm -rf $DIR/$tdir
10283         mkdir -p $DIR/$tdir
10284
10285         # block size of mds1
10286         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10287         set_dir_limits $maxsize $maxsize
10288         local dirsize=$(stat -c%s "$DIR/$tdir")
10289         local nfiles=0
10290         while [[ $dirsize -le $maxsize ]]; do
10291                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10292                 rc=$?
10293                 if ! $has_warning; then
10294                         check_mds_dmesg '"is approaching"' && has_warning=true
10295                 fi
10296                 # check two errors:
10297                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10298                 # EFBIG for previous versions included in ldiskfs series
10299                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10300                         set_dir_limits 0 0
10301                         echo "return code $rc received as expected"
10302
10303                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10304                                 error_exit "create failed w/o dir size limit"
10305
10306                         check_mds_dmesg '"has reached"' ||
10307                                 error_exit "reached message should be output"
10308
10309                         [ $has_warning = "false" ] &&
10310                                 error_exit "warning message should be output"
10311
10312                         dirsize=$(stat -c%s "$DIR/$tdir")
10313
10314                         [[ $dirsize -ge $maxsize ]] && return 0
10315                         error_exit "current dir size $dirsize, " \
10316                                    "previous limit $maxsize"
10317                 elif [ $rc -ne 0 ]; then
10318                         set_dir_limits 0 0
10319                         error_exit "return $rc received instead of expected " \
10320                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10321                 fi
10322                 nfiles=$((nfiles + 1))
10323                 dirsize=$(stat -c%s "$DIR/$tdir")
10324         done
10325
10326         set_dir_limits 0 0
10327         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10328 }
10329 run_test 129 "test directory size limit ========================"
10330
10331 OLDIFS="$IFS"
10332 cleanup_130() {
10333         trap 0
10334         IFS="$OLDIFS"
10335 }
10336
10337 test_130a() {
10338         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10339         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10340
10341         trap cleanup_130 EXIT RETURN
10342
10343         local fm_file=$DIR/$tfile
10344         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10345         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10346                 error "dd failed for $fm_file"
10347
10348         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10349         filefrag -ves $fm_file
10350         RC=$?
10351         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10352                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10353         [ $RC != 0 ] && error "filefrag $fm_file failed"
10354
10355         filefrag_op=$(filefrag -ve -k $fm_file |
10356                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10357         lun=$($GETSTRIPE -i $fm_file)
10358
10359         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10360         IFS=$'\n'
10361         tot_len=0
10362         for line in $filefrag_op
10363         do
10364                 frag_lun=`echo $line | cut -d: -f5`
10365                 ext_len=`echo $line | cut -d: -f4`
10366                 if (( $frag_lun != $lun )); then
10367                         cleanup_130
10368                         error "FIEMAP on 1-stripe file($fm_file) failed"
10369                         return
10370                 fi
10371                 (( tot_len += ext_len ))
10372         done
10373
10374         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10375                 cleanup_130
10376                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10377                 return
10378         fi
10379
10380         cleanup_130
10381
10382         echo "FIEMAP on single striped file succeeded"
10383 }
10384 run_test 130a "FIEMAP (1-stripe file)"
10385
10386 test_130b() {
10387         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10388
10389         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10390         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10391
10392         trap cleanup_130 EXIT RETURN
10393
10394         local fm_file=$DIR/$tfile
10395         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10396                         error "setstripe on $fm_file"
10397         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10398                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10399
10400         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10401                 error "dd failed on $fm_file"
10402
10403         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10404         filefrag_op=$(filefrag -ve -k $fm_file |
10405                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10406
10407         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10408                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10409
10410         IFS=$'\n'
10411         tot_len=0
10412         num_luns=1
10413         for line in $filefrag_op
10414         do
10415                 frag_lun=$(echo $line | cut -d: -f5 |
10416                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10417                 ext_len=$(echo $line | cut -d: -f4)
10418                 if (( $frag_lun != $last_lun )); then
10419                         if (( tot_len != 1024 )); then
10420                                 cleanup_130
10421                                 error "FIEMAP on $fm_file failed; returned " \
10422                                 "len $tot_len for OST $last_lun instead of 1024"
10423                                 return
10424                         else
10425                                 (( num_luns += 1 ))
10426                                 tot_len=0
10427                         fi
10428                 fi
10429                 (( tot_len += ext_len ))
10430                 last_lun=$frag_lun
10431         done
10432         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10433                 cleanup_130
10434                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10435                         "luns or wrong len for OST $last_lun"
10436                 return
10437         fi
10438
10439         cleanup_130
10440
10441         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10442 }
10443 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10444
10445 test_130c() {
10446         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10447
10448         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10449         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10450
10451         trap cleanup_130 EXIT RETURN
10452
10453         local fm_file=$DIR/$tfile
10454         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10455         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10456                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10457
10458         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10459                         error "dd failed on $fm_file"
10460
10461         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10462         filefrag_op=$(filefrag -ve -k $fm_file |
10463                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10464
10465         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10466                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10467
10468         IFS=$'\n'
10469         tot_len=0
10470         num_luns=1
10471         for line in $filefrag_op
10472         do
10473                 frag_lun=$(echo $line | cut -d: -f5 |
10474                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10475                 ext_len=$(echo $line | cut -d: -f4)
10476                 if (( $frag_lun != $last_lun )); then
10477                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10478                         if (( logical != 512 )); then
10479                                 cleanup_130
10480                                 error "FIEMAP on $fm_file failed; returned " \
10481                                 "logical start for lun $logical instead of 512"
10482                                 return
10483                         fi
10484                         if (( tot_len != 512 )); then
10485                                 cleanup_130
10486                                 error "FIEMAP on $fm_file failed; returned " \
10487                                 "len $tot_len for OST $last_lun instead of 1024"
10488                                 return
10489                         else
10490                                 (( num_luns += 1 ))
10491                                 tot_len=0
10492                         fi
10493                 fi
10494                 (( tot_len += ext_len ))
10495                 last_lun=$frag_lun
10496         done
10497         if (( num_luns != 2 || tot_len != 512 )); then
10498                 cleanup_130
10499                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10500                         "luns or wrong len for OST $last_lun"
10501                 return
10502         fi
10503
10504         cleanup_130
10505
10506         echo "FIEMAP on 2-stripe file with hole succeeded"
10507 }
10508 run_test 130c "FIEMAP (2-stripe file with hole)"
10509
10510 test_130d() {
10511         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10512
10513         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10514         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10515
10516         trap cleanup_130 EXIT RETURN
10517
10518         local fm_file=$DIR/$tfile
10519         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10520                         error "setstripe on $fm_file"
10521         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10522                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10523
10524         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10525         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10526                 error "dd failed on $fm_file"
10527
10528         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10529         filefrag_op=$(filefrag -ve -k $fm_file |
10530                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10531
10532         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10533                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10534
10535         IFS=$'\n'
10536         tot_len=0
10537         num_luns=1
10538         for line in $filefrag_op
10539         do
10540                 frag_lun=$(echo $line | cut -d: -f5 |
10541                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10542                 ext_len=$(echo $line | cut -d: -f4)
10543                 if (( $frag_lun != $last_lun )); then
10544                         if (( tot_len != 1024 )); then
10545                                 cleanup_130
10546                                 error "FIEMAP on $fm_file failed; returned " \
10547                                 "len $tot_len for OST $last_lun instead of 1024"
10548                                 return
10549                         else
10550                                 (( num_luns += 1 ))
10551                                 tot_len=0
10552                         fi
10553                 fi
10554                 (( tot_len += ext_len ))
10555                 last_lun=$frag_lun
10556         done
10557         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10558                 cleanup_130
10559                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10560                         "luns or wrong len for OST $last_lun"
10561                 return
10562         fi
10563
10564         cleanup_130
10565
10566         echo "FIEMAP on N-stripe file succeeded"
10567 }
10568 run_test 130d "FIEMAP (N-stripe file)"
10569
10570 test_130e() {
10571         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10572
10573         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10574         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10575
10576         trap cleanup_130 EXIT RETURN
10577
10578         local fm_file=$DIR/$tfile
10579         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10580         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10581                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10582
10583         NUM_BLKS=512
10584         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10585         for ((i = 0; i < $NUM_BLKS; i++))
10586         do
10587                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10588         done
10589
10590         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10591         filefrag_op=$(filefrag -ve -k $fm_file |
10592                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10593
10594         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10595                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10596
10597         IFS=$'\n'
10598         tot_len=0
10599         num_luns=1
10600         for line in $filefrag_op
10601         do
10602                 frag_lun=$(echo $line | cut -d: -f5 |
10603                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10604                 ext_len=$(echo $line | cut -d: -f4)
10605                 if (( $frag_lun != $last_lun )); then
10606                         if (( tot_len != $EXPECTED_LEN )); then
10607                                 cleanup_130
10608                                 error "FIEMAP on $fm_file failed; returned " \
10609                                 "len $tot_len for OST $last_lun instead " \
10610                                 "of $EXPECTED_LEN"
10611                                 return
10612                         else
10613                                 (( num_luns += 1 ))
10614                                 tot_len=0
10615                         fi
10616                 fi
10617                 (( tot_len += ext_len ))
10618                 last_lun=$frag_lun
10619         done
10620         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10621                 cleanup_130
10622                 error "FIEMAP on $fm_file failed; returned wrong number " \
10623                         "of luns or wrong len for OST $last_lun"
10624                 return
10625         fi
10626
10627         cleanup_130
10628
10629         echo "FIEMAP with continuation calls succeeded"
10630 }
10631 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10632
10633 test_130f() {
10634         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10635         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10636
10637         local fm_file=$DIR/$tfile
10638         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10639                 error "multiop create with lov_delay_create on $fm_file"
10640
10641         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10642         filefrag_extents=$(filefrag -vek $fm_file |
10643                            awk '/extents? found/ { print $2 }')
10644         if [[ "$filefrag_extents" != "0" ]]; then
10645                 error "FIEMAP on $fm_file failed; " \
10646                       "returned $filefrag_extents expected 0"
10647         fi
10648
10649         rm -f $fm_file
10650 }
10651 run_test 130f "FIEMAP (unstriped file)"
10652
10653 # Test for writev/readv
10654 test_131a() {
10655         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10656                 error "writev test failed"
10657         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10658                 error "readv failed"
10659         rm -f $DIR/$tfile
10660 }
10661 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10662
10663 test_131b() {
10664         local fsize=$((524288 + 1048576 + 1572864))
10665         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10666                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10667                         error "append writev test failed"
10668
10669         ((fsize += 1572864 + 1048576))
10670         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10671                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10672                         error "append writev test failed"
10673         rm -f $DIR/$tfile
10674 }
10675 run_test 131b "test append writev"
10676
10677 test_131c() {
10678         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10679         error "NOT PASS"
10680 }
10681 run_test 131c "test read/write on file w/o objects"
10682
10683 test_131d() {
10684         rwv -f $DIR/$tfile -w -n 1 1572864
10685         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10686         if [ "$NOB" != 1572864 ]; then
10687                 error "Short read filed: read $NOB bytes instead of 1572864"
10688         fi
10689         rm -f $DIR/$tfile
10690 }
10691 run_test 131d "test short read"
10692
10693 test_131e() {
10694         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10695         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10696         error "read hitting hole failed"
10697         rm -f $DIR/$tfile
10698 }
10699 run_test 131e "test read hitting hole"
10700
10701 check_stats() {
10702         local facet=$1
10703         local op=$2
10704         local want=${3:-0}
10705         local res
10706
10707         case $facet in
10708         mds*) res=$(do_facet $facet \
10709                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10710                  ;;
10711         ost*) res=$(do_facet $facet \
10712                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10713                  ;;
10714         *) error "Wrong facet '$facet'" ;;
10715         esac
10716         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10717         # if the argument $3 is zero, it means any stat increment is ok.
10718         if [[ $want -gt 0 ]]; then
10719                 local count=$(echo $res | awk '{ print $2 }')
10720                 [[ $count -ne $want ]] &&
10721                         error "The $op counter on $facet is $count, not $want"
10722         fi
10723 }
10724
10725 test_133a() {
10726         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10727         remote_ost_nodsh && skip "remote OST with nodsh"
10728         remote_mds_nodsh && skip "remote MDS with nodsh"
10729         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10730                 skip_env "MDS doesn't support rename stats"
10731
10732         local testdir=$DIR/${tdir}/stats_testdir
10733
10734         mkdir -p $DIR/${tdir}
10735
10736         # clear stats.
10737         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10738         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10739
10740         # verify mdt stats first.
10741         mkdir ${testdir} || error "mkdir failed"
10742         check_stats $SINGLEMDS "mkdir" 1
10743         touch ${testdir}/${tfile} || error "touch failed"
10744         check_stats $SINGLEMDS "open" 1
10745         check_stats $SINGLEMDS "close" 1
10746         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
10747                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10748                 check_stats $SINGLEMDS "mknod" 2
10749         }
10750         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10751         check_stats $SINGLEMDS "unlink" 1
10752         rm -f ${testdir}/${tfile} || error "file remove failed"
10753         check_stats $SINGLEMDS "unlink" 2
10754
10755         # remove working dir and check mdt stats again.
10756         rmdir ${testdir} || error "rmdir failed"
10757         check_stats $SINGLEMDS "rmdir" 1
10758
10759         local testdir1=$DIR/${tdir}/stats_testdir1
10760         mkdir -p ${testdir}
10761         mkdir -p ${testdir1}
10762         touch ${testdir1}/test1
10763         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10764         check_stats $SINGLEMDS "crossdir_rename" 1
10765
10766         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10767         check_stats $SINGLEMDS "samedir_rename" 1
10768
10769         rm -rf $DIR/${tdir}
10770 }
10771 run_test 133a "Verifying MDT stats ========================================"
10772
10773 test_133b() {
10774         local res
10775
10776         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10777         remote_ost_nodsh && skip "remote OST with nodsh"
10778         remote_mds_nodsh && skip "remote MDS with nodsh"
10779
10780         local testdir=$DIR/${tdir}/stats_testdir
10781
10782         mkdir -p ${testdir} || error "mkdir failed"
10783         touch ${testdir}/${tfile} || error "touch failed"
10784         cancel_lru_locks mdc
10785
10786         # clear stats.
10787         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10788         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10789
10790         # extra mdt stats verification.
10791         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10792         check_stats $SINGLEMDS "setattr" 1
10793         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10794         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
10795         then            # LU-1740
10796                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10797                 check_stats $SINGLEMDS "getattr" 1
10798         fi
10799         rm -rf $DIR/${tdir}
10800
10801         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10802         # so the check below is not reliable
10803         [ $MDSCOUNT -eq 1 ] || return 0
10804
10805         # Sleep to avoid a cached response.
10806         #define OBD_STATFS_CACHE_SECONDS 1
10807         sleep 2
10808         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10809         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10810         $LFS df || error "lfs failed"
10811         check_stats $SINGLEMDS "statfs" 1
10812
10813         # check aggregated statfs (LU-10018)
10814         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.54) ] &&
10815                 return 0
10816         [ $(lustre_version_code client) -lt $(version_code 2.11.54) ] &&
10817                 return 0
10818         sleep 2
10819         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10820         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10821         df $DIR
10822         check_stats $SINGLEMDS "statfs" 1
10823
10824         # We want to check that the client didn't send OST_STATFS to
10825         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10826         # extra care is needed here.
10827         if remote_mds; then
10828                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10829                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10830
10831                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10832                 [ "$res" ] && error "OST got STATFS"
10833         fi
10834
10835         return 0
10836 }
10837 run_test 133b "Verifying extra MDT stats =================================="
10838
10839 test_133c() {
10840         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10841         remote_ost_nodsh && skip "remote OST with nodsh"
10842         remote_mds_nodsh && skip "remote MDS with nodsh"
10843
10844         local testdir=$DIR/$tdir/stats_testdir
10845
10846         test_mkdir -p $testdir
10847
10848         # verify obdfilter stats.
10849         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10850         sync
10851         cancel_lru_locks osc
10852         wait_delete_completed
10853
10854         # clear stats.
10855         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10856         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10857
10858         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10859                 error "dd failed"
10860         sync
10861         cancel_lru_locks osc
10862         check_stats ost1 "write" 1
10863
10864         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10865         check_stats ost1 "read" 1
10866
10867         > $testdir/$tfile || error "truncate failed"
10868         check_stats ost1 "punch" 1
10869
10870         rm -f $testdir/$tfile || error "file remove failed"
10871         wait_delete_completed
10872         check_stats ost1 "destroy" 1
10873
10874         rm -rf $DIR/$tdir
10875 }
10876 run_test 133c "Verifying OST stats ========================================"
10877
10878 order_2() {
10879         local value=$1
10880         local orig=$value
10881         local order=1
10882
10883         while [ $value -ge 2 ]; do
10884                 order=$((order*2))
10885                 value=$((value/2))
10886         done
10887
10888         if [ $orig -gt $order ]; then
10889                 order=$((order*2))
10890         fi
10891         echo $order
10892 }
10893
10894 size_in_KMGT() {
10895     local value=$1
10896     local size=('K' 'M' 'G' 'T');
10897     local i=0
10898     local size_string=$value
10899
10900     while [ $value -ge 1024 ]; do
10901         if [ $i -gt 3 ]; then
10902             #T is the biggest unit we get here, if that is bigger,
10903             #just return XXXT
10904             size_string=${value}T
10905             break
10906         fi
10907         value=$((value >> 10))
10908         if [ $value -lt 1024 ]; then
10909             size_string=${value}${size[$i]}
10910             break
10911         fi
10912         i=$((i + 1))
10913     done
10914
10915     echo $size_string
10916 }
10917
10918 get_rename_size() {
10919         local size=$1
10920         local context=${2:-.}
10921         local sample=$(do_facet $SINGLEMDS $LCTL \
10922                 get_param mdt.$FSNAME-MDT0000.rename_stats |
10923                 grep -A1 $context |
10924                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
10925         echo $sample
10926 }
10927
10928 test_133d() {
10929         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10930         remote_ost_nodsh && skip "remote OST with nodsh"
10931         remote_mds_nodsh && skip "remote MDS with nodsh"
10932         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10933                 skip_env "MDS doesn't support rename stats"
10934
10935         local testdir1=$DIR/${tdir}/stats_testdir1
10936         local testdir2=$DIR/${tdir}/stats_testdir2
10937         mkdir -p $DIR/${tdir}
10938
10939         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10940
10941         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
10942         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
10943
10944         createmany -o $testdir1/test 512 || error "createmany failed"
10945
10946         # check samedir rename size
10947         mv ${testdir1}/test0 ${testdir1}/test_0
10948
10949         local testdir1_size=$(ls -l $DIR/${tdir} |
10950                 awk '/stats_testdir1/ {print $5}')
10951         local testdir2_size=$(ls -l $DIR/${tdir} |
10952                 awk '/stats_testdir2/ {print $5}')
10953
10954         testdir1_size=$(order_2 $testdir1_size)
10955         testdir2_size=$(order_2 $testdir2_size)
10956
10957         testdir1_size=$(size_in_KMGT $testdir1_size)
10958         testdir2_size=$(size_in_KMGT $testdir2_size)
10959
10960         echo "source rename dir size: ${testdir1_size}"
10961         echo "target rename dir size: ${testdir2_size}"
10962
10963         local cmd="do_facet $SINGLEMDS $LCTL "
10964         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
10965
10966         eval $cmd || error "$cmd failed"
10967         local samedir=$($cmd | grep 'same_dir')
10968         local same_sample=$(get_rename_size $testdir1_size)
10969         [ -z "$samedir" ] && error "samedir_rename_size count error"
10970         [[ $same_sample -eq 1 ]] ||
10971                 error "samedir_rename_size error $same_sample"
10972         echo "Check same dir rename stats success"
10973
10974         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
10975
10976         # check crossdir rename size
10977         mv ${testdir1}/test_0 ${testdir2}/test_0
10978
10979         testdir1_size=$(ls -l $DIR/${tdir} |
10980                 awk '/stats_testdir1/ {print $5}')
10981         testdir2_size=$(ls -l $DIR/${tdir} |
10982                 awk '/stats_testdir2/ {print $5}')
10983
10984         testdir1_size=$(order_2 $testdir1_size)
10985         testdir2_size=$(order_2 $testdir2_size)
10986
10987         testdir1_size=$(size_in_KMGT $testdir1_size)
10988         testdir2_size=$(size_in_KMGT $testdir2_size)
10989
10990         echo "source rename dir size: ${testdir1_size}"
10991         echo "target rename dir size: ${testdir2_size}"
10992
10993         eval $cmd || error "$cmd failed"
10994         local crossdir=$($cmd | grep 'crossdir')
10995         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
10996         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
10997         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
10998         [[ $src_sample -eq 1 ]] ||
10999                 error "crossdir_rename_size error $src_sample"
11000         [[ $tgt_sample -eq 1 ]] ||
11001                 error "crossdir_rename_size error $tgt_sample"
11002         echo "Check cross dir rename stats success"
11003         rm -rf $DIR/${tdir}
11004 }
11005 run_test 133d "Verifying rename_stats ========================================"
11006
11007 test_133e() {
11008         remote_mds_nodsh && skip "remote MDS with nodsh"
11009         remote_ost_nodsh && skip "remote OST with nodsh"
11010         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11011
11012         local testdir=$DIR/${tdir}/stats_testdir
11013         local ctr f0 f1 bs=32768 count=42 sum
11014
11015         mkdir -p ${testdir} || error "mkdir failed"
11016
11017         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
11018
11019         for ctr in {write,read}_bytes; do
11020                 sync
11021                 cancel_lru_locks osc
11022
11023                 do_facet ost1 $LCTL set_param -n \
11024                         "obdfilter.*.exports.clear=clear"
11025
11026                 if [ $ctr = write_bytes ]; then
11027                         f0=/dev/zero
11028                         f1=${testdir}/${tfile}
11029                 else
11030                         f0=${testdir}/${tfile}
11031                         f1=/dev/null
11032                 fi
11033
11034                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11035                         error "dd failed"
11036                 sync
11037                 cancel_lru_locks osc
11038
11039                 sum=$(do_facet ost1 $LCTL get_param \
11040                         "obdfilter.*.exports.*.stats" |
11041                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11042                                 $1 == ctr { sum += $7 }
11043                                 END { printf("%0.0f", sum) }')
11044
11045                 if ((sum != bs * count)); then
11046                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11047                 fi
11048         done
11049
11050         rm -rf $DIR/${tdir}
11051 }
11052 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11053
11054 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11055
11056 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11057 # not honor the -ignore_readdir_race option correctly. So we call
11058 # error_ignore() rather than error() in these cases. See LU-11152.
11059 error_133() {
11060         if (find --version; do_facet mds1 find --version) |
11061                 grep -q '\b4\.5\.1[1-4]\b'; then
11062                 error_ignore LU-11152 "$@"
11063         else
11064                 error "$@"
11065         fi
11066 }
11067
11068 test_133f() {
11069         # First without trusting modes.
11070         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11071         echo "proc_dirs='$proc_dirs'"
11072         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11073         find $proc_dirs -exec cat '{}' \; &> /dev/null
11074
11075         # Second verifying readability.
11076         $LCTL get_param -R '*' &> /dev/null
11077
11078         # Verifing writability with badarea_io.
11079         find $proc_dirs \
11080                 -ignore_readdir_race \
11081                 -type f \
11082                 -not -name force_lbug \
11083                 -not -name changelog_mask \
11084                 -exec badarea_io '{}' \; ||
11085                         error_133 "find $proc_dirs failed"
11086 }
11087 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11088
11089 test_133g() {
11090         remote_mds_nodsh && skip "remote MDS with nodsh"
11091         remote_ost_nodsh && skip "remote OST with nodsh"
11092
11093         # eventually, this can also be replaced with "lctl get_param -R",
11094         # but not until that option is always available on the server
11095         local facet
11096         for facet in mds1 ost1; do
11097                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11098                         skip_noexit "Too old lustre on $facet"
11099                 local facet_proc_dirs=$(do_facet $facet \
11100                                         \\\ls -d $proc_regexp 2>/dev/null)
11101                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11102                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11103                 do_facet $facet find $facet_proc_dirs \
11104                         ! -name req_history \
11105                         -exec cat '{}' \\\; &> /dev/null
11106
11107                 do_facet $facet find $facet_proc_dirs \
11108                         ! -name req_history \
11109                         -type f \
11110                         -exec cat '{}' \\\; &> /dev/null ||
11111                                 error "proc file read failed"
11112
11113                 do_facet $facet find $facet_proc_dirs \
11114                         -ignore_readdir_race \
11115                         -type f \
11116                         -not -name force_lbug \
11117                         -not -name changelog_mask \
11118                         -exec badarea_io '{}' \\\; ||
11119                                 error_133 "$facet find $facet_proc_dirs failed"
11120         done
11121
11122         # remount the FS in case writes/reads /proc break the FS
11123         cleanup || error "failed to unmount"
11124         setup || error "failed to setup"
11125         true
11126 }
11127 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11128
11129 test_133h() {
11130         remote_mds_nodsh && skip "remote MDS with nodsh"
11131         remote_ost_nodsh && skip "remote OST with nodsh"
11132         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
11133                 skip "Need MDS version at least 2.9.54"
11134
11135         local facet
11136
11137         for facet in client mds1 ost1; do
11138                 local facet_proc_dirs=$(do_facet $facet \
11139                                         \\\ls -d $proc_regexp 2> /dev/null)
11140                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11141                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11142                 # Get the list of files that are missing the terminating newline
11143                 local missing=($(do_facet $facet \
11144                         find ${facet_proc_dirs} -type f \|              \
11145                                 while read F\; do                       \
11146                                         awk -v FS='\v' -v RS='\v\v'     \
11147                                         "'END { if(NR>0 &&              \
11148                                         \\\$NF !~ /.*\\\n\$/)           \
11149                                                 print FILENAME}'"       \
11150                                         '\$F'\;                         \
11151                                 done 2>/dev/null))
11152                 [ ${#missing[*]} -eq 0 ] ||
11153                         error "files do not end with newline: ${missing[*]}"
11154         done
11155 }
11156 run_test 133h "Proc files should end with newlines"
11157
11158 test_134a() {
11159         remote_mds_nodsh && skip "remote MDS with nodsh"
11160         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11161                 skip "Need MDS version at least 2.7.54"
11162
11163         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11164         cancel_lru_locks mdc
11165
11166         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11167         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11168         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11169
11170         local nr=1000
11171         createmany -o $DIR/$tdir/f $nr ||
11172                 error "failed to create $nr files in $DIR/$tdir"
11173         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11174
11175         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11176         do_facet mds1 $LCTL set_param fail_loc=0x327
11177         do_facet mds1 $LCTL set_param fail_val=500
11178         touch $DIR/$tdir/m
11179
11180         echo "sleep 10 seconds ..."
11181         sleep 10
11182         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11183
11184         do_facet mds1 $LCTL set_param fail_loc=0
11185         do_facet mds1 $LCTL set_param fail_val=0
11186         [ $lck_cnt -lt $unused ] ||
11187                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11188
11189         rm $DIR/$tdir/m
11190         unlinkmany $DIR/$tdir/f $nr
11191 }
11192 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11193
11194 test_134b() {
11195         remote_mds_nodsh && skip "remote MDS with nodsh"
11196         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
11197                 skip "Need MDS version at least 2.7.54"
11198
11199         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11200         cancel_lru_locks mdc
11201
11202         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11203                         ldlm.lock_reclaim_threshold_mb)
11204         # disable reclaim temporarily
11205         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11206
11207         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11208         do_facet mds1 $LCTL set_param fail_loc=0x328
11209         do_facet mds1 $LCTL set_param fail_val=500
11210
11211         $LCTL set_param debug=+trace
11212
11213         local nr=600
11214         createmany -o $DIR/$tdir/f $nr &
11215         local create_pid=$!
11216
11217         echo "Sleep $TIMEOUT seconds ..."
11218         sleep $TIMEOUT
11219         if ! ps -p $create_pid  > /dev/null 2>&1; then
11220                 do_facet mds1 $LCTL set_param fail_loc=0
11221                 do_facet mds1 $LCTL set_param fail_val=0
11222                 do_facet mds1 $LCTL set_param \
11223                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11224                 error "createmany finished incorrectly!"
11225         fi
11226         do_facet mds1 $LCTL set_param fail_loc=0
11227         do_facet mds1 $LCTL set_param fail_val=0
11228         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11229         wait $create_pid || return 1
11230
11231         unlinkmany $DIR/$tdir/f $nr
11232 }
11233 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11234
11235 test_140() { #bug-17379
11236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11237
11238         test_mkdir $DIR/$tdir
11239         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11240         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11241
11242         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11243         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11244         local i=0
11245         while i=$((i + 1)); do
11246                 test_mkdir $i
11247                 cd $i || error "Changing to $i"
11248                 ln -s ../stat stat || error "Creating stat symlink"
11249                 # Read the symlink until ELOOP present,
11250                 # not LBUGing the system is considered success,
11251                 # we didn't overrun the stack.
11252                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11253                 if [ $ret -ne 0 ]; then
11254                         if [ $ret -eq 40 ]; then
11255                                 break  # -ELOOP
11256                         else
11257                                 error "Open stat symlink"
11258                                         return
11259                         fi
11260                 fi
11261         done
11262         i=$((i - 1))
11263         echo "The symlink depth = $i"
11264         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11265                                         error "Invalid symlink depth"
11266
11267         # Test recursive symlink
11268         ln -s symlink_self symlink_self
11269         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11270         echo "open symlink_self returns $ret"
11271         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11272 }
11273 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11274
11275 test_150() {
11276         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11277
11278         local TF="$TMP/$tfile"
11279
11280         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11281         cp $TF $DIR/$tfile
11282         cancel_lru_locks $OSC
11283         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11284         remount_client $MOUNT
11285         df -P $MOUNT
11286         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11287
11288         $TRUNCATE $TF 6000
11289         $TRUNCATE $DIR/$tfile 6000
11290         cancel_lru_locks $OSC
11291         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11292
11293         echo "12345" >>$TF
11294         echo "12345" >>$DIR/$tfile
11295         cancel_lru_locks $OSC
11296         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11297
11298         echo "12345" >>$TF
11299         echo "12345" >>$DIR/$tfile
11300         cancel_lru_locks $OSC
11301         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11302
11303         rm -f $TF
11304         true
11305 }
11306 run_test 150 "truncate/append tests"
11307
11308 #LU-2902 roc_hit was not able to read all values from lproc
11309 function roc_hit_init() {
11310         local list=$(comma_list $(osts_nodes))
11311         local dir=$DIR/$tdir-check
11312         local file=$dir/$tfile
11313         local BEFORE
11314         local AFTER
11315         local idx
11316
11317         test_mkdir $dir
11318         #use setstripe to do a write to every ost
11319         for i in $(seq 0 $((OSTCOUNT-1))); do
11320                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11321                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11322                 idx=$(printf %04x $i)
11323                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11324                         awk '$1 == "cache_access" {sum += $7}
11325                                 END { printf("%0.0f", sum) }')
11326
11327                 cancel_lru_locks osc
11328                 cat $file >/dev/null
11329
11330                 AFTER=$(get_osd_param $list *OST*$idx stats |
11331                         awk '$1 == "cache_access" {sum += $7}
11332                                 END { printf("%0.0f", sum) }')
11333
11334                 echo BEFORE:$BEFORE AFTER:$AFTER
11335                 if ! let "AFTER - BEFORE == 4"; then
11336                         rm -rf $dir
11337                         error "roc_hit is not safe to use"
11338                 fi
11339                 rm $file
11340         done
11341
11342         rm -rf $dir
11343 }
11344
11345 function roc_hit() {
11346         local list=$(comma_list $(osts_nodes))
11347         echo $(get_osd_param $list '' stats |
11348                 awk '$1 == "cache_hit" {sum += $7}
11349                         END { printf("%0.0f", sum) }')
11350 }
11351
11352 function set_cache() {
11353         local on=1
11354
11355         if [ "$2" == "off" ]; then
11356                 on=0;
11357         fi
11358         local list=$(comma_list $(osts_nodes))
11359         set_osd_param $list '' $1_cache_enable $on
11360
11361         cancel_lru_locks osc
11362 }
11363
11364 test_151() {
11365         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11366         remote_ost_nodsh && skip "remote OST with nodsh"
11367
11368         local CPAGES=3
11369         local list=$(comma_list $(osts_nodes))
11370
11371         # check whether obdfilter is cache capable at all
11372         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11373                 skip "not cache-capable obdfilter"
11374         fi
11375
11376         # check cache is enabled on all obdfilters
11377         if get_osd_param $list '' read_cache_enable | grep 0; then
11378                 skip "oss cache is disabled"
11379         fi
11380
11381         set_osd_param $list '' writethrough_cache_enable 1
11382
11383         # check write cache is enabled on all obdfilters
11384         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11385                 skip "oss write cache is NOT enabled"
11386         fi
11387
11388         roc_hit_init
11389
11390         #define OBD_FAIL_OBD_NO_LRU  0x609
11391         do_nodes $list $LCTL set_param fail_loc=0x609
11392
11393         # pages should be in the case right after write
11394         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11395                 error "dd failed"
11396
11397         local BEFORE=$(roc_hit)
11398         cancel_lru_locks osc
11399         cat $DIR/$tfile >/dev/null
11400         local AFTER=$(roc_hit)
11401
11402         do_nodes $list $LCTL set_param fail_loc=0
11403
11404         if ! let "AFTER - BEFORE == CPAGES"; then
11405                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11406         fi
11407
11408         # the following read invalidates the cache
11409         cancel_lru_locks osc
11410         set_osd_param $list '' read_cache_enable 0
11411         cat $DIR/$tfile >/dev/null
11412
11413         # now data shouldn't be found in the cache
11414         BEFORE=$(roc_hit)
11415         cancel_lru_locks osc
11416         cat $DIR/$tfile >/dev/null
11417         AFTER=$(roc_hit)
11418         if let "AFTER - BEFORE != 0"; then
11419                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11420         fi
11421
11422         set_osd_param $list '' read_cache_enable 1
11423         rm -f $DIR/$tfile
11424 }
11425 run_test 151 "test cache on oss and controls ==============================="
11426
11427 test_152() {
11428         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11429
11430         local TF="$TMP/$tfile"
11431
11432         # simulate ENOMEM during write
11433 #define OBD_FAIL_OST_NOMEM      0x226
11434         lctl set_param fail_loc=0x80000226
11435         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11436         cp $TF $DIR/$tfile
11437         sync || error "sync failed"
11438         lctl set_param fail_loc=0
11439
11440         # discard client's cache
11441         cancel_lru_locks osc
11442
11443         # simulate ENOMEM during read
11444         lctl set_param fail_loc=0x80000226
11445         cmp $TF $DIR/$tfile || error "cmp failed"
11446         lctl set_param fail_loc=0
11447
11448         rm -f $TF
11449 }
11450 run_test 152 "test read/write with enomem ============================"
11451
11452 test_153() {
11453         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11454 }
11455 run_test 153 "test if fdatasync does not crash ======================="
11456
11457 dot_lustre_fid_permission_check() {
11458         local fid=$1
11459         local ffid=$MOUNT/.lustre/fid/$fid
11460         local test_dir=$2
11461
11462         echo "stat fid $fid"
11463         stat $ffid > /dev/null || error "stat $ffid failed."
11464         echo "touch fid $fid"
11465         touch $ffid || error "touch $ffid failed."
11466         echo "write to fid $fid"
11467         cat /etc/hosts > $ffid || error "write $ffid failed."
11468         echo "read fid $fid"
11469         diff /etc/hosts $ffid || error "read $ffid failed."
11470         echo "append write to fid $fid"
11471         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11472         echo "rename fid $fid"
11473         mv $ffid $test_dir/$tfile.1 &&
11474                 error "rename $ffid to $tfile.1 should fail."
11475         touch $test_dir/$tfile.1
11476         mv $test_dir/$tfile.1 $ffid &&
11477                 error "rename $tfile.1 to $ffid should fail."
11478         rm -f $test_dir/$tfile.1
11479         echo "truncate fid $fid"
11480         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11481         echo "link fid $fid"
11482         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11483         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11484                 echo "setfacl fid $fid"
11485                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11486                 echo "getfacl fid $fid"
11487                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11488         fi
11489         echo "unlink fid $fid"
11490         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11491         echo "mknod fid $fid"
11492         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11493
11494         fid=[0xf00000400:0x1:0x0]
11495         ffid=$MOUNT/.lustre/fid/$fid
11496
11497         echo "stat non-exist fid $fid"
11498         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11499         echo "write to non-exist fid $fid"
11500         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11501         echo "link new fid $fid"
11502         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11503
11504         mkdir -p $test_dir/$tdir
11505         touch $test_dir/$tdir/$tfile
11506         fid=$($LFS path2fid $test_dir/$tdir)
11507         rc=$?
11508         [ $rc -ne 0 ] &&
11509                 error "error: could not get fid for $test_dir/$dir/$tfile."
11510
11511         ffid=$MOUNT/.lustre/fid/$fid
11512
11513         echo "ls $fid"
11514         ls $ffid > /dev/null || error "ls $ffid failed."
11515         echo "touch $fid/$tfile.1"
11516         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11517
11518         echo "touch $MOUNT/.lustre/fid/$tfile"
11519         touch $MOUNT/.lustre/fid/$tfile && \
11520                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11521
11522         echo "setxattr to $MOUNT/.lustre/fid"
11523         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11524
11525         echo "listxattr for $MOUNT/.lustre/fid"
11526         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11527
11528         echo "delxattr from $MOUNT/.lustre/fid"
11529         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11530
11531         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11532         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11533                 error "touch invalid fid should fail."
11534
11535         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11536         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11537                 error "touch non-normal fid should fail."
11538
11539         echo "rename $tdir to $MOUNT/.lustre/fid"
11540         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11541                 error "rename to $MOUNT/.lustre/fid should fail."
11542
11543         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
11544         then            # LU-3547
11545                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11546                 local new_obf_mode=777
11547
11548                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11549                 chmod $new_obf_mode $DIR/.lustre/fid ||
11550                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11551
11552                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11553                 [ $obf_mode -eq $new_obf_mode ] ||
11554                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11555
11556                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11557                 chmod $old_obf_mode $DIR/.lustre/fid ||
11558                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11559         fi
11560
11561         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11562         fid=$($LFS path2fid $test_dir/$tfile-2)
11563
11564         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
11565         then # LU-5424
11566                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11567                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11568                         error "create lov data thru .lustre failed"
11569         fi
11570         echo "cp /etc/passwd $test_dir/$tfile-2"
11571         cp /etc/passwd $test_dir/$tfile-2 ||
11572                 error "copy to $test_dir/$tfile-2 failed."
11573         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11574         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11575                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11576
11577         rm -rf $test_dir/tfile.lnk
11578         rm -rf $test_dir/$tfile-2
11579 }
11580
11581 test_154A() {
11582         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11583                 skip "Need MDS version at least 2.4.1"
11584
11585         local tf=$DIR/$tfile
11586         touch $tf
11587
11588         local fid=$($LFS path2fid $tf)
11589         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11590
11591         # check that we get the same pathname back
11592         local found=$($LFS fid2path $MOUNT "$fid")
11593         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11594         [ "$found" == "$tf" ] ||
11595                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11596 }
11597 run_test 154A "lfs path2fid and fid2path basic checks"
11598
11599 test_154B() {
11600         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11601                 skip "Need MDS version at least 2.4.1"
11602
11603         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11604         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11605         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11606         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11607
11608         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11609         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11610
11611         # check that we get the same pathname
11612         echo "PFID: $PFID, name: $name"
11613         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11614         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11615         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11616                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11617
11618         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11619 }
11620 run_test 154B "verify the ll_decode_linkea tool"
11621
11622 test_154a() {
11623         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11624         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11625         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11626                 skip "Need MDS version at least 2.2.51"
11627         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11628
11629         cp /etc/hosts $DIR/$tfile
11630
11631         fid=$($LFS path2fid $DIR/$tfile)
11632         rc=$?
11633         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11634
11635         dot_lustre_fid_permission_check "$fid" $DIR ||
11636                 error "dot lustre permission check $fid failed"
11637
11638         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11639
11640         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11641
11642         touch $MOUNT/.lustre/file &&
11643                 error "creation is not allowed under .lustre"
11644
11645         mkdir $MOUNT/.lustre/dir &&
11646                 error "mkdir is not allowed under .lustre"
11647
11648         rm -rf $DIR/$tfile
11649 }
11650 run_test 154a "Open-by-FID"
11651
11652 test_154b() {
11653         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11654         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11655         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11656         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
11657                 skip "Need MDS version at least 2.2.51"
11658
11659         local remote_dir=$DIR/$tdir/remote_dir
11660         local MDTIDX=1
11661         local rc=0
11662
11663         mkdir -p $DIR/$tdir
11664         $LFS mkdir -i $MDTIDX $remote_dir ||
11665                 error "create remote directory failed"
11666
11667         cp /etc/hosts $remote_dir/$tfile
11668
11669         fid=$($LFS path2fid $remote_dir/$tfile)
11670         rc=$?
11671         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11672
11673         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11674                 error "dot lustre permission check $fid failed"
11675         rm -rf $DIR/$tdir
11676 }
11677 run_test 154b "Open-by-FID for remote directory"
11678
11679 test_154c() {
11680         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
11681                 skip "Need MDS version at least 2.4.1"
11682
11683         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11684         local FID1=$($LFS path2fid $DIR/$tfile.1)
11685         local FID2=$($LFS path2fid $DIR/$tfile.2)
11686         local FID3=$($LFS path2fid $DIR/$tfile.3)
11687
11688         local N=1
11689         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11690                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11691                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11692                 local want=FID$N
11693                 [ "$FID" = "${!want}" ] ||
11694                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11695                 N=$((N + 1))
11696         done
11697
11698         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11699         do
11700                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11701                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11702                 N=$((N + 1))
11703         done
11704 }
11705 run_test 154c "lfs path2fid and fid2path multiple arguments"
11706
11707 test_154d() {
11708         remote_mds_nodsh && skip "remote MDS with nodsh"
11709         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
11710                 skip "Need MDS version at least 2.5.53"
11711
11712         if remote_mds; then
11713                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11714         else
11715                 nid="0@lo"
11716         fi
11717         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11718         local fd
11719         local cmd
11720
11721         rm -f $DIR/$tfile
11722         touch $DIR/$tfile
11723
11724         local fid=$($LFS path2fid $DIR/$tfile)
11725         # Open the file
11726         fd=$(free_fd)
11727         cmd="exec $fd<$DIR/$tfile"
11728         eval $cmd
11729         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11730         echo "$fid_list" | grep "$fid"
11731         rc=$?
11732
11733         cmd="exec $fd>/dev/null"
11734         eval $cmd
11735         if [ $rc -ne 0 ]; then
11736                 error "FID $fid not found in open files list $fid_list"
11737         fi
11738 }
11739 run_test 154d "Verify open file fid"
11740
11741 test_154e()
11742 {
11743         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
11744                 skip "Need MDS version at least 2.6.50"
11745
11746         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11747                 error ".lustre returned by readdir"
11748         fi
11749 }
11750 run_test 154e ".lustre is not returned by readdir"
11751
11752 test_154f() {
11753         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11754
11755         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11756         test_mkdir -p -c1 $DIR/$tdir/d
11757         # test dirs inherit from its stripe
11758         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11759         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11760         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11761         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11762         touch $DIR/f
11763
11764         # get fid of parents
11765         local FID0=$($LFS path2fid $DIR/$tdir/d)
11766         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11767         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11768         local FID3=$($LFS path2fid $DIR)
11769
11770         # check that path2fid --parents returns expected <parent_fid>/name
11771         # 1) test for a directory (single parent)
11772         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11773         [ "$parent" == "$FID0/foo1" ] ||
11774                 error "expected parent: $FID0/foo1, got: $parent"
11775
11776         # 2) test for a file with nlink > 1 (multiple parents)
11777         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11778         echo "$parent" | grep -F "$FID1/$tfile" ||
11779                 error "$FID1/$tfile not returned in parent list"
11780         echo "$parent" | grep -F "$FID2/link" ||
11781                 error "$FID2/link not returned in parent list"
11782
11783         # 3) get parent by fid
11784         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11785         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11786         echo "$parent" | grep -F "$FID1/$tfile" ||
11787                 error "$FID1/$tfile not returned in parent list (by fid)"
11788         echo "$parent" | grep -F "$FID2/link" ||
11789                 error "$FID2/link not returned in parent list (by fid)"
11790
11791         # 4) test for entry in root directory
11792         parent=$($LFS path2fid --parents $DIR/f)
11793         echo "$parent" | grep -F "$FID3/f" ||
11794                 error "$FID3/f not returned in parent list"
11795
11796         # 5) test it on root directory
11797         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11798                 error "$MOUNT should not have parents"
11799
11800         # enable xattr caching and check that linkea is correctly updated
11801         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11802         save_lustre_params client "llite.*.xattr_cache" > $save
11803         lctl set_param llite.*.xattr_cache 1
11804
11805         # 6.1) linkea update on rename
11806         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11807
11808         # get parents by fid
11809         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11810         # foo1 should no longer be returned in parent list
11811         echo "$parent" | grep -F "$FID1" &&
11812                 error "$FID1 should no longer be in parent list"
11813         # the new path should appear
11814         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11815                 error "$FID2/$tfile.moved is not in parent list"
11816
11817         # 6.2) linkea update on unlink
11818         rm -f $DIR/$tdir/d/foo2/link
11819         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11820         # foo2/link should no longer be returned in parent list
11821         echo "$parent" | grep -F "$FID2/link" &&
11822                 error "$FID2/link should no longer be in parent list"
11823         true
11824
11825         rm -f $DIR/f
11826         restore_lustre_params < $save
11827         rm -f $save
11828 }
11829 run_test 154f "get parent fids by reading link ea"
11830
11831 test_154g()
11832 {
11833         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11834         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
11835            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
11836                 skip "Need MDS version at least 2.6.92"
11837
11838         mkdir -p $DIR/$tdir
11839         llapi_fid_test -d $DIR/$tdir
11840 }
11841 run_test 154g "various llapi FID tests"
11842
11843 test_155_small_load() {
11844     local temp=$TMP/$tfile
11845     local file=$DIR/$tfile
11846
11847     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11848         error "dd of=$temp bs=6096 count=1 failed"
11849     cp $temp $file
11850     cancel_lru_locks $OSC
11851     cmp $temp $file || error "$temp $file differ"
11852
11853     $TRUNCATE $temp 6000
11854     $TRUNCATE $file 6000
11855     cmp $temp $file || error "$temp $file differ (truncate1)"
11856
11857     echo "12345" >>$temp
11858     echo "12345" >>$file
11859     cmp $temp $file || error "$temp $file differ (append1)"
11860
11861     echo "12345" >>$temp
11862     echo "12345" >>$file
11863     cmp $temp $file || error "$temp $file differ (append2)"
11864
11865     rm -f $temp $file
11866     true
11867 }
11868
11869 test_155_big_load() {
11870         remote_ost_nodsh && skip "remote OST with nodsh"
11871
11872         local temp=$TMP/$tfile
11873         local file=$DIR/$tfile
11874
11875         free_min_max
11876         local cache_size=$(do_facet ost$((MAXI+1)) \
11877                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11878         local large_file_size=$((cache_size * 2))
11879
11880         echo "OSS cache size: $cache_size KB"
11881         echo "Large file size: $large_file_size KB"
11882
11883         [ $MAXV -le $large_file_size ] &&
11884                 skip_env "max available OST size needs > $large_file_size KB"
11885
11886         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
11887
11888         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
11889                 error "dd of=$temp bs=$large_file_size count=1k failed"
11890         cp $temp $file
11891         ls -lh $temp $file
11892         cancel_lru_locks osc
11893         cmp $temp $file || error "$temp $file differ"
11894
11895         rm -f $temp $file
11896         true
11897 }
11898
11899 save_writethrough() {
11900         local facets=$(get_facets OST)
11901
11902         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
11903 }
11904
11905 test_155a() {
11906         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11907
11908         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11909
11910         save_writethrough $p
11911
11912         set_cache read on
11913         set_cache writethrough on
11914         test_155_small_load
11915         restore_lustre_params < $p
11916         rm -f $p
11917 }
11918 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
11919
11920 test_155b() {
11921         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11922
11923         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11924
11925         save_writethrough $p
11926
11927         set_cache read on
11928         set_cache writethrough off
11929         test_155_small_load
11930         restore_lustre_params < $p
11931         rm -f $p
11932 }
11933 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
11934
11935 test_155c() {
11936         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11937
11938         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11939
11940         save_writethrough $p
11941
11942         set_cache read off
11943         set_cache writethrough on
11944         test_155_small_load
11945         restore_lustre_params < $p
11946         rm -f $p
11947 }
11948 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
11949
11950 test_155d() {
11951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11952
11953         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11954
11955         save_writethrough $p
11956
11957         set_cache read off
11958         set_cache writethrough off
11959         test_155_small_load
11960         restore_lustre_params < $p
11961         rm -f $p
11962 }
11963 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
11964
11965 test_155e() {
11966         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11967
11968         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11969
11970         save_writethrough $p
11971
11972         set_cache read on
11973         set_cache writethrough on
11974         test_155_big_load
11975         restore_lustre_params < $p
11976         rm -f $p
11977 }
11978 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
11979
11980 test_155f() {
11981         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11982
11983         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11984
11985         save_writethrough $p
11986
11987         set_cache read on
11988         set_cache writethrough off
11989         test_155_big_load
11990         restore_lustre_params < $p
11991         rm -f $p
11992 }
11993 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
11994
11995 test_155g() {
11996         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11997
11998         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11999
12000         save_writethrough $p
12001
12002         set_cache read off
12003         set_cache writethrough on
12004         test_155_big_load
12005         restore_lustre_params < $p
12006         rm -f $p
12007 }
12008 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12009
12010 test_155h() {
12011         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12012
12013         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12014
12015         save_writethrough $p
12016
12017         set_cache read off
12018         set_cache writethrough off
12019         test_155_big_load
12020         restore_lustre_params < $p
12021         rm -f $p
12022 }
12023 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12024
12025 test_156() {
12026         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12027         remote_ost_nodsh && skip "remote OST with nodsh"
12028         [ "$(facet_fstype ost1)" = "zfs" -a \
12029            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
12030                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12031
12032         local CPAGES=3
12033         local BEFORE
12034         local AFTER
12035         local file="$DIR/$tfile"
12036         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12037
12038         save_writethrough $p
12039         roc_hit_init
12040
12041         log "Turn on read and write cache"
12042         set_cache read on
12043         set_cache writethrough on
12044
12045         log "Write data and read it back."
12046         log "Read should be satisfied from the cache."
12047         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12048         BEFORE=$(roc_hit)
12049         cancel_lru_locks osc
12050         cat $file >/dev/null
12051         AFTER=$(roc_hit)
12052         if ! let "AFTER - BEFORE == CPAGES"; then
12053                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12054         else
12055                 log "cache hits:: before: $BEFORE, after: $AFTER"
12056         fi
12057
12058         log "Read again; it should be satisfied from the cache."
12059         BEFORE=$AFTER
12060         cancel_lru_locks osc
12061         cat $file >/dev/null
12062         AFTER=$(roc_hit)
12063         if ! let "AFTER - BEFORE == CPAGES"; then
12064                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12065         else
12066                 log "cache hits:: before: $BEFORE, after: $AFTER"
12067         fi
12068
12069         log "Turn off the read cache and turn on the write cache"
12070         set_cache read off
12071         set_cache writethrough on
12072
12073         log "Read again; it should be satisfied from the cache."
12074         BEFORE=$(roc_hit)
12075         cancel_lru_locks osc
12076         cat $file >/dev/null
12077         AFTER=$(roc_hit)
12078         if ! let "AFTER - BEFORE == CPAGES"; then
12079                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12080         else
12081                 log "cache hits:: before: $BEFORE, after: $AFTER"
12082         fi
12083
12084         log "Read again; it should not be satisfied from the cache."
12085         BEFORE=$AFTER
12086         cancel_lru_locks osc
12087         cat $file >/dev/null
12088         AFTER=$(roc_hit)
12089         if ! let "AFTER - BEFORE == 0"; then
12090                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12091         else
12092                 log "cache hits:: before: $BEFORE, after: $AFTER"
12093         fi
12094
12095         log "Write data and read it back."
12096         log "Read should be satisfied from the cache."
12097         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12098         BEFORE=$(roc_hit)
12099         cancel_lru_locks osc
12100         cat $file >/dev/null
12101         AFTER=$(roc_hit)
12102         if ! let "AFTER - BEFORE == CPAGES"; then
12103                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12104         else
12105                 log "cache hits:: before: $BEFORE, after: $AFTER"
12106         fi
12107
12108         log "Read again; it should not be satisfied from the cache."
12109         BEFORE=$AFTER
12110         cancel_lru_locks osc
12111         cat $file >/dev/null
12112         AFTER=$(roc_hit)
12113         if ! let "AFTER - BEFORE == 0"; then
12114                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12115         else
12116                 log "cache hits:: before: $BEFORE, after: $AFTER"
12117         fi
12118
12119         log "Turn off read and write cache"
12120         set_cache read off
12121         set_cache writethrough off
12122
12123         log "Write data and read it back"
12124         log "It should not be satisfied from the cache."
12125         rm -f $file
12126         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12127         cancel_lru_locks osc
12128         BEFORE=$(roc_hit)
12129         cat $file >/dev/null
12130         AFTER=$(roc_hit)
12131         if ! let "AFTER - BEFORE == 0"; then
12132                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12133         else
12134                 log "cache hits:: before: $BEFORE, after: $AFTER"
12135         fi
12136
12137         log "Turn on the read cache and turn off the write cache"
12138         set_cache read on
12139         set_cache writethrough off
12140
12141         log "Write data and read it back"
12142         log "It should not be satisfied from the cache."
12143         rm -f $file
12144         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12145         BEFORE=$(roc_hit)
12146         cancel_lru_locks osc
12147         cat $file >/dev/null
12148         AFTER=$(roc_hit)
12149         if ! let "AFTER - BEFORE == 0"; then
12150                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12151         else
12152                 log "cache hits:: before: $BEFORE, after: $AFTER"
12153         fi
12154
12155         log "Read again; it should be satisfied from the cache."
12156         BEFORE=$(roc_hit)
12157         cancel_lru_locks osc
12158         cat $file >/dev/null
12159         AFTER=$(roc_hit)
12160         if ! let "AFTER - BEFORE == CPAGES"; then
12161                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12162         else
12163                 log "cache hits:: before: $BEFORE, after: $AFTER"
12164         fi
12165
12166         restore_lustre_params < $p
12167         rm -f $p $file
12168 }
12169 run_test 156 "Verification of tunables"
12170
12171 test_160a() {
12172         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12173         remote_mds_nodsh && skip "remote MDS with nodsh"
12174         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12175                 skip "Need MDS version at least 2.2.0"
12176
12177         changelog_register || error "changelog_register failed"
12178         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12179         changelog_users $SINGLEMDS | grep -q $cl_user ||
12180                 error "User $cl_user not found in changelog_users"
12181
12182         # change something
12183         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12184         changelog_clear 0 || error "changelog_clear failed"
12185         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12186         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12187         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12188         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12189         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12190         rm $DIR/$tdir/pics/desktop.jpg
12191
12192         changelog_dump | tail -10
12193
12194         echo "verifying changelog mask"
12195         changelog_chmask "-MKDIR"
12196         changelog_chmask "-CLOSE"
12197
12198         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12199         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12200
12201         changelog_chmask "+MKDIR"
12202         changelog_chmask "+CLOSE"
12203
12204         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12205         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12206
12207         changelog_dump | tail -10
12208         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12209         CLOSES=$(changelog_dump | grep -c "CLOSE")
12210         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12211         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12212
12213         # verify contents
12214         echo "verifying target fid"
12215         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12216         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12217         [ "$fidc" == "$fidf" ] ||
12218                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12219         echo "verifying parent fid"
12220         # The FID returned from the Changelog may be the directory shard on
12221         # a different MDT, and not the FID returned by path2fid on the parent.
12222         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12223         # since this is what will matter when recreating this file in the tree.
12224         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12225         local pathp=$($LFS fid2path $MOUNT "$fidp")
12226         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12227                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12228
12229         echo "getting records for $cl_user"
12230         changelog_users $SINGLEMDS
12231         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12232         local nclr=3
12233         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12234                 error "changelog_clear failed"
12235         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12236         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12237         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12238                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12239
12240         local min0_rec=$(changelog_users $SINGLEMDS |
12241                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12242         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12243                           awk '{ print $1; exit; }')
12244
12245         changelog_dump | tail -n 5
12246         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12247         [ $first_rec == $((min0_rec + 1)) ] ||
12248                 error "first index should be $min0_rec + 1 not $first_rec"
12249
12250         # LU-3446 changelog index reset on MDT restart
12251         local cur_rec1=$(changelog_users $SINGLEMDS |
12252                          awk '/^current.index:/ { print $NF }')
12253         changelog_clear 0 ||
12254                 error "clear all changelog records for $cl_user failed"
12255         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12256         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12257                 error "Fail to start $SINGLEMDS"
12258         local cur_rec2=$(changelog_users $SINGLEMDS |
12259                          awk '/^current.index:/ { print $NF }')
12260         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12261         [ $cur_rec1 == $cur_rec2 ] ||
12262                 error "current index should be $cur_rec1 not $cur_rec2"
12263
12264         echo "verifying users from this test are deregistered"
12265         changelog_deregister || error "changelog_deregister failed"
12266         changelog_users $SINGLEMDS | grep -q $cl_user &&
12267                 error "User '$cl_user' still in changelog_users"
12268
12269         # lctl get_param -n mdd.*.changelog_users
12270         # current index: 144
12271         # ID    index (idle seconds)
12272         # cl3   144 (2)
12273         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12274                 # this is the normal case where all users were deregistered
12275                 # make sure no new records are added when no users are present
12276                 local last_rec1=$(changelog_users $SINGLEMDS |
12277                                   awk '/^current.index:/ { print $NF }')
12278                 touch $DIR/$tdir/chloe
12279                 local last_rec2=$(changelog_users $SINGLEMDS |
12280                                   awk '/^current.index:/ { print $NF }')
12281                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12282                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12283         else
12284                 # any changelog users must be leftovers from a previous test
12285                 changelog_users $SINGLEMDS
12286                 echo "other changelog users; can't verify off"
12287         fi
12288 }
12289 run_test 160a "changelog sanity"
12290
12291 test_160b() { # LU-3587
12292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12293         remote_mds_nodsh && skip "remote MDS with nodsh"
12294         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
12295                 skip "Need MDS version at least 2.2.0"
12296
12297         changelog_register || error "changelog_register failed"
12298         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12299         changelog_users $SINGLEMDS | grep -q $cl_user ||
12300                 error "User '$cl_user' not found in changelog_users"
12301
12302         local longname1=$(str_repeat a 255)
12303         local longname2=$(str_repeat b 255)
12304
12305         cd $DIR
12306         echo "creating very long named file"
12307         touch $longname1 || error "create of '$longname1' failed"
12308         echo "renaming very long named file"
12309         mv $longname1 $longname2
12310
12311         changelog_dump | grep RENME | tail -n 5
12312         rm -f $longname2
12313 }
12314 run_test 160b "Verify that very long rename doesn't crash in changelog"
12315
12316 test_160c() {
12317         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12318         remote_mds_nodsh && skip "remote MDS with nodsh"
12319
12320         local rc=0
12321         local server_version=$(lustre_version_code $SINGLEMDS)
12322
12323         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12324                 [[ $server_version -gt $(version_code 2.5.1) &&
12325                    $server_version -lt $(version_code 2.5.50) ]] ||
12326                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12327
12328         # Registration step
12329         changelog_register || error "changelog_register failed"
12330
12331         rm -rf $DIR/$tdir
12332         mkdir -p $DIR/$tdir
12333         $MCREATE $DIR/$tdir/foo_160c
12334         changelog_chmask "-TRUNC"
12335         $TRUNCATE $DIR/$tdir/foo_160c 200
12336         changelog_chmask "+TRUNC"
12337         $TRUNCATE $DIR/$tdir/foo_160c 199
12338         changelog_dump | tail -n 5
12339         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12340         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12341 }
12342 run_test 160c "verify that changelog log catch the truncate event"
12343
12344 test_160d() {
12345         remote_mds_nodsh && skip "remote MDS with nodsh"
12346         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12347         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12348         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.60) ]] ||
12349                 skip "Need MDS version at least 2.7.60"
12350
12351         # Registration step
12352         changelog_register || error "changelog_register failed"
12353
12354         mkdir -p $DIR/$tdir/migrate_dir
12355         changelog_clear 0 || error "changelog_clear failed"
12356
12357         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12358         changelog_dump | tail -n 5
12359         local migrates=$(changelog_dump | grep -c "MIGRT")
12360         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12361 }
12362 run_test 160d "verify that changelog log catch the migrate event"
12363
12364 test_160e() {
12365         remote_mds_nodsh && skip "remote MDS with nodsh"
12366
12367         # Create a user
12368         changelog_register || error "changelog_register failed"
12369
12370         # Delete a future user (expect fail)
12371         local MDT0=$(facet_svc $SINGLEMDS)
12372         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12373         local rc=$?
12374
12375         if [ $rc -eq 0 ]; then
12376                 error "Deleted non-existant user cl77"
12377         elif [ $rc -ne 2 ]; then
12378                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12379         fi
12380
12381         # Clear to a bad index (1 billion should be safe)
12382         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12383         rc=$?
12384
12385         if [ $rc -eq 0 ]; then
12386                 error "Successfully cleared to invalid CL index"
12387         elif [ $rc -ne 22 ]; then
12388                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12389         fi
12390 }
12391 run_test 160e "changelog negative testing (should return errors)"
12392
12393 test_160f() {
12394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12395         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12396                 { skip "Need MDS version at least 2.10.56"; return 0; }
12397
12398         local mdts=$(comma_list $(mdts_nodes))
12399
12400         # Create a user
12401         changelog_register || error "first changelog_register failed"
12402         changelog_register || error "second changelog_register failed"
12403         local cl_users
12404         declare -A cl_user1
12405         declare -A cl_user2
12406         local user_rec1
12407         local user_rec2
12408         local i
12409
12410         # generate some changelog records to accumulate on each MDT
12411         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12412         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12413                 error "create $DIR/$tdir/$tfile failed"
12414
12415         # check changelogs have been generated
12416         local nbcl=$(changelog_dump | wc -l)
12417         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12418
12419         for param in "changelog_max_idle_time=10" \
12420                      "changelog_gc=1" \
12421                      "changelog_min_gc_interval=2" \
12422                      "changelog_min_free_cat_entries=3"; do
12423                 local MDT0=$(facet_svc $SINGLEMDS)
12424                 local var="${param%=*}"
12425                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12426
12427                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12428                 do_nodes $mdts $LCTL set_param mdd.*.$param
12429         done
12430
12431         # force cl_user2 to be idle (1st part)
12432         sleep 9
12433
12434         # simulate changelog catalog almost full
12435         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12436         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12437
12438         for i in $(seq $MDSCOUNT); do
12439                 cl_users=(${CL_USERS[mds$i]})
12440                 cl_user1[mds$i]="${cl_users[0]}"
12441                 cl_user2[mds$i]="${cl_users[1]}"
12442
12443                 [ -n "${cl_user1[mds$i]}" ] ||
12444                         error "mds$i: no user registered"
12445                 [ -n "${cl_user2[mds$i]}" ] ||
12446                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12447
12448                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12449                 [ -n "$user_rec1" ] ||
12450                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12451                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12452                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12453                 [ -n "$user_rec2" ] ||
12454                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12455                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12456                      "$user_rec1 + 2 == $user_rec2"
12457                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12458                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12459                               "$user_rec1 + 2, but is $user_rec2"
12460                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12461                 [ -n "$user_rec2" ] ||
12462                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12463                 [ $user_rec1 == $user_rec2 ] ||
12464                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12465                               "$user_rec1, but is $user_rec2"
12466         done
12467
12468         # force cl_user2 to be idle (2nd part) and to reach
12469         # changelog_max_idle_time
12470         sleep 2
12471
12472         # generate one more changelog to trigger fail_loc
12473         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12474                 error "create $DIR/$tdir/${tfile}bis failed"
12475
12476         # ensure gc thread is done
12477         for i in $(mdts_nodes); do
12478                 wait_update $i \
12479                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12480                         error "$i: GC-thread not done"
12481         done
12482
12483         local first_rec
12484         for i in $(seq $MDSCOUNT); do
12485                 # check cl_user1 still registered
12486                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12487                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12488                 # check cl_user2 unregistered
12489                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12490                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12491
12492                 # check changelogs are present and starting at $user_rec1 + 1
12493                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12494                 [ -n "$user_rec1" ] ||
12495                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12496                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12497                             awk '{ print $1; exit; }')
12498
12499                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12500                 [ $((user_rec1 + 1)) == $first_rec ] ||
12501                         error "mds$i: first index should be $user_rec1 + 1, " \
12502                               "but is $first_rec"
12503         done
12504 }
12505 run_test 160f "changelog garbage collect (timestamped users)"
12506
12507 test_160g() {
12508         remote_mds_nodsh && skip "remote MDS with nodsh"
12509         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12510                 skip "Need MDS version at least 2.10.56"
12511
12512         local mdts=$(comma_list $(mdts_nodes))
12513
12514         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12515         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12516
12517         # Create a user
12518         changelog_register || error "first changelog_register failed"
12519         changelog_register || error "second changelog_register failed"
12520         local cl_users
12521         declare -A cl_user1
12522         declare -A cl_user2
12523         local user_rec1
12524         local user_rec2
12525         local i
12526
12527         # generate some changelog records to accumulate on each MDT
12528         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12529         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12530                 error "create $DIR/$tdir/$tfile failed"
12531
12532         # check changelogs have been generated
12533         local nbcl=$(changelog_dump | wc -l)
12534         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12535
12536         for param in "changelog_max_idle_indexes=$((nbcl / 2))" \
12537                      "changelog_gc=1" \
12538                      "changelog_min_gc_interval=2" \
12539                      "changelog_min_free_cat_entries=3"; do
12540                 local MDT0=$(facet_svc $SINGLEMDS)
12541                 local var="${param%=*}"
12542                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12543
12544                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12545                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12546                         error "unable to set mdd.*.$param"
12547         done
12548
12549         # simulate changelog catalog almost full
12550         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12551         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12552
12553         for i in $(seq $MDSCOUNT); do
12554                 cl_users=(${CL_USERS[mds$i]})
12555                 cl_user1[mds$i]="${cl_users[0]}"
12556                 cl_user2[mds$i]="${cl_users[1]}"
12557
12558                 [ -n "${cl_user1[mds$i]}" ] ||
12559                         error "mds$i: no user registered"
12560                 [ -n "${cl_user2[mds$i]}" ] ||
12561                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12562
12563                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12564                 [ -n "$user_rec1" ] ||
12565                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12566                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12567                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12568                 [ -n "$user_rec2" ] ||
12569                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12570                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12571                      "$user_rec1 + 2 == $user_rec2"
12572                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12573                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12574                               "$user_rec1 + 2, but is $user_rec2"
12575                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12576                 [ -n "$user_rec2" ] ||
12577                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12578                 [ $user_rec1 == $user_rec2 ] ||
12579                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12580                               "$user_rec1, but is $user_rec2"
12581         done
12582
12583         # ensure we are past the previous changelog_min_gc_interval set above
12584         sleep 2
12585
12586         # generate one more changelog to trigger fail_loc
12587         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12588                 error "create $DIR/$tdir/${tfile}bis failed"
12589
12590         # ensure gc thread is done
12591         for i in $(mdts_nodes); do
12592                 wait_update $i \
12593                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12594                         error "$i: GC-thread not done"
12595         done
12596
12597         local first_rec
12598         for i in $(seq $MDSCOUNT); do
12599                 # check cl_user1 still registered
12600                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12601                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12602                 # check cl_user2 unregistered
12603                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12604                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12605
12606                 # check changelogs are present and starting at $user_rec1 + 1
12607                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12608                 [ -n "$user_rec1" ] ||
12609                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12610                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12611                             awk '{ print $1; exit; }')
12612
12613                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12614                 [ $((user_rec1 + 1)) == $first_rec ] ||
12615                         error "mds$i: first index should be $user_rec1 + 1, " \
12616                               "but is $first_rec"
12617         done
12618 }
12619 run_test 160g "changelog garbage collect (old users)"
12620
12621 test_160h() {
12622         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12623         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.56) ]] ||
12624                 { skip "Need MDS version at least 2.10.56"; return 0; }
12625
12626         local mdts=$(comma_list $(mdts_nodes))
12627
12628         # Create a user
12629         changelog_register || error "first changelog_register failed"
12630         changelog_register || error "second changelog_register failed"
12631         local cl_users
12632         declare -A cl_user1
12633         declare -A cl_user2
12634         local user_rec1
12635         local user_rec2
12636         local i
12637
12638         # generate some changelog records to accumulate on each MDT
12639         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12640         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12641                 error "create $DIR/$tdir/$tfile failed"
12642
12643         # check changelogs have been generated
12644         local nbcl=$(changelog_dump | wc -l)
12645         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12646
12647         for param in "changelog_max_idle_time=10" \
12648                      "changelog_gc=1" \
12649                      "changelog_min_gc_interval=2"; do
12650                 local MDT0=$(facet_svc $SINGLEMDS)
12651                 local var="${param%=*}"
12652                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12653
12654                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12655                 do_nodes $mdts $LCTL set_param mdd.*.$param
12656         done
12657
12658         # force cl_user2 to be idle (1st part)
12659         sleep 9
12660
12661         for i in $(seq $MDSCOUNT); do
12662                 cl_users=(${CL_USERS[mds$i]})
12663                 cl_user1[mds$i]="${cl_users[0]}"
12664                 cl_user2[mds$i]="${cl_users[1]}"
12665
12666                 [ -n "${cl_user1[mds$i]}" ] ||
12667                         error "mds$i: no user registered"
12668                 [ -n "${cl_user2[mds$i]}" ] ||
12669                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12670
12671                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12672                 [ -n "$user_rec1" ] ||
12673                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12674                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12675                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12676                 [ -n "$user_rec2" ] ||
12677                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12678                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12679                      "$user_rec1 + 2 == $user_rec2"
12680                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12681                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12682                               "$user_rec1 + 2, but is $user_rec2"
12683                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12684                 [ -n "$user_rec2" ] ||
12685                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12686                 [ $user_rec1 == $user_rec2 ] ||
12687                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12688                               "$user_rec1, but is $user_rec2"
12689         done
12690
12691         # force cl_user2 to be idle (2nd part) and to reach
12692         # changelog_max_idle_time
12693         sleep 2
12694
12695         # force each GC-thread start and block then
12696         # one per MDT/MDD, set fail_val accordingly
12697         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12698         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12699
12700         # generate more changelogs to trigger fail_loc
12701         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12702                 error "create $DIR/$tdir/${tfile}bis failed"
12703
12704         # stop MDT to stop GC-thread, should be done in back-ground as it will
12705         # block waiting for the thread to be released and exit
12706         declare -A stop_pids
12707         for i in $(seq $MDSCOUNT); do
12708                 stop mds$i &
12709                 stop_pids[mds$i]=$!
12710         done
12711
12712         for i in $(mdts_nodes); do
12713                 local facet
12714                 local nb=0
12715                 local facets=$(facets_up_on_host $i)
12716
12717                 for facet in ${facets//,/ }; do
12718                         if [[ $facet == mds* ]]; then
12719                                 nb=$((nb + 1))
12720                         fi
12721                 done
12722                 # ensure each MDS's gc threads are still present and all in "R"
12723                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12724                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12725                         error "$i: expected $nb GC-thread"
12726                 wait_update $i \
12727                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12728                         "R" 20 ||
12729                         error "$i: GC-thread not found in R-state"
12730                 # check umounts of each MDT on MDS have reached kthread_stop()
12731                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12732                         error "$i: expected $nb umount"
12733                 wait_update $i \
12734                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12735                         error "$i: umount not found in D-state"
12736         done
12737
12738         # release all GC-threads
12739         do_nodes $mdts $LCTL set_param fail_loc=0
12740
12741         # wait for MDT stop to complete
12742         for i in $(seq $MDSCOUNT); do
12743                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12744         done
12745
12746         # XXX
12747         # may try to check if any orphan changelog records are present
12748         # via ldiskfs/zfs and llog_reader...
12749
12750         # re-start/mount MDTs
12751         for i in $(seq $MDSCOUNT); do
12752                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12753                         error "Fail to start mds$i"
12754         done
12755
12756         local first_rec
12757         for i in $(seq $MDSCOUNT); do
12758                 # check cl_user1 still registered
12759                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12760                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12761                 # check cl_user2 unregistered
12762                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12763                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12764
12765                 # check changelogs are present and starting at $user_rec1 + 1
12766                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12767                 [ -n "$user_rec1" ] ||
12768                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12769                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12770                             awk '{ print $1; exit; }')
12771
12772                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12773                 [ $((user_rec1 + 1)) == $first_rec ] ||
12774                         error "mds$i: first index should be $user_rec1 + 1, " \
12775                               "but is $first_rec"
12776         done
12777 }
12778 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12779               "during mount"
12780
12781 test_160i() {
12782
12783         local mdts=$(comma_list $(mdts_nodes))
12784
12785         changelog_register || error "first changelog_register failed"
12786
12787         # generate some changelog records to accumulate on each MDT
12788         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12789         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12790                 error "create $DIR/$tdir/$tfile failed"
12791
12792         # check changelogs have been generated
12793         local nbcl=$(changelog_dump | wc -l)
12794         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12795
12796         # simulate race between register and unregister
12797         # XXX as fail_loc is set per-MDS, with DNE configs the race
12798         # simulation will only occur for one MDT per MDS and for the
12799         # others the normal race scenario will take place
12800         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12801         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12802         do_nodes $mdts $LCTL set_param fail_val=1
12803
12804         # unregister 1st user
12805         changelog_deregister &
12806         local pid1=$!
12807         # wait some time for deregister work to reach race rdv
12808         sleep 2
12809         # register 2nd user
12810         changelog_register || error "2nd user register failed"
12811
12812         wait $pid1 || error "1st user deregister failed"
12813
12814         local i
12815         local last_rec
12816         declare -A LAST_REC
12817         for i in $(seq $MDSCOUNT); do
12818                 if changelog_users mds$i | grep "^cl"; then
12819                         # make sure new records are added with one user present
12820                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12821                                           awk '/^current.index:/ { print $NF }')
12822                 else
12823                         error "mds$i has no user registered"
12824                 fi
12825         done
12826
12827         # generate more changelog records to accumulate on each MDT
12828         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12829                 error "create $DIR/$tdir/${tfile}bis failed"
12830
12831         for i in $(seq $MDSCOUNT); do
12832                 last_rec=$(changelog_users $SINGLEMDS |
12833                            awk '/^current.index:/ { print $NF }')
12834                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12835                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12836                         error "changelogs are off on mds$i"
12837         done
12838 }
12839 run_test 160i "changelog user register/unregister race"
12840
12841 test_161a() {
12842         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12843
12844         test_mkdir -c1 $DIR/$tdir
12845         cp /etc/hosts $DIR/$tdir/$tfile
12846         test_mkdir -c1 $DIR/$tdir/foo1
12847         test_mkdir -c1 $DIR/$tdir/foo2
12848         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12849         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12850         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12851         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12852         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12853         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12854                 $LFS fid2path $DIR $FID
12855                 error "bad link ea"
12856         fi
12857         # middle
12858         rm $DIR/$tdir/foo2/zachary
12859         # last
12860         rm $DIR/$tdir/foo2/thor
12861         # first
12862         rm $DIR/$tdir/$tfile
12863         # rename
12864         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12865         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12866                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12867         rm $DIR/$tdir/foo2/maggie
12868
12869         # overflow the EA
12870         local longname=$tfile.avg_len_is_thirty_two_
12871         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12872                 error_noexit 'failed to unlink many hardlinks'" EXIT
12873         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12874                 error "failed to hardlink many files"
12875         links=$($LFS fid2path $DIR $FID | wc -l)
12876         echo -n "${links}/1000 links in link EA"
12877         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
12878 }
12879 run_test 161a "link ea sanity"
12880
12881 test_161b() {
12882         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12883         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
12884
12885         local MDTIDX=1
12886         local remote_dir=$DIR/$tdir/remote_dir
12887
12888         mkdir -p $DIR/$tdir
12889         $LFS mkdir -i $MDTIDX $remote_dir ||
12890                 error "create remote directory failed"
12891
12892         cp /etc/hosts $remote_dir/$tfile
12893         mkdir -p $remote_dir/foo1
12894         mkdir -p $remote_dir/foo2
12895         ln $remote_dir/$tfile $remote_dir/foo1/sofia
12896         ln $remote_dir/$tfile $remote_dir/foo2/zachary
12897         ln $remote_dir/$tfile $remote_dir/foo1/luna
12898         ln $remote_dir/$tfile $remote_dir/foo2/thor
12899
12900         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
12901                      tr -d ']')
12902         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12903                 $LFS fid2path $DIR $FID
12904                 error "bad link ea"
12905         fi
12906         # middle
12907         rm $remote_dir/foo2/zachary
12908         # last
12909         rm $remote_dir/foo2/thor
12910         # first
12911         rm $remote_dir/$tfile
12912         # rename
12913         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
12914         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
12915         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
12916                 $LFS fid2path $DIR $FID
12917                 error "bad link rename"
12918         fi
12919         rm $remote_dir/foo2/maggie
12920
12921         # overflow the EA
12922         local longname=filename_avg_len_is_thirty_two_
12923         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
12924                 error "failed to hardlink many files"
12925         links=$($LFS fid2path $DIR $FID | wc -l)
12926         echo -n "${links}/1000 links in link EA"
12927         [[ ${links} -gt 60 ]] ||
12928                 error "expected at least 60 links in link EA"
12929         unlinkmany $remote_dir/foo2/$longname 1000 ||
12930         error "failed to unlink many hardlinks"
12931 }
12932 run_test 161b "link ea sanity under remote directory"
12933
12934 test_161c() {
12935         remote_mds_nodsh && skip "remote MDS with nodsh"
12936         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12937         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
12938                 skip "Need MDS version at least 2.1.5"
12939
12940         # define CLF_RENAME_LAST 0x0001
12941         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
12942         changelog_register || error "changelog_register failed"
12943
12944         rm -rf $DIR/$tdir
12945         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
12946         touch $DIR/$tdir/foo_161c
12947         touch $DIR/$tdir/bar_161c
12948         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12949         changelog_dump | grep RENME | tail -n 5
12950         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12951         changelog_clear 0 || error "changelog_clear failed"
12952         if [ x$flags != "x0x1" ]; then
12953                 error "flag $flags is not 0x1"
12954         fi
12955
12956         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
12957         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
12958         touch $DIR/$tdir/foo_161c
12959         touch $DIR/$tdir/bar_161c
12960         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12961         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
12962         changelog_dump | grep RENME | tail -n 5
12963         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
12964         changelog_clear 0 || error "changelog_clear failed"
12965         if [ x$flags != "x0x0" ]; then
12966                 error "flag $flags is not 0x0"
12967         fi
12968         echo "rename overwrite a target having nlink > 1," \
12969                 "changelog record has flags of $flags"
12970
12971         # rename doesn't overwrite a target (changelog flag 0x0)
12972         touch $DIR/$tdir/foo_161c
12973         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
12974         changelog_dump | grep RENME | tail -n 5
12975         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
12976         changelog_clear 0 || error "changelog_clear failed"
12977         if [ x$flags != "x0x0" ]; then
12978                 error "flag $flags is not 0x0"
12979         fi
12980         echo "rename doesn't overwrite a target," \
12981                 "changelog record has flags of $flags"
12982
12983         # define CLF_UNLINK_LAST 0x0001
12984         # unlink a file having nlink = 1 (changelog flag 0x1)
12985         rm -f $DIR/$tdir/foo2_161c
12986         changelog_dump | grep UNLNK | tail -n 5
12987         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
12988         changelog_clear 0 || error "changelog_clear failed"
12989         if [ x$flags != "x0x1" ]; then
12990                 error "flag $flags is not 0x1"
12991         fi
12992         echo "unlink a file having nlink = 1," \
12993                 "changelog record has flags of $flags"
12994
12995         # unlink a file having nlink > 1 (changelog flag 0x0)
12996         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
12997         rm -f $DIR/$tdir/foobar_161c
12998         changelog_dump | grep UNLNK | tail -n 5
12999         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13000         changelog_clear 0 || error "changelog_clear failed"
13001         if [ x$flags != "x0x0" ]; then
13002                 error "flag $flags is not 0x0"
13003         fi
13004         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13005 }
13006 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13007
13008 test_161d() {
13009         remote_mds_nodsh && skip "remote MDS with nodsh"
13010
13011         local pid
13012         local fid
13013
13014         changelog_register || error "changelog_register failed"
13015
13016         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13017         # interfer with $MOUNT/.lustre/fid/ access
13018         mkdir $DIR/$tdir
13019         [[ $? -eq 0 ]] || error "mkdir failed"
13020
13021         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13022         $LCTL set_param fail_loc=0x8000140c
13023         # 5s pause
13024         $LCTL set_param fail_val=5
13025
13026         # create file
13027         echo foofoo > $DIR/$tdir/$tfile &
13028         pid=$!
13029
13030         # wait for create to be delayed
13031         sleep 2
13032
13033         ps -p $pid
13034         [[ $? -eq 0 ]] || error "create should be blocked"
13035
13036         local tempfile=$(mktemp)
13037         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13038         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13039         # some delay may occur during ChangeLog publishing and file read just
13040         # above, that could allow file write to happen finally
13041         [[ -s $tempfile ]] && echo "file should be empty"
13042
13043         $LCTL set_param fail_loc=0
13044
13045         wait $pid
13046         [[ $? -eq 0 ]] || error "create failed"
13047 }
13048 run_test 161d "create with concurrent .lustre/fid access"
13049
13050 check_path() {
13051         local expected="$1"
13052         shift
13053         local fid="$2"
13054
13055         local path
13056         path=$($LFS fid2path "$@")
13057         local rc=$?
13058
13059         if [ $rc -ne 0 ]; then
13060                 error "path looked up of '$expected' failed: rc=$rc"
13061         elif [ "$path" != "$expected" ]; then
13062                 error "path looked up '$path' instead of '$expected'"
13063         else
13064                 echo "FID '$fid' resolves to path '$path' as expected"
13065         fi
13066 }
13067
13068 test_162a() { # was test_162
13069         test_mkdir -p -c1 $DIR/$tdir/d2
13070         touch $DIR/$tdir/d2/$tfile
13071         touch $DIR/$tdir/d2/x1
13072         touch $DIR/$tdir/d2/x2
13073         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13074         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13075         # regular file
13076         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13077         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13078
13079         # softlink
13080         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13081         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13082         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13083
13084         # softlink to wrong file
13085         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13086         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13087         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13088
13089         # hardlink
13090         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13091         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13092         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13093         # fid2path dir/fsname should both work
13094         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13095         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13096
13097         # hardlink count: check that there are 2 links
13098         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13099         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13100
13101         # hardlink indexing: remove the first link
13102         rm $DIR/$tdir/d2/p/q/r/hlink
13103         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13104 }
13105 run_test 162a "path lookup sanity"
13106
13107 test_162b() {
13108         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13109         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13110
13111         mkdir $DIR/$tdir
13112         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13113                                 error "create striped dir failed"
13114
13115         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13116                                         tail -n 1 | awk '{print $2}')
13117         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13118
13119         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13120         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13121
13122         # regular file
13123         for ((i=0;i<5;i++)); do
13124                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13125                         error "get fid for f$i failed"
13126                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13127
13128                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13129                         error "get fid for d$i failed"
13130                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13131         done
13132
13133         return 0
13134 }
13135 run_test 162b "striped directory path lookup sanity"
13136
13137 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13138 test_162c() {
13139         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
13140                 skip "Need MDS version at least 2.7.51"
13141
13142         local lpath=$tdir.local
13143         local rpath=$tdir.remote
13144
13145         test_mkdir $DIR/$lpath
13146         test_mkdir $DIR/$rpath
13147
13148         for ((i = 0; i <= 101; i++)); do
13149                 lpath="$lpath/$i"
13150                 mkdir $DIR/$lpath
13151                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13152                         error "get fid for local directory $DIR/$lpath failed"
13153                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13154
13155                 rpath="$rpath/$i"
13156                 test_mkdir $DIR/$rpath
13157                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13158                         error "get fid for remote directory $DIR/$rpath failed"
13159                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13160         done
13161
13162         return 0
13163 }
13164 run_test 162c "fid2path works with paths 100 or more directories deep"
13165
13166 test_169() {
13167         # do directio so as not to populate the page cache
13168         log "creating a 10 Mb file"
13169         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13170         log "starting reads"
13171         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13172         log "truncating the file"
13173         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13174         log "killing dd"
13175         kill %+ || true # reads might have finished
13176         echo "wait until dd is finished"
13177         wait
13178         log "removing the temporary file"
13179         rm -rf $DIR/$tfile || error "tmp file removal failed"
13180 }
13181 run_test 169 "parallel read and truncate should not deadlock"
13182
13183 test_170() {
13184         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13185
13186         $LCTL clear     # bug 18514
13187         $LCTL debug_daemon start $TMP/${tfile}_log_good
13188         touch $DIR/$tfile
13189         $LCTL debug_daemon stop
13190         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13191                 error "sed failed to read log_good"
13192
13193         $LCTL debug_daemon start $TMP/${tfile}_log_good
13194         rm -rf $DIR/$tfile
13195         $LCTL debug_daemon stop
13196
13197         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13198                error "lctl df log_bad failed"
13199
13200         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13201         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13202
13203         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13204         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13205
13206         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13207                 error "bad_line good_line1 good_line2 are empty"
13208
13209         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13210         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13211         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13212
13213         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13214         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13215         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13216
13217         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13218                 error "bad_line_new good_line_new are empty"
13219
13220         local expected_good=$((good_line1 + good_line2*2))
13221
13222         rm -f $TMP/${tfile}*
13223         # LU-231, short malformed line may not be counted into bad lines
13224         if [ $bad_line -ne $bad_line_new ] &&
13225                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13226                 error "expected $bad_line bad lines, but got $bad_line_new"
13227                 return 1
13228         fi
13229
13230         if [ $expected_good -ne $good_line_new ]; then
13231                 error "expected $expected_good good lines, but got $good_line_new"
13232                 return 2
13233         fi
13234         true
13235 }
13236 run_test 170 "test lctl df to handle corrupted log ====================="
13237
13238 test_171() { # bug20592
13239         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13240
13241         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13242         $LCTL set_param fail_loc=0x50e
13243         $LCTL set_param fail_val=3000
13244         multiop_bg_pause $DIR/$tfile O_s || true
13245         local MULTIPID=$!
13246         kill -USR1 $MULTIPID
13247         # cause log dump
13248         sleep 3
13249         wait $MULTIPID
13250         if dmesg | grep "recursive fault"; then
13251                 error "caught a recursive fault"
13252         fi
13253         $LCTL set_param fail_loc=0
13254         true
13255 }
13256 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13257
13258 # it would be good to share it with obdfilter-survey/iokit-libecho code
13259 setup_obdecho_osc () {
13260         local rc=0
13261         local ost_nid=$1
13262         local obdfilter_name=$2
13263         echo "Creating new osc for $obdfilter_name on $ost_nid"
13264         # make sure we can find loopback nid
13265         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13266
13267         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13268                            ${obdfilter_name}_osc_UUID || rc=2; }
13269         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13270                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13271         return $rc
13272 }
13273
13274 cleanup_obdecho_osc () {
13275         local obdfilter_name=$1
13276         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13277         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13278         return 0
13279 }
13280
13281 obdecho_test() {
13282         local OBD=$1
13283         local node=$2
13284         local pages=${3:-64}
13285         local rc=0
13286         local id
13287
13288         local count=10
13289         local obd_size=$(get_obd_size $node $OBD)
13290         local page_size=$(get_page_size $node)
13291         if [[ -n "$obd_size" ]]; then
13292                 local new_count=$((obd_size / (pages * page_size / 1024)))
13293                 [[ $new_count -ge $count ]] || count=$new_count
13294         fi
13295
13296         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13297         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13298                            rc=2; }
13299         if [ $rc -eq 0 ]; then
13300             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13301             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13302         fi
13303         echo "New object id is $id"
13304         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13305                            rc=4; }
13306         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13307                            "test_brw $count w v $pages $id" || rc=4; }
13308         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13309                            rc=4; }
13310         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13311                                         "cleanup" || rc=5; }
13312         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13313                                         "detach" || rc=6; }
13314         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13315         return $rc
13316 }
13317
13318 test_180a() {
13319         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13320
13321         if ! module_loaded obdecho; then
13322                 load_module obdecho/obdecho &&
13323                         stack_trap "rmmod obdecho" EXIT ||
13324                         error "unable to load obdecho on client"
13325         fi
13326
13327         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13328         local host=$($LCTL get_param -n osc.$osc.import |
13329                      awk '/current_connection:/ { print $2 }' )
13330         local target=$($LCTL get_param -n osc.$osc.import |
13331                        awk '/target:/ { print $2 }' )
13332         target=${target%_UUID}
13333
13334         if [ -n "$target" ]; then
13335                 setup_obdecho_osc $host $target &&
13336                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13337                         { error "obdecho setup failed with $?"; return; }
13338
13339                 obdecho_test ${target}_osc client ||
13340                         error "obdecho_test failed on ${target}_osc"
13341         else
13342                 $LCTL get_param osc.$osc.import
13343                 error "there is no osc.$osc.import target"
13344         fi
13345 }
13346 run_test 180a "test obdecho on osc"
13347
13348 test_180b() {
13349         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13350         remote_ost_nodsh && skip "remote OST with nodsh"
13351
13352         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13353                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13354                 error "failed to load module obdecho"
13355
13356         local target=$(do_facet ost1 $LCTL dl |
13357                        awk '/obdfilter/ { print $4; exit; }')
13358
13359         if [ -n "$target" ]; then
13360                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13361         else
13362                 do_facet ost1 $LCTL dl
13363                 error "there is no obdfilter target on ost1"
13364         fi
13365 }
13366 run_test 180b "test obdecho directly on obdfilter"
13367
13368 test_180c() { # LU-2598
13369         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13370         remote_ost_nodsh && skip "remote OST with nodsh"
13371         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
13372                 skip "Need MDS version at least 2.4.0"
13373
13374         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13375                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13376                 error "failed to load module obdecho"
13377
13378         local target=$(do_facet ost1 $LCTL dl |
13379                        awk '/obdfilter/ { print $4; exit; }')
13380
13381         if [ -n "$target" ]; then
13382                 local pages=16384 # 64MB bulk I/O RPC size
13383
13384                 obdecho_test "$target" ost1 "$pages" ||
13385                         error "obdecho_test with pages=$pages failed with $?"
13386         else
13387                 do_facet ost1 $LCTL dl
13388                 error "there is no obdfilter target on ost1"
13389         fi
13390 }
13391 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13392
13393 test_181() { # bug 22177
13394         test_mkdir $DIR/$tdir
13395         # create enough files to index the directory
13396         createmany -o $DIR/$tdir/foobar 4000
13397         # print attributes for debug purpose
13398         lsattr -d .
13399         # open dir
13400         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13401         MULTIPID=$!
13402         # remove the files & current working dir
13403         unlinkmany $DIR/$tdir/foobar 4000
13404         rmdir $DIR/$tdir
13405         kill -USR1 $MULTIPID
13406         wait $MULTIPID
13407         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13408         return 0
13409 }
13410 run_test 181 "Test open-unlinked dir ========================"
13411
13412 test_182() {
13413         local fcount=1000
13414         local tcount=10
13415
13416         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13417
13418         $LCTL set_param mdc.*.rpc_stats=clear
13419
13420         for (( i = 0; i < $tcount; i++ )) ; do
13421                 mkdir $DIR/$tdir/$i
13422         done
13423
13424         for (( i = 0; i < $tcount; i++ )) ; do
13425                 createmany -o $DIR/$tdir/$i/f- $fcount &
13426         done
13427         wait
13428
13429         for (( i = 0; i < $tcount; i++ )) ; do
13430                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13431         done
13432         wait
13433
13434         $LCTL get_param mdc.*.rpc_stats
13435
13436         rm -rf $DIR/$tdir
13437 }
13438 run_test 182 "Test parallel modify metadata operations ================"
13439
13440 test_183() { # LU-2275
13441         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13442         remote_mds_nodsh && skip "remote MDS with nodsh"
13443         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
13444                 skip "Need MDS version at least 2.3.56"
13445
13446         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13447         echo aaa > $DIR/$tdir/$tfile
13448
13449 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13450         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13451
13452         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13453         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13454
13455         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13456
13457         # Flush negative dentry cache
13458         touch $DIR/$tdir/$tfile
13459
13460         # We are not checking for any leaked references here, they'll
13461         # become evident next time we do cleanup with module unload.
13462         rm -rf $DIR/$tdir
13463 }
13464 run_test 183 "No crash or request leak in case of strange dispositions ========"
13465
13466 # test suite 184 is for LU-2016, LU-2017
13467 test_184a() {
13468         check_swap_layouts_support
13469
13470         dir0=$DIR/$tdir/$testnum
13471         test_mkdir -p -c1 $dir0
13472         ref1=/etc/passwd
13473         ref2=/etc/group
13474         file1=$dir0/f1
13475         file2=$dir0/f2
13476         $SETSTRIPE -c1 $file1
13477         cp $ref1 $file1
13478         $SETSTRIPE -c2 $file2
13479         cp $ref2 $file2
13480         gen1=$($GETSTRIPE -g $file1)
13481         gen2=$($GETSTRIPE -g $file2)
13482
13483         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13484         gen=$($GETSTRIPE -g $file1)
13485         [[ $gen1 != $gen ]] ||
13486                 "Layout generation on $file1 does not change"
13487         gen=$($GETSTRIPE -g $file2)
13488         [[ $gen2 != $gen ]] ||
13489                 "Layout generation on $file2 does not change"
13490
13491         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13492         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13493
13494         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13495 }
13496 run_test 184a "Basic layout swap"
13497
13498 test_184b() {
13499         check_swap_layouts_support
13500
13501         dir0=$DIR/$tdir/$testnum
13502         mkdir -p $dir0 || error "creating dir $dir0"
13503         file1=$dir0/f1
13504         file2=$dir0/f2
13505         file3=$dir0/f3
13506         dir1=$dir0/d1
13507         dir2=$dir0/d2
13508         mkdir $dir1 $dir2
13509         $SETSTRIPE -c1 $file1
13510         $SETSTRIPE -c2 $file2
13511         $SETSTRIPE -c1 $file3
13512         chown $RUNAS_ID $file3
13513         gen1=$($GETSTRIPE -g $file1)
13514         gen2=$($GETSTRIPE -g $file2)
13515
13516         $LFS swap_layouts $dir1 $dir2 &&
13517                 error "swap of directories layouts should fail"
13518         $LFS swap_layouts $dir1 $file1 &&
13519                 error "swap of directory and file layouts should fail"
13520         $RUNAS $LFS swap_layouts $file1 $file2 &&
13521                 error "swap of file we cannot write should fail"
13522         $LFS swap_layouts $file1 $file3 &&
13523                 error "swap of file with different owner should fail"
13524         /bin/true # to clear error code
13525 }
13526 run_test 184b "Forbidden layout swap (will generate errors)"
13527
13528 test_184c() {
13529         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13530         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13531         check_swap_layouts_support
13532
13533         local dir0=$DIR/$tdir/$testnum
13534         mkdir -p $dir0 || error "creating dir $dir0"
13535
13536         local ref1=$dir0/ref1
13537         local ref2=$dir0/ref2
13538         local file1=$dir0/file1
13539         local file2=$dir0/file2
13540         # create a file large enough for the concurrent test
13541         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13542         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13543         echo "ref file size: ref1($(stat -c %s $ref1))," \
13544              "ref2($(stat -c %s $ref2))"
13545
13546         cp $ref2 $file2
13547         dd if=$ref1 of=$file1 bs=16k &
13548         local DD_PID=$!
13549
13550         # Make sure dd starts to copy file
13551         while [ ! -f $file1 ]; do sleep 0.1; done
13552
13553         $LFS swap_layouts $file1 $file2
13554         local rc=$?
13555         wait $DD_PID
13556         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13557         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13558
13559         # how many bytes copied before swapping layout
13560         local copied=$(stat -c %s $file2)
13561         local remaining=$(stat -c %s $ref1)
13562         remaining=$((remaining - copied))
13563         echo "Copied $copied bytes before swapping layout..."
13564
13565         cmp -n $copied $file1 $ref2 | grep differ &&
13566                 error "Content mismatch [0, $copied) of ref2 and file1"
13567         cmp -n $copied $file2 $ref1 ||
13568                 error "Content mismatch [0, $copied) of ref1 and file2"
13569         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13570                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13571
13572         # clean up
13573         rm -f $ref1 $ref2 $file1 $file2
13574 }
13575 run_test 184c "Concurrent write and layout swap"
13576
13577 test_184d() {
13578         check_swap_layouts_support
13579         [ -z "$(which getfattr 2>/dev/null)" ] &&
13580                 skip_env "no getfattr command"
13581
13582         local file1=$DIR/$tdir/$tfile-1
13583         local file2=$DIR/$tdir/$tfile-2
13584         local file3=$DIR/$tdir/$tfile-3
13585         local lovea1
13586         local lovea2
13587
13588         mkdir -p $DIR/$tdir
13589         touch $file1 || error "create $file1 failed"
13590         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13591                 error "create $file2 failed"
13592         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13593                 error "create $file3 failed"
13594         lovea1=$(get_layout_param $file1)
13595
13596         $LFS swap_layouts $file2 $file3 ||
13597                 error "swap $file2 $file3 layouts failed"
13598         $LFS swap_layouts $file1 $file2 ||
13599                 error "swap $file1 $file2 layouts failed"
13600
13601         lovea2=$(get_layout_param $file2)
13602         echo "$lovea1"
13603         echo "$lovea2"
13604         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13605
13606         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13607         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13608 }
13609 run_test 184d "allow stripeless layouts swap"
13610
13611 test_184e() {
13612         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
13613                 skip "Need MDS version at least 2.6.94"
13614         check_swap_layouts_support
13615         [ -z "$(which getfattr 2>/dev/null)" ] &&
13616                 skip_env "no getfattr command"
13617
13618         local file1=$DIR/$tdir/$tfile-1
13619         local file2=$DIR/$tdir/$tfile-2
13620         local file3=$DIR/$tdir/$tfile-3
13621         local lovea
13622
13623         mkdir -p $DIR/$tdir
13624         touch $file1 || error "create $file1 failed"
13625         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13626                 error "create $file2 failed"
13627         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13628                 error "create $file3 failed"
13629
13630         $LFS swap_layouts $file1 $file2 ||
13631                 error "swap $file1 $file2 layouts failed"
13632
13633         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13634         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13635
13636         echo 123 > $file1 || error "Should be able to write into $file1"
13637
13638         $LFS swap_layouts $file1 $file3 ||
13639                 error "swap $file1 $file3 layouts failed"
13640
13641         echo 123 > $file1 || error "Should be able to write into $file1"
13642
13643         rm -rf $file1 $file2 $file3
13644 }
13645 run_test 184e "Recreate layout after stripeless layout swaps"
13646
13647 test_184f() {
13648         # Create a file with name longer than sizeof(struct stat) ==
13649         # 144 to see if we can get chars from the file name to appear
13650         # in the returned striping. Note that 'f' == 0x66.
13651         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13652
13653         mkdir -p $DIR/$tdir
13654         mcreate $DIR/$tdir/$file
13655         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13656                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13657         fi
13658 }
13659 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13660
13661 test_185() { # LU-2441
13662         # LU-3553 - no volatile file support in old servers
13663         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
13664                 skip "Need MDS version at least 2.3.60"
13665
13666         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13667         touch $DIR/$tdir/spoo
13668         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13669         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13670                 error "cannot create/write a volatile file"
13671         [ "$FILESET" == "" ] &&
13672         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13673                 error "FID is still valid after close"
13674
13675         multiop_bg_pause $DIR/$tdir vVw4096_c
13676         local multi_pid=$!
13677
13678         local OLD_IFS=$IFS
13679         IFS=":"
13680         local fidv=($fid)
13681         IFS=$OLD_IFS
13682         # assume that the next FID for this client is sequential, since stdout
13683         # is unfortunately eaten by multiop_bg_pause
13684         local n=$((${fidv[1]} + 1))
13685         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13686         if [ "$FILESET" == "" ]; then
13687                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13688                         error "FID is missing before close"
13689         fi
13690         kill -USR1 $multi_pid
13691         # 1 second delay, so if mtime change we will see it
13692         sleep 1
13693         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13694         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13695 }
13696 run_test 185 "Volatile file support"
13697
13698 test_187a() {
13699         remote_mds_nodsh && skip "remote MDS with nodsh"
13700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13701                 skip "Need MDS version at least 2.3.0"
13702
13703         local dir0=$DIR/$tdir/$testnum
13704         mkdir -p $dir0 || error "creating dir $dir0"
13705
13706         local file=$dir0/file1
13707         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13708         local dv1=$($LFS data_version $file)
13709         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13710         local dv2=$($LFS data_version $file)
13711         [[ $dv1 != $dv2 ]] ||
13712                 error "data version did not change on write $dv1 == $dv2"
13713
13714         # clean up
13715         rm -f $file1
13716 }
13717 run_test 187a "Test data version change"
13718
13719 test_187b() {
13720         remote_mds_nodsh && skip "remote MDS with nodsh"
13721         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
13722                 skip "Need MDS version at least 2.3.0"
13723
13724         local dir0=$DIR/$tdir/$testnum
13725         mkdir -p $dir0 || error "creating dir $dir0"
13726
13727         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13728         [[ ${DV[0]} != ${DV[1]} ]] ||
13729                 error "data version did not change on write"\
13730                       " ${DV[0]} == ${DV[1]}"
13731
13732         # clean up
13733         rm -f $file1
13734 }
13735 run_test 187b "Test data version change on volatile file"
13736
13737 test_200() {
13738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13739         remote_mgs_nodsh && skip "remote MGS with nodsh"
13740         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13741
13742         local POOL=${POOL:-cea1}
13743         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13744         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13745         # Pool OST targets
13746         local first_ost=0
13747         local last_ost=$(($OSTCOUNT - 1))
13748         local ost_step=2
13749         local ost_list=$(seq $first_ost $ost_step $last_ost)
13750         local ost_range="$first_ost $last_ost $ost_step"
13751         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13752         local file_dir=$POOL_ROOT/file_tst
13753         local subdir=$test_path/subdir
13754         local rc=0
13755
13756         if ! combined_mgs_mds ; then
13757                 mount_mgs_client
13758         fi
13759
13760         while : ; do
13761                 # former test_200a test_200b
13762                 pool_add $POOL                          || { rc=$? ; break; }
13763                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13764                 # former test_200c test_200d
13765                 mkdir -p $test_path
13766                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13767                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13768                 mkdir -p $subdir
13769                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13770                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13771                                                         || { rc=$? ; break; }
13772                 # former test_200e test_200f
13773                 local files=$((OSTCOUNT*3))
13774                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13775                                                         || { rc=$? ; break; }
13776                 pool_create_files $POOL $file_dir $files "$ost_list" \
13777                                                         || { rc=$? ; break; }
13778                 # former test_200g test_200h
13779                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13780                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13781
13782                 # former test_201a test_201b test_201c
13783                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13784
13785                 local f=$test_path/$tfile
13786                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13787                 pool_remove $POOL $f                    || { rc=$? ; break; }
13788                 break
13789         done
13790
13791         destroy_test_pools
13792
13793         if ! combined_mgs_mds ; then
13794                 umount_mgs_client
13795         fi
13796         return $rc
13797 }
13798 run_test 200 "OST pools"
13799
13800 # usage: default_attr <count | size | offset>
13801 default_attr() {
13802         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13803 }
13804
13805 # usage: check_default_stripe_attr
13806 check_default_stripe_attr() {
13807         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13808         case $1 in
13809         --stripe-count|-c)
13810                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13811         --stripe-size|-S)
13812                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13813         --stripe-index|-i)
13814                 EXPECTED=-1;;
13815         *)
13816                 error "unknown getstripe attr '$1'"
13817         esac
13818
13819         [ $ACTUAL == $EXPECTED ] ||
13820                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13821 }
13822
13823 test_204a() {
13824         test_mkdir $DIR/$tdir
13825         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13826
13827         check_default_stripe_attr --stripe-count
13828         check_default_stripe_attr --stripe-size
13829         check_default_stripe_attr --stripe-index
13830 }
13831 run_test 204a "Print default stripe attributes"
13832
13833 test_204b() {
13834         test_mkdir $DIR/$tdir
13835         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13836
13837         check_default_stripe_attr --stripe-size
13838         check_default_stripe_attr --stripe-index
13839 }
13840 run_test 204b "Print default stripe size and offset"
13841
13842 test_204c() {
13843         test_mkdir $DIR/$tdir
13844         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13845
13846         check_default_stripe_attr --stripe-count
13847         check_default_stripe_attr --stripe-index
13848 }
13849 run_test 204c "Print default stripe count and offset"
13850
13851 test_204d() {
13852         test_mkdir $DIR/$tdir
13853         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13854
13855         check_default_stripe_attr --stripe-count
13856         check_default_stripe_attr --stripe-size
13857 }
13858 run_test 204d "Print default stripe count and size"
13859
13860 test_204e() {
13861         test_mkdir $DIR/$tdir
13862         $SETSTRIPE -d $DIR/$tdir
13863
13864         check_default_stripe_attr --stripe-count --raw
13865         check_default_stripe_attr --stripe-size --raw
13866         check_default_stripe_attr --stripe-index --raw
13867 }
13868 run_test 204e "Print raw stripe attributes"
13869
13870 test_204f() {
13871         test_mkdir $DIR/$tdir
13872         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13873
13874         check_default_stripe_attr --stripe-size --raw
13875         check_default_stripe_attr --stripe-index --raw
13876 }
13877 run_test 204f "Print raw stripe size and offset"
13878
13879 test_204g() {
13880         test_mkdir $DIR/$tdir
13881         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13882
13883         check_default_stripe_attr --stripe-count --raw
13884         check_default_stripe_attr --stripe-index --raw
13885 }
13886 run_test 204g "Print raw stripe count and offset"
13887
13888 test_204h() {
13889         test_mkdir $DIR/$tdir
13890         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13891
13892         check_default_stripe_attr --stripe-count --raw
13893         check_default_stripe_attr --stripe-size --raw
13894 }
13895 run_test 204h "Print raw stripe count and size"
13896
13897 # Figure out which job scheduler is being used, if any,
13898 # or use a fake one
13899 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
13900         JOBENV=SLURM_JOB_ID
13901 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
13902         JOBENV=LSB_JOBID
13903 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
13904         JOBENV=PBS_JOBID
13905 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
13906         JOBENV=LOADL_STEP_ID
13907 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
13908         JOBENV=JOB_ID
13909 else
13910         $LCTL list_param jobid_name > /dev/null 2>&1
13911         if [ $? -eq 0 ]; then
13912                 JOBENV=nodelocal
13913         else
13914                 JOBENV=FAKE_JOBID
13915         fi
13916 fi
13917 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
13918
13919 verify_jobstats() {
13920         local cmd=($1)
13921         shift
13922         local facets="$@"
13923
13924 # we don't really need to clear the stats for this test to work, since each
13925 # command has a unique jobid, but it makes debugging easier if needed.
13926 #       for facet in $facets; do
13927 #               local dev=$(convert_facet2label $facet)
13928 #               # clear old jobstats
13929 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
13930 #       done
13931
13932         # use a new JobID for each test, or we might see an old one
13933         [ "$JOBENV" = "FAKE_JOBID" ] &&
13934                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
13935
13936         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
13937
13938         [ "$JOBENV" = "nodelocal" ] && {
13939                 FAKE_JOBID=id.$testnum.%e.$RANDOM
13940                 $LCTL set_param jobid_name=$FAKE_JOBID
13941                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
13942         }
13943
13944         log "Test: ${cmd[*]}"
13945         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
13946
13947         if [ $JOBENV = "FAKE_JOBID" ]; then
13948                 FAKE_JOBID=$JOBVAL ${cmd[*]}
13949         else
13950                 ${cmd[*]}
13951         fi
13952
13953         # all files are created on OST0000
13954         for facet in $facets; do
13955                 local stats="*.$(convert_facet2label $facet).job_stats"
13956
13957                 # strip out libtool wrappers for in-tree executables
13958                 if [ $(do_facet $facet lctl get_param $stats |
13959                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
13960                         do_facet $facet lctl get_param $stats
13961                         error "No jobstats for $JOBVAL found on $facet::$stats"
13962                 fi
13963         done
13964 }
13965
13966 jobstats_set() {
13967         local new_jobenv=$1
13968
13969         set_persistent_param_and_check client "jobid_var" \
13970                 "$FSNAME.sys.jobid_var" $new_jobenv
13971 }
13972
13973 test_205() { # Job stats
13974         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13975         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
13976                 skip "Need MDS version with at least 2.7.1"
13977         remote_mgs_nodsh && skip "remote MGS with nodsh"
13978         remote_mds_nodsh && skip "remote MDS with nodsh"
13979         remote_ost_nodsh && skip "remote OST with nodsh"
13980         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
13981                 skip "Server doesn't support jobstats"
13982         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
13983
13984         local old_jobenv=$($LCTL get_param -n jobid_var)
13985         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
13986
13987         if [[ $PERM_CMD = *"set_param -P"* ]]; then
13988                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
13989         else
13990                 stack_trap "do_facet mgs $PERM_CMD \
13991                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
13992         fi
13993         changelog_register
13994
13995         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
13996                                 mdt.*.job_cleanup_interval | head -n 1)
13997         local new_interval=5
13998         do_facet $SINGLEMDS \
13999                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14000         stack_trap "do_facet $SINGLEMDS \
14001                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14002         local start=$SECONDS
14003
14004         local cmd
14005         # mkdir
14006         cmd="mkdir $DIR/$tdir"
14007         verify_jobstats "$cmd" "$SINGLEMDS"
14008         # rmdir
14009         cmd="rmdir $DIR/$tdir"
14010         verify_jobstats "$cmd" "$SINGLEMDS"
14011         # mkdir on secondary MDT
14012         if [ $MDSCOUNT -gt 1 ]; then
14013                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14014                 verify_jobstats "$cmd" "mds2"
14015         fi
14016         # mknod
14017         cmd="mknod $DIR/$tfile c 1 3"
14018         verify_jobstats "$cmd" "$SINGLEMDS"
14019         # unlink
14020         cmd="rm -f $DIR/$tfile"
14021         verify_jobstats "$cmd" "$SINGLEMDS"
14022         # create all files on OST0000 so verify_jobstats can find OST stats
14023         # open & close
14024         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
14025         verify_jobstats "$cmd" "$SINGLEMDS"
14026         # setattr
14027         cmd="touch $DIR/$tfile"
14028         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14029         # write
14030         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14031         verify_jobstats "$cmd" "ost1"
14032         # read
14033         cancel_lru_locks osc
14034         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14035         verify_jobstats "$cmd" "ost1"
14036         # truncate
14037         cmd="$TRUNCATE $DIR/$tfile 0"
14038         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14039         # rename
14040         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14041         verify_jobstats "$cmd" "$SINGLEMDS"
14042         # jobstats expiry - sleep until old stats should be expired
14043         local left=$((new_interval + 5 - (SECONDS - start)))
14044         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14045                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14046                         "0" $left
14047         cmd="mkdir $DIR/$tdir.expire"
14048         verify_jobstats "$cmd" "$SINGLEMDS"
14049         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14050             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14051
14052         # Ensure that jobid are present in changelog (if supported by MDS)
14053         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ];then
14054                 changelog_dump | tail -10
14055                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14056                 [ $jobids -eq 9 ] ||
14057                         error "Wrong changelog jobid count $jobids != 9"
14058
14059                 # LU-5862
14060                 JOBENV="disable"
14061                 jobstats_set $JOBENV
14062                 touch $DIR/$tfile
14063                 changelog_dump | grep $tfile
14064                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14065                 [ $jobids -eq 0 ] ||
14066                         error "Unexpected jobids when jobid_var=$JOBENV"
14067         fi
14068
14069         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14070         JOBENV="JOBCOMPLEX"
14071         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14072
14073         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14074 }
14075 run_test 205 "Verify job stats"
14076
14077 # LU-1480, LU-1773 and LU-1657
14078 test_206() {
14079         mkdir -p $DIR/$tdir
14080         $SETSTRIPE -c -1 $DIR/$tdir
14081 #define OBD_FAIL_LOV_INIT 0x1403
14082         $LCTL set_param fail_loc=0xa0001403
14083         $LCTL set_param fail_val=1
14084         touch $DIR/$tdir/$tfile || true
14085 }
14086 run_test 206 "fail lov_init_raid0() doesn't lbug"
14087
14088 test_207a() {
14089         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14090         local fsz=`stat -c %s $DIR/$tfile`
14091         cancel_lru_locks mdc
14092
14093         # do not return layout in getattr intent
14094 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14095         $LCTL set_param fail_loc=0x170
14096         local sz=`stat -c %s $DIR/$tfile`
14097
14098         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14099
14100         rm -rf $DIR/$tfile
14101 }
14102 run_test 207a "can refresh layout at glimpse"
14103
14104 test_207b() {
14105         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14106         local cksum=`md5sum $DIR/$tfile`
14107         local fsz=`stat -c %s $DIR/$tfile`
14108         cancel_lru_locks mdc
14109         cancel_lru_locks osc
14110
14111         # do not return layout in getattr intent
14112 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14113         $LCTL set_param fail_loc=0x171
14114
14115         # it will refresh layout after the file is opened but before read issues
14116         echo checksum is "$cksum"
14117         echo "$cksum" |md5sum -c --quiet || error "file differs"
14118
14119         rm -rf $DIR/$tfile
14120 }
14121 run_test 207b "can refresh layout at open"
14122
14123 test_208() {
14124         # FIXME: in this test suite, only RD lease is used. This is okay
14125         # for now as only exclusive open is supported. After generic lease
14126         # is done, this test suite should be revised. - Jinshan
14127
14128         remote_mds_nodsh && skip "remote MDS with nodsh"
14129         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
14130                 skip "Need MDS version at least 2.4.52"
14131
14132         echo "==== test 1: verify get lease work"
14133         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14134
14135         echo "==== test 2: verify lease can be broken by upcoming open"
14136         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14137         local PID=$!
14138         sleep 1
14139
14140         $MULTIOP $DIR/$tfile oO_RDONLY:c
14141         kill -USR1 $PID && wait $PID || error "break lease error"
14142
14143         echo "==== test 3: verify lease can't be granted if an open already exists"
14144         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14145         local PID=$!
14146         sleep 1
14147
14148         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14149         kill -USR1 $PID && wait $PID || error "open file error"
14150
14151         echo "==== test 4: lease can sustain over recovery"
14152         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14153         PID=$!
14154         sleep 1
14155
14156         fail mds1
14157
14158         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14159
14160         echo "==== test 5: lease broken can't be regained by replay"
14161         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14162         PID=$!
14163         sleep 1
14164
14165         # open file to break lease and then recovery
14166         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14167         fail mds1
14168
14169         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14170
14171         rm -f $DIR/$tfile
14172 }
14173 run_test 208 "Exclusive open"
14174
14175 test_209() {
14176         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14177                 skip_env "must have disp_stripe"
14178
14179         touch $DIR/$tfile
14180         sync; sleep 5; sync;
14181
14182         echo 3 > /proc/sys/vm/drop_caches
14183         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14184
14185         # open/close 500 times
14186         for i in $(seq 500); do
14187                 cat $DIR/$tfile
14188         done
14189
14190         echo 3 > /proc/sys/vm/drop_caches
14191         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14192
14193         echo "before: $req_before, after: $req_after"
14194         [ $((req_after - req_before)) -ge 300 ] &&
14195                 error "open/close requests are not freed"
14196         return 0
14197 }
14198 run_test 209 "read-only open/close requests should be freed promptly"
14199
14200 test_212() {
14201         size=`date +%s`
14202         size=$((size % 8192 + 1))
14203         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14204         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14205         rm -f $DIR/f212 $DIR/f212.xyz
14206 }
14207 run_test 212 "Sendfile test ============================================"
14208
14209 test_213() {
14210         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14211         cancel_lru_locks osc
14212         lctl set_param fail_loc=0x8000040f
14213         # generate a read lock
14214         cat $DIR/$tfile > /dev/null
14215         # write to the file, it will try to cancel the above read lock.
14216         cat /etc/hosts >> $DIR/$tfile
14217 }
14218 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14219
14220 test_214() { # for bug 20133
14221         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14222         for (( i=0; i < 340; i++ )) ; do
14223                 touch $DIR/$tdir/d214c/a$i
14224         done
14225
14226         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14227         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14228         ls $DIR/d214c || error "ls $DIR/d214c failed"
14229         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14230         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14231 }
14232 run_test 214 "hash-indexed directory test - bug 20133"
14233
14234 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14235 create_lnet_proc_files() {
14236         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14237 }
14238
14239 # counterpart of create_lnet_proc_files
14240 remove_lnet_proc_files() {
14241         rm -f $TMP/lnet_$1.sys
14242 }
14243
14244 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14245 # 3rd arg as regexp for body
14246 check_lnet_proc_stats() {
14247         local l=$(cat "$TMP/lnet_$1" |wc -l)
14248         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14249
14250         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14251 }
14252
14253 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14254 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14255 # optional and can be regexp for 2nd line (lnet.routes case)
14256 check_lnet_proc_entry() {
14257         local blp=2          # blp stands for 'position of 1st line of body'
14258         [ -z "$5" ] || blp=3 # lnet.routes case
14259
14260         local l=$(cat "$TMP/lnet_$1" |wc -l)
14261         # subtracting one from $blp because the body can be empty
14262         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14263
14264         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14265                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14266
14267         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14268                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14269
14270         # bail out if any unexpected line happened
14271         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14272         [ "$?" != 0 ] || error "$2 misformatted"
14273 }
14274
14275 test_215() { # for bugs 18102, 21079, 21517
14276         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14277
14278         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14279         local P='[1-9][0-9]*'           # positive numeric
14280         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14281         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14282         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14283         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14284
14285         local L1 # regexp for 1st line
14286         local L2 # regexp for 2nd line (optional)
14287         local BR # regexp for the rest (body)
14288
14289         # lnet.stats should look as 11 space-separated non-negative numerics
14290         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14291         create_lnet_proc_files "stats"
14292         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14293         remove_lnet_proc_files "stats"
14294
14295         # lnet.routes should look like this:
14296         # Routing disabled/enabled
14297         # net hops priority state router
14298         # where net is a string like tcp0, hops > 0, priority >= 0,
14299         # state is up/down,
14300         # router is a string like 192.168.1.1@tcp2
14301         L1="^Routing (disabled|enabled)$"
14302         L2="^net +hops +priority +state +router$"
14303         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14304         create_lnet_proc_files "routes"
14305         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14306         remove_lnet_proc_files "routes"
14307
14308         # lnet.routers should look like this:
14309         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14310         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14311         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14312         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14313         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14314         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14315         create_lnet_proc_files "routers"
14316         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14317         remove_lnet_proc_files "routers"
14318
14319         # lnet.peers should look like this:
14320         # nid refs state last max rtr min tx min queue
14321         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14322         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14323         # numeric (0 or >0 or <0), queue >= 0.
14324         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14325         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14326         create_lnet_proc_files "peers"
14327         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14328         remove_lnet_proc_files "peers"
14329
14330         # lnet.buffers  should look like this:
14331         # pages count credits min
14332         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14333         L1="^pages +count +credits +min$"
14334         BR="^ +$N +$N +$I +$I$"
14335         create_lnet_proc_files "buffers"
14336         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14337         remove_lnet_proc_files "buffers"
14338
14339         # lnet.nis should look like this:
14340         # nid status alive refs peer rtr max tx min
14341         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14342         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14343         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14344         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14345         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14346         create_lnet_proc_files "nis"
14347         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14348         remove_lnet_proc_files "nis"
14349
14350         # can we successfully write to lnet.stats?
14351         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14352 }
14353 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14354
14355 test_216() { # bug 20317
14356         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14357         remote_ost_nodsh && skip "remote OST with nodsh"
14358
14359         local node
14360         local facets=$(get_facets OST)
14361         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14362
14363         save_lustre_params client "osc.*.contention_seconds" > $p
14364         save_lustre_params $facets \
14365                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14366         save_lustre_params $facets \
14367                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14368         save_lustre_params $facets \
14369                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14370         clear_stats osc.*.osc_stats
14371
14372         # agressive lockless i/o settings
14373         do_nodes $(comma_list $(osts_nodes)) \
14374                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14375                         ldlm.namespaces.filter-*.contended_locks=0 \
14376                         ldlm.namespaces.filter-*.contention_seconds=60"
14377         lctl set_param -n osc.*.contention_seconds=60
14378
14379         $DIRECTIO write $DIR/$tfile 0 10 4096
14380         $CHECKSTAT -s 40960 $DIR/$tfile
14381
14382         # disable lockless i/o
14383         do_nodes $(comma_list $(osts_nodes)) \
14384                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14385                         ldlm.namespaces.filter-*.contended_locks=32 \
14386                         ldlm.namespaces.filter-*.contention_seconds=0"
14387         lctl set_param -n osc.*.contention_seconds=0
14388         clear_stats osc.*.osc_stats
14389
14390         dd if=/dev/zero of=$DIR/$tfile count=0
14391         $CHECKSTAT -s 0 $DIR/$tfile
14392
14393         restore_lustre_params <$p
14394         rm -f $p
14395         rm $DIR/$tfile
14396 }
14397 run_test 216 "check lockless direct write updates file size and kms correctly"
14398
14399 test_217() { # bug 22430
14400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14401
14402         local node
14403         local nid
14404
14405         for node in $(nodes_list); do
14406                 nid=$(host_nids_address $node $NETTYPE)
14407                 if [[ $nid = *-* ]] ; then
14408                         echo "lctl ping $(h2nettype $nid)"
14409                         lctl ping $(h2nettype $nid)
14410                 else
14411                         echo "skipping $node (no hyphen detected)"
14412                 fi
14413         done
14414 }
14415 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14416
14417 test_218() {
14418        # do directio so as not to populate the page cache
14419        log "creating a 10 Mb file"
14420        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14421        log "starting reads"
14422        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14423        log "truncating the file"
14424        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14425        log "killing dd"
14426        kill %+ || true # reads might have finished
14427        echo "wait until dd is finished"
14428        wait
14429        log "removing the temporary file"
14430        rm -rf $DIR/$tfile || error "tmp file removal failed"
14431 }
14432 run_test 218 "parallel read and truncate should not deadlock"
14433
14434 test_219() {
14435         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14436
14437         # write one partial page
14438         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14439         # set no grant so vvp_io_commit_write will do sync write
14440         $LCTL set_param fail_loc=0x411
14441         # write a full page at the end of file
14442         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14443
14444         $LCTL set_param fail_loc=0
14445         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14446         $LCTL set_param fail_loc=0x411
14447         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14448
14449         # LU-4201
14450         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14451         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14452 }
14453 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14454
14455 test_220() { #LU-325
14456         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14457         remote_ost_nodsh && skip "remote OST with nodsh"
14458         remote_mds_nodsh && skip "remote MDS with nodsh"
14459         remote_mgs_nodsh && skip "remote MGS with nodsh"
14460
14461         local OSTIDX=0
14462
14463         # create on MDT0000 so the last_id and next_id are correct
14464         mkdir $DIR/$tdir
14465         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14466         OST=${OST%_UUID}
14467
14468         # on the mdt's osc
14469         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14470         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14471                         osc.$mdtosc_proc1.prealloc_last_id)
14472         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14473                         osc.$mdtosc_proc1.prealloc_next_id)
14474
14475         $LFS df -i
14476
14477         if ! combined_mgs_mds ; then
14478                 mount_mgs_client
14479         fi
14480
14481         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14482         #define OBD_FAIL_OST_ENOINO              0x229
14483         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14484         create_pool $FSNAME.$TESTNAME || return 1
14485         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14486
14487         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14488
14489         MDSOBJS=$((last_id - next_id))
14490         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14491
14492         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14493         echo "OST still has $count kbytes free"
14494
14495         echo "create $MDSOBJS files @next_id..."
14496         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14497
14498         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14499                         osc.$mdtosc_proc1.prealloc_last_id)
14500         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14501                         osc.$mdtosc_proc1.prealloc_next_id)
14502
14503         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14504         $LFS df -i
14505
14506         echo "cleanup..."
14507
14508         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14509         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14510
14511         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14512                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14513         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14514                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14515         echo "unlink $MDSOBJS files @$next_id..."
14516         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14517
14518         if ! combined_mgs_mds ; then
14519                 umount_mgs_client
14520         fi
14521 }
14522 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14523
14524 test_221() {
14525         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14526
14527         dd if=`which date` of=$MOUNT/date oflag=sync
14528         chmod +x $MOUNT/date
14529
14530         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14531         $LCTL set_param fail_loc=0x80001401
14532
14533         $MOUNT/date > /dev/null
14534         rm -f $MOUNT/date
14535 }
14536 run_test 221 "make sure fault and truncate race to not cause OOM"
14537
14538 test_222a () {
14539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14540
14541         rm -rf $DIR/$tdir
14542         test_mkdir $DIR/$tdir
14543         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14544         createmany -o $DIR/$tdir/$tfile 10
14545         cancel_lru_locks mdc
14546         cancel_lru_locks osc
14547         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14548         $LCTL set_param fail_loc=0x31a
14549         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14550         $LCTL set_param fail_loc=0
14551         rm -r $DIR/$tdir
14552 }
14553 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14554
14555 test_222b () {
14556         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14557
14558         rm -rf $DIR/$tdir
14559         test_mkdir $DIR/$tdir
14560         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14561         createmany -o $DIR/$tdir/$tfile 10
14562         cancel_lru_locks mdc
14563         cancel_lru_locks osc
14564         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14565         $LCTL set_param fail_loc=0x31a
14566         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14567         $LCTL set_param fail_loc=0
14568 }
14569 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14570
14571 test_223 () {
14572         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14573
14574         rm -rf $DIR/$tdir
14575         test_mkdir $DIR/$tdir
14576         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14577         createmany -o $DIR/$tdir/$tfile 10
14578         cancel_lru_locks mdc
14579         cancel_lru_locks osc
14580         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14581         $LCTL set_param fail_loc=0x31b
14582         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14583         $LCTL set_param fail_loc=0
14584         rm -r $DIR/$tdir
14585 }
14586 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14587
14588 test_224a() { # LU-1039, MRP-303
14589         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14590
14591         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14592         $LCTL set_param fail_loc=0x508
14593         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14594         $LCTL set_param fail_loc=0
14595         df $DIR
14596 }
14597 run_test 224a "Don't panic on bulk IO failure"
14598
14599 test_224b() { # LU-1039, MRP-303
14600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14601
14602         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14603         cancel_lru_locks osc
14604         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14605         $LCTL set_param fail_loc=0x515
14606         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14607         $LCTL set_param fail_loc=0
14608         df $DIR
14609 }
14610 run_test 224b "Don't panic on bulk IO failure"
14611
14612 test_224c() { # LU-6441
14613         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14614         remote_mds_nodsh && skip "remote MDS with nodsh"
14615
14616         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14617         save_writethrough $p
14618         set_cache writethrough on
14619
14620         local pages_per_rpc=$($LCTL get_param \
14621                                 osc.*.max_pages_per_rpc)
14622         local at_max=$($LCTL get_param -n at_max)
14623         local timeout=$($LCTL get_param -n timeout)
14624         local test_at="at_max"
14625         local param_at="$FSNAME.sys.at_max"
14626         local test_timeout="timeout"
14627         local param_timeout="$FSNAME.sys.timeout"
14628
14629         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14630
14631         set_persistent_param_and_check client "$test_at" "$param_at" 0
14632         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14633
14634         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14635         do_facet ost1 $LCTL set_param fail_loc=0x520
14636         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14637         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14638         sync
14639         do_facet ost1 $LCTL set_param fail_loc=0
14640
14641         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14642         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14643                 $timeout
14644
14645         $LCTL set_param -n $pages_per_rpc
14646         restore_lustre_params < $p
14647         rm -f $p
14648 }
14649 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14650
14651 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14652 test_225a () {
14653         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14654         if [ -z ${MDSSURVEY} ]; then
14655                 skip_env "mds-survey not found"
14656         fi
14657         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14658                 skip "Need MDS version at least 2.2.51"
14659
14660         local mds=$(facet_host $SINGLEMDS)
14661         local target=$(do_nodes $mds 'lctl dl' |
14662                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14663
14664         local cmd1="file_count=1000 thrhi=4"
14665         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14666         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14667         local cmd="$cmd1 $cmd2 $cmd3"
14668
14669         rm -f ${TMP}/mds_survey*
14670         echo + $cmd
14671         eval $cmd || error "mds-survey with zero-stripe failed"
14672         cat ${TMP}/mds_survey*
14673         rm -f ${TMP}/mds_survey*
14674 }
14675 run_test 225a "Metadata survey sanity with zero-stripe"
14676
14677 test_225b () {
14678         if [ -z ${MDSSURVEY} ]; then
14679                 skip_env "mds-survey not found"
14680         fi
14681         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
14682                 skip "Need MDS version at least 2.2.51"
14683         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14684         remote_mds_nodsh && skip "remote MDS with nodsh"
14685         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14686                 skip_env "Need to mount OST to test"
14687         fi
14688
14689         local mds=$(facet_host $SINGLEMDS)
14690         local target=$(do_nodes $mds 'lctl dl' |
14691                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14692
14693         local cmd1="file_count=1000 thrhi=4"
14694         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14695         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14696         local cmd="$cmd1 $cmd2 $cmd3"
14697
14698         rm -f ${TMP}/mds_survey*
14699         echo + $cmd
14700         eval $cmd || error "mds-survey with stripe_count failed"
14701         cat ${TMP}/mds_survey*
14702         rm -f ${TMP}/mds_survey*
14703 }
14704 run_test 225b "Metadata survey sanity with stripe_count = 1"
14705
14706 mcreate_path2fid () {
14707         local mode=$1
14708         local major=$2
14709         local minor=$3
14710         local name=$4
14711         local desc=$5
14712         local path=$DIR/$tdir/$name
14713         local fid
14714         local rc
14715         local fid_path
14716
14717         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14718                 error "cannot create $desc"
14719
14720         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14721         rc=$?
14722         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14723
14724         fid_path=$($LFS fid2path $MOUNT $fid)
14725         rc=$?
14726         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14727
14728         [ "$path" == "$fid_path" ] ||
14729                 error "fid2path returned $fid_path, expected $path"
14730
14731         echo "pass with $path and $fid"
14732 }
14733
14734 test_226a () {
14735         rm -rf $DIR/$tdir
14736         mkdir -p $DIR/$tdir
14737
14738         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14739         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14740         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14741         mcreate_path2fid 0040666 0 0 dir "directory"
14742         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14743         mcreate_path2fid 0100666 0 0 file "regular file"
14744         mcreate_path2fid 0120666 0 0 link "symbolic link"
14745         mcreate_path2fid 0140666 0 0 sock "socket"
14746 }
14747 run_test 226a "call path2fid and fid2path on files of all type"
14748
14749 test_226b () {
14750         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14751
14752         local MDTIDX=1
14753
14754         rm -rf $DIR/$tdir
14755         mkdir -p $DIR/$tdir
14756         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14757                 error "create remote directory failed"
14758         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14759         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14760                                 "character special file (null)"
14761         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14762                                 "character special file (no device)"
14763         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14764         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14765                                 "block special file (loop)"
14766         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14767         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14768         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14769 }
14770 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14771
14772 # LU-1299 Executing or running ldd on a truncated executable does not
14773 # cause an out-of-memory condition.
14774 test_227() {
14775         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14776         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14777
14778         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14779         chmod +x $MOUNT/date
14780
14781         $MOUNT/date > /dev/null
14782         ldd $MOUNT/date > /dev/null
14783         rm -f $MOUNT/date
14784 }
14785 run_test 227 "running truncated executable does not cause OOM"
14786
14787 # LU-1512 try to reuse idle OI blocks
14788 test_228a() {
14789         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14790         remote_mds_nodsh && skip "remote MDS with nodsh"
14791         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14792                 skip_env "ldiskfs only test"
14793
14794         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14795         local myDIR=$DIR/$tdir
14796
14797         mkdir -p $myDIR
14798         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14799         $LCTL set_param fail_loc=0x80001002
14800         createmany -o $myDIR/t- 10000
14801         $LCTL set_param fail_loc=0
14802         # The guard is current the largest FID holder
14803         touch $myDIR/guard
14804         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14805                     tr -d '[')
14806         local IDX=$(($SEQ % 64))
14807
14808         do_facet $SINGLEMDS sync
14809         # Make sure journal flushed.
14810         sleep 6
14811         local blk1=$(do_facet $SINGLEMDS \
14812                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14813                      grep Blockcount | awk '{print $4}')
14814
14815         # Remove old files, some OI blocks will become idle.
14816         unlinkmany $myDIR/t- 10000
14817         # Create new files, idle OI blocks should be reused.
14818         createmany -o $myDIR/t- 2000
14819         do_facet $SINGLEMDS sync
14820         # Make sure journal flushed.
14821         sleep 6
14822         local blk2=$(do_facet $SINGLEMDS \
14823                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14824                      grep Blockcount | awk '{print $4}')
14825
14826         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14827 }
14828 run_test 228a "try to reuse idle OI blocks"
14829
14830 test_228b() {
14831         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14832         remote_mds_nodsh && skip "remote MDS with nodsh"
14833         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14834                 skip_env "ldiskfs only test"
14835
14836         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14837         local myDIR=$DIR/$tdir
14838
14839         mkdir -p $myDIR
14840         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14841         $LCTL set_param fail_loc=0x80001002
14842         createmany -o $myDIR/t- 10000
14843         $LCTL set_param fail_loc=0
14844         # The guard is current the largest FID holder
14845         touch $myDIR/guard
14846         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14847                     tr -d '[')
14848         local IDX=$(($SEQ % 64))
14849
14850         do_facet $SINGLEMDS sync
14851         # Make sure journal flushed.
14852         sleep 6
14853         local blk1=$(do_facet $SINGLEMDS \
14854                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14855                      grep Blockcount | awk '{print $4}')
14856
14857         # Remove old files, some OI blocks will become idle.
14858         unlinkmany $myDIR/t- 10000
14859
14860         # stop the MDT
14861         stop $SINGLEMDS || error "Fail to stop MDT."
14862         # remount the MDT
14863         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14864
14865         df $MOUNT || error "Fail to df."
14866         # Create new files, idle OI blocks should be reused.
14867         createmany -o $myDIR/t- 2000
14868         do_facet $SINGLEMDS sync
14869         # Make sure journal flushed.
14870         sleep 6
14871         local blk2=$(do_facet $SINGLEMDS \
14872                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14873                      grep Blockcount | awk '{print $4}')
14874
14875         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14876 }
14877 run_test 228b "idle OI blocks can be reused after MDT restart"
14878
14879 #LU-1881
14880 test_228c() {
14881         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14882         remote_mds_nodsh && skip "remote MDS with nodsh"
14883         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
14884                 skip_env "ldiskfs only test"
14885
14886         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14887         local myDIR=$DIR/$tdir
14888
14889         mkdir -p $myDIR
14890         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14891         $LCTL set_param fail_loc=0x80001002
14892         # 20000 files can guarantee there are index nodes in the OI file
14893         createmany -o $myDIR/t- 20000
14894         $LCTL set_param fail_loc=0
14895         # The guard is current the largest FID holder
14896         touch $myDIR/guard
14897         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14898                     tr -d '[')
14899         local IDX=$(($SEQ % 64))
14900
14901         do_facet $SINGLEMDS sync
14902         # Make sure journal flushed.
14903         sleep 6
14904         local blk1=$(do_facet $SINGLEMDS \
14905                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14906                      grep Blockcount | awk '{print $4}')
14907
14908         # Remove old files, some OI blocks will become idle.
14909         unlinkmany $myDIR/t- 20000
14910         rm -f $myDIR/guard
14911         # The OI file should become empty now
14912
14913         # Create new files, idle OI blocks should be reused.
14914         createmany -o $myDIR/t- 2000
14915         do_facet $SINGLEMDS sync
14916         # Make sure journal flushed.
14917         sleep 6
14918         local blk2=$(do_facet $SINGLEMDS \
14919                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14920                      grep Blockcount | awk '{print $4}')
14921
14922         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14923 }
14924 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
14925
14926 test_229() { # LU-2482, LU-3448
14927         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14928         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
14929         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
14930                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
14931
14932         rm -f $DIR/$tfile
14933
14934         # Create a file with a released layout and stripe count 2.
14935         $MULTIOP $DIR/$tfile H2c ||
14936                 error "failed to create file with released layout"
14937
14938         $GETSTRIPE -v $DIR/$tfile
14939
14940         local pattern=$($GETSTRIPE -L $DIR/$tfile)
14941         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
14942
14943         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
14944         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
14945         stat $DIR/$tfile || error "failed to stat released file"
14946
14947         chown $RUNAS_ID $DIR/$tfile ||
14948                 error "chown $RUNAS_ID $DIR/$tfile failed"
14949
14950         chgrp $RUNAS_ID $DIR/$tfile ||
14951                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
14952
14953         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
14954         rm $DIR/$tfile || error "failed to remove released file"
14955 }
14956 run_test 229 "getstripe/stat/rm/attr changes work on released files"
14957
14958 test_230a() {
14959         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14960         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14961         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14962                 skip "Need MDS version at least 2.11.52"
14963
14964         local MDTIDX=1
14965
14966         test_mkdir $DIR/$tdir
14967         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
14968         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
14969         [ $mdt_idx -ne 0 ] &&
14970                 error "create local directory on wrong MDT $mdt_idx"
14971
14972         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
14973                         error "create remote directory failed"
14974         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
14975         [ $mdt_idx -ne $MDTIDX ] &&
14976                 error "create remote directory on wrong MDT $mdt_idx"
14977
14978         createmany -o $DIR/$tdir/test_230/t- 10 ||
14979                 error "create files on remote directory failed"
14980         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
14981         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
14982         rm -r $DIR/$tdir || error "unlink remote directory failed"
14983 }
14984 run_test 230a "Create remote directory and files under the remote directory"
14985
14986 test_230b() {
14987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14988         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14989         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
14990                 skip "Need MDS version at least 2.11.52"
14991
14992         local MDTIDX=1
14993         local mdt_index
14994         local i
14995         local file
14996         local pid
14997         local stripe_count
14998         local migrate_dir=$DIR/$tdir/migrate_dir
14999         local other_dir=$DIR/$tdir/other_dir
15000
15001         test_mkdir $DIR/$tdir
15002         test_mkdir -i0 -c1 $migrate_dir
15003         test_mkdir -i0 -c1 $other_dir
15004         for ((i=0; i<10; i++)); do
15005                 mkdir -p $migrate_dir/dir_${i}
15006                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15007                         error "create files under remote dir failed $i"
15008         done
15009
15010         cp /etc/passwd $migrate_dir/$tfile
15011         cp /etc/passwd $other_dir/$tfile
15012         chattr +SAD $migrate_dir
15013         chattr +SAD $migrate_dir/$tfile
15014
15015         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15016         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15017         local old_dir_mode=$(stat -c%f $migrate_dir)
15018         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15019
15020         mkdir -p $migrate_dir/dir_default_stripe2
15021         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
15022         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
15023
15024         mkdir -p $other_dir
15025         ln $migrate_dir/$tfile $other_dir/luna
15026         ln $migrate_dir/$tfile $migrate_dir/sofia
15027         ln $other_dir/$tfile $migrate_dir/david
15028         ln -s $migrate_dir/$tfile $other_dir/zachary
15029         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15030         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15031
15032         $LFS migrate -m $MDTIDX $migrate_dir ||
15033                 error "fails on migrating remote dir to MDT1"
15034
15035         echo "migratate to MDT1, then checking.."
15036         for ((i = 0; i < 10; i++)); do
15037                 for file in $(find $migrate_dir/dir_${i}); do
15038                         mdt_index=$($LFS getstripe -m $file)
15039                         [ $mdt_index == $MDTIDX ] ||
15040                                 error "$file is not on MDT${MDTIDX}"
15041                 done
15042         done
15043
15044         # the multiple link file should still in MDT0
15045         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15046         [ $mdt_index == 0 ] ||
15047                 error "$file is not on MDT${MDTIDX}"
15048
15049         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15050         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15051                 error " expect $old_dir_flag get $new_dir_flag"
15052
15053         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15054         [ "$old_file_flag" = "$new_file_flag" ] ||
15055                 error " expect $old_file_flag get $new_file_flag"
15056
15057         local new_dir_mode=$(stat -c%f $migrate_dir)
15058         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15059                 error "expect mode $old_dir_mode get $new_dir_mode"
15060
15061         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15062         [ "$old_file_mode" = "$new_file_mode" ] ||
15063                 error "expect mode $old_file_mode get $new_file_mode"
15064
15065         diff /etc/passwd $migrate_dir/$tfile ||
15066                 error "$tfile different after migration"
15067
15068         diff /etc/passwd $other_dir/luna ||
15069                 error "luna different after migration"
15070
15071         diff /etc/passwd $migrate_dir/sofia ||
15072                 error "sofia different after migration"
15073
15074         diff /etc/passwd $migrate_dir/david ||
15075                 error "david different after migration"
15076
15077         diff /etc/passwd $other_dir/zachary ||
15078                 error "zachary different after migration"
15079
15080         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15081                 error "${tfile}_ln different after migration"
15082
15083         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15084                 error "${tfile}_ln_other different after migration"
15085
15086         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15087         [ $stripe_count = 2 ] ||
15088                 error "dir strpe_count $d != 2 after migration."
15089
15090         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15091         [ $stripe_count = 2 ] ||
15092                 error "file strpe_count $d != 2 after migration."
15093
15094         #migrate back to MDT0
15095         MDTIDX=0
15096
15097         $LFS migrate -m $MDTIDX $migrate_dir ||
15098                 error "fails on migrating remote dir to MDT0"
15099
15100         echo "migrate back to MDT0, checking.."
15101         for file in $(find $migrate_dir); do
15102                 mdt_index=$($LFS getstripe -m $file)
15103                 [ $mdt_index == $MDTIDX ] ||
15104                         error "$file is not on MDT${MDTIDX}"
15105         done
15106
15107         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15108         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15109                 error " expect $old_dir_flag get $new_dir_flag"
15110
15111         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15112         [ "$old_file_flag" = "$new_file_flag" ] ||
15113                 error " expect $old_file_flag get $new_file_flag"
15114
15115         local new_dir_mode=$(stat -c%f $migrate_dir)
15116         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15117                 error "expect mode $old_dir_mode get $new_dir_mode"
15118
15119         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15120         [ "$old_file_mode" = "$new_file_mode" ] ||
15121                 error "expect mode $old_file_mode get $new_file_mode"
15122
15123         diff /etc/passwd ${migrate_dir}/$tfile ||
15124                 error "$tfile different after migration"
15125
15126         diff /etc/passwd ${other_dir}/luna ||
15127                 error "luna different after migration"
15128
15129         diff /etc/passwd ${migrate_dir}/sofia ||
15130                 error "sofia different after migration"
15131
15132         diff /etc/passwd ${other_dir}/zachary ||
15133                 error "zachary different after migration"
15134
15135         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15136                 error "${tfile}_ln different after migration"
15137
15138         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15139                 error "${tfile}_ln_other different after migration"
15140
15141         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15142         [ $stripe_count = 2 ] ||
15143                 error "dir strpe_count $d != 2 after migration."
15144
15145         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15146         [ $stripe_count = 2 ] ||
15147                 error "file strpe_count $d != 2 after migration."
15148
15149         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15150 }
15151 run_test 230b "migrate directory"
15152
15153 test_230c() {
15154         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15155         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15156         remote_mds_nodsh && skip "remote MDS with nodsh"
15157         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15158                 skip "Need MDS version at least 2.11.52"
15159
15160         local MDTIDX=1
15161         local total=3
15162         local mdt_index
15163         local file
15164         local migrate_dir=$DIR/$tdir/migrate_dir
15165
15166         #If migrating directory fails in the middle, all entries of
15167         #the directory is still accessiable.
15168         test_mkdir $DIR/$tdir
15169         test_mkdir -i0 -c1 $migrate_dir
15170         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15171         stat $migrate_dir
15172         createmany -o $migrate_dir/f $total ||
15173                 error "create files under ${migrate_dir} failed"
15174
15175         # fail after migrating top dir, and this will fail only once, so the
15176         # first sub file migration will fail (currently f3), others succeed.
15177         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15178         do_facet mds1 lctl set_param fail_loc=0x1801
15179         local t=$(ls $migrate_dir | wc -l)
15180         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15181                 error "migrate should fail"
15182         local u=$(ls $migrate_dir | wc -l)
15183         [ "$u" == "$t" ] || error "$u != $t during migration"
15184
15185         # add new dir/file should succeed
15186         mkdir $migrate_dir/dir ||
15187                 error "mkdir failed under migrating directory"
15188         touch $migrate_dir/file ||
15189                 error "create file failed under migrating directory"
15190
15191         # add file with existing name should fail
15192         for file in $migrate_dir/f*; do
15193                 stat $file > /dev/null || error "stat $file failed"
15194                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15195                         error "open(O_CREAT|O_EXCL) $file should fail"
15196                 $MULTIOP $file m && error "create $file should fail"
15197                 touch $DIR/$tdir/remote_dir/$tfile ||
15198                         error "touch $tfile failed"
15199                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15200                         error "link $file should fail"
15201                 mdt_index=$($LFS getstripe -m $file)
15202                 if [ $mdt_index == 0 ]; then
15203                         # file failed to migrate is not allowed to rename to
15204                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15205                                 error "rename to $file should fail"
15206                 else
15207                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15208                                 error "rename to $file failed"
15209                 fi
15210                 echo hello >> $file || error "write $file failed"
15211         done
15212
15213         # resume migration with different options should fail
15214         $LFS migrate -m 0 $migrate_dir &&
15215                 error "migrate -m 0 $migrate_dir should fail"
15216
15217         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15218                 error "migrate -c 2 $migrate_dir should fail"
15219
15220         # resume migration should succeed
15221         $LFS migrate -m $MDTIDX $migrate_dir ||
15222                 error "migrate $migrate_dir failed"
15223
15224         echo "Finish migration, then checking.."
15225         for file in $(find $migrate_dir); do
15226                 mdt_index=$($LFS getstripe -m $file)
15227                 [ $mdt_index == $MDTIDX ] ||
15228                         error "$file is not on MDT${MDTIDX}"
15229         done
15230
15231         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15232 }
15233 run_test 230c "check directory accessiblity if migration failed"
15234
15235 test_230d() {
15236         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15237         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15238         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15239                 skip "Need MDS version at least 2.11.52"
15240         # LU-11235
15241         [ "$(facet_fstype mds1)" == "zfs" ] && skip "skip ZFS backend"
15242
15243         local migrate_dir=$DIR/$tdir/migrate_dir
15244         local old_index
15245         local new_index
15246         local old_count
15247         local new_count
15248         local new_hash
15249         local mdt_index
15250         local i
15251         local j
15252
15253         old_index=$((RANDOM % MDSCOUNT))
15254         old_count=$((MDSCOUNT - old_index))
15255         new_index=$((RANDOM % MDSCOUNT))
15256         new_count=$((MDSCOUNT - new_index))
15257         new_hash="all_char"
15258
15259         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15260         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15261
15262         test_mkdir $DIR/$tdir
15263         test_mkdir -i $old_index -c $old_count $migrate_dir
15264
15265         for ((i=0; i<100; i++)); do
15266                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15267                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15268                         error "create files under remote dir failed $i"
15269         done
15270
15271         echo -n "Migrate from MDT$old_index "
15272         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15273         echo -n "to MDT$new_index"
15274         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15275         echo
15276
15277         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15278         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15279                 error "migrate remote dir error"
15280
15281         echo "Finish migration, then checking.."
15282         for file in $(find $migrate_dir); do
15283                 mdt_index=$($LFS getstripe -m $file)
15284                 if [ $mdt_index -lt $new_index ] ||
15285                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15286                         error "$file is on MDT$mdt_index"
15287                 fi
15288         done
15289
15290         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15291 }
15292 run_test 230d "check migrate big directory"
15293
15294 test_230e() {
15295         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15296         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15297         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15298                 skip "Need MDS version at least 2.11.52"
15299
15300         local i
15301         local j
15302         local a_fid
15303         local b_fid
15304
15305         mkdir -p $DIR/$tdir
15306         mkdir $DIR/$tdir/migrate_dir
15307         mkdir $DIR/$tdir/other_dir
15308         touch $DIR/$tdir/migrate_dir/a
15309         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15310         ls $DIR/$tdir/other_dir
15311
15312         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15313                 error "migrate dir fails"
15314
15315         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15316         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15317
15318         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15319         [ $mdt_index == 0 ] || error "a is not on MDT0"
15320
15321         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15322                 error "migrate dir fails"
15323
15324         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15325         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15326
15327         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15328         [ $mdt_index == 1 ] || error "a is not on MDT1"
15329
15330         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15331         [ $mdt_index == 1 ] || error "b is not on MDT1"
15332
15333         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15334         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15335
15336         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15337
15338         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15339 }
15340 run_test 230e "migrate mulitple local link files"
15341
15342 test_230f() {
15343         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15344         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15345         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15346                 skip "Need MDS version at least 2.11.52"
15347
15348         local a_fid
15349         local ln_fid
15350
15351         mkdir -p $DIR/$tdir
15352         mkdir $DIR/$tdir/migrate_dir
15353         $LFS mkdir -i1 $DIR/$tdir/other_dir
15354         touch $DIR/$tdir/migrate_dir/a
15355         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15356         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15357         ls $DIR/$tdir/other_dir
15358
15359         # a should be migrated to MDT1, since no other links on MDT0
15360         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15361                 error "#1 migrate dir fails"
15362         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15363         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15364         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15365         [ $mdt_index == 1 ] || error "a is not on MDT1"
15366
15367         # a should stay on MDT1, because it is a mulitple link file
15368         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15369                 error "#2 migrate dir fails"
15370         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15371         [ $mdt_index == 1 ] || error "a is not on MDT1"
15372
15373         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15374                 error "#3 migrate dir fails"
15375
15376         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15377         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15378         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15379
15380         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15381         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15382
15383         # a should be migrated to MDT0, since no other links on MDT1
15384         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15385                 error "#4 migrate dir fails"
15386         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15387         [ $mdt_index == 0 ] || error "a is not on MDT0"
15388
15389         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15390 }
15391 run_test 230f "migrate mulitple remote link files"
15392
15393 test_230g() {
15394         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15395         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15396         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15397                 skip "Need MDS version at least 2.11.52"
15398
15399         mkdir -p $DIR/$tdir/migrate_dir
15400
15401         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15402                 error "migrating dir to non-exist MDT succeeds"
15403         true
15404 }
15405 run_test 230g "migrate dir to non-exist MDT"
15406
15407 test_230h() {
15408         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15409         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15410         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15411                 skip "Need MDS version at least 2.11.52"
15412
15413         local mdt_index
15414
15415         mkdir -p $DIR/$tdir/migrate_dir
15416
15417         $LFS migrate -m1 $DIR &&
15418                 error "migrating mountpoint1 should fail"
15419
15420         $LFS migrate -m1 $DIR/$tdir/.. &&
15421                 error "migrating mountpoint2 should fail"
15422
15423         # same as mv
15424         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15425                 error "migrating $tdir/migrate_dir/.. should fail"
15426
15427         true
15428 }
15429 run_test 230h "migrate .. and root"
15430
15431 test_230i() {
15432         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15433         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15434         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15435                 skip "Need MDS version at least 2.11.52"
15436
15437         mkdir -p $DIR/$tdir/migrate_dir
15438
15439         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15440                 error "migration fails with a tailing slash"
15441
15442         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15443                 error "migration fails with two tailing slashes"
15444 }
15445 run_test 230i "lfs migrate -m tolerates trailing slashes"
15446
15447 test_230j() {
15448         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15449         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
15450                 skip "Need MDS version at least 2.11.52"
15451
15452         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15453         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15454                 error "create $tfile failed"
15455         cat /etc/passwd > $DIR/$tdir/$tfile
15456
15457         $LFS migrate -m 1 $DIR/$tdir
15458
15459         cmp /etc/passwd $DIR/$tdir/$tfile ||
15460                 error "DoM file mismatch after migration"
15461 }
15462 run_test 230j "DoM file data not changed after dir migration"
15463
15464 test_231a()
15465 {
15466         # For simplicity this test assumes that max_pages_per_rpc
15467         # is the same across all OSCs
15468         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15469         local bulk_size=$((max_pages * PAGE_SIZE))
15470         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15471                                        head -n 1)
15472
15473         mkdir -p $DIR/$tdir
15474         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15475                 error "failed to set stripe with -S ${brw_size}M option"
15476
15477         # clear the OSC stats
15478         $LCTL set_param osc.*.stats=0 &>/dev/null
15479         stop_writeback
15480
15481         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15482         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15483                 oflag=direct &>/dev/null || error "dd failed"
15484
15485         sync; sleep 1; sync # just to be safe
15486         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15487         if [ x$nrpcs != "x1" ]; then
15488                 $LCTL get_param osc.*.stats
15489                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15490         fi
15491
15492         start_writeback
15493         # Drop the OSC cache, otherwise we will read from it
15494         cancel_lru_locks osc
15495
15496         # clear the OSC stats
15497         $LCTL set_param osc.*.stats=0 &>/dev/null
15498
15499         # Client reads $bulk_size.
15500         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15501                 iflag=direct &>/dev/null || error "dd failed"
15502
15503         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15504         if [ x$nrpcs != "x1" ]; then
15505                 $LCTL get_param osc.*.stats
15506                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15507         fi
15508 }
15509 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15510
15511 test_231b() {
15512         mkdir -p $DIR/$tdir
15513         local i
15514         for i in {0..1023}; do
15515                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15516                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15517                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15518         done
15519         sync
15520 }
15521 run_test 231b "must not assert on fully utilized OST request buffer"
15522
15523 test_232a() {
15524         mkdir -p $DIR/$tdir
15525         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15526
15527         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15528         do_facet ost1 $LCTL set_param fail_loc=0x31c
15529
15530         # ignore dd failure
15531         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15532
15533         do_facet ost1 $LCTL set_param fail_loc=0
15534         umount_client $MOUNT || error "umount failed"
15535         mount_client $MOUNT || error "mount failed"
15536         stop ost1 || error "cannot stop ost1"
15537         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15538 }
15539 run_test 232a "failed lock should not block umount"
15540
15541 test_232b() {
15542         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.58) ] ||
15543                 skip "Need MDS version at least 2.10.58"
15544
15545         mkdir -p $DIR/$tdir
15546         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15547         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15548         sync
15549         cancel_lru_locks osc
15550
15551         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15552         do_facet ost1 $LCTL set_param fail_loc=0x31c
15553
15554         # ignore failure
15555         $LFS data_version $DIR/$tdir/$tfile || true
15556
15557         do_facet ost1 $LCTL set_param fail_loc=0
15558         umount_client $MOUNT || error "umount failed"
15559         mount_client $MOUNT || error "mount failed"
15560         stop ost1 || error "cannot stop ost1"
15561         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15562 }
15563 run_test 232b "failed data version lock should not block umount"
15564
15565 test_233a() {
15566         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
15567                 skip "Need MDS version at least 2.3.64"
15568         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15569
15570         local fid=$($LFS path2fid $MOUNT)
15571
15572         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15573                 error "cannot access $MOUNT using its FID '$fid'"
15574 }
15575 run_test 233a "checking that OBF of the FS root succeeds"
15576
15577 test_233b() {
15578         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
15579                 skip "Need MDS version at least 2.5.90"
15580         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15581
15582         local fid=$($LFS path2fid $MOUNT/.lustre)
15583
15584         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15585                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15586
15587         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15588         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15589                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15590 }
15591 run_test 233b "checking that OBF of the FS .lustre succeeds"
15592
15593 test_234() {
15594         local p="$TMP/sanityN-$TESTNAME.parameters"
15595         save_lustre_params client "llite.*.xattr_cache" > $p
15596         lctl set_param llite.*.xattr_cache 1 ||
15597                 skip_env "xattr cache is not supported"
15598
15599         mkdir -p $DIR/$tdir || error "mkdir failed"
15600         touch $DIR/$tdir/$tfile || error "touch failed"
15601         # OBD_FAIL_LLITE_XATTR_ENOMEM
15602         $LCTL set_param fail_loc=0x1405
15603         getfattr -n user.attr $DIR/$tdir/$tfile &&
15604                 error "getfattr should have failed with ENOMEM"
15605         $LCTL set_param fail_loc=0x0
15606         rm -rf $DIR/$tdir
15607
15608         restore_lustre_params < $p
15609         rm -f $p
15610 }
15611 run_test 234 "xattr cache should not crash on ENOMEM"
15612
15613 test_235() {
15614         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
15615                 skip "Need MDS version at least 2.4.52"
15616
15617         flock_deadlock $DIR/$tfile
15618         local RC=$?
15619         case $RC in
15620                 0)
15621                 ;;
15622                 124) error "process hangs on a deadlock"
15623                 ;;
15624                 *) error "error executing flock_deadlock $DIR/$tfile"
15625                 ;;
15626         esac
15627 }
15628 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15629
15630 #LU-2935
15631 test_236() {
15632         check_swap_layouts_support
15633
15634         local ref1=/etc/passwd
15635         local ref2=/etc/group
15636         local file1=$DIR/$tdir/f1
15637         local file2=$DIR/$tdir/f2
15638
15639         test_mkdir -c1 $DIR/$tdir
15640         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15641         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15642         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15643         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15644         local fd=$(free_fd)
15645         local cmd="exec $fd<>$file2"
15646         eval $cmd
15647         rm $file2
15648         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15649                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15650         cmd="exec $fd>&-"
15651         eval $cmd
15652         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15653
15654         #cleanup
15655         rm -rf $DIR/$tdir
15656 }
15657 run_test 236 "Layout swap on open unlinked file"
15658
15659 # LU-4659 linkea consistency
15660 test_238() {
15661         local server_version=$(lustre_version_code $SINGLEMDS)
15662
15663         [[ $server_version -gt $(version_code 2.5.57) ]] ||
15664                 [[ $server_version -gt $(version_code 2.5.1) &&
15665                    $server_version -lt $(version_code 2.5.50) ]] ||
15666                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15667
15668         touch $DIR/$tfile
15669         ln $DIR/$tfile $DIR/$tfile.lnk
15670         touch $DIR/$tfile.new
15671         mv $DIR/$tfile.new $DIR/$tfile
15672         local fid1=$($LFS path2fid $DIR/$tfile)
15673         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15674         local path1=$($LFS fid2path $FSNAME "$fid1")
15675         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15676         local path2=$($LFS fid2path $FSNAME "$fid2")
15677         [ $tfile.lnk == $path2 ] ||
15678                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15679         rm -f $DIR/$tfile*
15680 }
15681 run_test 238 "Verify linkea consistency"
15682
15683 test_239A() { # was test_239
15684         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
15685                 skip "Need MDS version at least 2.5.60"
15686
15687         local list=$(comma_list $(mdts_nodes))
15688
15689         mkdir -p $DIR/$tdir
15690         createmany -o $DIR/$tdir/f- 5000
15691         unlinkmany $DIR/$tdir/f- 5000
15692         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
15693                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15694         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15695                         osp.*MDT*.sync_in_flight" | calc_sum)
15696         [ "$changes" -eq 0 ] || error "$changes not synced"
15697 }
15698 run_test 239A "osp_sync test"
15699
15700 test_239a() { #LU-5297
15701         remote_mds_nodsh && skip "remote MDS with nodsh"
15702
15703         touch $DIR/$tfile
15704         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15705         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15706         chgrp $RUNAS_GID $DIR/$tfile
15707         wait_delete_completed
15708 }
15709 run_test 239a "process invalid osp sync record correctly"
15710
15711 test_239b() { #LU-5297
15712         remote_mds_nodsh && skip "remote MDS with nodsh"
15713
15714         touch $DIR/$tfile1
15715         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15716         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15717         chgrp $RUNAS_GID $DIR/$tfile1
15718         wait_delete_completed
15719         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15720         touch $DIR/$tfile2
15721         chgrp $RUNAS_GID $DIR/$tfile2
15722         wait_delete_completed
15723 }
15724 run_test 239b "process osp sync record with ENOMEM error correctly"
15725
15726 test_240() {
15727         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15728         remote_mds_nodsh && skip "remote MDS with nodsh"
15729
15730         mkdir -p $DIR/$tdir
15731
15732         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15733                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15734         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15735                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15736
15737         umount_client $MOUNT || error "umount failed"
15738         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15739         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15740         mount_client $MOUNT || error "failed to mount client"
15741
15742         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15743         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15744 }
15745 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15746
15747 test_241_bio() {
15748         local count=$1
15749         local bsize=$2
15750
15751         for LOOP in $(seq $count); do
15752                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15753                 cancel_lru_locks $OSC || true
15754         done
15755 }
15756
15757 test_241_dio() {
15758         local count=$1
15759         local bsize=$2
15760
15761         for LOOP in $(seq $1); do
15762                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15763                         2>/dev/null
15764         done
15765 }
15766
15767 test_241a() { # was test_241
15768         local bsize=$PAGE_SIZE
15769
15770         (( bsize < 40960 )) && bsize=40960
15771         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15772         ls -la $DIR/$tfile
15773         cancel_lru_locks $OSC
15774         test_241_bio 1000 $bsize &
15775         PID=$!
15776         test_241_dio 1000 $bsize
15777         wait $PID
15778 }
15779 run_test 241a "bio vs dio"
15780
15781 test_241b() {
15782         local bsize=$PAGE_SIZE
15783
15784         (( bsize < 40960 )) && bsize=40960
15785         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15786         ls -la $DIR/$tfile
15787         test_241_dio 1000 $bsize &
15788         PID=$!
15789         test_241_dio 1000 $bsize
15790         wait $PID
15791 }
15792 run_test 241b "dio vs dio"
15793
15794 test_242() {
15795         remote_mds_nodsh && skip "remote MDS with nodsh"
15796
15797         mkdir -p $DIR/$tdir
15798         touch $DIR/$tdir/$tfile
15799
15800         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15801         do_facet mds1 lctl set_param fail_loc=0x105
15802         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15803
15804         do_facet mds1 lctl set_param fail_loc=0
15805         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15806 }
15807 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15808
15809 test_243()
15810 {
15811         test_mkdir $DIR/$tdir
15812         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15813 }
15814 run_test 243 "various group lock tests"
15815
15816 test_244()
15817 {
15818         test_mkdir $DIR/$tdir
15819         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
15820         sendfile_grouplock $DIR/$tdir/$tfile || \
15821                 error "sendfile+grouplock failed"
15822         rm -rf $DIR/$tdir
15823 }
15824 run_test 244 "sendfile with group lock tests"
15825
15826 test_245() {
15827         local flagname="multi_mod_rpcs"
15828         local connect_data_name="max_mod_rpcs"
15829         local out
15830
15831         # check if multiple modify RPCs flag is set
15832         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
15833                 grep "connect_flags:")
15834         echo "$out"
15835
15836         echo "$out" | grep -qw $flagname
15837         if [ $? -ne 0 ]; then
15838                 echo "connect flag $flagname is not set"
15839                 return
15840         fi
15841
15842         # check if multiple modify RPCs data is set
15843         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
15844         echo "$out"
15845
15846         echo "$out" | grep -qw $connect_data_name ||
15847                 error "import should have connect data $connect_data_name"
15848 }
15849 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
15850
15851 test_246() { # LU-7371
15852         remote_ost_nodsh && skip "remote OST with nodsh"
15853         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
15854                 skip "Need OST version >= 2.7.62"
15855
15856         do_facet ost1 $LCTL set_param fail_val=4095
15857 #define OBD_FAIL_OST_READ_SIZE          0x234
15858         do_facet ost1 $LCTL set_param fail_loc=0x234
15859         $LFS setstripe $DIR/$tfile -i 0 -c 1
15860         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
15861         cancel_lru_locks $FSNAME-OST0000
15862         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
15863 }
15864 run_test 246 "Read file of size 4095 should return right length"
15865
15866 cleanup_247() {
15867         local submount=$1
15868
15869         trap 0
15870         umount_client $submount
15871         rmdir $submount
15872 }
15873
15874 test_247a() {
15875         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15876                 grep -q subtree ||
15877                 skip_env "Fileset feature is not supported"
15878
15879         local submount=${MOUNT}_$tdir
15880
15881         mkdir $MOUNT/$tdir
15882         mkdir -p $submount || error "mkdir $submount failed"
15883         FILESET="$FILESET/$tdir" mount_client $submount ||
15884                 error "mount $submount failed"
15885         trap "cleanup_247 $submount" EXIT
15886         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
15887         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
15888                 error "read $MOUNT/$tdir/$tfile failed"
15889         cleanup_247 $submount
15890 }
15891 run_test 247a "mount subdir as fileset"
15892
15893 test_247b() {
15894         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15895                 skip_env "Fileset feature is not supported"
15896
15897         local submount=${MOUNT}_$tdir
15898
15899         rm -rf $MOUNT/$tdir
15900         mkdir -p $submount || error "mkdir $submount failed"
15901         SKIP_FILESET=1
15902         FILESET="$FILESET/$tdir" mount_client $submount &&
15903                 error "mount $submount should fail"
15904         rmdir $submount
15905 }
15906 run_test 247b "mount subdir that dose not exist"
15907
15908 test_247c() {
15909         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15910                 skip_env "Fileset feature is not supported"
15911
15912         local submount=${MOUNT}_$tdir
15913
15914         mkdir -p $MOUNT/$tdir/dir1
15915         mkdir -p $submount || error "mkdir $submount failed"
15916         trap "cleanup_247 $submount" EXIT
15917         FILESET="$FILESET/$tdir" mount_client $submount ||
15918                 error "mount $submount failed"
15919         local fid=$($LFS path2fid $MOUNT/)
15920         $LFS fid2path $submount $fid && error "fid2path should fail"
15921         cleanup_247 $submount
15922 }
15923 run_test 247c "running fid2path outside root"
15924
15925 test_247d() {
15926         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
15927                 skip "Fileset feature is not supported"
15928
15929         local submount=${MOUNT}_$tdir
15930
15931         mkdir -p $MOUNT/$tdir/dir1
15932         mkdir -p $submount || error "mkdir $submount failed"
15933         FILESET="$FILESET/$tdir" mount_client $submount ||
15934                 error "mount $submount failed"
15935         trap "cleanup_247 $submount" EXIT
15936         local fid=$($LFS path2fid $submount/dir1)
15937         $LFS fid2path $submount $fid || error "fid2path should succeed"
15938         cleanup_247 $submount
15939 }
15940 run_test 247d "running fid2path inside root"
15941
15942 # LU-8037
15943 test_247e() {
15944         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
15945                 grep -q subtree ||
15946                 skip "Fileset feature is not supported"
15947
15948         local submount=${MOUNT}_$tdir
15949
15950         mkdir $MOUNT/$tdir
15951         mkdir -p $submount || error "mkdir $submount failed"
15952         FILESET="$FILESET/.." mount_client $submount &&
15953                 error "mount $submount should fail"
15954         rmdir $submount
15955 }
15956 run_test 247e "mount .. as fileset"
15957
15958 test_248() {
15959         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
15960         [ -z "$fast_read_sav" ] && skip "no fast read support"
15961
15962         # create a large file for fast read verification
15963         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
15964
15965         # make sure the file is created correctly
15966         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
15967                 { rm -f $DIR/$tfile; skip "file creation error"; }
15968
15969         echo "Test 1: verify that fast read is 4 times faster on cache read"
15970
15971         # small read with fast read enabled
15972         $LCTL set_param -n llite.*.fast_read=1
15973         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15974                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15975                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15976         # small read with fast read disabled
15977         $LCTL set_param -n llite.*.fast_read=0
15978         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
15979                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15980                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15981
15982         # verify that fast read is 4 times faster for cache read
15983         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
15984                 error_not_in_vm "fast read was not 4 times faster: " \
15985                            "$t_fast vs $t_slow"
15986
15987         echo "Test 2: verify the performance between big and small read"
15988         $LCTL set_param -n llite.*.fast_read=1
15989
15990         # 1k non-cache read
15991         cancel_lru_locks osc
15992         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15993                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
15994                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
15995
15996         # 1M non-cache read
15997         cancel_lru_locks osc
15998         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
15999                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16000                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16001
16002         # verify that big IO is not 4 times faster than small IO
16003         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16004                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16005
16006         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16007         rm -f $DIR/$tfile
16008 }
16009 run_test 248 "fast read verification"
16010
16011 test_249() { # LU-7890
16012         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
16013                 skip "Need at least version 2.8.54"
16014
16015         rm -f $DIR/$tfile
16016         $SETSTRIPE -c 1 $DIR/$tfile
16017         # Offset 2T == 4k * 512M
16018         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16019                 error "dd to 2T offset failed"
16020 }
16021 run_test 249 "Write above 2T file size"
16022
16023 test_250() {
16024         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
16025          && skip "no 16TB file size limit on ZFS"
16026
16027         $SETSTRIPE -c 1 $DIR/$tfile
16028         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16029         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16030         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16031         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16032                 conv=notrunc,fsync && error "append succeeded"
16033         return 0
16034 }
16035 run_test 250 "Write above 16T limit"
16036
16037 test_251() {
16038         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
16039
16040         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16041         #Skip once - writing the first stripe will succeed
16042         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16043         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16044                 error "short write happened"
16045
16046         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16047         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16048                 error "short read happened"
16049
16050         rm -f $DIR/$tfile
16051 }
16052 run_test 251 "Handling short read and write correctly"
16053
16054 test_252() {
16055         remote_mds_nodsh && skip "remote MDS with nodsh"
16056         remote_ost_nodsh && skip "remote OST with nodsh"
16057         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
16058              "$(facet_fstype mds1)" != "ldiskfs" ]; then
16059                 skip_env "ldiskfs only test"
16060         fi
16061
16062         local tgt
16063         local dev
16064         local out
16065         local uuid
16066         local num
16067         local gen
16068
16069         # check lr_reader on OST0000
16070         tgt=ost1
16071         dev=$(facet_device $tgt)
16072         out=$(do_facet $tgt $LR_READER $dev)
16073         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16074         echo "$out"
16075         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16076         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16077                 error "Invalid uuid returned by $LR_READER on target $tgt"
16078         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16079
16080         # check lr_reader -c on MDT0000
16081         tgt=mds1
16082         dev=$(facet_device $tgt)
16083         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16084                 skip "$LR_READER does not support additional options"
16085         fi
16086         out=$(do_facet $tgt $LR_READER -c $dev)
16087         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16088         echo "$out"
16089         num=$(echo "$out" | grep -c "mdtlov")
16090         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16091                 error "Invalid number of mdtlov clients returned by $LR_READER"
16092         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16093
16094         # check lr_reader -cr on MDT0000
16095         out=$(do_facet $tgt $LR_READER -cr $dev)
16096         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16097         echo "$out"
16098         echo "$out" | grep -q "^reply_data:$" ||
16099                 error "$LR_READER should have returned 'reply_data' section"
16100         num=$(echo "$out" | grep -c "client_generation")
16101         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16102 }
16103 run_test 252 "check lr_reader tool"
16104
16105 test_253_fill_ost() {
16106         local size_mb #how many MB should we write to pass watermark
16107         local lwm=$3  #low watermark
16108         local free_10mb #10% of free space
16109
16110         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16111         size_mb=$((free_kb / 1024 - lwm))
16112         free_10mb=$((free_kb / 10240))
16113         #If 10% of free space cross low watermark use it
16114         if (( free_10mb > size_mb )); then
16115                 size_mb=$free_10mb
16116         else
16117                 #At least we need to store 1.1 of difference between
16118                 #free space and low watermark
16119                 size_mb=$((size_mb + size_mb / 10))
16120         fi
16121         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16122                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16123                          oflag=append conv=notrunc
16124         fi
16125
16126         sleep_maxage
16127
16128         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16129         echo "OST still has $((free_kb / 1024)) mbytes free"
16130 }
16131
16132 test_253() {
16133         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16134         remote_mds_nodsh && skip "remote MDS with nodsh"
16135         remote_mgs_nodsh && skip "remote MGS with nodsh"
16136
16137         local ostidx=0
16138         local rc=0
16139
16140         local ost_name=$($LFS osts |
16141                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16142         # on the mdt's osc
16143         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16144         do_facet $SINGLEMDS $LCTL get_param -n \
16145                 osp.$mdtosc_proc1.reserved_mb_high ||
16146                 skip  "remote MDS does not support reserved_mb_high"
16147
16148         rm -rf $DIR/$tdir
16149         wait_mds_ost_sync
16150         wait_delete_completed
16151         mkdir $DIR/$tdir
16152
16153         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16154                         osp.$mdtosc_proc1.reserved_mb_high)
16155         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16156                         osp.$mdtosc_proc1.reserved_mb_low)
16157         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16158
16159         if ! combined_mgs_mds ; then
16160                 mount_mgs_client
16161         fi
16162         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16163         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16164                 error "Adding $ost_name to pool failed"
16165
16166         # Wait for client to see a OST at pool
16167         wait_update $HOSTNAME "$LCTL get_param -n
16168                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16169                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16170                 error "Client can not see the pool"
16171         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16172                 error "Setstripe failed"
16173
16174         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16175         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16176         echo "OST still has $((blocks/1024)) mbytes free"
16177
16178         local new_lwm=$((blocks/1024-10))
16179         do_facet $SINGLEMDS $LCTL set_param \
16180                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16181         do_facet $SINGLEMDS $LCTL set_param \
16182                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16183
16184         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16185
16186         #First enospc could execute orphan deletion so repeat.
16187         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16188
16189         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16190                         osp.$mdtosc_proc1.prealloc_status)
16191         echo "prealloc_status $oa_status"
16192
16193         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16194                 error "File creation should fail"
16195         #object allocation was stopped, but we still able to append files
16196         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16197                 error "Append failed"
16198         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16199
16200         wait_delete_completed
16201
16202         sleep_maxage
16203
16204         for i in $(seq 10 12); do
16205                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16206                         error "File creation failed after rm";
16207         done
16208
16209         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16210                         osp.$mdtosc_proc1.prealloc_status)
16211         echo "prealloc_status $oa_status"
16212
16213         if (( oa_status != 0 )); then
16214                 error "Object allocation still disable after rm"
16215         fi
16216         do_facet $SINGLEMDS $LCTL set_param \
16217                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16218         do_facet $SINGLEMDS $LCTL set_param \
16219                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16220
16221
16222         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16223                 error "Remove $ost_name from pool failed"
16224         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16225                 error "Pool destroy fialed"
16226
16227         if ! combined_mgs_mds ; then
16228                 umount_mgs_client
16229         fi
16230 }
16231 run_test 253 "Check object allocation limit"
16232
16233 test_254() {
16234         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16235         remote_mds_nodsh && skip "remote MDS with nodsh"
16236         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16237                 skip "MDS does not support changelog_size"
16238
16239         local cl_user
16240         local MDT0=$(facet_svc $SINGLEMDS)
16241
16242         changelog_register || error "changelog_register failed"
16243
16244         changelog_clear 0 || error "changelog_clear failed"
16245
16246         local size1=$(do_facet $SINGLEMDS \
16247                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16248         echo "Changelog size $size1"
16249
16250         rm -rf $DIR/$tdir
16251         $LFS mkdir -i 0 $DIR/$tdir
16252         # change something
16253         mkdir -p $DIR/$tdir/pics/2008/zachy
16254         touch $DIR/$tdir/pics/2008/zachy/timestamp
16255         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16256         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16257         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16258         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16259         rm $DIR/$tdir/pics/desktop.jpg
16260
16261         local size2=$(do_facet $SINGLEMDS \
16262                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16263         echo "Changelog size after work $size2"
16264
16265         (( $size2 > $size1 )) ||
16266                 error "new Changelog size=$size2 less than old size=$size1"
16267 }
16268 run_test 254 "Check changelog size"
16269
16270 ladvise_no_type()
16271 {
16272         local type=$1
16273         local file=$2
16274
16275         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16276                 awk -F: '{print $2}' | grep $type > /dev/null
16277         if [ $? -ne 0 ]; then
16278                 return 0
16279         fi
16280         return 1
16281 }
16282
16283 ladvise_no_ioctl()
16284 {
16285         local file=$1
16286
16287         lfs ladvise -a willread $file > /dev/null 2>&1
16288         if [ $? -eq 0 ]; then
16289                 return 1
16290         fi
16291
16292         lfs ladvise -a willread $file 2>&1 |
16293                 grep "Inappropriate ioctl for device" > /dev/null
16294         if [ $? -eq 0 ]; then
16295                 return 0
16296         fi
16297         return 1
16298 }
16299
16300 percent() {
16301         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16302 }
16303
16304 # run a random read IO workload
16305 # usage: random_read_iops <filename> <filesize> <iosize>
16306 random_read_iops() {
16307         local file=$1
16308         local fsize=$2
16309         local iosize=${3:-4096}
16310
16311         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16312                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16313 }
16314
16315 drop_file_oss_cache() {
16316         local file="$1"
16317         local nodes="$2"
16318
16319         $LFS ladvise -a dontneed $file 2>/dev/null ||
16320                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16321 }
16322
16323 ladvise_willread_performance()
16324 {
16325         local repeat=10
16326         local average_origin=0
16327         local average_cache=0
16328         local average_ladvise=0
16329
16330         for ((i = 1; i <= $repeat; i++)); do
16331                 echo "Iter $i/$repeat: reading without willread hint"
16332                 cancel_lru_locks osc
16333                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16334                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16335                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16336                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16337
16338                 cancel_lru_locks osc
16339                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16340                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16341                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16342
16343                 cancel_lru_locks osc
16344                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16345                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16346                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16347                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16348                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16349         done
16350         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16351         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16352         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16353
16354         speedup_cache=$(percent $average_cache $average_origin)
16355         speedup_ladvise=$(percent $average_ladvise $average_origin)
16356
16357         echo "Average uncached read: $average_origin"
16358         echo "Average speedup with OSS cached read: " \
16359                 "$average_cache = +$speedup_cache%"
16360         echo "Average speedup with ladvise willread: " \
16361                 "$average_ladvise = +$speedup_ladvise%"
16362
16363         local lowest_speedup=20
16364         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16365                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16366                         "got $average_cache%. Skipping ladvise willread check."
16367                 return 0
16368         fi
16369
16370         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16371         # it is still good to run until then to exercise 'ladvise willread'
16372         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16373                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16374                 echo "osd-zfs does not support dontneed or drop_caches" &&
16375                 return 0
16376
16377         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16378         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16379                 error_not_in_vm "Speedup with willread is less than " \
16380                         "$lowest_speedup%, got $average_ladvise%"
16381 }
16382
16383 test_255a() {
16384         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16385                 skip "lustre < 2.8.54 does not support ladvise "
16386         remote_ost_nodsh && skip "remote OST with nodsh"
16387
16388         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16389
16390         ladvise_no_type willread $DIR/$tfile &&
16391                 skip "willread ladvise is not supported"
16392
16393         ladvise_no_ioctl $DIR/$tfile &&
16394                 skip "ladvise ioctl is not supported"
16395
16396         local size_mb=100
16397         local size=$((size_mb * 1048576))
16398         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16399                 error "dd to $DIR/$tfile failed"
16400
16401         lfs ladvise -a willread $DIR/$tfile ||
16402                 error "Ladvise failed with no range argument"
16403
16404         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16405                 error "Ladvise failed with no -l or -e argument"
16406
16407         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16408                 error "Ladvise failed with only -e argument"
16409
16410         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16411                 error "Ladvise failed with only -l argument"
16412
16413         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16414                 error "End offset should not be smaller than start offset"
16415
16416         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16417                 error "End offset should not be equal to start offset"
16418
16419         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16420                 error "Ladvise failed with overflowing -s argument"
16421
16422         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16423                 error "Ladvise failed with overflowing -e argument"
16424
16425         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16426                 error "Ladvise failed with overflowing -l argument"
16427
16428         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16429                 error "Ladvise succeeded with conflicting -l and -e arguments"
16430
16431         echo "Synchronous ladvise should wait"
16432         local delay=4
16433 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16434         do_nodes $(comma_list $(osts_nodes)) \
16435                 $LCTL set_param fail_val=$delay fail_loc=0x237
16436
16437         local start_ts=$SECONDS
16438         lfs ladvise -a willread $DIR/$tfile ||
16439                 error "Ladvise failed with no range argument"
16440         local end_ts=$SECONDS
16441         local inteval_ts=$((end_ts - start_ts))
16442
16443         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16444                 error "Synchronous advice didn't wait reply"
16445         fi
16446
16447         echo "Asynchronous ladvise shouldn't wait"
16448         local start_ts=$SECONDS
16449         lfs ladvise -a willread -b $DIR/$tfile ||
16450                 error "Ladvise failed with no range argument"
16451         local end_ts=$SECONDS
16452         local inteval_ts=$((end_ts - start_ts))
16453
16454         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16455                 error "Asynchronous advice blocked"
16456         fi
16457
16458         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16459         ladvise_willread_performance
16460 }
16461 run_test 255a "check 'lfs ladvise -a willread'"
16462
16463 facet_meminfo() {
16464         local facet=$1
16465         local info=$2
16466
16467         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16468 }
16469
16470 test_255b() {
16471         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
16472                 skip "lustre < 2.8.54 does not support ladvise "
16473         remote_ost_nodsh && skip "remote OST with nodsh"
16474
16475         lfs setstripe -c 1 -i 0 $DIR/$tfile
16476
16477         ladvise_no_type dontneed $DIR/$tfile &&
16478                 skip "dontneed ladvise is not supported"
16479
16480         ladvise_no_ioctl $DIR/$tfile &&
16481                 skip "ladvise ioctl is not supported"
16482
16483         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16484                 [ "$(facet_fstype ost1)" = "zfs" ] &&
16485                 skip "zfs-osd does not support 'ladvise dontneed'"
16486
16487         local size_mb=100
16488         local size=$((size_mb * 1048576))
16489         # In order to prevent disturbance of other processes, only check 3/4
16490         # of the memory usage
16491         local kibibytes=$((size_mb * 1024 * 3 / 4))
16492
16493         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16494                 error "dd to $DIR/$tfile failed"
16495
16496         #force write to complete before dropping OST cache & checking memory
16497         sync
16498
16499         local total=$(facet_meminfo ost1 MemTotal)
16500         echo "Total memory: $total KiB"
16501
16502         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16503         local before_read=$(facet_meminfo ost1 Cached)
16504         echo "Cache used before read: $before_read KiB"
16505
16506         lfs ladvise -a willread $DIR/$tfile ||
16507                 error "Ladvise willread failed"
16508         local after_read=$(facet_meminfo ost1 Cached)
16509         echo "Cache used after read: $after_read KiB"
16510
16511         lfs ladvise -a dontneed $DIR/$tfile ||
16512                 error "Ladvise dontneed again failed"
16513         local no_read=$(facet_meminfo ost1 Cached)
16514         echo "Cache used after dontneed ladvise: $no_read KiB"
16515
16516         if [ $total -lt $((before_read + kibibytes)) ]; then
16517                 echo "Memory is too small, abort checking"
16518                 return 0
16519         fi
16520
16521         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16522                 error "Ladvise willread should use more memory" \
16523                         "than $kibibytes KiB"
16524         fi
16525
16526         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16527                 error "Ladvise dontneed should release more memory" \
16528                         "than $kibibytes KiB"
16529         fi
16530 }
16531 run_test 255b "check 'lfs ladvise -a dontneed'"
16532
16533 test_255c() {
16534         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
16535                 skip "lustre < 2.10.53 does not support lockahead"
16536
16537         local count
16538         local new_count
16539         local difference
16540         local i
16541         local rc
16542
16543         test_mkdir -p $DIR/$tdir
16544         $SETSTRIPE -i 0 $DIR/$tdir
16545
16546         #test 10 returns only success/failure
16547         i=10
16548         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16549         rc=$?
16550         if [ $rc -eq 255 ]; then
16551                 error "Ladvise test${i} failed, ${rc}"
16552         fi
16553
16554         #test 11 counts lock enqueue requests, all others count new locks
16555         i=11
16556         count=$(do_facet ost1 \
16557                 $LCTL get_param -n ost.OSS.ost.stats)
16558         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16559
16560         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16561         rc=$?
16562         if [ $rc -eq 255 ]; then
16563                 error "Ladvise test${i} failed, ${rc}"
16564         fi
16565
16566         new_count=$(do_facet ost1 \
16567                 $LCTL get_param -n ost.OSS.ost.stats)
16568         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16569                    awk '{ print $2 }')
16570
16571         difference="$((new_count - count))"
16572         if [ $difference -ne $rc ]; then
16573                 error "Ladvise test${i}, bad enqueue count, returned " \
16574                       "${rc}, actual ${difference}"
16575         fi
16576
16577         for i in $(seq 12 21); do
16578                 # If we do not do this, we run the risk of having too many
16579                 # locks and starting lock cancellation while we are checking
16580                 # lock counts.
16581                 cancel_lru_locks osc
16582
16583                 count=$($LCTL get_param -n \
16584                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16585
16586                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16587                 rc=$?
16588                 if [ $rc -eq 255 ]; then
16589                         error "Ladvise test ${i} failed, ${rc}"
16590                 fi
16591
16592                 new_count=$($LCTL get_param -n \
16593                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16594                 difference="$((new_count - count))"
16595
16596                 # Test 15 output is divided by 100 to map down to valid return
16597                 if [ $i -eq 15 ]; then
16598                         rc="$((rc * 100))"
16599                 fi
16600
16601                 if [ $difference -ne $rc ]; then
16602                         error "Ladvise test ${i}, bad lock count, returned " \
16603                               "${rc}, actual ${difference}"
16604                 fi
16605         done
16606
16607         #test 22 returns only success/failure
16608         i=22
16609         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16610         rc=$?
16611         if [ $rc -eq 255 ]; then
16612                 error "Ladvise test${i} failed, ${rc}"
16613         fi
16614 }
16615 run_test 255c "suite of ladvise lockahead tests"
16616
16617 test_256() {
16618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16619         remote_mds_nodsh && skip "remote MDS with nodsh"
16620         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
16621                 skip "ldiskfs only test"
16622         changelog_users $SINGLEMDS | grep "^cl" &&
16623                 skip "active changelog user"
16624
16625         local cl_user
16626         local cat_sl
16627         local mdt_dev
16628
16629         mdt_dev=$(mdsdevname 1)
16630         echo $mdt_dev
16631
16632         changelog_register || error "changelog_register failed"
16633
16634         rm -rf $DIR/$tdir
16635         mkdir -p $DIR/$tdir
16636
16637         changelog_clear 0 || error "changelog_clear failed"
16638
16639         # change something
16640         touch $DIR/$tdir/{1..10}
16641
16642         # stop the MDT
16643         stop $SINGLEMDS || error "Fail to stop MDT"
16644
16645         # remount the MDT
16646
16647         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16648
16649         #after mount new plainllog is used
16650         touch $DIR/$tdir/{11..19}
16651         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16652         cat_sl=$(do_facet $SINGLEMDS "sync; \
16653                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16654                  llog_reader $tmpfile | grep -c type=1064553b")
16655         do_facet $SINGLEMDS llog_reader $tmpfile
16656
16657         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16658
16659         changelog_clear 0 || error "changelog_clear failed"
16660
16661         cat_sl=$(do_facet $SINGLEMDS "sync; \
16662                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16663                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16664
16665         if (( cat_sl == 2 )); then
16666                 error "Empty plain llog was not deleted from changelog catalog"
16667         elif (( cat_sl != 1 )); then
16668                 error "Active plain llog shouldn't be deleted from catalog"
16669         fi
16670 }
16671 run_test 256 "Check llog delete for empty and not full state"
16672
16673 test_257() {
16674         remote_mds_nodsh && skip "remote MDS with nodsh"
16675         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16676                 skip "Need MDS version at least 2.8.55"
16677
16678         test_mkdir $DIR/$tdir
16679
16680         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16681                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16682         stat $DIR/$tdir
16683
16684 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16685         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16686         local facet=mds$((mdtidx + 1))
16687         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16688         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16689
16690         stop $facet || error "stop MDS failed"
16691         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16692                 error "start MDS fail"
16693 }
16694 run_test 257 "xattr locks are not lost"
16695
16696 # Verify we take the i_mutex when security requires it
16697 test_258a() {
16698 #define OBD_FAIL_IMUTEX_SEC 0x141c
16699         $LCTL set_param fail_loc=0x141c
16700         touch $DIR/$tfile
16701         chmod u+s $DIR/$tfile
16702         chmod a+rwx $DIR/$tfile
16703         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16704         RC=$?
16705         if [ $RC -ne 0 ]; then
16706                 error "error, failed to take i_mutex, rc=$?"
16707         fi
16708         rm -f $DIR/$tfile
16709 }
16710 run_test 258a
16711
16712 # Verify we do NOT take the i_mutex in the normal case
16713 test_258b() {
16714 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16715         $LCTL set_param fail_loc=0x141d
16716         touch $DIR/$tfile
16717         chmod a+rwx $DIR
16718         chmod a+rw $DIR/$tfile
16719         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16720         RC=$?
16721         if [ $RC -ne 0 ]; then
16722                 error "error, took i_mutex unnecessarily, rc=$?"
16723         fi
16724         rm -f $DIR/$tfile
16725
16726 }
16727 run_test 258b "verify i_mutex security behavior"
16728
16729 test_259() {
16730         local file=$DIR/$tfile
16731         local before
16732         local after
16733
16734         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
16735                 skip "ldiskfs only test" && return
16736
16737         stack_trap "rm -f $file" EXIT
16738
16739         wait_delete_completed
16740         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16741         echo "before: $before"
16742
16743         $LFS setstripe -i 0 -c 1 $file
16744         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16745         sync_all_data
16746         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16747         echo "after write: $after"
16748
16749 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16750         do_facet ost1 $LCTL set_param fail_loc=0x2301
16751         $TRUNCATE $file 0
16752         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16753         echo "after truncate: $after"
16754
16755         stop ost1
16756         do_facet ost1 $LCTL set_param fail_loc=0
16757         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16758         sleep 2
16759         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16760         echo "after restart: $after"
16761         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16762                 error "missing truncate?"
16763
16764         return 0
16765 }
16766 run_test 259 "crash at delayed truncate"
16767
16768 test_260() {
16769 #define OBD_FAIL_MDC_CLOSE               0x806
16770         $LCTL set_param fail_loc=0x80000806
16771         touch $DIR/$tfile
16772
16773 }
16774 run_test 260 "Check mdc_close fail"
16775
16776 ### Data-on-MDT sanity tests ###
16777 test_270a() {
16778         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16779                 skip "Need MDS version at least 2.10.55 for DoM"
16780
16781         # create DoM file
16782         local dom=$DIR/$tdir/dom_file
16783         local tmp=$DIR/$tdir/tmp_file
16784
16785         mkdir -p $DIR/$tdir
16786
16787         # basic checks for DoM component creation
16788         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16789                 error "Can set MDT layout to non-first entry"
16790
16791         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16792                 error "Can define multiple entries as MDT layout"
16793
16794         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16795
16796         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16797         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16798         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16799
16800         local mdtidx=$($LFS getstripe -m $dom)
16801         local mdtname=MDT$(printf %04x $mdtidx)
16802         local facet=mds$((mdtidx + 1))
16803         local space_check=1
16804
16805         # Skip free space checks with ZFS
16806         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16807
16808         # write
16809         sync
16810         local size_tmp=$((65536 * 3))
16811         local mdtfree1=$(do_facet $facet \
16812                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16813
16814         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16815         # check also direct IO along write
16816         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16817         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16818         sync
16819         cmp $tmp $dom || error "file data is different"
16820         [ $(stat -c%s $dom) == $size_tmp ] ||
16821                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16822         if [ $space_check == 1 ]; then
16823                 local mdtfree2=$(do_facet $facet \
16824                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
16825
16826                 # increase in usage from by $size_tmp
16827                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16828                         error "MDT free space wrong after write: " \
16829                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16830         fi
16831
16832         # truncate
16833         local size_dom=10000
16834
16835         $TRUNCATE $dom $size_dom
16836         [ $(stat -c%s $dom) == $size_dom ] ||
16837                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
16838         if [ $space_check == 1 ]; then
16839                 mdtfree1=$(do_facet $facet \
16840                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16841                 # decrease in usage from $size_tmp to new $size_dom
16842                 [ $(($mdtfree1 - $mdtfree2)) -ge \
16843                   $(((size_tmp - size_dom) / 1024)) ] ||
16844                         error "MDT free space is wrong after truncate: " \
16845                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
16846         fi
16847
16848         # append
16849         cat $tmp >> $dom
16850         sync
16851         size_dom=$((size_dom + size_tmp))
16852         [ $(stat -c%s $dom) == $size_dom ] ||
16853                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
16854         if [ $space_check == 1 ]; then
16855                 mdtfree2=$(do_facet $facet \
16856                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16857                 # increase in usage by $size_tmp from previous
16858                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
16859                         error "MDT free space is wrong after append: " \
16860                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
16861         fi
16862
16863         # delete
16864         rm $dom
16865         if [ $space_check == 1 ]; then
16866                 mdtfree1=$(do_facet $facet \
16867                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
16868                 # decrease in usage by $size_dom from previous
16869                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
16870                         error "MDT free space is wrong after removal: " \
16871                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
16872         fi
16873
16874         # combined striping
16875         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
16876                 error "Can't create DoM + OST striping"
16877
16878         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
16879         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16880         # check also direct IO along write
16881         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16882         sync
16883         cmp $tmp $dom || error "file data is different"
16884         [ $(stat -c%s $dom) == $size_tmp ] ||
16885                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
16886         rm $dom $tmp
16887
16888         return 0
16889 }
16890 run_test 270a "DoM: basic functionality tests"
16891
16892 test_270b() {
16893         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16894                 skip "Need MDS version at least 2.10.55"
16895
16896         local dom=$DIR/$tdir/dom_file
16897         local max_size=1048576
16898
16899         mkdir -p $DIR/$tdir
16900         $LFS setstripe -E $max_size -L mdt $dom
16901
16902         # truncate over the limit
16903         $TRUNCATE $dom $(($max_size + 1)) &&
16904                 error "successful truncate over the maximum size"
16905         # write over the limit
16906         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
16907                 error "successful write over the maximum size"
16908         # append over the limit
16909         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
16910         echo "12345" >> $dom && error "successful append over the maximum size"
16911         rm $dom
16912
16913         return 0
16914 }
16915 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
16916
16917 test_270c() {
16918         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16919                 skip "Need MDS version at least 2.10.55"
16920
16921         mkdir -p $DIR/$tdir
16922         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16923
16924         # check files inherit DoM EA
16925         touch $DIR/$tdir/first
16926         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
16927                 error "bad pattern"
16928         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
16929                 error "bad stripe count"
16930         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
16931                 error "bad stripe size"
16932
16933         # check directory inherits DoM EA and uses it as default
16934         mkdir $DIR/$tdir/subdir
16935         touch $DIR/$tdir/subdir/second
16936         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
16937                 error "bad pattern in sub-directory"
16938         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
16939                 error "bad stripe count in sub-directory"
16940         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
16941                 error "bad stripe size in sub-directory"
16942         return 0
16943 }
16944 run_test 270c "DoM: DoM EA inheritance tests"
16945
16946 test_270d() {
16947         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16948                 skip "Need MDS version at least 2.10.55"
16949
16950         mkdir -p $DIR/$tdir
16951         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
16952
16953         # inherit default DoM striping
16954         mkdir $DIR/$tdir/subdir
16955         touch $DIR/$tdir/subdir/f1
16956
16957         # change default directory striping
16958         $LFS setstripe -c 1 $DIR/$tdir/subdir
16959         touch $DIR/$tdir/subdir/f2
16960         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
16961                 error "wrong default striping in file 2"
16962         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
16963                 error "bad pattern in file 2"
16964         return 0
16965 }
16966 run_test 270d "DoM: change striping from DoM to RAID0"
16967
16968 test_270e() {
16969         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
16970                 skip "Need MDS version at least 2.10.55"
16971
16972         mkdir -p $DIR/$tdir/dom
16973         mkdir -p $DIR/$tdir/norm
16974         DOMFILES=20
16975         NORMFILES=10
16976         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
16977         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
16978
16979         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
16980         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
16981
16982         # find DoM files by layout
16983         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
16984         [ $NUM -eq  $DOMFILES ] ||
16985                 error "lfs find -L: found $NUM, expected $DOMFILES"
16986         echo "Test 1: lfs find 20 DOM files by layout: OK"
16987
16988         # there should be 1 dir with default DOM striping
16989         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
16990         [ $NUM -eq  1 ] ||
16991                 error "lfs find -L: found $NUM, expected 1 dir"
16992         echo "Test 2: lfs find 1 DOM dir by layout: OK"
16993
16994         # find DoM files by stripe size
16995         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
16996         [ $NUM -eq  $DOMFILES ] ||
16997                 error "lfs find -S: found $NUM, expected $DOMFILES"
16998         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
16999
17000         # find files by stripe offset except DoM files
17001         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17002         [ $NUM -eq  $NORMFILES ] ||
17003                 error "lfs find -i: found $NUM, expected $NORMFILES"
17004         echo "Test 5: lfs find no DOM files by stripe index: OK"
17005         return 0
17006 }
17007 run_test 270e "DoM: lfs find with DoM files test"
17008
17009 test_270f() {
17010         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17011                 skip "Need MDS version at least 2.10.55"
17012
17013         local mdtname=${FSNAME}-MDT0000-mdtlov
17014         local dom=$DIR/$tdir/dom_file
17015         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17016                                                 lod.$mdtname.dom_stripesize)
17017         local dom_limit=131072
17018
17019         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17020         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17021                                                 lod.$mdtname.dom_stripesize)
17022         [ ${dom_limit} -eq ${dom_current} ] ||
17023                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17024
17025         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17026         $LFS setstripe -d $DIR/$tdir
17027         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17028                 error "Can't set directory default striping"
17029
17030         # exceed maximum stripe size
17031         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17032                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17033         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17034                 error "Able to create DoM component size more than LOD limit"
17035
17036         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17037         dom_current=$(do_facet mds1 $LCTL get_param -n \
17038                                                 lod.$mdtname.dom_stripesize)
17039         [ 0 -eq ${dom_current} ] ||
17040                 error "Can't set zero DoM stripe limit"
17041         rm $dom
17042
17043         # attempt to create DoM file on server with disabled DoM should
17044         # remove DoM entry from layout and be succeed
17045         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17046                 error "Can't create DoM file (DoM is disabled)"
17047         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17048                 error "File has DoM component while DoM is disabled"
17049         rm $dom
17050
17051         # attempt to create DoM file with only DoM stripe should return error
17052         $LFS setstripe -E $dom_limit -L mdt $dom &&
17053                 error "Able to create DoM-only file while DoM is disabled"
17054
17055         # too low values to be aligned with smallest stripe size 64K
17056         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17057         dom_current=$(do_facet mds1 $LCTL get_param -n \
17058                                                 lod.$mdtname.dom_stripesize)
17059         [ 30000 -eq ${dom_current} ] &&
17060                 error "Can set too small DoM stripe limit"
17061
17062         # 64K is a minimal stripe size in Lustre, expect limit of that size
17063         [ 65536 -eq ${dom_current} ] ||
17064                 error "Limit is not set to 64K but ${dom_current}"
17065
17066         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17067         dom_current=$(do_facet mds1 $LCTL get_param -n \
17068                                                 lod.$mdtname.dom_stripesize)
17069         echo $dom_current
17070         [ 2147483648 -eq ${dom_current} ] &&
17071                 error "Can set too large DoM stripe limit"
17072
17073         do_facet mds1 $LCTL set_param -n \
17074                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17075         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17076                 error "Can't create DoM component size after limit change"
17077         do_facet mds1 $LCTL set_param -n \
17078                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17079         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17080                 error "Can't create DoM file after limit decrease"
17081         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17082                 error "Can create big DoM component after limit decrease"
17083         touch ${dom}_def ||
17084                 error "Can't create file with old default layout"
17085
17086         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17087         return 0
17088 }
17089 run_test 270f "DoM: maximum DoM stripe size checks"
17090
17091 test_271a() {
17092         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17093                 skip "Need MDS version at least 2.10.55"
17094
17095         local dom=$DIR/$tdir/dom
17096
17097         mkdir -p $DIR/$tdir
17098
17099         $LFS setstripe -E 1024K -L mdt $dom
17100
17101         lctl set_param -n mdc.*.stats=clear
17102         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17103         cat $dom > /dev/null
17104         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17105         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17106         ls $dom
17107         rm -f $dom
17108 }
17109 run_test 271a "DoM: data is cached for read after write"
17110
17111 test_271b() {
17112         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17113                 skip "Need MDS version at least 2.10.55"
17114
17115         local dom=$DIR/$tdir/dom
17116
17117         mkdir -p $DIR/$tdir
17118
17119         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17120
17121         lctl set_param -n mdc.*.stats=clear
17122         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17123         cancel_lru_locks mdc
17124         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17125         # second stat to check size is cached on client
17126         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17127         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17128         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17129         rm -f $dom
17130 }
17131 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17132
17133 test_271ba() {
17134         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17135                 skip "Need MDS version at least 2.10.55"
17136
17137         local dom=$DIR/$tdir/dom
17138
17139         mkdir -p $DIR/$tdir
17140
17141         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17142
17143         lctl set_param -n mdc.*.stats=clear
17144         lctl set_param -n osc.*.stats=clear
17145         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17146         cancel_lru_locks mdc
17147         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17148         # second stat to check size is cached on client
17149         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17150         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17151         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17152         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17153         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17154         rm -f $dom
17155 }
17156 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17157
17158
17159 get_mdc_stats() {
17160         local mdtidx=$1
17161         local param=$2
17162         local mdt=MDT$(printf %04x $mdtidx)
17163
17164         if [ -z $param ]; then
17165                 lctl get_param -n mdc.*$mdt*.stats
17166         else
17167                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17168         fi
17169 }
17170
17171 test_271c() {
17172         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
17173                 skip "Need MDS version at least 2.10.55"
17174
17175         local dom=$DIR/$tdir/dom
17176
17177         mkdir -p $DIR/$tdir
17178
17179         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17180
17181         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17182         local facet=mds$((mdtidx + 1))
17183
17184         cancel_lru_locks mdc
17185         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17186         createmany -o $dom 1000
17187         lctl set_param -n mdc.*.stats=clear
17188         smalliomany -w $dom 1000 200
17189         get_mdc_stats $mdtidx
17190         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17191         # Each file has 1 open, 1 IO enqueues, total 2000
17192         # but now we have also +1 getxattr for security.capability, total 3000
17193         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17194         unlinkmany $dom 1000
17195
17196         cancel_lru_locks mdc
17197         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17198         createmany -o $dom 1000
17199         lctl set_param -n mdc.*.stats=clear
17200         smalliomany -w $dom 1000 200
17201         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17202         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17203         # for OPEN and IO lock.
17204         [ $((enq - enq_2)) -ge 1000 ] ||
17205                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17206         unlinkmany $dom 1000
17207         return 0
17208 }
17209 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17210
17211 cleanup_271def_tests() {
17212         trap 0
17213         rm -f $1
17214 }
17215
17216 test_271d() {
17217         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17218                 skip "Need MDS version at least 2.10.57" && return
17219
17220         local dom=$DIR/$tdir/dom
17221         local tmp=$TMP/$tfile
17222         trap "cleanup_271def_tests $tmp" EXIT
17223
17224         mkdir -p $DIR/$tdir
17225
17226         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17227
17228         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17229
17230         cancel_lru_locks mdc
17231         dd if=/dev/urandom of=$tmp bs=1000 count=1
17232         dd if=$tmp of=$dom bs=1000 count=1
17233         cancel_lru_locks mdc
17234
17235         cat /etc/hosts >> $tmp
17236         lctl set_param -n mdc.*.stats=clear
17237
17238         # append data to the same file it should update local page
17239         echo "Append to the same page"
17240         cat /etc/hosts >> $dom
17241         local num=$(get_mdc_stats $mdtidx ost_read)
17242         local ra=$(get_mdc_stats $mdtidx req_active)
17243         local rw=$(get_mdc_stats $mdtidx req_waittime)
17244
17245         [ -z $num ] || error "$num READ RPC occured"
17246         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17247         echo "... DONE"
17248
17249         # compare content
17250         cmp $tmp $dom || error "file miscompare"
17251
17252         cancel_lru_locks mdc
17253         lctl set_param -n mdc.*.stats=clear
17254
17255         echo "Open and read file"
17256         cat $dom > /dev/null
17257         local num=$(get_mdc_stats $mdtidx ost_read)
17258         local ra=$(get_mdc_stats $mdtidx req_active)
17259         local rw=$(get_mdc_stats $mdtidx req_waittime)
17260
17261         [ -z $num ] || error "$num READ RPC occured"
17262         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17263         echo "... DONE"
17264
17265         # compare content
17266         cmp $tmp $dom || error "file miscompare"
17267
17268         return 0
17269 }
17270 run_test 271d "DoM: read on open (1K file in reply buffer)"
17271
17272 test_271e() {
17273         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17274                 skip "Need MDS version at least 2.10.57" && return
17275
17276         local dom=$DIR/$tdir/dom
17277         local tmp=$TMP/${tfile}.data
17278         trap "cleanup_271def_tests $tmp" EXIT
17279
17280         mkdir -p $DIR/$tdir
17281
17282         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17283
17284         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17285
17286         cancel_lru_locks mdc
17287         dd if=/dev/urandom of=$tmp bs=30K count=1
17288         dd if=$tmp of=$dom bs=30K count=1
17289         cancel_lru_locks mdc
17290         cat /etc/hosts >> $tmp
17291         lctl set_param -n mdc.*.stats=clear
17292
17293         echo "Append to the same page"
17294         cat /etc/hosts >> $dom
17295
17296         local num=$(get_mdc_stats $mdtidx ost_read)
17297         local ra=$(get_mdc_stats $mdtidx req_active)
17298         local rw=$(get_mdc_stats $mdtidx req_waittime)
17299
17300         [ -z $num ] || error "$num READ RPC occured"
17301         # Reply buffer can be adjusted for larger buffer by resend
17302         echo "... DONE with $((ra - rw)) resends"
17303
17304         # compare content
17305         cmp $tmp $dom || error "file miscompare"
17306
17307         cancel_lru_locks mdc
17308         lctl set_param -n mdc.*.stats=clear
17309
17310         echo "Open and read file"
17311         cat $dom > /dev/null
17312         local num=$(get_mdc_stats $mdtidx ost_read)
17313         local ra=$(get_mdc_stats $mdtidx req_active)
17314         local rw=$(get_mdc_stats $mdtidx req_waittime)
17315
17316         [ -z $num ] || error "$num READ RPC occured"
17317         # Reply buffer can be adjusted for larger buffer by resend
17318         echo "... DONE with $((ra - rw)) resends"
17319
17320         # compare content
17321         cmp $tmp $dom || error "file miscompare"
17322
17323         return 0
17324 }
17325 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17326
17327 test_271f() {
17328         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.57) ] &&
17329                 skip "Need MDS version at least 2.10.57" && return
17330
17331         local dom=$DIR/$tdir/dom
17332         local tmp=$TMP/$tfile
17333         trap "cleanup_271def_tests $tmp" EXIT
17334
17335         mkdir -p $DIR/$tdir
17336
17337         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17338
17339         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17340
17341         cancel_lru_locks mdc
17342         dd if=/dev/urandom of=$tmp bs=200000 count=1
17343         dd if=$tmp of=$dom bs=200000 count=1
17344         cancel_lru_locks mdc
17345         cat /etc/hosts >> $tmp
17346         lctl set_param -n mdc.*.stats=clear
17347
17348         echo "Append to the same page"
17349         cat /etc/hosts >> $dom
17350         local num=$(get_mdc_stats $mdtidx ost_read)
17351         local ra=$(get_mdc_stats $mdtidx req_active)
17352         local rw=$(get_mdc_stats $mdtidx req_waittime)
17353
17354         [ -z $num ] || error "$num READ RPC occured"
17355         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17356         echo "... DONE"
17357
17358         # compare content
17359         cmp $tmp $dom || error "file miscompare"
17360
17361         cancel_lru_locks mdc
17362         lctl set_param -n mdc.*.stats=clear
17363
17364         echo "Open and read file"
17365         cat $dom > /dev/null
17366         local num=$(get_mdc_stats $mdtidx ost_read)
17367         local ra=$(get_mdc_stats $mdtidx req_active)
17368         local rw=$(get_mdc_stats $mdtidx req_waittime)
17369
17370         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17371         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17372         echo "... DONE"
17373
17374         # compare content
17375         cmp $tmp $dom || error "file miscompare"
17376
17377         return 0
17378 }
17379 run_test 271f "DoM: read on open (200K file and read tail)"
17380
17381 test_272a() {
17382         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17383                 skip "Need MDS version at least 2.11.50"
17384
17385         local dom=$DIR/$tdir/dom
17386         mkdir -p $DIR/$tdir
17387
17388         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17389         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17390                 error "failed to write data into $dom"
17391         local old_md5=$(md5sum $dom)
17392
17393         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17394                 error "failed to migrate to the same DoM component"
17395
17396         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17397                 error "layout was not changed silently"
17398
17399         local new_md5=$(md5sum $dom)
17400
17401         [ "$old_md5" != "$new_md5" ] &&
17402                 error "md5sum differ: $old_md5, $new_md5"
17403         return 0
17404 }
17405 run_test 272a "DoM migration: new layout with the same DOM component"
17406
17407 test_272b() {
17408         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17409                 skip "Need MDS version at least 2.11.50"
17410
17411         local dom=$DIR/$tdir/dom
17412         mkdir -p $DIR/$tdir
17413         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17414
17415         local mdtidx=$($LFS getstripe -m $dom)
17416         local mdtname=MDT$(printf %04x $mdtidx)
17417         local facet=mds$((mdtidx + 1))
17418
17419         local mdtfree1=$(do_facet $facet \
17420                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17421         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17422                 error "failed to write data into $dom"
17423         local old_md5=$(md5sum $dom)
17424         cancel_lru_locks mdc
17425         local mdtfree1=$(do_facet $facet \
17426                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17427
17428         $LFS migrate -c2 $dom ||
17429                 error "failed to migrate to the new composite layout"
17430         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17431                 error "MDT stripe was not removed"
17432
17433         cancel_lru_locks mdc
17434         local new_md5=$(md5sum $dom)
17435         [ "$old_md5" != "$new_md5" ] &&
17436                 error "$old_md5 != $new_md5"
17437
17438         # Skip free space checks with ZFS
17439         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17440                 local mdtfree2=$(do_facet $facet \
17441                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17442                 [ $mdtfree2 -gt $mdtfree1 ] ||
17443                         error "MDT space is not freed after migration"
17444         fi
17445         return 0
17446 }
17447 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17448
17449 test_272c() {
17450         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17451                 skip "Need MDS version at least 2.11.50"
17452
17453         local dom=$DIR/$tdir/$tfile
17454         mkdir -p $DIR/$tdir
17455         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17456
17457         local mdtidx=$($LFS getstripe -m $dom)
17458         local mdtname=MDT$(printf %04x $mdtidx)
17459         local facet=mds$((mdtidx + 1))
17460
17461         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17462                 error "failed to write data into $dom"
17463         local old_md5=$(md5sum $dom)
17464         cancel_lru_locks mdc
17465         local mdtfree1=$(do_facet $facet \
17466                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17467
17468         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17469                 error "failed to migrate to the new composite layout"
17470         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17471                 error "MDT stripe was not removed"
17472
17473         cancel_lru_locks mdc
17474         local new_md5=$(md5sum $dom)
17475         [ "$old_md5" != "$new_md5" ] &&
17476                 error "$old_md5 != $new_md5"
17477
17478         # Skip free space checks with ZFS
17479         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17480                 local mdtfree2=$(do_facet $facet \
17481                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17482                 [ $mdtfree2 -gt $mdtfree1 ] ||
17483                         error "MDS space is not freed after migration"
17484         fi
17485         return 0
17486 }
17487 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17488
17489 test_273a() {
17490         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] &&
17491                 skip "Need MDS version at least 2.11.50"
17492
17493         # Layout swap cannot be done if either file has DOM component,
17494         # this will never be supported, migration should be used instead
17495
17496         local dom=$DIR/$tdir/$tfile
17497         mkdir -p $DIR/$tdir
17498
17499         $LFS setstripe -c2 ${dom}_plain
17500         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17501         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17502                 error "can swap layout with DoM component"
17503         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17504                 error "can swap layout with DoM component"
17505
17506         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17507         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17508                 error "can swap layout with DoM component"
17509         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17510                 error "can swap layout with DoM component"
17511         return 0
17512 }
17513 run_test 273a "DoM: layout swapping should fail with DOM"
17514
17515 test_275() {
17516         remote_ost_nodsh && skip "remote OST with nodsh"
17517         [ $(lustre_version_code ost1) -lt $(version_code 2.10.57) ] &&
17518                 skip "Need OST version >= 2.10.57"
17519
17520         local file=$DIR/$tfile
17521         local oss
17522
17523         oss=$(comma_list $(osts_nodes))
17524
17525         dd if=/dev/urandom of=$file bs=1M count=2 ||
17526                 error "failed to create a file"
17527         cancel_lru_locks osc
17528
17529         #lock 1
17530         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17531                 error "failed to read a file"
17532
17533 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17534         $LCTL set_param fail_loc=0x8000031f
17535
17536         cancel_lru_locks osc &
17537         sleep 1
17538
17539 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17540         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17541         #IO takes another lock, but matches the PENDING one
17542         #and places it to the IO RPC
17543         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17544                 error "failed to read a file with PENDING lock"
17545 }
17546 run_test 275 "Read on a canceled duplicate lock"
17547
17548 test_276() {
17549         remote_ost_nodsh && skip "remote OST with nodsh"
17550         local pid
17551
17552         do_facet ost1 "(while true; do \
17553                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17554                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17555         pid=$!
17556
17557         for LOOP in $(seq 20); do
17558                 stop ost1
17559                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17560         done
17561         kill -9 $pid
17562         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17563                 rm $TMP/sanity_276_pid"
17564 }
17565 run_test 276 "Race between mount and obd_statfs"
17566
17567 cleanup_test_300() {
17568         trap 0
17569         umask $SAVE_UMASK
17570 }
17571 test_striped_dir() {
17572         local mdt_index=$1
17573         local stripe_count
17574         local stripe_index
17575
17576         mkdir -p $DIR/$tdir
17577
17578         SAVE_UMASK=$(umask)
17579         trap cleanup_test_300 RETURN EXIT
17580
17581         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17582                                                 $DIR/$tdir/striped_dir ||
17583                 error "set striped dir error"
17584
17585         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17586         [ "$mode" = "755" ] || error "expect 755 got $mode"
17587
17588         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17589                 error "getdirstripe failed"
17590         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17591         if [ "$stripe_count" != "2" ]; then
17592                 error "1:stripe_count is $stripe_count, expect 2"
17593         fi
17594         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17595         if [ "$stripe_count" != "2" ]; then
17596                 error "2:stripe_count is $stripe_count, expect 2"
17597         fi
17598
17599         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17600         if [ "$stripe_index" != "$mdt_index" ]; then
17601                 error "stripe_index is $stripe_index, expect $mdt_index"
17602         fi
17603
17604         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17605                 error "nlink error after create striped dir"
17606
17607         mkdir $DIR/$tdir/striped_dir/a
17608         mkdir $DIR/$tdir/striped_dir/b
17609
17610         stat $DIR/$tdir/striped_dir/a ||
17611                 error "create dir under striped dir failed"
17612         stat $DIR/$tdir/striped_dir/b ||
17613                 error "create dir under striped dir failed"
17614
17615         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17616                 error "nlink error after mkdir"
17617
17618         rmdir $DIR/$tdir/striped_dir/a
17619         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17620                 error "nlink error after rmdir"
17621
17622         rmdir $DIR/$tdir/striped_dir/b
17623         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17624                 error "nlink error after rmdir"
17625
17626         chattr +i $DIR/$tdir/striped_dir
17627         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17628                 error "immutable flags not working under striped dir!"
17629         chattr -i $DIR/$tdir/striped_dir
17630
17631         rmdir $DIR/$tdir/striped_dir ||
17632                 error "rmdir striped dir error"
17633
17634         cleanup_test_300
17635
17636         true
17637 }
17638
17639 test_300a() {
17640         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17641                 skip "skipped for lustre < 2.7.0"
17642         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17643         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17644
17645         test_striped_dir 0 || error "failed on striped dir on MDT0"
17646         test_striped_dir 1 || error "failed on striped dir on MDT0"
17647 }
17648 run_test 300a "basic striped dir sanity test"
17649
17650 test_300b() {
17651         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17652                 skip "skipped for lustre < 2.7.0"
17653         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17654         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17655
17656         local i
17657         local mtime1
17658         local mtime2
17659         local mtime3
17660
17661         test_mkdir $DIR/$tdir || error "mkdir fail"
17662         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17663                 error "set striped dir error"
17664         for i in {0..9}; do
17665                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17666                 sleep 1
17667                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17668                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17669                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17670                 sleep 1
17671                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17672                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17673                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17674         done
17675         true
17676 }
17677 run_test 300b "check ctime/mtime for striped dir"
17678
17679 test_300c() {
17680         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17681                 skip "skipped for lustre < 2.7.0"
17682         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17683         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17684
17685         local file_count
17686
17687         mkdir -p $DIR/$tdir
17688         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17689                 error "set striped dir error"
17690
17691         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17692                 error "chown striped dir failed"
17693
17694         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17695                 error "create 5k files failed"
17696
17697         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17698
17699         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17700
17701         rm -rf $DIR/$tdir
17702 }
17703 run_test 300c "chown && check ls under striped directory"
17704
17705 test_300d() {
17706         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
17707                 skip "skipped for lustre < 2.7.0"
17708         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17709         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17710
17711         local stripe_count
17712         local file
17713
17714         mkdir -p $DIR/$tdir
17715         $SETSTRIPE -c 2 $DIR/$tdir
17716
17717         #local striped directory
17718         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17719                 error "set striped dir error"
17720         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17721                 error "create 10 files failed"
17722
17723         #remote striped directory
17724         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17725                 error "set striped dir error"
17726         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17727                 error "create 10 files failed"
17728
17729         for file in $(find $DIR/$tdir); do
17730                 stripe_count=$($LFS getstripe -c $file)
17731                 [ $stripe_count -eq 2 ] ||
17732                         error "wrong stripe $stripe_count for $file"
17733         done
17734
17735         rm -rf $DIR/$tdir
17736 }
17737 run_test 300d "check default stripe under striped directory"
17738
17739 test_300e() {
17740         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17741                 skip "Need MDS version at least 2.7.55"
17742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17743         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17744
17745         local stripe_count
17746         local file
17747
17748         mkdir -p $DIR/$tdir
17749
17750         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17751                 error "set striped dir error"
17752
17753         touch $DIR/$tdir/striped_dir/a
17754         touch $DIR/$tdir/striped_dir/b
17755         touch $DIR/$tdir/striped_dir/c
17756
17757         mkdir $DIR/$tdir/striped_dir/dir_a
17758         mkdir $DIR/$tdir/striped_dir/dir_b
17759         mkdir $DIR/$tdir/striped_dir/dir_c
17760
17761         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17762                 error "set striped adir under striped dir error"
17763
17764         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17765                 error "set striped bdir under striped dir error"
17766
17767         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17768                 error "set striped cdir under striped dir error"
17769
17770         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17771                 error "rename dir under striped dir fails"
17772
17773         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17774                 error "rename dir under different stripes fails"
17775
17776         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17777                 error "rename file under striped dir should succeed"
17778
17779         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17780                 error "rename dir under striped dir should succeed"
17781
17782         rm -rf $DIR/$tdir
17783 }
17784 run_test 300e "check rename under striped directory"
17785
17786 test_300f() {
17787         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17788         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
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         rm -rf $DIR/$tdir
17796         mkdir -p $DIR/$tdir
17797
17798         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17799                 error "set striped dir error"
17800
17801         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17802                 error "set striped dir error"
17803
17804         touch $DIR/$tdir/striped_dir/a
17805         mkdir $DIR/$tdir/striped_dir/dir_a
17806         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17807                 error "create striped dir under striped dir fails"
17808
17809         touch $DIR/$tdir/striped_dir1/b
17810         mkdir $DIR/$tdir/striped_dir1/dir_b
17811         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17812                 error "create striped dir under striped dir fails"
17813
17814         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17815                 error "rename dir under different striped dir should fail"
17816
17817         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17818                 error "rename striped dir under diff striped dir should fail"
17819
17820         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17821                 error "rename file under diff striped dirs fails"
17822
17823         rm -rf $DIR/$tdir
17824 }
17825 run_test 300f "check rename cross striped directory"
17826
17827 test_300_check_default_striped_dir()
17828 {
17829         local dirname=$1
17830         local default_count=$2
17831         local default_index=$3
17832         local stripe_count
17833         local stripe_index
17834         local dir_stripe_index
17835         local dir
17836
17837         echo "checking $dirname $default_count $default_index"
17838         $LFS setdirstripe -D -c $default_count -i $default_index \
17839                                 -t all_char $DIR/$tdir/$dirname ||
17840                 error "set default stripe on striped dir error"
17841         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
17842         [ $stripe_count -eq $default_count ] ||
17843                 error "expect $default_count get $stripe_count for $dirname"
17844
17845         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
17846         [ $stripe_index -eq $default_index ] ||
17847                 error "expect $default_index get $stripe_index for $dirname"
17848
17849         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
17850                                                 error "create dirs failed"
17851
17852         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
17853         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
17854         for dir in $(find $DIR/$tdir/$dirname/*); do
17855                 stripe_count=$($LFS getdirstripe -c $dir)
17856                 [ $stripe_count -eq $default_count ] ||
17857                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
17858                 error "stripe count $default_count != $stripe_count for $dir"
17859
17860                 stripe_index=$($LFS getdirstripe -i $dir)
17861                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
17862                         error "$stripe_index != $default_index for $dir"
17863
17864                 #check default stripe
17865                 stripe_count=$($LFS getdirstripe -D -c $dir)
17866                 [ $stripe_count -eq $default_count ] ||
17867                 error "default count $default_count != $stripe_count for $dir"
17868
17869                 stripe_index=$($LFS getdirstripe -D -i $dir)
17870                 [ $stripe_index -eq $default_index ] ||
17871                 error "default index $default_index != $stripe_index for $dir"
17872         done
17873         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
17874 }
17875
17876 test_300g() {
17877         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17878         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17879                 skip "Need MDS version at least 2.7.55"
17880
17881         local dir
17882         local stripe_count
17883         local stripe_index
17884
17885         mkdir $DIR/$tdir
17886         mkdir $DIR/$tdir/normal_dir
17887
17888         #Checking when client cache stripe index
17889         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
17890         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
17891                 error "create striped_dir failed"
17892
17893         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
17894                 error "create dir0 fails"
17895         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
17896         [ $stripe_index -eq 0 ] ||
17897                 error "dir0 expect index 0 got $stripe_index"
17898
17899         mkdir $DIR/$tdir/striped_dir/dir1 ||
17900                 error "create dir1 fails"
17901         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
17902         [ $stripe_index -eq 1 ] ||
17903                 error "dir1 expect index 1 got $stripe_index"
17904
17905         #check default stripe count/stripe index
17906         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
17907         test_300_check_default_striped_dir normal_dir 1 0
17908         test_300_check_default_striped_dir normal_dir 2 1
17909         test_300_check_default_striped_dir normal_dir 2 -1
17910
17911         #delete default stripe information
17912         echo "delete default stripeEA"
17913         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
17914                 error "set default stripe on striped dir error"
17915
17916         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
17917         for dir in $(find $DIR/$tdir/normal_dir/*); do
17918                 stripe_count=$($LFS getdirstripe -c $dir)
17919                 [ $stripe_count -eq 0 ] ||
17920                         error "expect 1 get $stripe_count for $dir"
17921                 stripe_index=$($LFS getdirstripe -i $dir)
17922                 [ $stripe_index -eq 0 ] ||
17923                         error "expect 0 get $stripe_index for $dir"
17924         done
17925 }
17926 run_test 300g "check default striped directory for normal directory"
17927
17928 test_300h() {
17929         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17930         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17931                 skip "Need MDS version at least 2.7.55"
17932
17933         local dir
17934         local stripe_count
17935
17936         mkdir $DIR/$tdir
17937         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17938                 error "set striped dir error"
17939
17940         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
17941         test_300_check_default_striped_dir striped_dir 1 0
17942         test_300_check_default_striped_dir striped_dir 2 1
17943         test_300_check_default_striped_dir striped_dir 2 -1
17944
17945         #delete default stripe information
17946         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
17947                 error "set default stripe on striped dir error"
17948
17949         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
17950         for dir in $(find $DIR/$tdir/striped_dir/*); do
17951                 stripe_count=$($LFS getdirstripe -c $dir)
17952                 [ $stripe_count -eq 0 ] ||
17953                         error "expect 1 get $stripe_count for $dir"
17954         done
17955 }
17956 run_test 300h "check default striped directory for striped directory"
17957
17958 test_300i() {
17959         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17960         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17961         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
17962                 skip "Need MDS version at least 2.7.55"
17963
17964         local stripe_count
17965         local file
17966
17967         mkdir $DIR/$tdir
17968
17969         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
17970                 error "set striped dir error"
17971
17972         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
17973                 error "create files under striped dir failed"
17974
17975         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
17976                 error "set striped hashdir error"
17977
17978         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
17979                 error "create dir0 under hash dir failed"
17980         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
17981                 error "create dir1 under hash dir failed"
17982
17983         # unfortunately, we need to umount to clear dir layout cache for now
17984         # once we fully implement dir layout, we can drop this
17985         umount_client $MOUNT || error "umount failed"
17986         mount_client $MOUNT || error "mount failed"
17987
17988         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
17989         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
17990         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
17991
17992         #set the stripe to be unknown hash type
17993         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
17994         $LCTL set_param fail_loc=0x1901
17995         for ((i = 0; i < 10; i++)); do
17996                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
17997                         error "stat f-$i failed"
17998                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
17999         done
18000
18001         touch $DIR/$tdir/striped_dir/f0 &&
18002                 error "create under striped dir with unknown hash should fail"
18003
18004         $LCTL set_param fail_loc=0
18005
18006         umount_client $MOUNT || error "umount failed"
18007         mount_client $MOUNT || error "mount failed"
18008
18009         return 0
18010 }
18011 run_test 300i "client handle unknown hash type striped directory"
18012
18013 test_300j() {
18014         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18015         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18016         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18017                 skip "Need MDS version at least 2.7.55"
18018
18019         local stripe_count
18020         local file
18021
18022         mkdir $DIR/$tdir
18023
18024         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18025         $LCTL set_param fail_loc=0x1702
18026         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18027                 error "set striped dir error"
18028
18029         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18030                 error "create files under striped dir failed"
18031
18032         $LCTL set_param fail_loc=0
18033
18034         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18035
18036         return 0
18037 }
18038 run_test 300j "test large update record"
18039
18040 test_300k() {
18041         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18042         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18043         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18044                 skip "Need MDS version at least 2.7.55"
18045
18046         local stripe_count
18047         local file
18048
18049         mkdir $DIR/$tdir
18050
18051         #define OBD_FAIL_LARGE_STRIPE   0x1703
18052         $LCTL set_param fail_loc=0x1703
18053         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18054                 error "set striped dir error"
18055         $LCTL set_param fail_loc=0
18056
18057         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18058                 error "getstripeddir fails"
18059         rm -rf $DIR/$tdir/striped_dir ||
18060                 error "unlink striped dir fails"
18061
18062         return 0
18063 }
18064 run_test 300k "test large striped directory"
18065
18066 test_300l() {
18067         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18068         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18069         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18070                 skip "Need MDS version at least 2.7.55"
18071
18072         local stripe_index
18073
18074         test_mkdir -p $DIR/$tdir/striped_dir
18075         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18076                         error "chown $RUNAS_ID failed"
18077         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18078                 error "set default striped dir failed"
18079
18080         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18081         $LCTL set_param fail_loc=0x80000158
18082         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18083
18084         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18085         [ $stripe_index -eq 1 ] ||
18086                 error "expect 1 get $stripe_index for $dir"
18087 }
18088 run_test 300l "non-root user to create dir under striped dir with stale layout"
18089
18090 test_300m() {
18091         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18092         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18093         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18094                 skip "Need MDS version at least 2.7.55"
18095
18096         mkdir -p $DIR/$tdir/striped_dir
18097         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18098                 error "set default stripes dir error"
18099
18100         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18101
18102         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18103         [ $stripe_count -eq 0 ] ||
18104                         error "expect 0 get $stripe_count for a"
18105
18106         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18107                 error "set default stripes dir error"
18108
18109         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18110
18111         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18112         [ $stripe_count -eq 0 ] ||
18113                         error "expect 0 get $stripe_count for b"
18114
18115         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18116                 error "set default stripes dir error"
18117
18118         mkdir $DIR/$tdir/striped_dir/c &&
18119                 error "default stripe_index is invalid, mkdir c should fails"
18120
18121         rm -rf $DIR/$tdir || error "rmdir fails"
18122 }
18123 run_test 300m "setstriped directory on single MDT FS"
18124
18125 cleanup_300n() {
18126         local list=$(comma_list $(mdts_nodes))
18127
18128         trap 0
18129         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18130 }
18131
18132 test_300n() {
18133         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18134         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18135         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18136                 skip "Need MDS version at least 2.7.55"
18137         remote_mds_nodsh && skip "remote MDS with nodsh"
18138
18139         local stripe_index
18140         local list=$(comma_list $(mdts_nodes))
18141
18142         trap cleanup_300n RETURN EXIT
18143         mkdir -p $DIR/$tdir
18144         chmod 777 $DIR/$tdir
18145         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18146                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18147                 error "create striped dir succeeds with gid=0"
18148
18149         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18150         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18151                 error "create striped dir fails with gid=-1"
18152
18153         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18154         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18155                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18156                 error "set default striped dir succeeds with gid=0"
18157
18158
18159         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18160         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18161                 error "set default striped dir fails with gid=-1"
18162
18163
18164         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18165         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18166                                         error "create test_dir fails"
18167         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18168                                         error "create test_dir1 fails"
18169         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18170                                         error "create test_dir2 fails"
18171         cleanup_300n
18172 }
18173 run_test 300n "non-root user to create dir under striped dir with default EA"
18174
18175 test_300o() {
18176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18177         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18178         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18179                 skip "Need MDS version at least 2.7.55"
18180
18181         local numfree1
18182         local numfree2
18183
18184         mkdir -p $DIR/$tdir
18185
18186         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18187         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18188         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18189                 skip "not enough free inodes $numfree1 $numfree2"
18190         fi
18191
18192         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18193         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18194         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18195                 skip "not enough free space $numfree1 $numfree2"
18196         fi
18197
18198         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18199                 error "setdirstripe fails"
18200
18201         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18202                 error "create dirs fails"
18203
18204         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18205         ls $DIR/$tdir/striped_dir > /dev/null ||
18206                 error "ls striped dir fails"
18207         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18208                 error "unlink big striped dir fails"
18209 }
18210 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18211
18212 test_300p() {
18213         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18214         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18215         remote_mds_nodsh && skip "remote MDS with nodsh"
18216
18217         mkdir -p $DIR/$tdir
18218
18219         #define OBD_FAIL_OUT_ENOSPC     0x1704
18220         do_facet mds2 lctl set_param fail_loc=0x80001704
18221         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18222                  && error "create striped directory should fail"
18223
18224         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18225
18226         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18227         true
18228 }
18229 run_test 300p "create striped directory without space"
18230
18231 test_300q() {
18232         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18233         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18234
18235         local fd=$(free_fd)
18236         local cmd="exec $fd<$tdir"
18237         cd $DIR
18238         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18239         eval $cmd
18240         cmd="exec $fd<&-"
18241         trap "eval $cmd" EXIT
18242         cd $tdir || error "cd $tdir fails"
18243         rmdir  ../$tdir || error "rmdir $tdir fails"
18244         mkdir local_dir && error "create dir succeeds"
18245         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18246         eval $cmd
18247         return 0
18248 }
18249 run_test 300q "create remote directory under orphan directory"
18250
18251 prepare_remote_file() {
18252         mkdir $DIR/$tdir/src_dir ||
18253                 error "create remote source failed"
18254
18255         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18256                  error "cp to remote source failed"
18257         touch $DIR/$tdir/src_dir/a
18258
18259         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18260                 error "create remote target dir failed"
18261
18262         touch $DIR/$tdir/tgt_dir/b
18263
18264         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18265                 error "rename dir cross MDT failed!"
18266
18267         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18268                 error "src_child still exists after rename"
18269
18270         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18271                 error "missing file(a) after rename"
18272
18273         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18274                 error "diff after rename"
18275 }
18276
18277 test_310a() {
18278         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18279         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18280
18281         local remote_file=$DIR/$tdir/tgt_dir/b
18282
18283         mkdir -p $DIR/$tdir
18284
18285         prepare_remote_file || error "prepare remote file failed"
18286
18287         #open-unlink file
18288         $OPENUNLINK $remote_file $remote_file ||
18289                 error "openunlink $remote_file failed"
18290         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18291 }
18292 run_test 310a "open unlink remote file"
18293
18294 test_310b() {
18295         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18296         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18297
18298         local remote_file=$DIR/$tdir/tgt_dir/b
18299
18300         mkdir -p $DIR/$tdir
18301
18302         prepare_remote_file || error "prepare remote file failed"
18303
18304         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18305         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18306         $CHECKSTAT -t file $remote_file || error "check file failed"
18307 }
18308 run_test 310b "unlink remote file with multiple links while open"
18309
18310 test_310c() {
18311         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18312         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18313
18314         local remote_file=$DIR/$tdir/tgt_dir/b
18315
18316         mkdir -p $DIR/$tdir
18317
18318         prepare_remote_file || error "prepare remote file failed"
18319
18320         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18321         multiop_bg_pause $remote_file O_uc ||
18322                         error "mulitop failed for remote file"
18323         MULTIPID=$!
18324         $MULTIOP $DIR/$tfile Ouc
18325         kill -USR1 $MULTIPID
18326         wait $MULTIPID
18327 }
18328 run_test 310c "open-unlink remote file with multiple links"
18329
18330 #LU-4825
18331 test_311() {
18332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18333         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18334         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
18335                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18336         remote_mds_nodsh && skip "remote MDS with nodsh"
18337
18338         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18339
18340         mkdir -p $DIR/$tdir
18341         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18342         createmany -o $DIR/$tdir/$tfile. 1000
18343
18344         # statfs data is not real time, let's just calculate it
18345         old_iused=$((old_iused + 1000))
18346
18347         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
18348                         osp.*OST0000*MDT0000.create_count")
18349         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
18350                                 osp.*OST0000*MDT0000.max_create_count")
18351         for idx in $(seq $MDSCOUNT); do
18352                 do_facet mds$idx "lctl set_param -n \
18353                         osp.*OST0000*MDT000?.max_create_count=0"
18354         done
18355
18356         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18357         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18358         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18359
18360         unlinkmany $DIR/$tdir/$tfile. 1000
18361
18362         for idx in $(seq $MDSCOUNT); do
18363                 do_facet mds$idx "lctl set_param -n \
18364                         osp.*OST0000*MDT000?.max_create_count=$max_count"
18365                 do_facet mds$idx "lctl set_param -n \
18366                         osp.*OST0000*MDT000?.create_count=$count"
18367         done
18368
18369         local new_iused
18370         for i in $(seq 120); do
18371                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18372                 # system may be too busy to destroy all objs in time, use
18373                 # a somewhat small value to not fail autotest
18374                 [ $((old_iused - new_iused)) -gt 400 ] && break
18375                 sleep 1
18376         done
18377
18378         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18379         [ $((old_iused - new_iused)) -gt 400 ] ||
18380                 error "objs not destroyed after unlink"
18381 }
18382 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18383
18384 zfs_oid_to_objid()
18385 {
18386         local ost=$1
18387         local objid=$2
18388
18389         local vdevdir=$(dirname $(facet_vdevice $ost))
18390         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18391         local zfs_zapid=$(do_facet $ost $cmd |
18392                           grep -w "/O/0/d$((objid%32))" -C 5 |
18393                           awk '/Object/{getline; print $1}')
18394         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18395                           awk "/$objid = /"'{printf $3}')
18396
18397         echo $zfs_objid
18398 }
18399
18400 zfs_object_blksz() {
18401         local ost=$1
18402         local objid=$2
18403
18404         local vdevdir=$(dirname $(facet_vdevice $ost))
18405         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18406         local blksz=$(do_facet $ost $cmd $objid |
18407                       awk '/dblk/{getline; printf $4}')
18408
18409         case "${blksz: -1}" in
18410                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18411                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18412                 *) ;;
18413         esac
18414
18415         echo $blksz
18416 }
18417
18418 test_312() { # LU-4856
18419         remote_ost_nodsh && skip "remote OST with nodsh"
18420         [ $(facet_fstype ost1) = "zfs" ] ||
18421                 skip_env "the test only applies to zfs"
18422
18423         local max_blksz=$(do_facet ost1 \
18424                           $ZFS get -p recordsize $(facet_device ost1) |
18425                           awk '!/VALUE/{print $3}')
18426
18427         # to make life a little bit easier
18428         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18429         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18430
18431         local tf=$DIR/$tdir/$tfile
18432         touch $tf
18433         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18434
18435         # Get ZFS object id
18436         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18437         # block size change by sequential overwrite
18438         local bs
18439
18440         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18441                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18442
18443                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18444                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18445         done
18446         rm -f $tf
18447
18448         # block size change by sequential append write
18449         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18450         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18451         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18452         local count
18453
18454         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18455                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18456                         oflag=sync conv=notrunc
18457
18458                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18459                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18460                         error "blksz error, actual $blksz, " \
18461                                 "expected: 2 * $count * $PAGE_SIZE"
18462         done
18463         rm -f $tf
18464
18465         # random write
18466         touch $tf
18467         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18468         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18469
18470         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18471         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18472         [ $blksz -eq $PAGE_SIZE ] ||
18473                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18474
18475         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18476         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18477         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18478
18479         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18480         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18481         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18482 }
18483 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18484
18485 test_313() {
18486         remote_ost_nodsh && skip "remote OST with nodsh"
18487
18488         local file=$DIR/$tfile
18489
18490         rm -f $file
18491         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18492
18493         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18494         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18495         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18496                 error "write should failed"
18497         do_facet ost1 "$LCTL set_param fail_loc=0"
18498         rm -f $file
18499 }
18500 run_test 313 "io should fail after last_rcvd update fail"
18501
18502 test_314() {
18503         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18504
18505         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18506         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18507         rm -f $DIR/$tfile
18508         wait_delete_completed
18509         do_facet ost1 "$LCTL set_param fail_loc=0"
18510 }
18511 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18512
18513 test_315() { # LU-618
18514         local file=$DIR/$tfile
18515         rm -f $file
18516
18517         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18518                 error "multiop file write failed"
18519         $MULTIOP $file oO_RDONLY:r4063232_c &
18520         PID=$!
18521
18522         sleep 2
18523
18524         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18525         kill -USR1 $PID
18526
18527         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18528         rm -f $file
18529 }
18530 run_test 315 "read should be accounted"
18531
18532 test_316() {
18533         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18534         large_xattr_enabled || skip_env "ea_inode feature disabled"
18535
18536         rm -rf $DIR/$tdir/d
18537         mkdir -p $DIR/$tdir/d
18538         chown nobody $DIR/$tdir/d
18539         touch $DIR/$tdir/d/file
18540
18541         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18542 }
18543 run_test 316 "lfs mv"
18544
18545 test_317() {
18546         local trunc_sz
18547         local grant_blk_size
18548
18549         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18550                 skip "LU-10370: no implementation for ZFS" && return
18551         fi
18552
18553         stack_trap "rm -f $DIR/$tfile" EXIT
18554         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18555                         awk '/grant_block_size:/ { print $2; exit; }')
18556         #
18557         # Create File of size 5M. Truncate it to below size's and verify
18558         # blocks count.
18559         #
18560         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18561                 error "Create file : $DIR/$tfile"
18562
18563         for trunc_sz in 2097152 4097 4000 509 0; do
18564                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18565                         error "truncate $tfile to $trunc_sz failed"
18566                 local sz=$(stat --format=%s $DIR/$tfile)
18567                 local blk=$(stat --format=%b $DIR/$tfile)
18568                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18569                                      grant_blk_size) * 8))
18570
18571                 if [[ $blk -ne $trunc_blk ]]; then
18572                         $(which stat) $DIR/$tfile
18573                         error "Expected Block $trunc_blk got $blk for $tfile"
18574                 fi
18575
18576                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18577                         error "Expected Size $trunc_sz got $sz for $tfile"
18578         done
18579
18580         #
18581         # sparse file test
18582         # Create file with a hole and write actual two blocks. Block count
18583         # must be 16.
18584         #
18585         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18586                 conv=fsync || error "Create file : $DIR/$tfile"
18587
18588         # Calculate the final truncate size.
18589         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18590
18591         #
18592         # truncate to size $trunc_sz bytes. Strip the last block
18593         # The block count must drop to 8
18594         #
18595         $TRUNCATE $DIR/$tfile $trunc_sz ||
18596                 error "truncate $tfile to $trunc_sz failed"
18597
18598         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18599         sz=$(stat --format=%s $DIR/$tfile)
18600         blk=$(stat --format=%b $DIR/$tfile)
18601
18602         if [[ $blk -ne $trunc_bsz ]]; then
18603                 $(which stat) $DIR/$tfile
18604                 error "Expected Block $trunc_bsz got $blk for $tfile"
18605         fi
18606
18607         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18608                 error "Expected Size $trunc_sz got $sz for $tfile"
18609 }
18610 run_test 317 "Verify blocks get correctly update after truncate"
18611
18612 test_fake_rw() {
18613         local read_write=$1
18614         if [ "$read_write" = "write" ]; then
18615                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18616         elif [ "$read_write" = "read" ]; then
18617                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18618         else
18619                 error "argument error"
18620         fi
18621
18622         # turn off debug for performance testing
18623         local saved_debug=$($LCTL get_param -n debug)
18624         $LCTL set_param debug=0
18625
18626         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18627
18628         # get ost1 size - lustre-OST0000
18629         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18630         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18631         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18632
18633         if [ "$read_write" = "read" ]; then
18634                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18635         fi
18636
18637         local start_time=$(date +%s.%N)
18638         $dd_cmd bs=1M count=$blocks oflag=sync ||
18639                 error "real dd $read_write error"
18640         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18641
18642         if [ "$read_write" = "write" ]; then
18643                 rm -f $DIR/$tfile
18644         fi
18645
18646         # define OBD_FAIL_OST_FAKE_RW           0x238
18647         do_facet ost1 $LCTL set_param fail_loc=0x238
18648
18649         local start_time=$(date +%s.%N)
18650         $dd_cmd bs=1M count=$blocks oflag=sync ||
18651                 error "fake dd $read_write error"
18652         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18653
18654         if [ "$read_write" = "write" ]; then
18655                 # verify file size
18656                 cancel_lru_locks osc
18657                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18658                         error "$tfile size not $blocks MB"
18659         fi
18660         do_facet ost1 $LCTL set_param fail_loc=0
18661
18662         echo "fake $read_write $duration_fake vs. normal $read_write" \
18663                 "$duration in seconds"
18664         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18665                 error_not_in_vm "fake write is slower"
18666
18667         $LCTL set_param -n debug="$saved_debug"
18668         rm -f $DIR/$tfile
18669 }
18670 test_399a() { # LU-7655 for OST fake write
18671         remote_ost_nodsh && skip "remote OST with nodsh"
18672
18673         test_fake_rw write
18674 }
18675 run_test 399a "fake write should not be slower than normal write"
18676
18677 test_399b() { # LU-8726 for OST fake read
18678         remote_ost_nodsh && skip "remote OST with nodsh"
18679         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
18680                 skip_env "ldiskfs only test"
18681         fi
18682
18683         test_fake_rw read
18684 }
18685 run_test 399b "fake read should not be slower than normal read"
18686
18687 test_400a() { # LU-1606, was conf-sanity test_74
18688         if ! which $CC > /dev/null 2>&1; then
18689                 skip_env "$CC is not installed"
18690         fi
18691
18692         local extra_flags=''
18693         local out=$TMP/$tfile
18694         local prefix=/usr/include/lustre
18695         local prog
18696
18697         if ! [[ -d $prefix ]]; then
18698                 # Assume we're running in tree and fixup the include path.
18699                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18700                 extra_flags+=" -L$LUSTRE/utils/.lib"
18701         fi
18702
18703         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18704                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18705                         error "client api broken"
18706         done
18707         rm -f $out
18708 }
18709 run_test 400a "Lustre client api program can compile and link"
18710
18711 test_400b() { # LU-1606, LU-5011
18712         local header
18713         local out=$TMP/$tfile
18714         local prefix=/usr/include/linux/lustre
18715
18716         # We use a hard coded prefix so that this test will not fail
18717         # when run in tree. There are headers in lustre/include/lustre/
18718         # that are not packaged (like lustre_idl.h) and have more
18719         # complicated include dependencies (like config.h and lnet/types.h).
18720         # Since this test about correct packaging we just skip them when
18721         # they don't exist (see below) rather than try to fixup cppflags.
18722
18723         if ! which $CC > /dev/null 2>&1; then
18724                 skip_env "$CC is not installed"
18725         fi
18726
18727         for header in $prefix/*.h; do
18728                 if ! [[ -f "$header" ]]; then
18729                         continue
18730                 fi
18731
18732                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18733                         continue # lustre_ioctl.h is internal header
18734                 fi
18735
18736                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18737                         error "cannot compile '$header'"
18738         done
18739         rm -f $out
18740 }
18741 run_test 400b "packaged headers can be compiled"
18742
18743 test_401a() { #LU-7437
18744         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18745         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18746
18747         #count the number of parameters by "list_param -R"
18748         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18749         #count the number of parameters by listing proc files
18750         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18751         echo "proc_dirs='$proc_dirs'"
18752         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18753         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18754                       sort -u | wc -l)
18755
18756         [ $params -eq $procs ] ||
18757                 error "found $params parameters vs. $procs proc files"
18758
18759         # test the list_param -D option only returns directories
18760         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18761         #count the number of parameters by listing proc directories
18762         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18763                 sort -u | wc -l)
18764
18765         [ $params -eq $procs ] ||
18766                 error "found $params parameters vs. $procs proc files"
18767 }
18768 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18769
18770 test_401b() {
18771         local save=$($LCTL get_param -n jobid_var)
18772         local tmp=testing
18773
18774         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18775                 error "no error returned when setting bad parameters"
18776
18777         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18778         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18779
18780         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18781         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18782         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18783 }
18784 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18785
18786 test_401c() {
18787         local jobid_var_old=$($LCTL get_param -n jobid_var)
18788         local jobid_var_new
18789
18790         $LCTL set_param jobid_var= &&
18791                 error "no error returned for 'set_param a='"
18792
18793         jobid_var_new=$($LCTL get_param -n jobid_var)
18794         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18795                 error "jobid_var was changed by setting without value"
18796
18797         $LCTL set_param jobid_var &&
18798                 error "no error returned for 'set_param a'"
18799
18800         jobid_var_new=$($LCTL get_param -n jobid_var)
18801         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18802                 error "jobid_var was changed by setting without value"
18803 }
18804 run_test 401c "Verify 'lctl set_param' without value fails in either format."
18805
18806 test_401d() {
18807         local jobid_var_old=$($LCTL get_param -n jobid_var)
18808         local jobid_var_new
18809         local new_value="foo=bar"
18810
18811         $LCTL set_param jobid_var=$new_value ||
18812                 error "'set_param a=b' did not accept a value containing '='"
18813
18814         jobid_var_new=$($LCTL get_param -n jobid_var)
18815         [[ "$jobid_var_new" == "$new_value" ]] ||
18816                 error "'set_param a=b' failed on a value containing '='"
18817
18818         # Reset the jobid_var to test the other format
18819         $LCTL set_param jobid_var=$jobid_var_old
18820         jobid_var_new=$($LCTL get_param -n jobid_var)
18821         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18822                 error "failed to reset jobid_var"
18823
18824         $LCTL set_param jobid_var $new_value ||
18825                 error "'set_param a b' did not accept a value containing '='"
18826
18827         jobid_var_new=$($LCTL get_param -n jobid_var)
18828         [[ "$jobid_var_new" == "$new_value" ]] ||
18829                 error "'set_param a b' failed on a value containing '='"
18830
18831         $LCTL set_param jobid_var $jobid_var_old
18832         jobid_var_new=$($LCTL get_param -n jobid_var)
18833         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
18834                 error "failed to reset jobid_var"
18835 }
18836 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
18837
18838 test_402() {
18839         local server_version=$(lustre_version_code $SINGLEMDS)
18840         [[ $server_version -ge $(version_code 2.7.66) ]] ||
18841         [[ $server_version -ge $(version_code 2.7.18.4) &&
18842                 $server_version -lt $(version_code 2.7.50) ]] ||
18843         [[ $server_version -ge $(version_code 2.7.2) &&
18844                 $server_version -lt $(version_code 2.7.11) ]] ||
18845                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
18846         remote_mds_nodsh && skip "remote MDS with nodsh"
18847
18848         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
18849 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
18850         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
18851         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
18852                 echo "Touch failed - OK"
18853 }
18854 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
18855
18856 test_403() {
18857         local file1=$DIR/$tfile.1
18858         local file2=$DIR/$tfile.2
18859         local tfile=$TMP/$tfile
18860
18861         rm -f $file1 $file2 $tfile
18862
18863         touch $file1
18864         ln $file1 $file2
18865
18866         # 30 sec OBD_TIMEOUT in ll_getattr()
18867         # right before populating st_nlink
18868         $LCTL set_param fail_loc=0x80001409
18869         stat -c %h $file1 > $tfile &
18870
18871         # create an alias, drop all locks and reclaim the dentry
18872         < $file2
18873         cancel_lru_locks mdc
18874         cancel_lru_locks osc
18875         sysctl -w vm.drop_caches=2
18876
18877         wait
18878
18879         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
18880
18881         rm -f $tfile $file1 $file2
18882 }
18883 run_test 403 "i_nlink should not drop to zero due to aliasing"
18884
18885 test_404() { # LU-6601
18886         local server_version=$(lustre_version_code $SINGLEMDS)
18887         [[ $server_version -ge $(version_code 2.8.53) ]] ||
18888                 skip "Need server version newer than 2.8.52"
18889         remote_mds_nodsh && skip "remote MDS with nodsh"
18890
18891         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
18892                 awk '/osp .*-osc-MDT/ { print $4}')
18893
18894         local osp
18895         for osp in $mosps; do
18896                 echo "Deactivate: " $osp
18897                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
18898                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18899                         awk -vp=$osp '$4 == p { print $2 }')
18900                 [ $stat = IN ] || {
18901                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18902                         error "deactivate error"
18903                 }
18904                 echo "Activate: " $osp
18905                 do_facet $SINGLEMDS $LCTL --device %$osp activate
18906                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
18907                         awk -vp=$osp '$4 == p { print $2 }')
18908                 [ $stat = UP ] || {
18909                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
18910                         error "activate error"
18911                 }
18912         done
18913 }
18914 run_test 404 "validate manual {de}activated works properly for OSPs"
18915
18916 test_405() {
18917         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
18918         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
18919                 skip "Layout swap lock is not supported"
18920         check_swap_layouts_support
18921
18922         test_mkdir $DIR/$tdir
18923         swap_lock_test -d $DIR/$tdir ||
18924                 error "One layout swap locked test failed"
18925 }
18926 run_test 405 "Various layout swap lock tests"
18927
18928 test_406() {
18929         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18930         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
18931         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
18932         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18933         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
18934                 skip "Need MDS version at least 2.8.50"
18935
18936         local def_stripe_size=$($LFS getstripe -S $MOUNT)
18937         local test_pool=$TESTNAME
18938
18939         if ! combined_mgs_mds ; then
18940                 mount_mgs_client
18941         fi
18942         pool_add $test_pool || error "pool_add failed"
18943         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
18944                 error "pool_add_targets failed"
18945
18946         save_layout_restore_at_exit $MOUNT
18947
18948         # parent set default stripe count only, child will stripe from both
18949         # parent and fs default
18950         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
18951                 error "setstripe $MOUNT failed"
18952         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
18953         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
18954         for i in $(seq 10); do
18955                 local f=$DIR/$tdir/$tfile.$i
18956                 touch $f || error "touch failed"
18957                 local count=$($LFS getstripe -c $f)
18958                 [ $count -eq $OSTCOUNT ] ||
18959                         error "$f stripe count $count != $OSTCOUNT"
18960                 local offset=$($LFS getstripe -i $f)
18961                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
18962                 local size=$($LFS getstripe -S $f)
18963                 [ $size -eq $((def_stripe_size * 2)) ] ||
18964                         error "$f stripe size $size != $((def_stripe_size * 2))"
18965                 local pool=$($LFS getstripe -p $f)
18966                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
18967         done
18968
18969         # change fs default striping, delete parent default striping, now child
18970         # will stripe from new fs default striping only
18971         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
18972                 error "change $MOUNT default stripe failed"
18973         $LFS setstripe -c 0 $DIR/$tdir ||
18974                 error "delete $tdir default stripe failed"
18975         for i in $(seq 11 20); do
18976                 local f=$DIR/$tdir/$tfile.$i
18977                 touch $f || error "touch $f failed"
18978                 local count=$($LFS getstripe -c $f)
18979                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
18980                 local offset=$($LFS getstripe -i $f)
18981                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
18982                 local size=$($LFS getstripe -S $f)
18983                 [ $size -eq $def_stripe_size ] ||
18984                         error "$f stripe size $size != $def_stripe_size"
18985                 local pool=$($LFS getstripe -p $f)
18986                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
18987         done
18988
18989         unlinkmany $DIR/$tdir/$tfile. 1 20
18990
18991         local f=$DIR/$tdir/$tfile
18992         pool_remove_all_targets $test_pool $f
18993         pool_remove $test_pool $f
18994
18995         if ! combined_mgs_mds ; then
18996                 umount_mgs_client
18997         fi
18998 }
18999 run_test 406 "DNE support fs default striping"
19000
19001 test_407() {
19002         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19003         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
19004                 skip "Need MDS version at least 2.8.55"
19005         remote_mds_nodsh && skip "remote MDS with nodsh"
19006
19007         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19008                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19009         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19010                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19011         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19012
19013         #define OBD_FAIL_DT_TXN_STOP    0x2019
19014         for idx in $(seq $MDSCOUNT); do
19015                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19016         done
19017         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19018         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19019                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19020         true
19021 }
19022 run_test 407 "transaction fail should cause operation fail"
19023
19024 test_408() {
19025         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19026
19027         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19028         lctl set_param fail_loc=0x8000040a
19029         # let ll_prepare_partial_page() fail
19030         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19031
19032         rm -f $DIR/$tfile
19033
19034         # create at least 100 unused inodes so that
19035         # shrink_icache_memory(0) should not return 0
19036         touch $DIR/$tfile-{0..100}
19037         rm -f $DIR/$tfile-{0..100}
19038         sync
19039
19040         echo 2 > /proc/sys/vm/drop_caches
19041 }
19042 run_test 408 "drop_caches should not hang due to page leaks"
19043
19044 test_409()
19045 {
19046         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19047         check_mount_and_prep
19048
19049         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19050         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19051         touch $DIR/$tdir/guard || error "(2) Fail to create"
19052
19053         local PREFIX=$(str_repeat 'A' 128)
19054         echo "Create 1K hard links start at $(date)"
19055         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19056                 error "(3) Fail to hard link"
19057
19058         echo "Links count should be right although linkEA overflow"
19059         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19060         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19061         [ $linkcount -eq 1001 ] ||
19062                 error "(5) Unexpected hard links count: $linkcount"
19063
19064         echo "List all links start at $(date)"
19065         ls -l $DIR/$tdir/foo > /dev/null ||
19066                 error "(6) Fail to list $DIR/$tdir/foo"
19067
19068         echo "Unlink hard links start at $(date)"
19069         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19070                 error "(7) Fail to unlink"
19071 }
19072 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19073
19074 test_410()
19075 {
19076         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
19077                 skip "Need client version at least 2.9.59"
19078
19079         # Create a file, and stat it from the kernel
19080         local testfile=$DIR/$tfile
19081         touch $testfile
19082
19083         local run_id=$RANDOM
19084         local my_ino=$(stat --format "%i" $testfile)
19085
19086         # Try to insert the module. This will always fail as the
19087         # module is designed to not be inserted.
19088         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19089             &> /dev/null
19090
19091         # Anything but success is a test failure
19092         dmesg | grep -q \
19093             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19094             error "no inode match"
19095 }
19096 run_test 410 "Test inode number returned from kernel thread"
19097
19098 cleanup_test411_cgroup() {
19099         trap 0
19100         rmdir "$1"
19101 }
19102
19103 test_411() {
19104         local cg_basedir=/sys/fs/cgroup/memory
19105         # LU-9966
19106         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19107                 skip "no setup for cgroup"
19108
19109         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19110                 error "test file creation failed"
19111         cancel_lru_locks osc
19112
19113         # Create a very small memory cgroup to force a slab allocation error
19114         local cgdir=$cg_basedir/osc_slab_alloc
19115         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19116         trap "cleanup_test411_cgroup $cgdir" EXIT
19117         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19118         echo 1M > $cgdir/memory.limit_in_bytes
19119
19120         # Should not LBUG, just be killed by oom-killer
19121         # dd will return 0 even allocation failure in some environment.
19122         # So don't check return value
19123         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19124         cleanup_test411_cgroup $cgdir
19125
19126         return 0
19127 }
19128 run_test 411 "Slab allocation error with cgroup does not LBUG"
19129
19130 test_412() {
19131         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19132         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19133                 skip "Need server version at least 2.10.55"
19134         fi
19135
19136         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19137                 error "mkdir failed"
19138         $LFS getdirstripe $DIR/$tdir
19139         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19140         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19141                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19142         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19143         [ $stripe_count -eq 2 ] ||
19144                 error "expect 2 get $stripe_count"
19145 }
19146 run_test 412 "mkdir on specific MDTs"
19147
19148 test_413() {
19149         [ $MDSCOUNT -lt 2 ] &&
19150                 skip "We need at least 2 MDTs for this test"
19151
19152         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19153                 skip "Need server version at least 2.10.55"
19154         fi
19155
19156         mkdir $DIR/$tdir || error "mkdir failed"
19157
19158         # find MDT that is the most full
19159         local max=$($LFS df | grep MDT |
19160                 awk 'BEGIN { a=0 }
19161                         { sub("%", "", $5)
19162                           if (0+$5 >= a)
19163                           {
19164                                 a = $5
19165                                 b = $6
19166                           }
19167                         }
19168                      END { split(b, c, ":")
19169                            sub("]", "", c[2])
19170                            print c[2]
19171                          }')
19172
19173         for i in $(seq $((MDSCOUNT - 1))); do
19174                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19175                         error "mkdir d$i failed"
19176                 $LFS getdirstripe $DIR/$tdir/d$i
19177                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19178                 [ $stripe_index -ne $max ] ||
19179                         error "don't expect $max"
19180         done
19181 }
19182 run_test 413 "mkdir on less full MDTs"
19183
19184 test_414() {
19185 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19186         $LCTL set_param fail_loc=0x80000521
19187         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19188         rm -f $DIR/$tfile
19189 }
19190 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19191
19192 test_415() {
19193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19194         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19195                 skip "Need server version at least 2.11.52"
19196
19197         # LU-11102
19198         local total
19199         local setattr_pid
19200         local start_time
19201         local end_time
19202         local duration
19203
19204         total=500
19205         # this test may be slow on ZFS
19206         [ "$(facet_fstype mds1)" == "zfs" ] && total=100
19207
19208         # though this test is designed for striped directory, let's test normal
19209         # directory too since lock is always saved as CoS lock.
19210         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19211         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19212
19213         (
19214                 while true; do
19215                         touch $DIR/$tdir
19216                 done
19217         ) &
19218         setattr_pid=$!
19219
19220         start_time=$(date +%s)
19221         for i in $(seq $total); do
19222                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19223                         > /dev/null
19224         done
19225         end_time=$(date +%s)
19226         duration=$((end_time - start_time))
19227
19228         kill -9 $setattr_pid
19229
19230         echo "rename $total files took $duration sec"
19231         [ $duration -lt 100 ] || error "rename took $duration sec"
19232 }
19233 run_test 415 "lock revoke is not missing"
19234
19235
19236 test_416() {
19237         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19238                 skip "Need server version at least 2.11.55"
19239
19240         # define OBD_FAIL_OSD_TXN_START    0x19a
19241         do_facet mds1 lctl set_param fail_loc=0x19a
19242
19243         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19244
19245         true
19246 }
19247 run_test 416 "transaction start failure won't cause system hung"
19248
19249 prep_801() {
19250         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19251         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19252                 skip "Need server version at least 2.9.55"
19253
19254         start_full_debug_logging
19255 }
19256
19257 post_801() {
19258         stop_full_debug_logging
19259 }
19260
19261 barrier_stat() {
19262         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19263                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19264                            awk '/The barrier for/ { print $7 }')
19265                 echo $st
19266         else
19267                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19268                 echo \'$st\'
19269         fi
19270 }
19271
19272 barrier_expired() {
19273         local expired
19274
19275         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
19276                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19277                           awk '/will be expired/ { print $7 }')
19278         else
19279                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19280         fi
19281
19282         echo $expired
19283 }
19284
19285 test_801a() {
19286         prep_801
19287
19288         echo "Start barrier_freeze at: $(date)"
19289         #define OBD_FAIL_BARRIER_DELAY          0x2202
19290         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19291         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19292
19293         sleep 2
19294         local b_status=$(barrier_stat)
19295         echo "Got barrier status at: $(date)"
19296         [ "$b_status" = "'freezing_p1'" ] ||
19297                 error "(1) unexpected barrier status $b_status"
19298
19299         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19300         wait
19301         b_status=$(barrier_stat)
19302         [ "$b_status" = "'frozen'" ] ||
19303                 error "(2) unexpected barrier status $b_status"
19304
19305         local expired=$(barrier_expired)
19306         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19307         sleep $((expired + 3))
19308
19309         b_status=$(barrier_stat)
19310         [ "$b_status" = "'expired'" ] ||
19311                 error "(3) unexpected barrier status $b_status"
19312
19313         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19314                 error "(4) fail to freeze barrier"
19315
19316         b_status=$(barrier_stat)
19317         [ "$b_status" = "'frozen'" ] ||
19318                 error "(5) unexpected barrier status $b_status"
19319
19320         echo "Start barrier_thaw at: $(date)"
19321         #define OBD_FAIL_BARRIER_DELAY          0x2202
19322         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19323         do_facet mgs $LCTL barrier_thaw $FSNAME &
19324
19325         sleep 2
19326         b_status=$(barrier_stat)
19327         echo "Got barrier status at: $(date)"
19328         [ "$b_status" = "'thawing'" ] ||
19329                 error "(6) unexpected barrier status $b_status"
19330
19331         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19332         wait
19333         b_status=$(barrier_stat)
19334         [ "$b_status" = "'thawed'" ] ||
19335                 error "(7) unexpected barrier status $b_status"
19336
19337         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19338         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19339         do_facet mgs $LCTL barrier_freeze $FSNAME
19340
19341         b_status=$(barrier_stat)
19342         [ "$b_status" = "'failed'" ] ||
19343                 error "(8) unexpected barrier status $b_status"
19344
19345         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19346         do_facet mgs $LCTL barrier_thaw $FSNAME
19347
19348         post_801
19349 }
19350 run_test 801a "write barrier user interfaces and stat machine"
19351
19352 test_801b() {
19353         prep_801
19354
19355         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19356         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19357         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19358         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19359         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19360
19361         cancel_lru_locks mdc
19362
19363         # 180 seconds should be long enough
19364         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19365
19366         local b_status=$(barrier_stat)
19367         [ "$b_status" = "'frozen'" ] ||
19368                 error "(6) unexpected barrier status $b_status"
19369
19370         mkdir $DIR/$tdir/d0/d10 &
19371         mkdir_pid=$!
19372
19373         touch $DIR/$tdir/d1/f13 &
19374         touch_pid=$!
19375
19376         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19377         ln_pid=$!
19378
19379         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19380         mv_pid=$!
19381
19382         rm -f $DIR/$tdir/d4/f12 &
19383         rm_pid=$!
19384
19385         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19386
19387         # To guarantee taht the 'stat' is not blocked
19388         b_status=$(barrier_stat)
19389         [ "$b_status" = "'frozen'" ] ||
19390                 error "(8) unexpected barrier status $b_status"
19391
19392         # let above commands to run at background
19393         sleep 5
19394
19395         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19396         ps -p $touch_pid || error "(10) touch should be blocked"
19397         ps -p $ln_pid || error "(11) link should be blocked"
19398         ps -p $mv_pid || error "(12) rename should be blocked"
19399         ps -p $rm_pid || error "(13) unlink should be blocked"
19400
19401         b_status=$(barrier_stat)
19402         [ "$b_status" = "'frozen'" ] ||
19403                 error "(14) unexpected barrier status $b_status"
19404
19405         do_facet mgs $LCTL barrier_thaw $FSNAME
19406         b_status=$(barrier_stat)
19407         [ "$b_status" = "'thawed'" ] ||
19408                 error "(15) unexpected barrier status $b_status"
19409
19410         wait $mkdir_pid || error "(16) mkdir should succeed"
19411         wait $touch_pid || error "(17) touch should succeed"
19412         wait $ln_pid || error "(18) link should succeed"
19413         wait $mv_pid || error "(19) rename should succeed"
19414         wait $rm_pid || error "(20) unlink should succeed"
19415
19416         post_801
19417 }
19418 run_test 801b "modification will be blocked by write barrier"
19419
19420 test_801c() {
19421         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19422
19423         prep_801
19424
19425         stop mds2 || error "(1) Fail to stop mds2"
19426
19427         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19428
19429         local b_status=$(barrier_stat)
19430         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19431                 do_facet mgs $LCTL barrier_thaw $FSNAME
19432                 error "(2) unexpected barrier status $b_status"
19433         }
19434
19435         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19436                 error "(3) Fail to rescan barrier bitmap"
19437
19438         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19439
19440         b_status=$(barrier_stat)
19441         [ "$b_status" = "'frozen'" ] ||
19442                 error "(4) unexpected barrier status $b_status"
19443
19444         do_facet mgs $LCTL barrier_thaw $FSNAME
19445         b_status=$(barrier_stat)
19446         [ "$b_status" = "'thawed'" ] ||
19447                 error "(5) unexpected barrier status $b_status"
19448
19449         local devname=$(mdsdevname 2)
19450
19451         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19452
19453         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19454                 error "(7) Fail to rescan barrier bitmap"
19455
19456         post_801
19457 }
19458 run_test 801c "rescan barrier bitmap"
19459
19460 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19461 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19462 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19463
19464 cleanup_802() {
19465         trap 0
19466
19467         stopall
19468         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19469         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19470         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19471         setupall
19472 }
19473
19474 test_802() {
19475
19476         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19477         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
19478                 skip "Need server version at least 2.9.55"
19479
19480         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19481
19482         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19483
19484         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19485                 error "(2) Fail to copy"
19486
19487         trap cleanup_802 EXIT
19488
19489         # sync by force before remount as readonly
19490         sync; sync_all_data; sleep 3; sync_all_data
19491
19492         stopall
19493
19494         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19495         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19496         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19497
19498         echo "Mount the server as read only"
19499         setupall server_only || error "(3) Fail to start servers"
19500
19501         echo "Mount client without ro should fail"
19502         mount_client $MOUNT &&
19503                 error "(4) Mount client without 'ro' should fail"
19504
19505         echo "Mount client with ro should succeed"
19506         mount_client $MOUNT ro ||
19507                 error "(5) Mount client with 'ro' should succeed"
19508
19509         echo "Modify should be refused"
19510         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19511
19512         echo "Read should be allowed"
19513         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19514                 error "(7) Read should succeed under ro mode"
19515
19516         cleanup_802
19517 }
19518 run_test 802 "simulate readonly device"
19519
19520 test_803() {
19521         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19522         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19523                 skip "MDS needs to be newer than 2.10.54"
19524
19525         mkdir -p $DIR/$tdir
19526         # Create some objects on all MDTs to trigger related logs objects
19527         for idx in $(seq $MDSCOUNT); do
19528                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19529                         $DIR/$tdir/dir${idx} ||
19530                         error "Fail to create $DIR/$tdir/dir${idx}"
19531         done
19532
19533         sync; sleep 3
19534         echo "before create:"
19535         $LFS df -i $MOUNT
19536         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19537
19538         for ((i=0; i<10; i++)); do
19539                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19540                         error "Fail to create $DIR/$tdir/foo$i"
19541         done
19542
19543         sync; sleep 3
19544         echo "after create:"
19545         $LFS df -i $MOUNT
19546         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19547
19548         [ $after_used -ge $((before_used + 10)) ] ||
19549                 error "before ($before_used) + 10 > after ($after_used)"
19550
19551         for ((i=0; i<10; i++)); do
19552                 rm -rf $DIR/$tdir/foo$i ||
19553                         error "Fail to remove $DIR/$tdir/foo$i"
19554         done
19555
19556         sleep 3 # avoid MDT return cached statfs
19557         wait_delete_completed
19558         echo "after unlink:"
19559         $LFS df -i $MOUNT
19560         before_used=$after_used
19561         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19562
19563         [ $after_used -le $((before_used - 8)) ] ||
19564                 error "before ($before_used) - 8 < after ($after_used)"
19565 }
19566 run_test 803 "verify agent object for remote object"
19567
19568 test_804() {
19569         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19570         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.54) ] &&
19571                 skip "MDS needs to be newer than 2.10.54"
19572         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
19573                 skip_env "ldiskfs only test"
19574
19575         mkdir -p $DIR/$tdir
19576         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19577                 error "Fail to create $DIR/$tdir/dir0"
19578
19579         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19580         local dev=$(mdsdevname 2)
19581
19582         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19583                 grep ${fid} || error "NOT found agent entry for dir0"
19584
19585         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19586                 error "Fail to create $DIR/$tdir/dir1"
19587
19588         touch $DIR/$tdir/dir1/foo0 ||
19589                 error "Fail to create $DIR/$tdir/dir1/foo0"
19590         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19591         local rc=0
19592
19593         for idx in $(seq $MDSCOUNT); do
19594                 dev=$(mdsdevname $idx)
19595                 do_facet mds${idx} \
19596                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19597                         grep ${fid} && rc=$idx
19598         done
19599
19600         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19601                 error "Fail to rename foo0 to foo1"
19602         if [ $rc -eq 0 ]; then
19603                 for idx in $(seq $MDSCOUNT); do
19604                         dev=$(mdsdevname $idx)
19605                         do_facet mds${idx} \
19606                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19607                         grep ${fid} && rc=$idx
19608                 done
19609         fi
19610
19611         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19612                 error "Fail to rename foo1 to foo2"
19613         if [ $rc -eq 0 ]; then
19614                 for idx in $(seq $MDSCOUNT); do
19615                         dev=$(mdsdevname $idx)
19616                         do_facet mds${idx} \
19617                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19618                         grep ${fid} && rc=$idx
19619                 done
19620         fi
19621
19622         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19623
19624         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19625                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19626         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19627                 error "Fail to rename foo2 to foo0"
19628         unlink $DIR/$tdir/dir1/foo0 ||
19629                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19630         rm -rf $DIR/$tdir/dir0 ||
19631                 error "Fail to rm $DIR/$tdir/dir0"
19632
19633         for idx in $(seq $MDSCOUNT); do
19634                 dev=$(mdsdevname $idx)
19635                 rc=0
19636
19637                 stop mds${idx}
19638                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19639                         rc=$?
19640                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19641                         error "mount mds$idx failed"
19642                 df $MOUNT > /dev/null 2>&1
19643
19644                 # e2fsck should not return error
19645                 [ $rc -eq 0 ] ||
19646                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19647         done
19648 }
19649 run_test 804 "verify agent entry for remote entry"
19650
19651 cleanup_805() {
19652         do_facet $SINGLEMDS zfs set quota=$old $fsset
19653         unlinkmany $DIR/$tdir/f- 1000000
19654         trap 0
19655 }
19656
19657 test_805() {
19658         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19659         [ "$(facet_fstype mds1)" != "zfs" ] &&
19660                 skip "ZFS specific test"
19661         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19662                 skip "netfree not implemented before 0.7"
19663         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.10.57) ]] ||
19664                 skip "Need MDS version at least 2.10.57"
19665
19666         local fsset
19667         local freekb
19668         local usedkb
19669         local old
19670         local quota
19671         local pref="osd-zfs.lustre-MDT0000."
19672
19673         # limit available space on MDS dataset to meet nospace issue
19674         # quickly. then ZFS 0.7.2 can use reserved space if asked
19675         # properly (using netfree flag in osd_declare_destroy()
19676         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19677         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19678                 gawk '{print $3}')
19679         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
19680         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
19681         let "usedkb=usedkb-freekb"
19682         let "freekb=freekb/2"
19683         if let "freekb > 5000"; then
19684                 let "freekb=5000"
19685         fi
19686         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
19687         trap cleanup_805 EXIT
19688         mkdir $DIR/$tdir
19689         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
19690         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
19691         rm -rf $DIR/$tdir || error "not able to remove"
19692         do_facet $SINGLEMDS zfs set quota=$old $fsset
19693         trap 0
19694 }
19695 run_test 805 "ZFS can remove from full fs"
19696
19697 # Size-on-MDS test
19698 check_lsom_data()
19699 {
19700         local file=$1
19701         local size=$($LFS getsom -s $file)
19702         local expect=$(stat -c %s $file)
19703
19704         [[ $size == $expect ]] ||
19705                 error "$file expected size: $expect, got: $size"
19706
19707         local blocks=$($LFS getsom -b $file)
19708         expect=$(stat -c %b $file)
19709         [[ $blocks == $expect ]] ||
19710                 error "$file expected blocks: $expect, got: $blocks"
19711 }
19712
19713 check_lsom_size()
19714 {
19715         local size=$($LFS getsom -s $1)
19716         local expect=$2
19717
19718         [[ $size == $expect ]] ||
19719                 error "$file expected size: $expect, got: $size"
19720 }
19721
19722 test_806() {
19723         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19724                 skip "Need MDS version at least 2.11.52" && return
19725
19726         local bs=1048576
19727
19728         touch $DIR/$tfile || error "touch $tfile failed"
19729
19730         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19731         save_lustre_params client "llite.*.xattr_cache" > $save
19732         lctl set_param llite.*.xattr_cache=0
19733         stack_trap "restore_lustre_params < $save" EXIT
19734
19735         # single-threaded write
19736         echo "Test SOM for single-threaded write"
19737         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
19738                 error "write $tfile failed"
19739         check_lsom_size $DIR/$tfile $bs
19740
19741         local num=32
19742         local size=$(($num * $bs))
19743         local offset=0
19744         local i
19745
19746         echo "Test SOM for single client muti-threaded($num) write"
19747         $TRUNCATE $DIR/$tfile 0
19748         for ((i = 0; i < $num; i++)); do
19749                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19750                 local pids[$i]=$!
19751                 offset=$((offset + $bs))
19752         done
19753         for (( i=0; i < $num; i++ )); do
19754                 wait ${pids[$i]}
19755         done
19756         check_lsom_size $DIR/$tfile $size
19757
19758         $TRUNCATE $DIR/$tfile 0
19759         for ((i = 0; i < $num; i++)); do
19760                 offset=$((offset - $bs))
19761                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19762                 local pids[$i]=$!
19763         done
19764         for (( i=0; i < $num; i++ )); do
19765                 wait ${pids[$i]}
19766         done
19767         check_lsom_size $DIR/$tfile $size
19768
19769         # multi-client wirtes
19770         num=$(get_node_count ${CLIENTS//,/ })
19771         size=$(($num * $bs))
19772         offset=0
19773         i=0
19774
19775         echo "Test SOM for muti-client ($num) writes"
19776         $TRUNCATE $DIR/$tfile 0
19777         for client in ${CLIENTS//,/ }; do
19778                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19779                 local pids[$i]=$!
19780                 i=$((i + 1))
19781                 offset=$((offset + $bs))
19782         done
19783         for (( i=0; i < $num; i++ )); do
19784                 wait ${pids[$i]}
19785         done
19786         check_lsom_size $DIR/$tfile $offset
19787
19788         i=0
19789         $TRUNCATE $DIR/$tfile 0
19790         for client in ${CLIENTS//,/ }; do
19791                 offset=$((offset - $bs))
19792                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19793                 local pids[$i]=$!
19794                 i=$((i + 1))
19795         done
19796         for (( i=0; i < $num; i++ )); do
19797                 wait ${pids[$i]}
19798         done
19799         check_lsom_size $DIR/$tfile $size
19800
19801         # verify truncate
19802         echo "Test SOM for truncate"
19803         $TRUNCATE $DIR/$tfile 1048576
19804         check_lsom_size $DIR/$tfile 1048576
19805         $TRUNCATE $DIR/$tfile 1234
19806         check_lsom_size $DIR/$tfile 1234
19807
19808         # verify SOM blocks count
19809         echo "Verify SOM block count"
19810         $TRUNCATE $DIR/$tfile 0
19811         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
19812                 error "failed to write file $tfile"
19813         check_lsom_data $DIR/$tfile
19814 }
19815 run_test 806 "Verify Lazy Size on MDS"
19816
19817 test_807() {
19818         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.52) ] &&
19819                 skip "Need MDS version at least 2.11.52" && return
19820
19821         # Registration step
19822         changelog_register || error "changelog_register failed"
19823         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
19824         changelog_users $SINGLEMDS | grep -q $cl_user ||
19825                 error "User $cl_user not found in changelog_users"
19826
19827         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
19828         save_lustre_params client "llite.*.xattr_cache" > $save
19829         lctl set_param llite.*.xattr_cache=0
19830         stack_trap "restore_lustre_params < $save" EXIT
19831
19832         rm -rf $DIR/$tdir || error "rm $tdir failed"
19833         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
19834         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
19835         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
19836         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
19837                 error "truncate $tdir/trunc failed"
19838
19839         local bs=1048576
19840         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
19841                 error "write $tfile failed"
19842
19843         # multi-client wirtes
19844         local num=$(get_node_count ${CLIENTS//,/ })
19845         local offset=0
19846         local i=0
19847
19848         echo "Test SOM for muti-client ($num) writes"
19849         touch $DIR/$tfile || error "touch $tfile failed"
19850         $TRUNCATE $DIR/$tfile 0
19851         for client in ${CLIENTS//,/ }; do
19852                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
19853                 local pids[$i]=$!
19854                 i=$((i + 1))
19855                 offset=$((offset + $bs))
19856         done
19857         for (( i=0; i < $num; i++ )); do
19858                 wait ${pids[$i]}
19859         done
19860
19861         sleep 5
19862         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
19863         check_lsom_data $DIR/$tdir/trunc
19864         check_lsom_data $DIR/$tdir/single_dd
19865         check_lsom_data $DIR/$tfile
19866
19867         rm -rf $DIR/$tdir
19868         # Deregistration step
19869         changelog_deregister || error "changelog_deregister failed"
19870 }
19871 run_test 807 "verify LSOM syncing tool"
19872
19873 check_som_nologged()
19874 {
19875         local lines=$($LFS changelog $FSNAME-MDT0000 |
19876                 grep 'x=trusted.som' | wc -l)
19877         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
19878 }
19879
19880 test_808() {
19881         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.55) ] &&
19882                 skip "Need MDS version at least 2.11.55" && return
19883
19884         # Registration step
19885         changelog_register || error "changelog_register failed"
19886
19887         touch $DIR/$tfile || error "touch $tfile failed"
19888         check_som_nologged
19889
19890         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
19891                 error "write $tfile failed"
19892         check_som_nologged
19893
19894         $TRUNCATE $DIR/$tfile 1234
19895         check_som_nologged
19896
19897         $TRUNCATE $DIR/$tfile 1048576
19898         check_som_nologged
19899
19900         # Deregistration step
19901         changelog_deregister || error "changelog_deregister failed"
19902 }
19903 run_test 808 "Check trusted.som xattr not logged in Changelogs"
19904
19905 #
19906 # tests that do cleanup/setup should be run at the end
19907 #
19908
19909 test_900() {
19910         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19911         local ls
19912
19913         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
19914         $LCTL set_param fail_loc=0x903
19915
19916         cancel_lru_locks MGC
19917
19918         FAIL_ON_ERROR=true cleanup
19919         FAIL_ON_ERROR=true setup
19920 }
19921 run_test 900 "umount should not race with any mgc requeue thread"
19922
19923 complete $SECONDS
19924 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
19925 check_and_cleanup_lustre
19926 if [ "$I_MOUNTED" != "yes" ]; then
19927         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
19928 fi
19929 exit_status