Whamcloud - gitweb
LU-13148 tests: clean up sanity 56ra add debugging
[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 if [[ $(uname -m) = aarch64 ]]; then
24         # bug number:    LU-11596 (all below)
25         ALWAYS_EXCEPT+=" 42d 42e 63a 63b 64a 64b 64c"
26         # bug number:    LU-11671 LU-11665 LU-11594 LU-11667 LU-11729
27         ALWAYS_EXCEPT+=" 45       101c     103a     317      810"
28 fi
29
30 # Check Grants after these tests
31 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
32 SRCDIR=$(cd $(dirname $0); echo $PWD)
33 export PATH=$PATH:/sbin
34
35 TMP=${TMP:-/tmp}
36 OSC=${OSC:-"osc"}
37
38 CC=${CC:-cc}
39 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
40 CREATETEST=${CREATETEST:-createtest}
41 LFS=${LFS:-lfs}
42 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
43 LCTL=${LCTL:-lctl}
44 OPENFILE=${OPENFILE:-openfile}
45 OPENUNLINK=${OPENUNLINK:-openunlink}
46 export MULTIOP=${MULTIOP:-multiop}
47 READS=${READS:-"reads"}
48 MUNLINK=${MUNLINK:-munlink}
49 SOCKETSERVER=${SOCKETSERVER:-socketserver}
50 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
51 MEMHOG=${MEMHOG:-memhog}
52 DIRECTIO=${DIRECTIO:-directio}
53 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
54 DEF_STRIPE_COUNT=-1
55 CHECK_GRANT=${CHECK_GRANT:-"yes"}
56 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
57 export PARALLEL=${PARALLEL:-"no"}
58
59 export NAME=${NAME:-local}
60
61 SAVE_PWD=$PWD
62
63 CLEANUP=${CLEANUP:-:}
64 SETUP=${SETUP:-:}
65 TRACE=${TRACE:-""}
66 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
67 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
68 . $LUSTRE/tests/test-framework.sh
69 init_test_env $@
70 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
71 get_lustre_env
72 init_logging
73
74 #                                  5          12          (min)"
75 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
76
77 if [ "$mds1_FSTYPE" = "zfs" ]; then
78         # bug number for skipped test:
79         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  "
80         #                                               13    (min)"
81         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
82 fi
83
84 # Get the SLES distro version
85 #
86 # Returns a version string that should only be used in comparing
87 # strings returned by version_code()
88 sles_version_code()
89 {
90         local version=$(grep VERSION_ID /etc/os-release | cut -d'"' -f2)
91
92         # All SuSE Linux versions have one decimal. version_code expects two
93         local sles_version=$version.0
94         version_code $sles_version
95 }
96
97 # Check if we are running on Ubuntu or SLES so we can make decisions on
98 # what tests to run
99 if [ -r /etc/SuSE-release ]; then
100         sles_version=$(sles_version_code)
101         [ $sles_version -lt $(version_code 11.4.0) ] &&
102                 # bug number for skipped test: LU-4341
103                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  170"
104         [ $sles_version -lt $(version_code 12.0.0) ] &&
105                 # bug number for skipped test: LU-3703
106                 ALWAYS_EXCEPT="$ALWAYS_EXCEPT  234"
107 elif [ -r /etc/os-release ]; then
108         if grep -qi ubuntu /etc/os-release; then
109                 ubuntu_version=$(version_code $(sed -n -e 's/"//g' \
110                                                 -e 's/^VERSION=//p' \
111                                                 /etc/os-release |
112                                                 awk '{ print $1 }'))
113
114                 if [[ $ubuntu_version -gt $(version_code 16.0.0) ]]; then
115                         # bug number for skipped test:
116                         #                LU-10334 LU-10366
117                         ALWAYS_EXCEPT+=" 103a     410"
118                 fi
119         fi
120 fi
121
122 FAIL_ON_ERROR=false
123
124 cleanup() {
125         echo -n "cln.."
126         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
127         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
128 }
129 setup() {
130         echo -n "mnt.."
131         load_modules
132         setupall || exit 10
133         echo "done"
134 }
135
136 check_swap_layouts_support()
137 {
138         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
139                 skip "Does not support layout lock."
140 }
141
142 check_and_setup_lustre
143 DIR=${DIR:-$MOUNT}
144 assert_DIR
145
146 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
147
148 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
149 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
150 rm -rf $DIR/[Rdfs][0-9]*
151
152 # $RUNAS_ID may get set incorrectly somewhere else
153 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
154         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
155
156 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
157
158 build_test_filter
159
160 if [ "${ONLY}" = "MOUNT" ] ; then
161         echo "Lustre is up, please go on"
162         exit
163 fi
164
165 echo "preparing for tests involving mounts"
166 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
167 touch $EXT2_DEV
168 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
169 echo # add a newline after mke2fs.
170
171 umask 077
172
173 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
174 lctl set_param debug=-1 2> /dev/null || true
175 test_0a() {
176         touch $DIR/$tfile
177         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
178         rm $DIR/$tfile
179         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
180 }
181 run_test 0a "touch; rm ====================="
182
183 test_0b() {
184         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
185         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
186 }
187 run_test 0b "chmod 0755 $DIR ============================="
188
189 test_0c() {
190         $LCTL get_param mdc.*.import | grep "state: FULL" ||
191                 error "import not FULL"
192         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
193                 error "bad target"
194 }
195 run_test 0c "check import proc"
196
197 test_0d() { # LU-3397
198         [ $MGS_VERSION -lt $(version_code 2.10.57) ] &&
199                 skip "proc exports not supported before 2.10.57"
200
201         local mgs_exp="mgs.MGS.exports"
202         local client_uuid=$($LCTL get_param -n mgc.*.uuid)
203         local exp_client_nid
204         local exp_client_version
205         local exp_val
206         local imp_val
207         local temp_imp=$DIR/$tfile.import
208         local temp_exp=$DIR/$tfile.export
209
210         # save mgc import file to $temp_imp
211         $LCTL get_param mgc.*.import | tee $temp_imp
212         # Check if client uuid is found in MGS export
213         for exp_client_nid in $(do_facet mgs $LCTL get_param -N $mgs_exp.*); do
214                 [ $(do_facet mgs $LCTL get_param -n $exp_client_nid.uuid) == \
215                         $client_uuid ] &&
216                         break;
217         done
218         # save mgs export file to $temp_exp
219         do_facet mgs $LCTL get_param $exp_client_nid.export | tee $temp_exp
220
221         # Compare the value of field "connect_flags"
222         imp_val=$(grep "connect_flags" $temp_imp)
223         exp_val=$(grep "connect_flags" $temp_exp)
224         [ "$exp_val" == "$imp_val" ] ||
225                 error "export flags '$exp_val' != import flags '$imp_val'"
226
227         # Compare the value of client version
228         exp_client_version=$(awk '/target_version:/ { print $2 }' $temp_exp)
229         exp_val=$(version_code $exp_client_version)
230         imp_val=$CLIENT_VERSION
231         [ "$exp_val" == "$imp_val" ] ||
232                 error "export client version '$exp_val' != '$imp_val'"
233 }
234 run_test 0d "check export proc ============================="
235
236 test_1() {
237         test_mkdir $DIR/$tdir
238         test_mkdir $DIR/$tdir/d2
239         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
240         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
241         rmdir $DIR/$tdir/d2
242         rmdir $DIR/$tdir
243         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
244 }
245 run_test 1 "mkdir; remkdir; rmdir"
246
247 test_2() {
248         test_mkdir $DIR/$tdir
249         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
250         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
251         rm -r $DIR/$tdir
252         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
253 }
254 run_test 2 "mkdir; touch; rmdir; check file"
255
256 test_3() {
257         test_mkdir $DIR/$tdir
258         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
259         touch $DIR/$tdir/$tfile
260         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
261         rm -r $DIR/$tdir
262         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
263 }
264 run_test 3 "mkdir; touch; rmdir; check dir"
265
266 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
267 test_4() {
268         test_mkdir -i 1 $DIR/$tdir
269
270         touch $DIR/$tdir/$tfile ||
271                 error "Create file under remote directory failed"
272
273         rmdir $DIR/$tdir &&
274                 error "Expect error removing in-use dir $DIR/$tdir"
275
276         test -d $DIR/$tdir || error "Remote directory disappeared"
277
278         rm -rf $DIR/$tdir || error "remove remote dir error"
279 }
280 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
281
282 test_5() {
283         test_mkdir $DIR/$tdir
284         test_mkdir $DIR/$tdir/d2
285         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
286         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
287         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
288 }
289 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
290
291 test_6a() {
292         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
293         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
294         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
295                 error "$tfile does not have perm 0666 or UID $UID"
296         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
297         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
298                 error "$tfile should be 0666 and owned by UID $UID"
299 }
300 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
301
302 test_6c() {
303         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
304
305         touch $DIR/$tfile
306         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
307         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
308                 error "$tfile should be owned by UID $RUNAS_ID"
309         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
310         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
311                 error "$tfile should be owned by UID $RUNAS_ID"
312 }
313 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
314
315 test_6e() {
316         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
317
318         touch $DIR/$tfile
319         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
320         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
321                 error "$tfile should be owned by GID $UID"
322         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
323         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
324                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
325 }
326 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
327
328 test_6g() {
329         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
330
331         test_mkdir $DIR/$tdir
332         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
333         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
334         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
335         test_mkdir $DIR/$tdir/d/subdir
336         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
337                 error "$tdir/d/subdir should be GID $RUNAS_GID"
338         if [[ $MDSCOUNT -gt 1 ]]; then
339                 # check remote dir sgid inherite
340                 $LFS mkdir -i 0 $DIR/$tdir.local ||
341                         error "mkdir $tdir.local failed"
342                 chmod g+s $DIR/$tdir.local ||
343                         error "chmod $tdir.local failed"
344                 chgrp $RUNAS_GID $DIR/$tdir.local ||
345                         error "chgrp $tdir.local failed"
346                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
347                         error "mkdir $tdir.remote failed"
348                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
349                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
350                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
351                         error "$tdir.remote should be mode 02755"
352         fi
353 }
354 run_test 6g "verify new dir in sgid dir inherits group"
355
356 test_6h() { # bug 7331
357         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID"
358
359         touch $DIR/$tfile || error "touch failed"
360         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
361         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
362                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
363         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
364                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
365 }
366 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
367
368 test_7a() {
369         test_mkdir $DIR/$tdir
370         $MCREATE $DIR/$tdir/$tfile
371         chmod 0666 $DIR/$tdir/$tfile
372         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
373                 error "$tdir/$tfile should be mode 0666"
374 }
375 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
376
377 test_7b() {
378         if [ ! -d $DIR/$tdir ]; then
379                 test_mkdir $DIR/$tdir
380         fi
381         $MCREATE $DIR/$tdir/$tfile
382         echo -n foo > $DIR/$tdir/$tfile
383         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
384         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
385 }
386 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
387
388 test_8() {
389         test_mkdir $DIR/$tdir
390         touch $DIR/$tdir/$tfile
391         chmod 0666 $DIR/$tdir/$tfile
392         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
393                 error "$tfile mode not 0666"
394 }
395 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
396
397 test_9() {
398         test_mkdir $DIR/$tdir
399         test_mkdir $DIR/$tdir/d2
400         test_mkdir $DIR/$tdir/d2/d3
401         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
402 }
403 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
404
405 test_10() {
406         test_mkdir $DIR/$tdir
407         test_mkdir $DIR/$tdir/d2
408         touch $DIR/$tdir/d2/$tfile
409         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
410                 error "$tdir/d2/$tfile not a file"
411 }
412 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
413
414 test_11() {
415         test_mkdir $DIR/$tdir
416         test_mkdir $DIR/$tdir/d2
417         chmod 0666 $DIR/$tdir/d2
418         chmod 0705 $DIR/$tdir/d2
419         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
420                 error "$tdir/d2 mode not 0705"
421 }
422 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
423
424 test_12() {
425         test_mkdir $DIR/$tdir
426         touch $DIR/$tdir/$tfile
427         chmod 0666 $DIR/$tdir/$tfile
428         chmod 0654 $DIR/$tdir/$tfile
429         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
430                 error "$tdir/d2 mode not 0654"
431 }
432 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
433
434 test_13() {
435         test_mkdir $DIR/$tdir
436         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
437         >  $DIR/$tdir/$tfile
438         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
439                 error "$tdir/$tfile size not 0 after truncate"
440 }
441 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
442
443 test_14() {
444         test_mkdir $DIR/$tdir
445         touch $DIR/$tdir/$tfile
446         rm $DIR/$tdir/$tfile
447         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
448 }
449 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
450
451 test_15() {
452         test_mkdir $DIR/$tdir
453         touch $DIR/$tdir/$tfile
454         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
455         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
456                 error "$tdir/${tfile_2} not a file after rename"
457         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
458 }
459 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
460
461 test_16() {
462         test_mkdir $DIR/$tdir
463         touch $DIR/$tdir/$tfile
464         rm -rf $DIR/$tdir/$tfile
465         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
466 }
467 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
468
469 test_17a() {
470         test_mkdir $DIR/$tdir
471         touch $DIR/$tdir/$tfile
472         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
473         ls -l $DIR/$tdir
474         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
475                 error "$tdir/l-exist not a symlink"
476         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
477                 error "$tdir/l-exist not referencing a file"
478         rm -f $DIR/$tdir/l-exist
479         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
480 }
481 run_test 17a "symlinks: create, remove (real)"
482
483 test_17b() {
484         test_mkdir $DIR/$tdir
485         ln -s no-such-file $DIR/$tdir/l-dangle
486         ls -l $DIR/$tdir
487         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
488                 error "$tdir/l-dangle not referencing no-such-file"
489         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
490                 error "$tdir/l-dangle not referencing non-existent file"
491         rm -f $DIR/$tdir/l-dangle
492         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
493 }
494 run_test 17b "symlinks: create, remove (dangling)"
495
496 test_17c() { # bug 3440 - don't save failed open RPC for replay
497         test_mkdir $DIR/$tdir
498         ln -s foo $DIR/$tdir/$tfile
499         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
500 }
501 run_test 17c "symlinks: open dangling (should return error)"
502
503 test_17d() {
504         test_mkdir $DIR/$tdir
505         ln -s foo $DIR/$tdir/$tfile
506         touch $DIR/$tdir/$tfile || error "creating to new symlink"
507 }
508 run_test 17d "symlinks: create dangling"
509
510 test_17e() {
511         test_mkdir $DIR/$tdir
512         local foo=$DIR/$tdir/$tfile
513         ln -s $foo $foo || error "create symlink failed"
514         ls -l $foo || error "ls -l failed"
515         ls $foo && error "ls not failed" || true
516 }
517 run_test 17e "symlinks: create recursive symlink (should return error)"
518
519 test_17f() {
520         test_mkdir $DIR/$tdir
521         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
522         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
523         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
524         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
525         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
526         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
527         ls -l  $DIR/$tdir
528 }
529 run_test 17f "symlinks: long and very long symlink name"
530
531 # str_repeat(S, N) generate a string that is string S repeated N times
532 str_repeat() {
533         local s=$1
534         local n=$2
535         local ret=''
536         while [ $((n -= 1)) -ge 0 ]; do
537                 ret=$ret$s
538         done
539         echo $ret
540 }
541
542 # Long symlinks and LU-2241
543 test_17g() {
544         test_mkdir $DIR/$tdir
545         local TESTS="59 60 61 4094 4095"
546
547         # Fix for inode size boundary in 2.1.4
548         [ $MDS1_VERSION -lt $(version_code 2.1.4) ] &&
549                 TESTS="4094 4095"
550
551         # Patch not applied to 2.2 or 2.3 branches
552         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
553         [ $MDS1_VERSION -le $(version_code 2.3.55) ] &&
554                 TESTS="4094 4095"
555
556         # skip long symlink name for rhel6.5.
557         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
558         grep -q '6.5' /etc/redhat-release &>/dev/null &&
559                 TESTS="59 60 61 4062 4063"
560
561         for i in $TESTS; do
562                 local SYMNAME=$(str_repeat 'x' $i)
563                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
564                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
565         done
566 }
567 run_test 17g "symlinks: really long symlink name and inode boundaries"
568
569 test_17h() { #bug 17378
570         [ $PARALLEL == "yes" ] && skip "skip parallel run"
571         remote_mds_nodsh && skip "remote MDS with nodsh"
572
573         local mdt_idx
574
575         test_mkdir $DIR/$tdir
576         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
577         $LFS setstripe -c -1 $DIR/$tdir
578         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
579         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
580         touch $DIR/$tdir/$tfile || true
581 }
582 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
583
584 test_17i() { #bug 20018
585         [ $PARALLEL == "yes" ] && skip "skip parallel run"
586         remote_mds_nodsh && skip "remote MDS with nodsh"
587
588         local foo=$DIR/$tdir/$tfile
589         local mdt_idx
590
591         test_mkdir -c1 $DIR/$tdir
592         mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
593         ln -s $foo $foo || error "create symlink failed"
594 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
595         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
596         ls -l $foo && error "error not detected"
597         return 0
598 }
599 run_test 17i "don't panic on short symlink (should return error)"
600
601 test_17k() { #bug 22301
602         [ $PARALLEL == "yes" ] && skip "skip parallel run"
603         [[ -z "$(which rsync 2>/dev/null)" ]] &&
604                 skip "no rsync command"
605         rsync --help | grep -q xattr ||
606                 skip_env "$(rsync --version | head -n1) does not support xattrs"
607         test_mkdir $DIR/$tdir
608         test_mkdir $DIR/$tdir.new
609         touch $DIR/$tdir/$tfile
610         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
611         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
612                 error "rsync failed with xattrs enabled"
613 }
614 run_test 17k "symlinks: rsync with xattrs enabled"
615
616 test_17l() { # LU-279
617         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
618                 skip "no getfattr command"
619
620         test_mkdir $DIR/$tdir
621         touch $DIR/$tdir/$tfile
622         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
623         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
624                 # -h to not follow symlinks. -m '' to list all the xattrs.
625                 # grep to remove first line: '# file: $path'.
626                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
627                 do
628                         lgetxattr_size_check $path $xattr ||
629                                 error "lgetxattr_size_check $path $xattr failed"
630                 done
631         done
632 }
633 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
634
635 # LU-1540
636 test_17m() {
637         [ $PARALLEL == "yes" ] && skip "skip parallel run"
638         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
639         remote_mds_nodsh && skip "remote MDS with nodsh"
640         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
641         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
642                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
643
644         local short_sym="0123456789"
645         local wdir=$DIR/$tdir
646         local i
647
648         test_mkdir $wdir
649         long_sym=$short_sym
650         # create a long symlink file
651         for ((i = 0; i < 4; ++i)); do
652                 long_sym=${long_sym}${long_sym}
653         done
654
655         echo "create 512 short and long symlink files under $wdir"
656         for ((i = 0; i < 256; ++i)); do
657                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
658                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
659         done
660
661         echo "erase them"
662         rm -f $wdir/*
663         sync
664         wait_delete_completed
665
666         echo "recreate the 512 symlink files with a shorter string"
667         for ((i = 0; i < 512; ++i)); do
668                 # rewrite the symlink file with a shorter string
669                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
670                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
671         done
672
673         local mds_index=$(($($LFS getstripe -m $wdir) + 1))
674         local devname=$(mdsdevname $mds_index)
675
676         echo "stop and checking mds${mds_index}:"
677         # e2fsck should not return error
678         stop mds${mds_index}
679         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
680         rc=$?
681
682         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
683                 error "start mds${mds_index} failed"
684         df $MOUNT > /dev/null 2>&1
685         [ $rc -eq 0 ] ||
686                 error "e2fsck detected error for short/long symlink: rc=$rc"
687         rm -f $wdir/*
688 }
689 run_test 17m "run e2fsck against MDT which contains short/long symlink"
690
691 check_fs_consistency_17n() {
692         local mdt_index
693         local rc=0
694
695         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
696         # so it only check MDT1/MDT2 instead of all of MDTs.
697         for mdt_index in 1 2; do
698                 local devname=$(mdsdevname $mdt_index)
699                 # e2fsck should not return error
700                 stop mds${mdt_index}
701                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
702                         rc=$((rc + $?))
703
704                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
705                         error "mount mds$mdt_index failed"
706                 df $MOUNT > /dev/null 2>&1
707         done
708         return $rc
709 }
710
711 test_17n() {
712         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
714         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
715         remote_mds_nodsh && skip "remote MDS with nodsh"
716         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] &&
717         [ $MDS1_VERSION -le $(version_code 2.2.93) ] &&
718                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks"
719
720         local i
721
722         test_mkdir $DIR/$tdir
723         for ((i=0; i<10; i++)); do
724                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
725                         error "create remote dir error $i"
726                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
727                         error "create files under remote dir failed $i"
728         done
729
730         check_fs_consistency_17n ||
731                 error "e2fsck report error after create files under remote dir"
732
733         for ((i = 0; i < 10; i++)); do
734                 rm -rf $DIR/$tdir/remote_dir_${i} ||
735                         error "destroy remote dir error $i"
736         done
737
738         check_fs_consistency_17n ||
739                 error "e2fsck report error after unlink files under remote dir"
740
741         [ $MDS1_VERSION -lt $(version_code 2.4.50) ] &&
742                 skip "lustre < 2.4.50 does not support migrate mv"
743
744         for ((i = 0; i < 10; i++)); do
745                 mkdir -p $DIR/$tdir/remote_dir_${i}
746                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
747                         error "create files under remote dir failed $i"
748                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
749                         error "migrate remote dir error $i"
750         done
751         check_fs_consistency_17n || error "e2fsck report error after migration"
752
753         for ((i = 0; i < 10; i++)); do
754                 rm -rf $DIR/$tdir/remote_dir_${i} ||
755                         error "destroy remote dir error $i"
756         done
757
758         check_fs_consistency_17n || error "e2fsck report error after unlink"
759 }
760 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
761
762 test_17o() {
763         remote_mds_nodsh && skip "remote MDS with nodsh"
764         [ $MDS1_VERSION -lt $(version_code 2.3.64) ] &&
765                 skip "Need MDS version at least 2.3.64"
766
767         local wdir=$DIR/${tdir}o
768         local mdt_index
769         local rc=0
770
771         test_mkdir $wdir
772         touch $wdir/$tfile
773         mdt_index=$($LFS getstripe -m $wdir/$tfile)
774         mdt_index=$((mdt_index + 1))
775
776         cancel_lru_locks mdc
777         #fail mds will wait the failover finish then set
778         #following fail_loc to avoid interfer the recovery process.
779         fail mds${mdt_index}
780
781         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
782         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
783         ls -l $wdir/$tfile && rc=1
784         do_facet mds${mdt_index} lctl set_param fail_loc=0
785         [[ $rc -eq 0 ]] || error "stat file should fail"
786 }
787 run_test 17o "stat file with incompat LMA feature"
788
789 test_18() {
790         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
791         ls $DIR || error "Failed to ls $DIR: $?"
792 }
793 run_test 18 "touch .../f ; ls ... =============================="
794
795 test_19a() {
796         touch $DIR/$tfile
797         ls -l $DIR
798         rm $DIR/$tfile
799         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
800 }
801 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
802
803 test_19b() {
804         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
805 }
806 run_test 19b "ls -l .../f19 (should return error) =============="
807
808 test_19c() {
809         [ $RUNAS_ID -eq $UID ] &&
810                 skip_env "RUNAS_ID = UID = $UID -- skipping"
811
812         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
813 }
814 run_test 19c "$RUNAS touch .../f19 (should return error) =="
815
816 test_19d() {
817         cat $DIR/f19 && error || true
818 }
819 run_test 19d "cat .../f19 (should return error) =============="
820
821 test_20() {
822         touch $DIR/$tfile
823         rm $DIR/$tfile
824         touch $DIR/$tfile
825         rm $DIR/$tfile
826         touch $DIR/$tfile
827         rm $DIR/$tfile
828         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
829 }
830 run_test 20 "touch .../f ; ls -l ..."
831
832 test_21() {
833         test_mkdir $DIR/$tdir
834         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
835         ln -s dangle $DIR/$tdir/link
836         echo foo >> $DIR/$tdir/link
837         cat $DIR/$tdir/dangle
838         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
839         $CHECKSTAT -f -t file $DIR/$tdir/link ||
840                 error "$tdir/link not linked to a file"
841 }
842 run_test 21 "write to dangling link"
843
844 test_22() {
845         local wdir=$DIR/$tdir
846         test_mkdir $wdir
847         chown $RUNAS_ID:$RUNAS_GID $wdir
848         (cd $wdir || error "cd $wdir failed";
849                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
850                 $RUNAS tar xf -)
851         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
852         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
853         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
854                 error "checkstat -u failed"
855 }
856 run_test 22 "unpack tar archive as non-root user"
857
858 # was test_23
859 test_23a() {
860         test_mkdir $DIR/$tdir
861         local file=$DIR/$tdir/$tfile
862
863         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
864         openfile -f O_CREAT:O_EXCL $file &&
865                 error "$file recreate succeeded" || true
866 }
867 run_test 23a "O_CREAT|O_EXCL in subdir"
868
869 test_23b() { # bug 18988
870         test_mkdir $DIR/$tdir
871         local file=$DIR/$tdir/$tfile
872
873         rm -f $file
874         echo foo > $file || error "write filed"
875         echo bar >> $file || error "append filed"
876         $CHECKSTAT -s 8 $file || error "wrong size"
877         rm $file
878 }
879 run_test 23b "O_APPEND check"
880
881 # LU-9409, size with O_APPEND and tiny writes
882 test_23c() {
883         local file=$DIR/$tfile
884
885         # single dd
886         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800
887         $CHECKSTAT -s 6400 $file || error "wrong size, expected 6400"
888         rm -f $file
889
890         # racing tiny writes
891         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
892         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=800 &
893         wait
894         $CHECKSTAT -s 12800 $file || error "wrong size, expected 12800"
895         rm -f $file
896
897         #racing tiny & normal writes
898         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4096 count=4 &
899         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=8 count=100 &
900         wait
901         $CHECKSTAT -s 17184 $file || error "wrong size, expected 17184"
902         rm -f $file
903
904         #racing tiny & normal writes 2, ugly numbers
905         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=4099 count=11 &
906         dd conv=notrunc oflag=append if=/dev/zero of=$file bs=17 count=173 &
907         wait
908         $CHECKSTAT -s 48030 $file || error "wrong size, expected 48030"
909         rm -f $file
910 }
911 run_test 23c "O_APPEND size checks for tiny writes"
912
913 # LU-11069 file offset is correct after appending writes
914 test_23d() {
915         local file=$DIR/$tfile
916         local offset
917
918         echo CentaurHauls > $file
919         offset=$($MULTIOP $file oO_WRONLY:O_APPEND:w13Zp)
920         if ((offset != 26)); then
921                 error "wrong offset, expected 26, got '$offset'"
922         fi
923 }
924 run_test 23d "file offset is correct after appending writes"
925
926 # rename sanity
927 test_24a() {
928         echo '-- same directory rename'
929         test_mkdir $DIR/$tdir
930         touch $DIR/$tdir/$tfile.1
931         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
932         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
933 }
934 run_test 24a "rename file to non-existent target"
935
936 test_24b() {
937         test_mkdir $DIR/$tdir
938         touch $DIR/$tdir/$tfile.{1,2}
939         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
940         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
941         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
942 }
943 run_test 24b "rename file to existing target"
944
945 test_24c() {
946         test_mkdir $DIR/$tdir
947         test_mkdir $DIR/$tdir/d$testnum.1
948         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
949         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
950         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
951 }
952 run_test 24c "rename directory to non-existent target"
953
954 test_24d() {
955         test_mkdir -c1 $DIR/$tdir
956         test_mkdir -c1 $DIR/$tdir/d$testnum.1
957         test_mkdir -c1 $DIR/$tdir/d$testnum.2
958         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
959         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
960         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
961 }
962 run_test 24d "rename directory to existing target"
963
964 test_24e() {
965         echo '-- cross directory renames --'
966         test_mkdir $DIR/R5a
967         test_mkdir $DIR/R5b
968         touch $DIR/R5a/f
969         mv $DIR/R5a/f $DIR/R5b/g
970         $CHECKSTAT -a $DIR/R5a/f || error "$DIR/R5a/f exists"
971         $CHECKSTAT -t file $DIR/R5b/g || error "$DIR/R5b/g not file type"
972 }
973 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
974
975 test_24f() {
976         test_mkdir $DIR/R6a
977         test_mkdir $DIR/R6b
978         touch $DIR/R6a/f $DIR/R6b/g
979         mv $DIR/R6a/f $DIR/R6b/g
980         $CHECKSTAT -a $DIR/R6a/f || error "$DIR/R6a/f exists"
981         $CHECKSTAT -t file $DIR/R6b/g || error "$DIR/R6b/g not file type"
982 }
983 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
984
985 test_24g() {
986         test_mkdir $DIR/R7a
987         test_mkdir $DIR/R7b
988         test_mkdir $DIR/R7a/d
989         mv $DIR/R7a/d $DIR/R7b/e
990         $CHECKSTAT -a $DIR/R7a/d || error "$DIR/R7a/d exists"
991         $CHECKSTAT -t dir $DIR/R7b/e || error "$DIR/R7b/e not dir type"
992 }
993 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
994
995 test_24h() {
996         test_mkdir -c1 $DIR/R8a
997         test_mkdir -c1 $DIR/R8b
998         test_mkdir -c1 $DIR/R8a/d
999         test_mkdir -c1 $DIR/R8b/e
1000         mrename $DIR/R8a/d $DIR/R8b/e
1001         $CHECKSTAT -a $DIR/R8a/d || error "$DIR/R8a/d exists"
1002         $CHECKSTAT -t dir $DIR/R8b/e || error "$DIR/R8b/e not dir type"
1003 }
1004 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
1005
1006 test_24i() {
1007         echo "-- rename error cases"
1008         test_mkdir $DIR/R9
1009         test_mkdir $DIR/R9/a
1010         touch $DIR/R9/f
1011         mrename $DIR/R9/f $DIR/R9/a
1012         $CHECKSTAT -t file $DIR/R9/f || error "$DIR/R9/f not file type"
1013         $CHECKSTAT -t dir  $DIR/R9/a || error "$DIR/R9/a not dir type"
1014         $CHECKSTAT -a $DIR/R9/a/f || error "$DIR/R9/a/f exists"
1015 }
1016 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
1017
1018 test_24j() {
1019         test_mkdir $DIR/R10
1020         mrename $DIR/R10/f $DIR/R10/g
1021         $CHECKSTAT -t dir $DIR/R10 || error "$DIR/R10 not dir type"
1022         $CHECKSTAT -a $DIR/R10/f || error "$DIR/R10/f exists"
1023         $CHECKSTAT -a $DIR/R10/g || error "$DIR/R10/g exists"
1024 }
1025 run_test 24j "source does not exist ============================"
1026
1027 test_24k() {
1028         test_mkdir $DIR/R11a
1029         test_mkdir $DIR/R11a/d
1030         touch $DIR/R11a/f
1031         mv $DIR/R11a/f $DIR/R11a/d
1032         $CHECKSTAT -a $DIR/R11a/f || error "$DIR/R11a/f exists"
1033         $CHECKSTAT -t file $DIR/R11a/d/f || error "$DIR/R11a/d/f not file type"
1034 }
1035 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
1036
1037 # bug 2429 - rename foo foo foo creates invalid file
1038 test_24l() {
1039         f="$DIR/f24l"
1040         $MULTIOP $f OcNs || error "rename of ${f} to itself failed"
1041 }
1042 run_test 24l "Renaming a file to itself ========================"
1043
1044 test_24m() {
1045         f="$DIR/f24m"
1046         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
1047         # on ext3 this does not remove either the source or target files
1048         # though the "expected" operation would be to remove the source
1049         $CHECKSTAT -t file ${f} || error "${f} missing"
1050         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
1051 }
1052 run_test 24m "Renaming a file to a hard link to itself ========="
1053
1054 test_24n() {
1055     f="$DIR/f24n"
1056     # this stats the old file after it was renamed, so it should fail
1057     touch ${f}
1058     $CHECKSTAT ${f} || error "${f} missing"
1059     mv ${f} ${f}.rename
1060     $CHECKSTAT ${f}.rename || error "${f}.rename missing"
1061     $CHECKSTAT -a ${f} || error "${f} exists"
1062 }
1063 run_test 24n "Statting the old file after renaming (Posix rename 2)"
1064
1065 test_24o() {
1066         test_mkdir $DIR/$tdir
1067         rename_many -s random -v -n 10 $DIR/$tdir
1068 }
1069 run_test 24o "rename of files during htree split"
1070
1071 test_24p() {
1072         test_mkdir $DIR/R12a
1073         test_mkdir $DIR/R12b
1074         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
1075         mrename $DIR/R12a $DIR/R12b
1076         $CHECKSTAT -a $DIR/R12a || error "$DIR/R12a exists"
1077         $CHECKSTAT -t dir $DIR/R12b || error "$DIR/R12b not dir type"
1078         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
1079         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
1080 }
1081 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
1082
1083 cleanup_multiop_pause() {
1084         trap 0
1085         kill -USR1 $MULTIPID
1086 }
1087
1088 test_24q() {
1089         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1090
1091         test_mkdir $DIR/R13a
1092         test_mkdir $DIR/R13b
1093         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
1094         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
1095         MULTIPID=$!
1096
1097         trap cleanup_multiop_pause EXIT
1098         mrename $DIR/R13a $DIR/R13b
1099         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
1100         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
1101         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
1102         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
1103         cleanup_multiop_pause
1104         wait $MULTIPID || error "multiop close failed"
1105 }
1106 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1107
1108 test_24r() { #bug 3789
1109         test_mkdir $DIR/R14a
1110         test_mkdir $DIR/R14a/b
1111         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1112         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1113         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1114 }
1115 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1116
1117 test_24s() {
1118         test_mkdir $DIR/R15a
1119         test_mkdir $DIR/R15a/b
1120         test_mkdir $DIR/R15a/b/c
1121         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1122         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1123         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1124 }
1125 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1126 test_24t() {
1127         test_mkdir $DIR/R16a
1128         test_mkdir $DIR/R16a/b
1129         test_mkdir $DIR/R16a/b/c
1130         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1131         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1132         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1133 }
1134 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1135
1136 test_24u() { # bug12192
1137         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error "multiop failed"
1138         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1139 }
1140 run_test 24u "create stripe file"
1141
1142 simple_cleanup_common() {
1143         local rc=0
1144         trap 0
1145         [ -z "$DIR" -o -z "$tdir" ] && return 0
1146
1147         local start=$SECONDS
1148         rm -rf $DIR/$tdir
1149         rc=$?
1150         wait_delete_completed
1151         echo "cleanup time $((SECONDS - start))"
1152         return $rc
1153 }
1154
1155 max_pages_per_rpc() {
1156         local mdtname="$(printf "MDT%04x" ${1:-0})"
1157         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1158 }
1159
1160 test_24v() {
1161         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1162
1163         local nrfiles=${COUNT:-100000}
1164         local fname="$DIR/$tdir/$tfile"
1165
1166         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1167         [ "$mds1_FSTYPE" = "zfs" ] && nrfiles=${COUNT:-10000}
1168
1169         test_mkdir "$(dirname $fname)"
1170         # assume MDT0000 has the fewest inodes
1171         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1172         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1173         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1174
1175         trap simple_cleanup_common EXIT
1176
1177         createmany -m "$fname" $nrfiles
1178
1179         cancel_lru_locks mdc
1180         lctl set_param mdc.*.stats clear
1181
1182         # was previously test_24D: LU-6101
1183         # readdir() returns correct number of entries after cursor reload
1184         local num_ls=$(ls $DIR/$tdir | wc -l)
1185         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1186         local num_all=$(ls -a $DIR/$tdir | wc -l)
1187         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1188              $num_all -ne $((nrfiles + 2)) ]; then
1189                 error "Expected $nrfiles files, got $num_ls " \
1190                         "($num_uniq unique $num_all .&..)"
1191         fi
1192         # LU-5 large readdir
1193         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1194         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1195         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1196         # take into account of overhead in lu_dirpage header and end mark in
1197         # each page, plus one in rpc_num calculation.
1198         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1199         local page_entries=$(((PAGE_SIZE - 24) / dirent_size))
1200         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1201         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1202         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1203         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1204         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1205         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1206                 error "large readdir doesn't take effect: " \
1207                       "$mds_readpage should be about $rpc_max"
1208
1209         simple_cleanup_common
1210 }
1211 run_test 24v "list large directory (test hash collision, b=17560)"
1212
1213 test_24w() { # bug21506
1214         SZ1=234852
1215         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1216         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1217         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1218         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1219         [[ "$SZ1" -eq "$SZ2" ]] ||
1220                 error "Error reading at the end of the file $tfile"
1221 }
1222 run_test 24w "Reading a file larger than 4Gb"
1223
1224 test_24x() {
1225         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1226         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1227         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1228                 skip "Need MDS version at least 2.7.56"
1229
1230         local MDTIDX=1
1231         local remote_dir=$DIR/$tdir/remote_dir
1232
1233         test_mkdir $DIR/$tdir
1234         $LFS mkdir -i $MDTIDX $remote_dir ||
1235                 error "create remote directory failed"
1236
1237         test_mkdir $DIR/$tdir/src_dir
1238         touch $DIR/$tdir/src_file
1239         test_mkdir $remote_dir/tgt_dir
1240         touch $remote_dir/tgt_file
1241
1242         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1243                 error "rename dir cross MDT failed!"
1244
1245         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1246                 error "rename file cross MDT failed!"
1247
1248         touch $DIR/$tdir/ln_file
1249         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1250                 error "ln file cross MDT failed"
1251
1252         rm -rf $DIR/$tdir || error "Can not delete directories"
1253 }
1254 run_test 24x "cross MDT rename/link"
1255
1256 test_24y() {
1257         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1258         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1259
1260         local remote_dir=$DIR/$tdir/remote_dir
1261         local mdtidx=1
1262
1263         test_mkdir $DIR/$tdir
1264         $LFS mkdir -i $mdtidx $remote_dir ||
1265                 error "create remote directory failed"
1266
1267         test_mkdir $remote_dir/src_dir
1268         touch $remote_dir/src_file
1269         test_mkdir $remote_dir/tgt_dir
1270         touch $remote_dir/tgt_file
1271
1272         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1273                 error "rename subdir in the same remote dir failed!"
1274
1275         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1276                 error "rename files in the same remote dir failed!"
1277
1278         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1279                 error "link files in the same remote dir failed!"
1280
1281         rm -rf $DIR/$tdir || error "Can not delete directories"
1282 }
1283 run_test 24y "rename/link on the same dir should succeed"
1284
1285 test_24z() {
1286         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
1287         [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
1288                 skip "Need MDS version at least 2.12.51"
1289
1290         local index
1291
1292         for index in 0 1; do
1293                 $LFS mkdir -i $index $DIR/$tdir.$index || error "mkdir failed"
1294                 touch $DIR/$tdir.0/$tfile.$index || error "touch failed"
1295         done
1296
1297         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1 || error "mv $tfile.0 failed"
1298
1299         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.0)
1300         [ $index -eq 0 ] || error "$tfile.0 is on MDT$index"
1301
1302         local mdts=$(comma_list $(mdts_nodes))
1303
1304         do_nodes $mdts $LCTL set_param mdt.*.enable_remote_rename=0
1305         stack_trap "do_nodes $mdts $LCTL \
1306                 set_param mdt.*.enable_remote_rename=1" EXIT
1307
1308         mv $DIR/$tdir.0/$tfile.1 $DIR/$tdir.1 || error "mv $tfile.1 failed"
1309
1310         index=$($LFS getstripe -m $DIR/$tdir.1/$tfile.1)
1311         [ $index -eq 1 ] || error "$tfile.1 is on MDT$index"
1312 }
1313 run_test 24z "cross-MDT rename is done as cp"
1314
1315 test_24A() { # LU-3182
1316         local NFILES=5000
1317
1318         rm -rf $DIR/$tdir
1319         test_mkdir $DIR/$tdir
1320         trap simple_cleanup_common EXIT
1321         createmany -m $DIR/$tdir/$tfile $NFILES
1322         local t=$(ls $DIR/$tdir | wc -l)
1323         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1324         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1325         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1326                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1327         fi
1328
1329         simple_cleanup_common || error "Can not delete directories"
1330 }
1331 run_test 24A "readdir() returns correct number of entries."
1332
1333 test_24B() { # LU-4805
1334         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1335
1336         local count
1337
1338         test_mkdir $DIR/$tdir
1339         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1340                 error "create striped dir failed"
1341
1342         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1343         [ $count -eq 2 ] || error "Expected 2, got $count"
1344
1345         touch $DIR/$tdir/striped_dir/a
1346
1347         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1348         [ $count -eq 3 ] || error "Expected 3, got $count"
1349
1350         touch $DIR/$tdir/striped_dir/.f
1351
1352         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1353         [ $count -eq 4 ] || error "Expected 4, got $count"
1354
1355         rm -rf $DIR/$tdir || error "Can not delete directories"
1356 }
1357 run_test 24B "readdir for striped dir return correct number of entries"
1358
1359 test_24C() {
1360         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1361
1362         mkdir $DIR/$tdir
1363         mkdir $DIR/$tdir/d0
1364         mkdir $DIR/$tdir/d1
1365
1366         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1367                 error "create striped dir failed"
1368
1369         cd $DIR/$tdir/d0/striped_dir
1370
1371         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1372         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1373         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1374
1375         [ "$d0_ino" = "$parent_ino" ] ||
1376                 error ".. wrong, expect $d0_ino, get $parent_ino"
1377
1378         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1379                 error "mv striped dir failed"
1380
1381         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1382
1383         [ "$d1_ino" = "$parent_ino" ] ||
1384                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1385 }
1386 run_test 24C "check .. in striped dir"
1387
1388 test_24E() {
1389         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1390         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1391
1392         mkdir -p $DIR/$tdir
1393         mkdir $DIR/$tdir/src_dir
1394         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1395                 error "create remote source failed"
1396
1397         touch $DIR/$tdir/src_dir/src_child/a
1398
1399         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1400                 error "create remote target dir failed"
1401
1402         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1403                 error "create remote target child failed"
1404
1405         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1406                 error "rename dir cross MDT failed!"
1407
1408         find $DIR/$tdir
1409
1410         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1411                 error "src_child still exists after rename"
1412
1413         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1414                 error "missing file(a) after rename"
1415
1416         rm -rf $DIR/$tdir || error "Can not delete directories"
1417 }
1418 run_test 24E "cross MDT rename/link"
1419
1420 test_24F () {
1421         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1422
1423         local repeats=1000
1424         [ "$SLOW" = "no" ] && repeats=100
1425
1426         mkdir -p $DIR/$tdir
1427
1428         echo "$repeats repeats"
1429         for ((i = 0; i < repeats; i++)); do
1430                 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1431                 touch $DIR/$tdir/test/a || error "touch fails"
1432                 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1433                 rm -rf $DIR/$tdir/test || error "rmdir fails"
1434         done
1435
1436         true
1437 }
1438 run_test 24F "hash order vs readdir (LU-11330)"
1439
1440 test_25a() {
1441         echo '== symlink sanity ============================================='
1442
1443         test_mkdir $DIR/d25
1444         ln -s d25 $DIR/s25
1445         touch $DIR/s25/foo ||
1446                 error "File creation in symlinked directory failed"
1447 }
1448 run_test 25a "create file in symlinked directory ==============="
1449
1450 test_25b() {
1451         [ ! -d $DIR/d25 ] && test_25a
1452         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1453 }
1454 run_test 25b "lookup file in symlinked directory ==============="
1455
1456 test_26a() {
1457         test_mkdir $DIR/d26
1458         test_mkdir $DIR/d26/d26-2
1459         ln -s d26/d26-2 $DIR/s26
1460         touch $DIR/s26/foo || error "File creation failed"
1461 }
1462 run_test 26a "multiple component symlink ======================="
1463
1464 test_26b() {
1465         test_mkdir -p $DIR/$tdir/d26-2
1466         ln -s $tdir/d26-2/foo $DIR/s26-2
1467         touch $DIR/s26-2 || error "File creation failed"
1468 }
1469 run_test 26b "multiple component symlink at end of lookup ======"
1470
1471 test_26c() {
1472         test_mkdir $DIR/d26.2
1473         touch $DIR/d26.2/foo
1474         ln -s d26.2 $DIR/s26.2-1
1475         ln -s s26.2-1 $DIR/s26.2-2
1476         ln -s s26.2-2 $DIR/s26.2-3
1477         chmod 0666 $DIR/s26.2-3/foo
1478 }
1479 run_test 26c "chain of symlinks"
1480
1481 # recursive symlinks (bug 439)
1482 test_26d() {
1483         ln -s d26-3/foo $DIR/d26-3
1484 }
1485 run_test 26d "create multiple component recursive symlink"
1486
1487 test_26e() {
1488         [ ! -h $DIR/d26-3 ] && test_26d
1489         rm $DIR/d26-3
1490 }
1491 run_test 26e "unlink multiple component recursive symlink"
1492
1493 # recursive symlinks (bug 7022)
1494 test_26f() {
1495         test_mkdir $DIR/$tdir
1496         test_mkdir $DIR/$tdir/$tfile
1497         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1498         test_mkdir -p lndir/bar1
1499         test_mkdir $DIR/$tdir/$tfile/$tfile
1500         cd $tfile                || error "cd $tfile failed"
1501         ln -s .. dotdot          || error "ln dotdot failed"
1502         ln -s dotdot/lndir lndir || error "ln lndir failed"
1503         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1504         output=`ls $tfile/$tfile/lndir/bar1`
1505         [ "$output" = bar1 ] && error "unexpected output"
1506         rm -r $tfile             || error "rm $tfile failed"
1507         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1508 }
1509 run_test 26f "rm -r of a directory which has recursive symlink"
1510
1511 test_27a() {
1512         test_mkdir $DIR/$tdir
1513         $LFS getstripe $DIR/$tdir
1514         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1515         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1516         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1517 }
1518 run_test 27a "one stripe file"
1519
1520 test_27b() {
1521         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1522
1523         test_mkdir $DIR/$tdir
1524         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1525         $LFS getstripe -c $DIR/$tdir/$tfile
1526         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1527                 error "two-stripe file doesn't have two stripes"
1528
1529         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1530 }
1531 run_test 27b "create and write to two stripe file"
1532
1533 test_27d() {
1534         test_mkdir $DIR/$tdir
1535         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1536                 error "setstripe failed"
1537         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1538         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1539 }
1540 run_test 27d "create file with default settings"
1541
1542 test_27e() {
1543         # LU-5839 adds check for existed layout before setting it
1544         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1545                 skip "Need MDS version at least 2.7.56"
1546
1547         test_mkdir $DIR/$tdir
1548         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1549         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1550         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1551 }
1552 run_test 27e "setstripe existing file (should return error)"
1553
1554 test_27f() {
1555         test_mkdir $DIR/$tdir
1556         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1557                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1558         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1559                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1560         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1561         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1562 }
1563 run_test 27f "setstripe with bad stripe size (should return error)"
1564
1565 test_27g() {
1566         test_mkdir $DIR/$tdir
1567         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1568         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1569                 error "$DIR/$tdir/$tfile has object"
1570 }
1571 run_test 27g "$LFS getstripe with no objects"
1572
1573 test_27ga() {
1574         test_mkdir $DIR/$tdir
1575         touch $DIR/$tdir/$tfile || error "touch failed"
1576         ln -s bogus $DIR/$tdir/$tfile.2 || error "ln failed"
1577         $LFS getstripe -m $DIR/$tdir/$tfile $DIR/$tdir/$tfile.2
1578         local rc=$?
1579         (( rc == 2 )) || error "getstripe did not return ENOENT"
1580 }
1581 run_test 27ga "$LFS getstripe with missing file (should return error)"
1582
1583 test_27i() {
1584         test_mkdir $DIR/$tdir
1585         touch $DIR/$tdir/$tfile || error "touch failed"
1586         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1587                 error "missing objects"
1588 }
1589 run_test 27i "$LFS getstripe with some objects"
1590
1591 test_27j() {
1592         test_mkdir $DIR/$tdir
1593         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1594                 error "setstripe failed" || true
1595 }
1596 run_test 27j "setstripe with bad stripe offset (should return error)"
1597
1598 test_27k() { # bug 2844
1599         test_mkdir $DIR/$tdir
1600         local file=$DIR/$tdir/$tfile
1601         local ll_max_blksize=$((4 * 1024 * 1024))
1602         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1603         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1604         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1605         dd if=/dev/zero of=$file bs=4k count=1
1606         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1607         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1608 }
1609 run_test 27k "limit i_blksize for broken user apps"
1610
1611 test_27l() {
1612         mcreate $DIR/$tfile || error "creating file"
1613         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1614                 error "setstripe should have failed" || true
1615 }
1616 run_test 27l "check setstripe permissions (should return error)"
1617
1618 test_27m() {
1619         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1620
1621         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1622                    head -n1)
1623         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1624                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1625         fi
1626         trap simple_cleanup_common EXIT
1627         test_mkdir $DIR/$tdir
1628         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1629         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1630                 error "dd should fill OST0"
1631         i=2
1632         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1633                 i=$((i + 1))
1634                 [ $i -gt 256 ] && break
1635         done
1636         i=$((i + 1))
1637         touch $DIR/$tdir/$tfile.$i
1638         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1639             awk '{print $1}'| grep -w "0") ] &&
1640                 error "OST0 was full but new created file still use it"
1641         i=$((i + 1))
1642         touch $DIR/$tdir/$tfile.$i
1643         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1644             awk '{print $1}'| grep -w "0") ] &&
1645                 error "OST0 was full but new created file still use it"
1646         simple_cleanup_common
1647 }
1648 run_test 27m "create file while OST0 was full"
1649
1650 sleep_maxage() {
1651         local delay=$(do_facet $SINGLEMDS lctl get_param -n lo[vd].*.qos_maxage |
1652                       awk '{ print $1 * 2; exit; }')
1653         sleep $delay
1654 }
1655
1656 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1657 # if the OST isn't full anymore.
1658 reset_enospc() {
1659         local OSTIDX=${1:-""}
1660
1661         local list=$(comma_list $(osts_nodes))
1662         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1663
1664         do_nodes $list lctl set_param fail_loc=0
1665         sync    # initiate all OST_DESTROYs from MDS to OST
1666         sleep_maxage
1667 }
1668
1669 exhaust_precreations() {
1670         local OSTIDX=$1
1671         local FAILLOC=$2
1672         local FAILIDX=${3:-$OSTIDX}
1673         local ofacet=ost$((OSTIDX + 1))
1674
1675         test_mkdir -p -c1 $DIR/$tdir
1676         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1677         local mfacet=mds$((mdtidx + 1))
1678         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1679
1680         local OST=$(ostname_from_index $OSTIDX)
1681
1682         # on the mdt's osc
1683         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1684         local last_id=$(do_facet $mfacet lctl get_param -n \
1685                         osp.$mdtosc_proc1.prealloc_last_id)
1686         local next_id=$(do_facet $mfacet lctl get_param -n \
1687                         osp.$mdtosc_proc1.prealloc_next_id)
1688
1689         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1690         do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1691
1692         test_mkdir -p $DIR/$tdir/${OST}
1693         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1694 #define OBD_FAIL_OST_ENOSPC              0x215
1695         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1696         echo "Creating to objid $last_id on ost $OST..."
1697         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1698         do_facet $mfacet lctl get_param osp.$mdtosc_proc2.prealloc*
1699         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1700         sleep_maxage
1701 }
1702
1703 exhaust_all_precreations() {
1704         local i
1705         for (( i=0; i < OSTCOUNT; i++ )) ; do
1706                 exhaust_precreations $i $1 -1
1707         done
1708 }
1709
1710 test_27n() {
1711         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1712         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1713         remote_mds_nodsh && skip "remote MDS with nodsh"
1714         remote_ost_nodsh && skip "remote OST with nodsh"
1715
1716         reset_enospc
1717         rm -f $DIR/$tdir/$tfile
1718         exhaust_precreations 0 0x80000215
1719         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1720         touch $DIR/$tdir/$tfile || error "touch failed"
1721         $LFS getstripe $DIR/$tdir/$tfile
1722         reset_enospc
1723 }
1724 run_test 27n "create file with some full OSTs"
1725
1726 test_27o() {
1727         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1728         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1729         remote_mds_nodsh && skip "remote MDS with nodsh"
1730         remote_ost_nodsh && skip "remote OST with nodsh"
1731
1732         reset_enospc
1733         rm -f $DIR/$tdir/$tfile
1734         exhaust_all_precreations 0x215
1735
1736         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1737
1738         reset_enospc
1739         rm -rf $DIR/$tdir/*
1740 }
1741 run_test 27o "create file with all full OSTs (should error)"
1742
1743 test_27p() {
1744         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1745         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1746         remote_mds_nodsh && skip "remote MDS with nodsh"
1747         remote_ost_nodsh && skip "remote OST with nodsh"
1748
1749         reset_enospc
1750         rm -f $DIR/$tdir/$tfile
1751         test_mkdir $DIR/$tdir
1752
1753         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1754         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1755         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1756
1757         exhaust_precreations 0 0x80000215
1758         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1759         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1760         $LFS getstripe $DIR/$tdir/$tfile
1761
1762         reset_enospc
1763 }
1764 run_test 27p "append to a truncated file with some full OSTs"
1765
1766 test_27q() {
1767         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1768         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1769         remote_mds_nodsh && skip "remote MDS with nodsh"
1770         remote_ost_nodsh && skip "remote OST with nodsh"
1771
1772         reset_enospc
1773         rm -f $DIR/$tdir/$tfile
1774
1775         test_mkdir $DIR/$tdir
1776         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1777         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1778                 error "truncate $DIR/$tdir/$tfile failed"
1779         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1780
1781         exhaust_all_precreations 0x215
1782
1783         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1784         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1785
1786         reset_enospc
1787 }
1788 run_test 27q "append to truncated file with all OSTs full (should error)"
1789
1790 test_27r() {
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         reset_enospc
1797         rm -f $DIR/$tdir/$tfile
1798         exhaust_precreations 0 0x80000215
1799
1800         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1801
1802         reset_enospc
1803 }
1804 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1805
1806 test_27s() { # bug 10725
1807         test_mkdir $DIR/$tdir
1808         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1809         local stripe_count=0
1810         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1811         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1812                 error "stripe width >= 2^32 succeeded" || true
1813
1814 }
1815 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1816
1817 test_27t() { # bug 10864
1818         WDIR=$(pwd)
1819         WLFS=$(which lfs)
1820         cd $DIR
1821         touch $tfile
1822         $WLFS getstripe $tfile
1823         cd $WDIR
1824 }
1825 run_test 27t "check that utils parse path correctly"
1826
1827 test_27u() { # bug 4900
1828         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1829         remote_mds_nodsh && skip "remote MDS with nodsh"
1830
1831         local index
1832         local list=$(comma_list $(mdts_nodes))
1833
1834 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1835         do_nodes $list $LCTL set_param fail_loc=0x139
1836         test_mkdir -p $DIR/$tdir
1837         trap simple_cleanup_common EXIT
1838         createmany -o $DIR/$tdir/t- 1000
1839         do_nodes $list $LCTL set_param fail_loc=0
1840
1841         TLOG=$TMP/$tfile.getstripe
1842         $LFS getstripe $DIR/$tdir > $TLOG
1843         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1844         unlinkmany $DIR/$tdir/t- 1000
1845         trap 0
1846         [[ $OBJS -gt 0 ]] &&
1847                 error "$OBJS objects created on OST-0. See $TLOG" ||
1848                 rm -f $TLOG
1849 }
1850 run_test 27u "skip object creation on OSC w/o objects"
1851
1852 test_27v() { # bug 4900
1853         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1854         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1855         remote_mds_nodsh && skip "remote MDS with nodsh"
1856         remote_ost_nodsh && skip "remote OST with nodsh"
1857
1858         exhaust_all_precreations 0x215
1859         reset_enospc
1860
1861         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1862
1863         touch $DIR/$tdir/$tfile
1864         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1865         # all except ost1
1866         for (( i=1; i < OSTCOUNT; i++ )); do
1867                 do_facet ost$i lctl set_param fail_loc=0x705
1868         done
1869         local START=`date +%s`
1870         createmany -o $DIR/$tdir/$tfile 32
1871
1872         local FINISH=`date +%s`
1873         local TIMEOUT=`lctl get_param -n timeout`
1874         local PROCESS=$((FINISH - START))
1875         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1876                error "$FINISH - $START >= $TIMEOUT / 2"
1877         sleep $((TIMEOUT / 2 - PROCESS))
1878         reset_enospc
1879 }
1880 run_test 27v "skip object creation on slow OST"
1881
1882 test_27w() { # bug 10997
1883         test_mkdir $DIR/$tdir
1884         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1885         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1886                 error "stripe size $size != 65536" || true
1887         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1888                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1889 }
1890 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1891
1892 test_27wa() {
1893         [[ $OSTCOUNT -lt 2 ]] &&
1894                 skip_env "skipping multiple stripe count/offset test"
1895
1896         test_mkdir $DIR/$tdir
1897         for i in $(seq 1 $OSTCOUNT); do
1898                 offset=$((i - 1))
1899                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1900                         error "setstripe -c $i -i $offset failed"
1901                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1902                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1903                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1904                 [ $index -ne $offset ] &&
1905                         error "stripe offset $index != $offset" || true
1906         done
1907 }
1908 run_test 27wa "check $LFS setstripe -c -i options"
1909
1910 test_27x() {
1911         remote_ost_nodsh && skip "remote OST with nodsh"
1912         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1914
1915         OFFSET=$(($OSTCOUNT - 1))
1916         OSTIDX=0
1917         local OST=$(ostname_from_index $OSTIDX)
1918
1919         test_mkdir $DIR/$tdir
1920         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1921         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1922         sleep_maxage
1923         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1924         for i in $(seq 0 $OFFSET); do
1925                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1926                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1927                 error "OST0 was degraded but new created file still use it"
1928         done
1929         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1930 }
1931 run_test 27x "create files while OST0 is degraded"
1932
1933 test_27y() {
1934         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1935         remote_mds_nodsh && skip "remote MDS with nodsh"
1936         remote_ost_nodsh && skip "remote OST with nodsh"
1937         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1938
1939         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1940         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1941                 osp.$mdtosc.prealloc_last_id)
1942         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1943                 osp.$mdtosc.prealloc_next_id)
1944         local fcount=$((last_id - next_id))
1945         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1946         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1947
1948         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1949                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1950         local OST_DEACTIVE_IDX=-1
1951         local OSC
1952         local OSTIDX
1953         local OST
1954
1955         for OSC in $MDS_OSCS; do
1956                 OST=$(osc_to_ost $OSC)
1957                 OSTIDX=$(index_from_ostuuid $OST)
1958                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1959                         OST_DEACTIVE_IDX=$OSTIDX
1960                 fi
1961                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1962                         echo $OSC "is Deactivated:"
1963                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1964                 fi
1965         done
1966
1967         OSTIDX=$(index_from_ostuuid $OST)
1968         test_mkdir $DIR/$tdir
1969         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1970
1971         for OSC in $MDS_OSCS; do
1972                 OST=$(osc_to_ost $OSC)
1973                 OSTIDX=$(index_from_ostuuid $OST)
1974                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1975                         echo $OST "is degraded:"
1976                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1977                                                 obdfilter.$OST.degraded=1
1978                 fi
1979         done
1980
1981         sleep_maxage
1982         createmany -o $DIR/$tdir/$tfile $fcount
1983
1984         for OSC in $MDS_OSCS; do
1985                 OST=$(osc_to_ost $OSC)
1986                 OSTIDX=$(index_from_ostuuid $OST)
1987                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1988                         echo $OST "is recovered from degraded:"
1989                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1990                                                 obdfilter.$OST.degraded=0
1991                 else
1992                         do_facet $SINGLEMDS lctl --device %$OSC activate
1993                 fi
1994         done
1995
1996         # all osp devices get activated, hence -1 stripe count restored
1997         local stripe_count=0
1998
1999         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
2000         # devices get activated.
2001         sleep_maxage
2002         $LFS setstripe -c -1 $DIR/$tfile
2003         stripe_count=$($LFS getstripe -c $DIR/$tfile)
2004         rm -f $DIR/$tfile
2005         [ $stripe_count -ne $OSTCOUNT ] &&
2006                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
2007         return 0
2008 }
2009 run_test 27y "create files while OST0 is degraded and the rest inactive"
2010
2011 check_seq_oid()
2012 {
2013         log "check file $1"
2014
2015         lmm_count=$($GETSTRIPE -c $1)
2016         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
2017         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
2018
2019         local old_ifs="$IFS"
2020         IFS=$'[:]'
2021         fid=($($LFS path2fid $1))
2022         IFS="$old_ifs"
2023
2024         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
2025         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
2026
2027         # compare lmm_seq and lu_fid->f_seq
2028         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
2029         # compare lmm_object_id and lu_fid->oid
2030         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
2031
2032         # check the trusted.fid attribute of the OST objects of the file
2033         local have_obdidx=false
2034         local stripe_nr=0
2035         $GETSTRIPE $1 | while read obdidx oid hex seq; do
2036                 # skip lines up to and including "obdidx"
2037                 [ -z "$obdidx" ] && break
2038                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
2039                 $have_obdidx || continue
2040
2041                 local ost=$((obdidx + 1))
2042                 local dev=$(ostdevname $ost)
2043                 local oid_hex
2044
2045                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2046
2047                 seq=$(echo $seq | sed -e "s/^0x//g")
2048                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2049                         oid_hex=$(echo $oid)
2050                 else
2051                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
2052                 fi
2053                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2054
2055                 local ff=""
2056                 #
2057                 # Don't unmount/remount the OSTs if we don't need to do that.
2058                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2059                 # update too, until that use mount/ll_decode_filter_fid/mount.
2060                 # Re-enable when debugfs will understand new filter_fid.
2061                 #
2062                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2063                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2064                                 $dev 2>/dev/null" | grep "parent=")
2065                 fi
2066                 if [ -z "$ff" ]; then
2067                         stop ost$ost
2068                         mount_fstype ost$ost
2069                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2070                                 $(facet_mntpt ost$ost)/$obj_file)
2071                         unmount_fstype ost$ost
2072                         start ost$ost $dev $OST_MOUNT_OPTS
2073                         clients_up
2074                 fi
2075
2076                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2077
2078                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2079
2080                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2081                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2082                 #
2083                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2084                 #       stripe_size=1048576 component_id=1 component_start=0 \
2085                 #       component_end=33554432
2086                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2087                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2088                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2089                 local ff_pstripe
2090                 if grep -q 'stripe=' <<<$ff; then
2091                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2092                 else
2093                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2094                         # into f_ver in this case.  See comment on ff_parent.
2095                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2096                 fi
2097
2098                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2099                 [ $ff_pseq = $lmm_seq ] ||
2100                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2101                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2102                 [ $ff_poid = $lmm_oid ] ||
2103                         error "FF parent OID $ff_poid != $lmm_oid"
2104                 (($ff_pstripe == $stripe_nr)) ||
2105                         error "FF stripe $ff_pstripe != $stripe_nr"
2106
2107                 stripe_nr=$((stripe_nr + 1))
2108                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2109                         continue
2110                 if grep -q 'stripe_count=' <<<$ff; then
2111                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2112                                             -e 's/ .*//' <<<$ff)
2113                         [ $lmm_count = $ff_scnt ] ||
2114                                 error "FF stripe count $lmm_count != $ff_scnt"
2115                 fi
2116         done
2117 }
2118
2119 test_27z() {
2120         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2121         remote_ost_nodsh && skip "remote OST with nodsh"
2122
2123         test_mkdir $DIR/$tdir
2124         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2125                 { error "setstripe -c -1 failed"; return 1; }
2126         # We need to send a write to every object to get parent FID info set.
2127         # This _should_ also work for setattr, but does not currently.
2128         # touch $DIR/$tdir/$tfile-1 ||
2129         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2130                 { error "dd $tfile-1 failed"; return 2; }
2131         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2132                 { error "setstripe -c -1 failed"; return 3; }
2133         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2134                 { error "dd $tfile-2 failed"; return 4; }
2135
2136         # make sure write RPCs have been sent to OSTs
2137         sync; sleep 5; sync
2138
2139         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2140         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2141 }
2142 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2143
2144 test_27A() { # b=19102
2145         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2146
2147         save_layout_restore_at_exit $MOUNT
2148         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2149         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2150                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2151         local default_size=$($GETSTRIPE -S $MOUNT)
2152         local default_offset=$($GETSTRIPE -i $MOUNT)
2153         local dsize=$(do_facet $SINGLEMDS \
2154                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2155         [ $default_size -eq $dsize ] ||
2156                 error "stripe size $default_size != $dsize"
2157         [ $default_offset -eq -1 ] ||
2158                 error "stripe offset $default_offset != -1"
2159 }
2160 run_test 27A "check filesystem-wide default LOV EA values"
2161
2162 test_27B() { # LU-2523
2163         test_mkdir $DIR/$tdir
2164         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2165         touch $DIR/$tdir/f0
2166         # open f1 with O_LOV_DELAY_CREATE
2167         # rename f0 onto f1
2168         # call setstripe ioctl on open file descriptor for f1
2169         # close
2170         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2171                 $DIR/$tdir/f0
2172
2173         rm -f $DIR/$tdir/f1
2174         # open f1 with O_LOV_DELAY_CREATE
2175         # unlink f1
2176         # call setstripe ioctl on open file descriptor for f1
2177         # close
2178         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2179
2180         # Allow multiop to fail in imitation of NFS's busted semantics.
2181         true
2182 }
2183 run_test 27B "call setstripe on open unlinked file/rename victim"
2184
2185 test_27C() { #LU-2871
2186         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2187
2188         declare -a ost_idx
2189         local index
2190         local found
2191         local i
2192         local j
2193
2194         test_mkdir $DIR/$tdir
2195         cd $DIR/$tdir
2196         for i in $(seq 0 $((OSTCOUNT - 1))); do
2197                 # set stripe across all OSTs starting from OST$i
2198                 $SETSTRIPE -i $i -c -1 $tfile$i
2199                 # get striping information
2200                 ost_idx=($($GETSTRIPE $tfile$i |
2201                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2202                 echo ${ost_idx[@]}
2203
2204                 # check the layout
2205                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2206                         error "${#ost_idx[@]} != $OSTCOUNT"
2207
2208                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2209                         found=0
2210                         for j in $(echo ${ost_idx[@]}); do
2211                                 if [ $index -eq $j ]; then
2212                                         found=1
2213                                         break
2214                                 fi
2215                         done
2216                         [ $found = 1 ] ||
2217                                 error "Can not find $index in ${ost_idx[@]}"
2218                 done
2219         done
2220 }
2221 run_test 27C "check full striping across all OSTs"
2222
2223 test_27D() {
2224         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2225         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2226         remote_mds_nodsh && skip "remote MDS with nodsh"
2227
2228         local POOL=${POOL:-testpool}
2229         local first_ost=0
2230         local last_ost=$(($OSTCOUNT - 1))
2231         local ost_step=1
2232         local ost_list=$(seq $first_ost $ost_step $last_ost)
2233         local ost_range="$first_ost $last_ost $ost_step"
2234
2235         test_mkdir $DIR/$tdir
2236         pool_add $POOL || error "pool_add failed"
2237         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2238
2239         local skip27D
2240         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2241                 skip27D+="-s 29"
2242         [ $MDS1_VERSION -lt $(version_code 2.9.55) -o \
2243           $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2244                 skip27D+=" -s 30,31"
2245         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2246                 error "llapi_layout_test failed"
2247
2248         destroy_test_pools || error "destroy test pools failed"
2249 }
2250 run_test 27D "validate llapi_layout API"
2251
2252 # Verify that default_easize is increased from its initial value after
2253 # accessing a widely striped file.
2254 test_27E() {
2255         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2256         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2257                 skip "client does not have LU-3338 fix"
2258
2259         # 72 bytes is the minimum space required to store striping
2260         # information for a file striped across one OST:
2261         # (sizeof(struct lov_user_md_v3) +
2262         #  sizeof(struct lov_user_ost_data_v1))
2263         local min_easize=72
2264         $LCTL set_param -n llite.*.default_easize $min_easize ||
2265                 error "lctl set_param failed"
2266         local easize=$($LCTL get_param -n llite.*.default_easize)
2267
2268         [ $easize -eq $min_easize ] ||
2269                 error "failed to set default_easize"
2270
2271         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2272                 error "setstripe failed"
2273         cat $DIR/$tfile
2274         rm $DIR/$tfile
2275
2276         easize=$($LCTL get_param -n llite.*.default_easize)
2277
2278         [ $easize -gt $min_easize ] ||
2279                 error "default_easize not updated"
2280 }
2281 run_test 27E "check that default extended attribute size properly increases"
2282
2283 test_27F() { # LU-5346/LU-7975
2284         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2285         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2286         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2287                 skip "Need MDS version at least 2.8.51"
2288         remote_ost_nodsh && skip "remote OST with nodsh"
2289
2290         test_mkdir $DIR/$tdir
2291         rm -f $DIR/$tdir/f0
2292         $SETSTRIPE -c 2 $DIR/$tdir
2293
2294         # stop all OSTs to reproduce situation for LU-7975 ticket
2295         for num in $(seq $OSTCOUNT); do
2296                 stop ost$num
2297         done
2298
2299         # open/create f0 with O_LOV_DELAY_CREATE
2300         # truncate f0 to a non-0 size
2301         # close
2302         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2303
2304         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2305         # open/write it again to force delayed layout creation
2306         cat /etc/hosts > $DIR/$tdir/f0 &
2307         catpid=$!
2308
2309         # restart OSTs
2310         for num in $(seq $OSTCOUNT); do
2311                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2312                         error "ost$num failed to start"
2313         done
2314
2315         wait $catpid || error "cat failed"
2316
2317         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2318         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2319
2320 }
2321 run_test 27F "Client resend delayed layout creation with non-zero size"
2322
2323 test_27G() { #LU-10629
2324         [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2325                 skip "Need MDS version at least 2.11.51"
2326         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2327         remote_mds_nodsh && skip "remote MDS with nodsh"
2328         local POOL=${POOL:-testpool}
2329         local ostrange="0 0 1"
2330
2331         test_mkdir $DIR/$tdir
2332         pool_add $POOL || error "pool_add failed"
2333         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2334         $LFS setstripe -p $POOL $DIR/$tdir
2335
2336         local pool=$($LFS getstripe -p $DIR/$tdir)
2337
2338         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2339
2340         $LFS setstripe -d $DIR/$tdir
2341
2342         pool=$($LFS getstripe -p $DIR/$tdir)
2343
2344         rmdir $DIR/$tdir
2345
2346         [ -z "$pool" ] || error "'$pool' is not empty"
2347 }
2348 run_test 27G "Clear OST pool from stripe"
2349
2350 test_27H() {
2351         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2352                 skip "Need MDS version newer than 2.11.54"
2353         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2354         test_mkdir $DIR/$tdir
2355         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2356         touch $DIR/$tdir/$tfile
2357         $LFS getstripe -c $DIR/$tdir/$tfile
2358         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2359                 error "two-stripe file doesn't have two stripes"
2360
2361         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2362         $LFS getstripe -y $DIR/$tdir/$tfile
2363         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2364              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2365                 error "expected l_ost_idx: [02]$ not matched"
2366
2367         # make sure ost list have been cleared
2368         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
2369         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2370                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2371         touch $DIR/$tdir/f3
2372         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2373 }
2374 run_test 27H "Set specific OSTs stripe"
2375
2376 test_27M() {
2377         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.12.57) ]] &&
2378                 skip "Need MDS version >= than 2.12.57"
2379         remote_mds_nodsh && skip "remote MDS with nodsh"
2380         [[ $OSTCOUNT -lt 2 ]] && skip_env "need > 1 OST"
2381
2382         test_mkdir $DIR/$tdir
2383
2384         # Set default striping on directory
2385         $LFS setstripe -C 4 $DIR/$tdir
2386
2387         echo 1 > $DIR/$tdir/${tfile}.1
2388         local count=$($LFS getstripe -c $DIR/$tdir/${tfile}.1)
2389         local setcount=4
2390         [ $count -eq $setcount ] ||
2391                 error "(1) stripe count $count, should be $setcount"
2392
2393         # Capture existing append_stripe_count setting for restore
2394         local orig_count=$(do_facet mds1 $LCTL get_param -n mdd.$FSNAME-MDT0000.append_stripe_count)
2395         local mdts=$(comma_list $(mdts_nodes))
2396         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=$orig_count" EXIT
2397
2398         local appendcount=$orig_count
2399         echo 1 >> $DIR/$tdir/${tfile}.2_append
2400         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.2_append)
2401         [ $count -eq $appendcount ] ||
2402                 error "(2)stripe count $count, should be $appendcount for append"
2403
2404         # Disable O_APPEND striping, verify it works
2405         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
2406
2407         # Should now get the default striping, which is 4
2408         setcount=4
2409         echo 1 >> $DIR/$tdir/${tfile}.3_append
2410         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.3_append)
2411         [ $count -eq $setcount ] ||
2412                 error "(3) stripe count $count, should be $setcount"
2413
2414         # Try changing the stripe count for append files
2415         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=2
2416
2417         # Append striping is now 2 (directory default is still 4)
2418         appendcount=2
2419         echo 1 >> $DIR/$tdir/${tfile}.4_append
2420         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.4_append)
2421         [ $count -eq $appendcount ] ||
2422                 error "(4) stripe count $count, should be $appendcount for append"
2423
2424         # Test append stripe count of -1
2425         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=-1
2426         appendcount=$OSTCOUNT
2427         echo 1 >> $DIR/$tdir/${tfile}.5
2428         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.5)
2429         [ $count -eq $appendcount ] ||
2430                 error "(5) stripe count $count, should be $appendcount for append"
2431
2432         # Set append striping back to default of 1
2433         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=1
2434
2435         # Try a new default striping, PFL + DOM
2436         $LFS setstripe -L mdt -E 1M -E -1 -c 2 $DIR/$tdir
2437
2438         # Create normal DOM file, DOM returns stripe count == 0
2439         setcount=0
2440         touch $DIR/$tdir/${tfile}.6
2441         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.6)
2442         [ $count -eq $setcount ] ||
2443                 error "(6) stripe count $count, should be $setcount"
2444
2445         # Show
2446         appendcount=1
2447         echo 1 >> $DIR/$tdir/${tfile}.7_append
2448         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.7_append)
2449         [ $count -eq $appendcount ] ||
2450                 error "(7) stripe count $count, should be $appendcount for append"
2451
2452         # Clean up DOM layout
2453         $LFS setstripe -d $DIR/$tdir
2454
2455         # Now test that append striping works when layout is from root
2456         $LFS setstripe -c 2 $MOUNT
2457         # Make a special directory for this
2458         mkdir $DIR/${tdir}/${tdir}.2
2459         stack_trap "$LFS setstripe -d $MOUNT" EXIT
2460
2461         # Verify for normal file
2462         setcount=2
2463         echo 1 > $DIR/${tdir}/${tdir}.2/${tfile}.8
2464         count=$($LFS getstripe -c $DIR/$tdir/${tdir}.2/${tfile}.8)
2465         [ $count -eq $setcount ] ||
2466                 error "(8) stripe count $count, should be $setcount"
2467
2468         appendcount=1
2469         echo 1 >> $DIR/${tdir}/${tdir}.2/${tfile}.9_append
2470         count=$($LFS getstripe -c $DIR/${tdir}/${tdir}.2/${tfile}.9_append)
2471         [ $count -eq $appendcount ] ||
2472                 error "(9) stripe count $count, should be $appendcount for append"
2473
2474         # Now test O_APPEND striping with pools
2475         do_nodes $mdts $LCTL set_param mdd.*.append_pool="$TESTNAME"
2476         stack_trap "do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'" EXIT
2477
2478         # Create the pool
2479         pool_add $TESTNAME || error "pool creation failed"
2480         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
2481
2482         echo 1 >> $DIR/$tdir/${tfile}.10_append
2483
2484         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.10_append)
2485         [ "$pool" = "$TESTNAME" ] || error "(10) incorrect pool: $pool"
2486
2487         # Check that count is still correct
2488         appendcount=1
2489         echo 1 >> $DIR/$tdir/${tfile}.11_append
2490         count=$($LFS getstripe -c $DIR/$tdir/${tfile}.11_append)
2491         [ $count -eq $appendcount ] ||
2492                 error "(11) stripe count $count, should be $appendcount for append"
2493
2494         # Disable O_APPEND stripe count, verify pool works separately
2495         do_nodes $mdts $LCTL set_param mdd.*.append_stripe_count=0
2496
2497         echo 1 >> $DIR/$tdir/${tfile}.12_append
2498
2499         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.12_append)
2500         [ "$pool" = "$TESTNAME" ] || error "(12) incorrect pool: $pool"
2501
2502         # Remove pool setting, verify it's not applied
2503         do_nodes $mdts $LCTL set_param mdd.*.append_pool='none'
2504
2505         echo 1 >> $DIR/$tdir/${tfile}.13_append
2506
2507         pool=$($LFS getstripe -p $DIR/$tdir/${tfile}.13_append)
2508         [ "$pool" = "" ] || error "(13) pool found: $pool"
2509 }
2510 run_test 27M "test O_APPEND striping"
2511
2512 # createtest also checks that device nodes are created and
2513 # then visible correctly (#2091)
2514 test_28() { # bug 2091
2515         test_mkdir $DIR/d28
2516         $CREATETEST $DIR/d28/ct || error "createtest failed"
2517 }
2518 run_test 28 "create/mknod/mkdir with bad file types ============"
2519
2520 test_29() {
2521         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2522
2523         sync; sleep 1; sync # flush out any dirty pages from previous tests
2524         cancel_lru_locks
2525         test_mkdir $DIR/d29
2526         touch $DIR/d29/foo
2527         log 'first d29'
2528         ls -l $DIR/d29
2529
2530         declare -i LOCKCOUNTORIG=0
2531         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2532                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2533         done
2534         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2535
2536         declare -i LOCKUNUSEDCOUNTORIG=0
2537         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2538                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2539         done
2540
2541         log 'second d29'
2542         ls -l $DIR/d29
2543         log 'done'
2544
2545         declare -i LOCKCOUNTCURRENT=0
2546         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2547                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2548         done
2549
2550         declare -i LOCKUNUSEDCOUNTCURRENT=0
2551         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2552                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2553         done
2554
2555         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2556                 $LCTL set_param -n ldlm.dump_namespaces ""
2557                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2558                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2559                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2560                 return 2
2561         fi
2562         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2563                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2564                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2565                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2566                 return 3
2567         fi
2568 }
2569 run_test 29 "IT_GETATTR regression  ============================"
2570
2571 test_30a() { # was test_30
2572         cp $(which ls) $DIR || cp /bin/ls $DIR
2573         $DIR/ls / || error "Can't execute binary from lustre"
2574         rm $DIR/ls
2575 }
2576 run_test 30a "execute binary from Lustre (execve) =============="
2577
2578 test_30b() {
2579         cp `which ls` $DIR || cp /bin/ls $DIR
2580         chmod go+rx $DIR/ls
2581         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2582         rm $DIR/ls
2583 }
2584 run_test 30b "execute binary from Lustre as non-root ==========="
2585
2586 test_30c() { # b=22376
2587         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2588
2589         cp `which ls` $DIR || cp /bin/ls $DIR
2590         chmod a-rw $DIR/ls
2591         cancel_lru_locks mdc
2592         cancel_lru_locks osc
2593         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2594         rm -f $DIR/ls
2595 }
2596 run_test 30c "execute binary from Lustre without read perms ===="
2597
2598 test_31a() {
2599         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2600         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2601 }
2602 run_test 31a "open-unlink file =================================="
2603
2604 test_31b() {
2605         touch $DIR/f31 || error "touch $DIR/f31 failed"
2606         ln $DIR/f31 $DIR/f31b || error "ln failed"
2607         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2608         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2609 }
2610 run_test 31b "unlink file with multiple links while open ======="
2611
2612 test_31c() {
2613         touch $DIR/f31 || error "touch $DIR/f31 failed"
2614         ln $DIR/f31 $DIR/f31c || error "ln failed"
2615         multiop_bg_pause $DIR/f31 O_uc ||
2616                 error "multiop_bg_pause for $DIR/f31 failed"
2617         MULTIPID=$!
2618         $MULTIOP $DIR/f31c Ouc
2619         kill -USR1 $MULTIPID
2620         wait $MULTIPID
2621 }
2622 run_test 31c "open-unlink file with multiple links ============="
2623
2624 test_31d() {
2625         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2626         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2627 }
2628 run_test 31d "remove of open directory ========================="
2629
2630 test_31e() { # bug 2904
2631         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2632 }
2633 run_test 31e "remove of open non-empty directory ==============="
2634
2635 test_31f() { # bug 4554
2636         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2637
2638         set -vx
2639         test_mkdir $DIR/d31f
2640         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2641         cp /etc/hosts $DIR/d31f
2642         ls -l $DIR/d31f
2643         $GETSTRIPE $DIR/d31f/hosts
2644         multiop_bg_pause $DIR/d31f D_c || return 1
2645         MULTIPID=$!
2646
2647         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2648         test_mkdir $DIR/d31f
2649         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2650         cp /etc/hosts $DIR/d31f
2651         ls -l $DIR/d31f
2652         $GETSTRIPE $DIR/d31f/hosts
2653         multiop_bg_pause $DIR/d31f D_c || return 1
2654         MULTIPID2=$!
2655
2656         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2657         wait $MULTIPID || error "first opendir $MULTIPID failed"
2658
2659         sleep 6
2660
2661         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2662         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2663         set +vx
2664 }
2665 run_test 31f "remove of open directory with open-unlink file ==="
2666
2667 test_31g() {
2668         echo "-- cross directory link --"
2669         test_mkdir -c1 $DIR/${tdir}ga
2670         test_mkdir -c1 $DIR/${tdir}gb
2671         touch $DIR/${tdir}ga/f
2672         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2673         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2674         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2675         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2676         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2677 }
2678 run_test 31g "cross directory link==============="
2679
2680 test_31h() {
2681         echo "-- cross directory link --"
2682         test_mkdir -c1 $DIR/${tdir}
2683         test_mkdir -c1 $DIR/${tdir}/dir
2684         touch $DIR/${tdir}/f
2685         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2686         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2687         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2688         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2689         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2690 }
2691 run_test 31h "cross directory link under child==============="
2692
2693 test_31i() {
2694         echo "-- cross directory link --"
2695         test_mkdir -c1 $DIR/$tdir
2696         test_mkdir -c1 $DIR/$tdir/dir
2697         touch $DIR/$tdir/dir/f
2698         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2699         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2700         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2701         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2702         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2703 }
2704 run_test 31i "cross directory link under parent==============="
2705
2706 test_31j() {
2707         test_mkdir -c1 -p $DIR/$tdir
2708         test_mkdir -c1 -p $DIR/$tdir/dir1
2709         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2710         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2711         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2712         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2713         return 0
2714 }
2715 run_test 31j "link for directory==============="
2716
2717 test_31k() {
2718         test_mkdir -c1 -p $DIR/$tdir
2719         touch $DIR/$tdir/s
2720         touch $DIR/$tdir/exist
2721         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2722         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2723         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2724         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2725         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2726         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2727         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2728         return 0
2729 }
2730 run_test 31k "link to file: the same, non-existing, dir==============="
2731
2732 test_31m() {
2733         mkdir $DIR/d31m
2734         touch $DIR/d31m/s
2735         mkdir $DIR/d31m2
2736         touch $DIR/d31m2/exist
2737         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2738         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2739         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2740         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2741         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2742         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2743         return 0
2744 }
2745 run_test 31m "link to file: the same, non-existing, dir==============="
2746
2747 test_31n() {
2748         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2749         nlink=$(stat --format=%h $DIR/$tfile)
2750         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2751         local fd=$(free_fd)
2752         local cmd="exec $fd<$DIR/$tfile"
2753         eval $cmd
2754         cmd="exec $fd<&-"
2755         trap "eval $cmd" EXIT
2756         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2757         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2758         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2759         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2760         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2761         eval $cmd
2762 }
2763 run_test 31n "check link count of unlinked file"
2764
2765 link_one() {
2766         local TEMPNAME=$(mktemp $1_XXXXXX)
2767         mlink $TEMPNAME $1 2> /dev/null &&
2768                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2769         munlink $TEMPNAME
2770 }
2771
2772 test_31o() { # LU-2901
2773         test_mkdir $DIR/$tdir
2774         for LOOP in $(seq 100); do
2775                 rm -f $DIR/$tdir/$tfile*
2776                 for THREAD in $(seq 8); do
2777                         link_one $DIR/$tdir/$tfile.$LOOP &
2778                 done
2779                 wait
2780                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2781                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2782                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2783                         break || true
2784         done
2785 }
2786 run_test 31o "duplicate hard links with same filename"
2787
2788 test_31p() {
2789         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2790
2791         test_mkdir $DIR/$tdir
2792         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2793         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2794
2795         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2796                 error "open unlink test1 failed"
2797         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2798                 error "open unlink test2 failed"
2799
2800         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2801                 error "test1 still exists"
2802         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2803                 error "test2 still exists"
2804 }
2805 run_test 31p "remove of open striped directory"
2806
2807 cleanup_test32_mount() {
2808         local rc=0
2809         trap 0
2810         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2811         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2812         losetup -d $loopdev || true
2813         rm -rf $DIR/$tdir
2814         return $rc
2815 }
2816
2817 test_32a() {
2818         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2819
2820         echo "== more mountpoints and symlinks ================="
2821         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2822         trap cleanup_test32_mount EXIT
2823         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2824         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2825                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2826         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2827                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2828         cleanup_test32_mount
2829 }
2830 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2831
2832 test_32b() {
2833         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2834
2835         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2836         trap cleanup_test32_mount EXIT
2837         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2838         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2839                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2840         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2841                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2842         cleanup_test32_mount
2843 }
2844 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2845
2846 test_32c() {
2847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2848
2849         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2850         trap cleanup_test32_mount EXIT
2851         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2852         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2853                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2854         test_mkdir -p $DIR/$tdir/d2/test_dir
2855         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2856                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2857         cleanup_test32_mount
2858 }
2859 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2860
2861 test_32d() {
2862         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2863
2864         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2865         trap cleanup_test32_mount EXIT
2866         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2867         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2868                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2869         test_mkdir -p $DIR/$tdir/d2/test_dir
2870         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2871                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2872         cleanup_test32_mount
2873 }
2874 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2875
2876 test_32e() {
2877         rm -fr $DIR/$tdir
2878         test_mkdir -p $DIR/$tdir/tmp
2879         local tmp_dir=$DIR/$tdir/tmp
2880         ln -s $DIR/$tdir $tmp_dir/symlink11
2881         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2882         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2883         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2884 }
2885 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2886
2887 test_32f() {
2888         rm -fr $DIR/$tdir
2889         test_mkdir -p $DIR/$tdir/tmp
2890         local tmp_dir=$DIR/$tdir/tmp
2891         ln -s $DIR/$tdir $tmp_dir/symlink11
2892         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2893         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2894         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2895 }
2896 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2897
2898 test_32g() {
2899         local tmp_dir=$DIR/$tdir/tmp
2900         test_mkdir -p $tmp_dir
2901         test_mkdir $DIR/${tdir}2
2902         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2903         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2904         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2905         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2906         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2907         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2908 }
2909 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2910
2911 test_32h() {
2912         rm -fr $DIR/$tdir $DIR/${tdir}2
2913         tmp_dir=$DIR/$tdir/tmp
2914         test_mkdir -p $tmp_dir
2915         test_mkdir $DIR/${tdir}2
2916         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2917         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2918         ls $tmp_dir/symlink12 || error "listing symlink12"
2919         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2920 }
2921 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2922
2923 test_32i() {
2924         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2925
2926         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2927         trap cleanup_test32_mount EXIT
2928         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2929         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2930                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2931         touch $DIR/$tdir/test_file
2932         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2933                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2934         cleanup_test32_mount
2935 }
2936 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2937
2938 test_32j() {
2939         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2940
2941         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2942         trap cleanup_test32_mount EXIT
2943         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2944         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2945                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2946         touch $DIR/$tdir/test_file
2947         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2948                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2949         cleanup_test32_mount
2950 }
2951 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2952
2953 test_32k() {
2954         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2955
2956         rm -fr $DIR/$tdir
2957         trap cleanup_test32_mount EXIT
2958         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2959         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2960                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2961         test_mkdir -p $DIR/$tdir/d2
2962         touch $DIR/$tdir/d2/test_file || error "touch failed"
2963         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2964                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2965         cleanup_test32_mount
2966 }
2967 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2968
2969 test_32l() {
2970         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2971
2972         rm -fr $DIR/$tdir
2973         trap cleanup_test32_mount EXIT
2974         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2975         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2976                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2977         test_mkdir -p $DIR/$tdir/d2
2978         touch $DIR/$tdir/d2/test_file || error "touch failed"
2979         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2980                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2981         cleanup_test32_mount
2982 }
2983 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2984
2985 test_32m() {
2986         rm -fr $DIR/d32m
2987         test_mkdir -p $DIR/d32m/tmp
2988         TMP_DIR=$DIR/d32m/tmp
2989         ln -s $DIR $TMP_DIR/symlink11
2990         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2991         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2992                 error "symlink11 not a link"
2993         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2994                 error "symlink01 not a link"
2995 }
2996 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2997
2998 test_32n() {
2999         rm -fr $DIR/d32n
3000         test_mkdir -p $DIR/d32n/tmp
3001         TMP_DIR=$DIR/d32n/tmp
3002         ln -s $DIR $TMP_DIR/symlink11
3003         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
3004         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
3005         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
3006 }
3007 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
3008
3009 test_32o() {
3010         touch $DIR/$tfile
3011         test_mkdir -p $DIR/d32o/tmp
3012         TMP_DIR=$DIR/d32o/tmp
3013         ln -s $DIR/$tfile $TMP_DIR/symlink12
3014         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
3015         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
3016                 error "symlink12 not a link"
3017         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
3018         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
3019                 error "$DIR/d32o/tmp/symlink12 not file type"
3020         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
3021                 error "$DIR/d32o/symlink02 not file type"
3022 }
3023 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
3024
3025 test_32p() {
3026         log 32p_1
3027         rm -fr $DIR/d32p
3028         log 32p_2
3029         rm -f $DIR/$tfile
3030         log 32p_3
3031         touch $DIR/$tfile
3032         log 32p_4
3033         test_mkdir -p $DIR/d32p/tmp
3034         log 32p_5
3035         TMP_DIR=$DIR/d32p/tmp
3036         log 32p_6
3037         ln -s $DIR/$tfile $TMP_DIR/symlink12
3038         log 32p_7
3039         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
3040         log 32p_8
3041         cat $DIR/d32p/tmp/symlink12 ||
3042                 error "Can't open $DIR/d32p/tmp/symlink12"
3043         log 32p_9
3044         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
3045         log 32p_10
3046 }
3047 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
3048
3049 test_32q() {
3050         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3051
3052         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3053         trap cleanup_test32_mount EXIT
3054         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3055         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
3056         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3057                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3058         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
3059         cleanup_test32_mount
3060 }
3061 run_test 32q "stat follows mountpoints in Lustre (should return error)"
3062
3063 test_32r() {
3064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3065
3066         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
3067         trap cleanup_test32_mount EXIT
3068         test_mkdir -p $DIR/$tdir/ext2-mountpoint
3069         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
3070         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
3071                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
3072         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
3073         cleanup_test32_mount
3074 }
3075 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
3076
3077 test_33aa() {
3078         rm -f $DIR/$tfile
3079         touch $DIR/$tfile
3080         chmod 444 $DIR/$tfile
3081         chown $RUNAS_ID $DIR/$tfile
3082         log 33_1
3083         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3084         log 33_2
3085 }
3086 run_test 33aa "write file with mode 444 (should return error)"
3087
3088 test_33a() {
3089         rm -fr $DIR/$tdir
3090         test_mkdir $DIR/$tdir
3091         chown $RUNAS_ID $DIR/$tdir
3092         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
3093                 error "$RUNAS create $tdir/$tfile failed"
3094         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
3095                 error "open RDWR" || true
3096 }
3097 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
3098
3099 test_33b() {
3100         rm -fr $DIR/$tdir
3101         test_mkdir $DIR/$tdir
3102         chown $RUNAS_ID $DIR/$tdir
3103         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
3104 }
3105 run_test 33b "test open file with malformed flags (No panic)"
3106
3107 test_33c() {
3108         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3109         remote_ost_nodsh && skip "remote OST with nodsh"
3110
3111         local ostnum
3112         local ostname
3113         local write_bytes
3114         local all_zeros
3115
3116         all_zeros=:
3117         rm -fr $DIR/$tdir
3118         test_mkdir $DIR/$tdir
3119         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
3120
3121         sync
3122         for ostnum in $(seq $OSTCOUNT); do
3123                 # test-framework's OST numbering is one-based, while Lustre's
3124                 # is zero-based
3125                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3126                 # Parsing llobdstat's output sucks; we could grep the /proc
3127                 # path, but that's likely to not be as portable as using the
3128                 # llobdstat utility.  So we parse lctl output instead.
3129                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
3130                         obdfilter/$ostname/stats |
3131                         awk '/^write_bytes/ {print $7}' )
3132                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
3133                 if (( ${write_bytes:-0} > 0 ))
3134                 then
3135                         all_zeros=false
3136                         break;
3137                 fi
3138         done
3139
3140         $all_zeros || return 0
3141
3142         # Write four bytes
3143         echo foo > $DIR/$tdir/bar
3144         # Really write them
3145         sync
3146
3147         # Total up write_bytes after writing.  We'd better find non-zeros.
3148         for ostnum in $(seq $OSTCOUNT); do
3149                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3150                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
3151                         obdfilter/$ostname/stats |
3152                         awk '/^write_bytes/ {print $7}' )
3153                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
3154                 if (( ${write_bytes:-0} > 0 ))
3155                 then
3156                         all_zeros=false
3157                         break;
3158                 fi
3159         done
3160
3161         if $all_zeros
3162         then
3163                 for ostnum in $(seq $OSTCOUNT); do
3164                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
3165                         echo "Check that write_bytes is present in obdfilter/*/stats:"
3166                         do_facet ost$ostnum lctl get_param -n \
3167                                 obdfilter/$ostname/stats
3168                 done
3169                 error "OST not keeping write_bytes stats (b22312)"
3170         fi
3171 }
3172 run_test 33c "test llobdstat and write_bytes"
3173
3174 test_33d() {
3175         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3177
3178         local MDTIDX=1
3179         local remote_dir=$DIR/$tdir/remote_dir
3180
3181         test_mkdir $DIR/$tdir
3182         $LFS mkdir -i $MDTIDX $remote_dir ||
3183                 error "create remote directory failed"
3184
3185         touch $remote_dir/$tfile
3186         chmod 444 $remote_dir/$tfile
3187         chown $RUNAS_ID $remote_dir/$tfile
3188
3189         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3190
3191         chown $RUNAS_ID $remote_dir
3192         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3193                                         error "create" || true
3194         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3195                                     error "open RDWR" || true
3196         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3197 }
3198 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3199
3200 test_33e() {
3201         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3202
3203         mkdir $DIR/$tdir
3204
3205         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3206         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3207         mkdir $DIR/$tdir/local_dir
3208
3209         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3210         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3211         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3212
3213         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3214                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3215
3216         rmdir $DIR/$tdir/* || error "rmdir failed"
3217
3218         umask 777
3219         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3220         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3221         mkdir $DIR/$tdir/local_dir
3222
3223         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3224         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3225         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3226
3227         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3228                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3229
3230         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3231
3232         umask 000
3233         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3234         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3235         mkdir $DIR/$tdir/local_dir
3236
3237         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3238         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3239         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3240
3241         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3242                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3243 }
3244 run_test 33e "mkdir and striped directory should have same mode"
3245
3246 cleanup_33f() {
3247         trap 0
3248         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3249 }
3250
3251 test_33f() {
3252         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3253         remote_mds_nodsh && skip "remote MDS with nodsh"
3254
3255         mkdir $DIR/$tdir
3256         chmod go+rwx $DIR/$tdir
3257         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3258         trap cleanup_33f EXIT
3259
3260         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3261                 error "cannot create striped directory"
3262
3263         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3264                 error "cannot create files in striped directory"
3265
3266         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3267                 error "cannot remove files in striped directory"
3268
3269         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3270                 error "cannot remove striped directory"
3271
3272         cleanup_33f
3273 }
3274 run_test 33f "nonroot user can create, access, and remove a striped directory"
3275
3276 test_33g() {
3277         mkdir -p $DIR/$tdir/dir2
3278
3279         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3280         echo $err
3281         [[ $err =~ "exists" ]] || error "Not exists error"
3282 }
3283 run_test 33g "nonroot user create already existing root created file"
3284
3285 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3286 test_34a() {
3287         rm -f $DIR/f34
3288         $MCREATE $DIR/f34 || error "mcreate failed"
3289         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3290                 error "getstripe failed"
3291         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3292         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3293                 error "getstripe failed"
3294         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3295                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3296 }
3297 run_test 34a "truncate file that has not been opened ==========="
3298
3299 test_34b() {
3300         [ ! -f $DIR/f34 ] && test_34a
3301         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3302                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3303         $OPENFILE -f O_RDONLY $DIR/f34
3304         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3305                 error "getstripe failed"
3306         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3307                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3308 }
3309 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3310
3311 test_34c() {
3312         [ ! -f $DIR/f34 ] && test_34a
3313         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3314                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3315         $OPENFILE -f O_RDWR $DIR/f34
3316         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3317         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3318                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3319 }
3320 run_test 34c "O_RDWR opening file-with-size works =============="
3321
3322 test_34d() {
3323         [ ! -f $DIR/f34 ] && test_34a
3324         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3325                 error "dd failed"
3326         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3327                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3328         rm $DIR/f34
3329 }
3330 run_test 34d "write to sparse file ============================="
3331
3332 test_34e() {
3333         rm -f $DIR/f34e
3334         $MCREATE $DIR/f34e || error "mcreate failed"
3335         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3336         $CHECKSTAT -s 1000 $DIR/f34e ||
3337                 error "Size of $DIR/f34e not equal to 1000 bytes"
3338         $OPENFILE -f O_RDWR $DIR/f34e
3339         $CHECKSTAT -s 1000 $DIR/f34e ||
3340                 error "Size of $DIR/f34e not equal to 1000 bytes"
3341 }
3342 run_test 34e "create objects, some with size and some without =="
3343
3344 test_34f() { # bug 6242, 6243
3345         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3346
3347         SIZE34F=48000
3348         rm -f $DIR/f34f
3349         $MCREATE $DIR/f34f || error "mcreate failed"
3350         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3351         dd if=$DIR/f34f of=$TMP/f34f
3352         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3353         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3354         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3355         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3356         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3357 }
3358 run_test 34f "read from a file with no objects until EOF ======="
3359
3360 test_34g() {
3361         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3362
3363         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3364                 error "dd failed"
3365         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3366         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3367                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3368         cancel_lru_locks osc
3369         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3370                 error "wrong size after lock cancel"
3371
3372         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3373         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3374                 error "expanding truncate failed"
3375         cancel_lru_locks osc
3376         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3377                 error "wrong expanded size after lock cancel"
3378 }
3379 run_test 34g "truncate long file ==============================="
3380
3381 test_34h() {
3382         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3383
3384         local gid=10
3385         local sz=1000
3386
3387         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3388         sync # Flush the cache so that multiop below does not block on cache
3389              # flush when getting the group lock
3390         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3391         MULTIPID=$!
3392
3393         # Since just timed wait is not good enough, let's do a sync write
3394         # that way we are sure enough time for a roundtrip + processing
3395         # passed + 2 seconds of extra margin.
3396         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3397         rm $DIR/${tfile}-1
3398         sleep 2
3399
3400         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3401                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3402                 kill -9 $MULTIPID
3403         fi
3404         wait $MULTIPID
3405         local nsz=`stat -c %s $DIR/$tfile`
3406         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3407 }
3408 run_test 34h "ftruncate file under grouplock should not block"
3409
3410 test_35a() {
3411         cp /bin/sh $DIR/f35a
3412         chmod 444 $DIR/f35a
3413         chown $RUNAS_ID $DIR/f35a
3414         $RUNAS $DIR/f35a && error || true
3415         rm $DIR/f35a
3416 }
3417 run_test 35a "exec file with mode 444 (should return and not leak)"
3418
3419 test_36a() {
3420         rm -f $DIR/f36
3421         utime $DIR/f36 || error "utime failed for MDS"
3422 }
3423 run_test 36a "MDS utime check (mknod, utime)"
3424
3425 test_36b() {
3426         echo "" > $DIR/f36
3427         utime $DIR/f36 || error "utime failed for OST"
3428 }
3429 run_test 36b "OST utime check (open, utime)"
3430
3431 test_36c() {
3432         rm -f $DIR/d36/f36
3433         test_mkdir $DIR/d36
3434         chown $RUNAS_ID $DIR/d36
3435         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3436 }
3437 run_test 36c "non-root MDS utime check (mknod, utime)"
3438
3439 test_36d() {
3440         [ ! -d $DIR/d36 ] && test_36c
3441         echo "" > $DIR/d36/f36
3442         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3443 }
3444 run_test 36d "non-root OST utime check (open, utime)"
3445
3446 test_36e() {
3447         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3448
3449         test_mkdir $DIR/$tdir
3450         touch $DIR/$tdir/$tfile
3451         $RUNAS utime $DIR/$tdir/$tfile &&
3452                 error "utime worked, expected failure" || true
3453 }
3454 run_test 36e "utime on non-owned file (should return error)"
3455
3456 subr_36fh() {
3457         local fl="$1"
3458         local LANG_SAVE=$LANG
3459         local LC_LANG_SAVE=$LC_LANG
3460         export LANG=C LC_LANG=C # for date language
3461
3462         DATESTR="Dec 20  2000"
3463         test_mkdir $DIR/$tdir
3464         lctl set_param fail_loc=$fl
3465         date; date +%s
3466         cp /etc/hosts $DIR/$tdir/$tfile
3467         sync & # write RPC generated with "current" inode timestamp, but delayed
3468         sleep 1
3469         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3470         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3471         cancel_lru_locks $OSC
3472         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3473         date; date +%s
3474         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3475                 echo "BEFORE: $LS_BEFORE" && \
3476                 echo "AFTER : $LS_AFTER" && \
3477                 echo "WANT  : $DATESTR" && \
3478                 error "$DIR/$tdir/$tfile timestamps changed" || true
3479
3480         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3481 }
3482
3483 test_36f() {
3484         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3485
3486         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3487         subr_36fh "0x80000214"
3488 }
3489 run_test 36f "utime on file racing with OST BRW write =========="
3490
3491 test_36g() {
3492         remote_ost_nodsh && skip "remote OST with nodsh"
3493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3494         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
3495                 skip "Need MDS version at least 2.12.51"
3496
3497         local fmd_max_age
3498         local fmd
3499         local facet="ost1"
3500         local tgt="obdfilter"
3501
3502         [[ $OSC == "mdc" ]] && tgt="mdt" && facet="mds1"
3503
3504         test_mkdir $DIR/$tdir
3505         fmd_max_age=$(do_facet $facet \
3506                 "lctl get_param -n $tgt.*.tgt_fmd_seconds 2> /dev/null | \
3507                 head -n 1")
3508
3509         echo "FMD max age: ${fmd_max_age}s"
3510         touch $DIR/$tdir/$tfile
3511         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
3512                 gawk '{cnt=cnt+$1}  END{print cnt}')
3513         echo "FMD before: $fmd"
3514         [[ $fmd == 0 ]] &&
3515                 error "FMD wasn't create by touch"
3516         sleep $((fmd_max_age + 12))
3517         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
3518                 gawk '{cnt=cnt+$1}  END{print cnt}')
3519         echo "FMD after: $fmd"
3520         [[ $fmd == 0 ]] ||
3521                 error "FMD wasn't expired by ping"
3522 }
3523 run_test 36g "FMD cache expiry ====================="
3524
3525 test_36h() {
3526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3527
3528         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3529         subr_36fh "0x80000227"
3530 }
3531 run_test 36h "utime on file racing with OST BRW write =========="
3532
3533 test_36i() {
3534         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3535
3536         test_mkdir $DIR/$tdir
3537         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3538
3539         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3540         local new_mtime=$((mtime + 200))
3541
3542         #change Modify time of striped dir
3543         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3544                         error "change mtime failed"
3545
3546         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3547
3548         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3549 }
3550 run_test 36i "change mtime on striped directory"
3551
3552 # test_37 - duplicate with tests 32q 32r
3553
3554 test_38() {
3555         local file=$DIR/$tfile
3556         touch $file
3557         openfile -f O_DIRECTORY $file
3558         local RC=$?
3559         local ENOTDIR=20
3560         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3561         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3562 }
3563 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3564
3565 test_39a() { # was test_39
3566         touch $DIR/$tfile
3567         touch $DIR/${tfile}2
3568 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3569 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3570 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3571         sleep 2
3572         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3573         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3574                 echo "mtime"
3575                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3576                 echo "atime"
3577                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3578                 echo "ctime"
3579                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3580                 error "O_TRUNC didn't change timestamps"
3581         fi
3582 }
3583 run_test 39a "mtime changed on create"
3584
3585 test_39b() {
3586         test_mkdir -c1 $DIR/$tdir
3587         cp -p /etc/passwd $DIR/$tdir/fopen
3588         cp -p /etc/passwd $DIR/$tdir/flink
3589         cp -p /etc/passwd $DIR/$tdir/funlink
3590         cp -p /etc/passwd $DIR/$tdir/frename
3591         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3592
3593         sleep 1
3594         echo "aaaaaa" >> $DIR/$tdir/fopen
3595         echo "aaaaaa" >> $DIR/$tdir/flink
3596         echo "aaaaaa" >> $DIR/$tdir/funlink
3597         echo "aaaaaa" >> $DIR/$tdir/frename
3598
3599         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3600         local link_new=`stat -c %Y $DIR/$tdir/flink`
3601         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3602         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3603
3604         cat $DIR/$tdir/fopen > /dev/null
3605         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3606         rm -f $DIR/$tdir/funlink2
3607         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3608
3609         for (( i=0; i < 2; i++ )) ; do
3610                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3611                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3612                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3613                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3614
3615                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3616                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3617                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3618                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3619
3620                 cancel_lru_locks $OSC
3621                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3622         done
3623 }
3624 run_test 39b "mtime change on open, link, unlink, rename  ======"
3625
3626 # this should be set to past
3627 TEST_39_MTIME=`date -d "1 year ago" +%s`
3628
3629 # bug 11063
3630 test_39c() {
3631         touch $DIR1/$tfile
3632         sleep 2
3633         local mtime0=`stat -c %Y $DIR1/$tfile`
3634
3635         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3636         local mtime1=`stat -c %Y $DIR1/$tfile`
3637         [ "$mtime1" = $TEST_39_MTIME ] || \
3638                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3639
3640         local d1=`date +%s`
3641         echo hello >> $DIR1/$tfile
3642         local d2=`date +%s`
3643         local mtime2=`stat -c %Y $DIR1/$tfile`
3644         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3645                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3646
3647         mv $DIR1/$tfile $DIR1/$tfile-1
3648
3649         for (( i=0; i < 2; i++ )) ; do
3650                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3651                 [ "$mtime2" = "$mtime3" ] || \
3652                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3653
3654                 cancel_lru_locks $OSC
3655                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3656         done
3657 }
3658 run_test 39c "mtime change on rename ==========================="
3659
3660 # bug 21114
3661 test_39d() {
3662         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3663
3664         touch $DIR1/$tfile
3665         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3666
3667         for (( i=0; i < 2; i++ )) ; do
3668                 local mtime=`stat -c %Y $DIR1/$tfile`
3669                 [ $mtime = $TEST_39_MTIME ] || \
3670                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3671
3672                 cancel_lru_locks $OSC
3673                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3674         done
3675 }
3676 run_test 39d "create, utime, stat =============================="
3677
3678 # bug 21114
3679 test_39e() {
3680         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3681
3682         touch $DIR1/$tfile
3683         local mtime1=`stat -c %Y $DIR1/$tfile`
3684
3685         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3686
3687         for (( i=0; i < 2; i++ )) ; do
3688                 local mtime2=`stat -c %Y $DIR1/$tfile`
3689                 [ $mtime2 = $TEST_39_MTIME ] || \
3690                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3691
3692                 cancel_lru_locks $OSC
3693                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3694         done
3695 }
3696 run_test 39e "create, stat, utime, stat ========================"
3697
3698 # bug 21114
3699 test_39f() {
3700         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3701
3702         touch $DIR1/$tfile
3703         mtime1=`stat -c %Y $DIR1/$tfile`
3704
3705         sleep 2
3706         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3707
3708         for (( i=0; i < 2; i++ )) ; do
3709                 local mtime2=`stat -c %Y $DIR1/$tfile`
3710                 [ $mtime2 = $TEST_39_MTIME ] || \
3711                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3712
3713                 cancel_lru_locks $OSC
3714                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3715         done
3716 }
3717 run_test 39f "create, stat, sleep, utime, stat ================="
3718
3719 # bug 11063
3720 test_39g() {
3721         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3722
3723         echo hello >> $DIR1/$tfile
3724         local mtime1=`stat -c %Y $DIR1/$tfile`
3725
3726         sleep 2
3727         chmod o+r $DIR1/$tfile
3728
3729         for (( i=0; i < 2; i++ )) ; do
3730                 local mtime2=`stat -c %Y $DIR1/$tfile`
3731                 [ "$mtime1" = "$mtime2" ] || \
3732                         error "lost mtime: $mtime2, should be $mtime1"
3733
3734                 cancel_lru_locks $OSC
3735                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3736         done
3737 }
3738 run_test 39g "write, chmod, stat ==============================="
3739
3740 # bug 11063
3741 test_39h() {
3742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3743
3744         touch $DIR1/$tfile
3745         sleep 1
3746
3747         local d1=`date`
3748         echo hello >> $DIR1/$tfile
3749         local mtime1=`stat -c %Y $DIR1/$tfile`
3750
3751         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3752         local d2=`date`
3753         if [ "$d1" != "$d2" ]; then
3754                 echo "write and touch not within one second"
3755         else
3756                 for (( i=0; i < 2; i++ )) ; do
3757                         local mtime2=`stat -c %Y $DIR1/$tfile`
3758                         [ "$mtime2" = $TEST_39_MTIME ] || \
3759                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3760
3761                         cancel_lru_locks $OSC
3762                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3763                 done
3764         fi
3765 }
3766 run_test 39h "write, utime within one second, stat ============="
3767
3768 test_39i() {
3769         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3770
3771         touch $DIR1/$tfile
3772         sleep 1
3773
3774         echo hello >> $DIR1/$tfile
3775         local mtime1=`stat -c %Y $DIR1/$tfile`
3776
3777         mv $DIR1/$tfile $DIR1/$tfile-1
3778
3779         for (( i=0; i < 2; i++ )) ; do
3780                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3781
3782                 [ "$mtime1" = "$mtime2" ] || \
3783                         error "lost mtime: $mtime2, should be $mtime1"
3784
3785                 cancel_lru_locks $OSC
3786                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3787         done
3788 }
3789 run_test 39i "write, rename, stat =============================="
3790
3791 test_39j() {
3792         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3793
3794         start_full_debug_logging
3795         touch $DIR1/$tfile
3796         sleep 1
3797
3798         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3799         lctl set_param fail_loc=0x80000412
3800         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3801                 error "multiop failed"
3802         local multipid=$!
3803         local mtime1=`stat -c %Y $DIR1/$tfile`
3804
3805         mv $DIR1/$tfile $DIR1/$tfile-1
3806
3807         kill -USR1 $multipid
3808         wait $multipid || error "multiop close failed"
3809
3810         for (( i=0; i < 2; i++ )) ; do
3811                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3812                 [ "$mtime1" = "$mtime2" ] ||
3813                         error "mtime is lost on close: $mtime2, " \
3814                               "should be $mtime1"
3815
3816                 cancel_lru_locks $OSC
3817                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3818         done
3819         lctl set_param fail_loc=0
3820         stop_full_debug_logging
3821 }
3822 run_test 39j "write, rename, close, stat ======================="
3823
3824 test_39k() {
3825         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3826
3827         touch $DIR1/$tfile
3828         sleep 1
3829
3830         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3831         local multipid=$!
3832         local mtime1=`stat -c %Y $DIR1/$tfile`
3833
3834         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3835
3836         kill -USR1 $multipid
3837         wait $multipid || error "multiop close failed"
3838
3839         for (( i=0; i < 2; i++ )) ; do
3840                 local mtime2=`stat -c %Y $DIR1/$tfile`
3841
3842                 [ "$mtime2" = $TEST_39_MTIME ] || \
3843                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3844
3845                 cancel_lru_locks osc
3846                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3847         done
3848 }
3849 run_test 39k "write, utime, close, stat ========================"
3850
3851 # this should be set to future
3852 TEST_39_ATIME=`date -d "1 year" +%s`
3853
3854 test_39l() {
3855         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3856         remote_mds_nodsh && skip "remote MDS with nodsh"
3857
3858         local atime_diff=$(do_facet $SINGLEMDS \
3859                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3860         rm -rf $DIR/$tdir
3861         mkdir -p $DIR/$tdir
3862
3863         # test setting directory atime to future
3864         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3865         local atime=$(stat -c %X $DIR/$tdir)
3866         [ "$atime" = $TEST_39_ATIME ] ||
3867                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3868
3869         # test setting directory atime from future to now
3870         local now=$(date +%s)
3871         touch -a -d @$now $DIR/$tdir
3872
3873         atime=$(stat -c %X $DIR/$tdir)
3874         [ "$atime" -eq "$now"  ] ||
3875                 error "atime is not updated from future: $atime, $now"
3876
3877         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3878         sleep 3
3879
3880         # test setting directory atime when now > dir atime + atime_diff
3881         local d1=$(date +%s)
3882         ls $DIR/$tdir
3883         local d2=$(date +%s)
3884         cancel_lru_locks mdc
3885         atime=$(stat -c %X $DIR/$tdir)
3886         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3887                 error "atime is not updated  : $atime, should be $d2"
3888
3889         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3890         sleep 3
3891
3892         # test not setting directory atime when now < dir atime + atime_diff
3893         ls $DIR/$tdir
3894         cancel_lru_locks mdc
3895         atime=$(stat -c %X $DIR/$tdir)
3896         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3897                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3898
3899         do_facet $SINGLEMDS \
3900                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3901 }
3902 run_test 39l "directory atime update ==========================="
3903
3904 test_39m() {
3905         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3906
3907         touch $DIR1/$tfile
3908         sleep 2
3909         local far_past_mtime=$(date -d "May 29 1953" +%s)
3910         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3911
3912         touch -m -d @$far_past_mtime $DIR1/$tfile
3913         touch -a -d @$far_past_atime $DIR1/$tfile
3914
3915         for (( i=0; i < 2; i++ )) ; do
3916                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3917                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3918                         error "atime or mtime set incorrectly"
3919
3920                 cancel_lru_locks $OSC
3921                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3922         done
3923 }
3924 run_test 39m "test atime and mtime before 1970"
3925
3926 test_39n() { # LU-3832
3927         remote_mds_nodsh && skip "remote MDS with nodsh"
3928
3929         local atime_diff=$(do_facet $SINGLEMDS \
3930                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3931         local atime0
3932         local atime1
3933         local atime2
3934
3935         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3936
3937         rm -rf $DIR/$tfile
3938         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3939         atime0=$(stat -c %X $DIR/$tfile)
3940
3941         sleep 5
3942         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3943         atime1=$(stat -c %X $DIR/$tfile)
3944
3945         sleep 5
3946         cancel_lru_locks mdc
3947         cancel_lru_locks osc
3948         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3949         atime2=$(stat -c %X $DIR/$tfile)
3950
3951         do_facet $SINGLEMDS \
3952                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3953
3954         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3955         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3956 }
3957 run_test 39n "check that O_NOATIME is honored"
3958
3959 test_39o() {
3960         TESTDIR=$DIR/$tdir/$tfile
3961         [ -e $TESTDIR ] && rm -rf $TESTDIR
3962         mkdir -p $TESTDIR
3963         cd $TESTDIR
3964         links1=2
3965         ls
3966         mkdir a b
3967         ls
3968         links2=$(stat -c %h .)
3969         [ $(($links1 + 2)) != $links2 ] &&
3970                 error "wrong links count $(($links1 + 2)) != $links2"
3971         rmdir b
3972         links3=$(stat -c %h .)
3973         [ $(($links1 + 1)) != $links3 ] &&
3974                 error "wrong links count $links1 != $links3"
3975         return 0
3976 }
3977 run_test 39o "directory cached attributes updated after create"
3978
3979 test_39p() {
3980         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3981
3982         local MDTIDX=1
3983         TESTDIR=$DIR/$tdir/$tdir
3984         [ -e $TESTDIR ] && rm -rf $TESTDIR
3985         test_mkdir -p $TESTDIR
3986         cd $TESTDIR
3987         links1=2
3988         ls
3989         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3990         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3991         ls
3992         links2=$(stat -c %h .)
3993         [ $(($links1 + 2)) != $links2 ] &&
3994                 error "wrong links count $(($links1 + 2)) != $links2"
3995         rmdir remote_dir2
3996         links3=$(stat -c %h .)
3997         [ $(($links1 + 1)) != $links3 ] &&
3998                 error "wrong links count $links1 != $links3"
3999         return 0
4000 }
4001 run_test 39p "remote directory cached attributes updated after create ========"
4002
4003
4004 test_39q() { # LU-8041
4005         local testdir=$DIR/$tdir
4006         mkdir -p $testdir
4007         multiop_bg_pause $testdir D_c || error "multiop failed"
4008         local multipid=$!
4009         cancel_lru_locks mdc
4010         kill -USR1 $multipid
4011         local atime=$(stat -c %X $testdir)
4012         [ "$atime" -ne 0 ] || error "atime is zero"
4013 }
4014 run_test 39q "close won't zero out atime"
4015
4016 test_40() {
4017         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
4018         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
4019                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
4020         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
4021                 error "$tfile is not 4096 bytes in size"
4022 }
4023 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
4024
4025 test_41() {
4026         # bug 1553
4027         small_write $DIR/f41 18
4028 }
4029 run_test 41 "test small file write + fstat ====================="
4030
4031 count_ost_writes() {
4032         lctl get_param -n ${OSC}.*.stats |
4033                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
4034                         END { printf("%0.0f", writes) }'
4035 }
4036
4037 # decent default
4038 WRITEBACK_SAVE=500
4039 DIRTY_RATIO_SAVE=40
4040 MAX_DIRTY_RATIO=50
4041 BG_DIRTY_RATIO_SAVE=10
4042 MAX_BG_DIRTY_RATIO=25
4043
4044 start_writeback() {
4045         trap 0
4046         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
4047         # dirty_ratio, dirty_background_ratio
4048         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
4049                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
4050                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
4051                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
4052         else
4053                 # if file not here, we are a 2.4 kernel
4054                 kill -CONT `pidof kupdated`
4055         fi
4056 }
4057
4058 stop_writeback() {
4059         # setup the trap first, so someone cannot exit the test at the
4060         # exact wrong time and mess up a machine
4061         trap start_writeback EXIT
4062         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
4063         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
4064                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
4065                 sysctl -w vm.dirty_writeback_centisecs=0
4066                 sysctl -w vm.dirty_writeback_centisecs=0
4067                 # save and increase /proc/sys/vm/dirty_ratio
4068                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
4069                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
4070                 # save and increase /proc/sys/vm/dirty_background_ratio
4071                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
4072                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
4073         else
4074                 # if file not here, we are a 2.4 kernel
4075                 kill -STOP `pidof kupdated`
4076         fi
4077 }
4078
4079 # ensure that all stripes have some grant before we test client-side cache
4080 setup_test42() {
4081         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
4082                 dd if=/dev/zero of=$i bs=4k count=1
4083                 rm $i
4084         done
4085 }
4086
4087 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
4088 # file truncation, and file removal.
4089 test_42a() {
4090         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4091
4092         setup_test42
4093         cancel_lru_locks $OSC
4094         stop_writeback
4095         sync; sleep 1; sync # just to be safe
4096         BEFOREWRITES=`count_ost_writes`
4097         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
4098         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
4099         AFTERWRITES=`count_ost_writes`
4100         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
4101                 error "$BEFOREWRITES < $AFTERWRITES"
4102         start_writeback
4103 }
4104 run_test 42a "ensure that we don't flush on close"
4105
4106 test_42b() {
4107         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4108
4109         setup_test42
4110         cancel_lru_locks $OSC
4111         stop_writeback
4112         sync
4113         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
4114         BEFOREWRITES=$(count_ost_writes)
4115         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
4116         AFTERWRITES=$(count_ost_writes)
4117         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
4118                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
4119         fi
4120         BEFOREWRITES=$(count_ost_writes)
4121         sync || error "sync: $?"
4122         AFTERWRITES=$(count_ost_writes)
4123         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
4124                 error "$BEFOREWRITES < $AFTERWRITES on sync"
4125         fi
4126         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
4127         start_writeback
4128         return 0
4129 }
4130 run_test 42b "test destroy of file with cached dirty data ======"
4131
4132 # if these tests just want to test the effect of truncation,
4133 # they have to be very careful.  consider:
4134 # - the first open gets a {0,EOF}PR lock
4135 # - the first write conflicts and gets a {0, count-1}PW
4136 # - the rest of the writes are under {count,EOF}PW
4137 # - the open for truncate tries to match a {0,EOF}PR
4138 #   for the filesize and cancels the PWs.
4139 # any number of fixes (don't get {0,EOF} on open, match
4140 # composite locks, do smarter file size management) fix
4141 # this, but for now we want these tests to verify that
4142 # the cancellation with truncate intent works, so we
4143 # start the file with a full-file pw lock to match against
4144 # until the truncate.
4145 trunc_test() {
4146         test=$1
4147         file=$DIR/$test
4148         offset=$2
4149         cancel_lru_locks $OSC
4150         stop_writeback
4151         # prime the file with 0,EOF PW to match
4152         touch $file
4153         $TRUNCATE $file 0
4154         sync; sync
4155         # now the real test..
4156         dd if=/dev/zero of=$file bs=1024 count=100
4157         BEFOREWRITES=`count_ost_writes`
4158         $TRUNCATE $file $offset
4159         cancel_lru_locks $OSC
4160         AFTERWRITES=`count_ost_writes`
4161         start_writeback
4162 }
4163
4164 test_42c() {
4165         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4166
4167         trunc_test 42c 1024
4168         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
4169                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
4170         rm $file
4171 }
4172 run_test 42c "test partial truncate of file with cached dirty data"
4173
4174 test_42d() {
4175         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4176
4177         trunc_test 42d 0
4178         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
4179                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
4180         rm $file
4181 }
4182 run_test 42d "test complete truncate of file with cached dirty data"
4183
4184 test_42e() { # bug22074
4185         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4186
4187         local TDIR=$DIR/${tdir}e
4188         local pages=16 # hardcoded 16 pages, don't change it.
4189         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
4190         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
4191         local max_dirty_mb
4192         local warmup_files
4193
4194         test_mkdir $DIR/${tdir}e
4195         $SETSTRIPE -c 1 $TDIR
4196         createmany -o $TDIR/f $files
4197
4198         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4199
4200         # we assume that with $OSTCOUNT files, at least one of them will
4201         # be allocated on OST0.
4202         warmup_files=$((OSTCOUNT * max_dirty_mb))
4203         createmany -o $TDIR/w $warmup_files
4204
4205         # write a large amount of data into one file and sync, to get good
4206         # avail_grant number from OST.
4207         for ((i=0; i<$warmup_files; i++)); do
4208                 idx=$($GETSTRIPE -i $TDIR/w$i)
4209                 [ $idx -ne 0 ] && continue
4210                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4211                 break
4212         done
4213         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4214         sync
4215         $LCTL get_param $proc_osc0/cur_dirty_bytes
4216         $LCTL get_param $proc_osc0/cur_grant_bytes
4217
4218         # create as much dirty pages as we can while not to trigger the actual
4219         # RPCs directly. but depends on the env, VFS may trigger flush during this
4220         # period, hopefully we are good.
4221         for ((i=0; i<$warmup_files; i++)); do
4222                 idx=$($GETSTRIPE -i $TDIR/w$i)
4223                 [ $idx -ne 0 ] && continue
4224                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4225         done
4226         $LCTL get_param $proc_osc0/cur_dirty_bytes
4227         $LCTL get_param $proc_osc0/cur_grant_bytes
4228
4229         # perform the real test
4230         $LCTL set_param $proc_osc0/rpc_stats 0
4231         for ((;i<$files; i++)); do
4232                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4233                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4234         done
4235         sync
4236         $LCTL get_param $proc_osc0/rpc_stats
4237
4238         local percent=0
4239         local have_ppr=false
4240         $LCTL get_param $proc_osc0/rpc_stats |
4241                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4242                         # skip lines until we are at the RPC histogram data
4243                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4244                         $have_ppr || continue
4245
4246                         # we only want the percent stat for < 16 pages
4247                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4248
4249                         percent=$((percent + WPCT))
4250                         if [[ $percent -gt 15 ]]; then
4251                                 error "less than 16-pages write RPCs" \
4252                                       "$percent% > 15%"
4253                                 break
4254                         fi
4255                 done
4256         rm -rf $TDIR
4257 }
4258 run_test 42e "verify sub-RPC writes are not done synchronously"
4259
4260 test_43A() { # was test_43
4261         test_mkdir $DIR/$tdir
4262         cp -p /bin/ls $DIR/$tdir/$tfile
4263         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4264         pid=$!
4265         # give multiop a chance to open
4266         sleep 1
4267
4268         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4269         kill -USR1 $pid
4270 }
4271 run_test 43A "execution of file opened for write should return -ETXTBSY"
4272
4273 test_43a() {
4274         test_mkdir $DIR/$tdir
4275         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
4276         $DIR/$tdir/sleep 60 &
4277         SLEEP_PID=$!
4278         # Make sure exec of $tdir/sleep wins race with truncate
4279         sleep 1
4280         $MULTIOP $DIR/$tdir/sleep Oc && error "expected error, got success"
4281         kill $SLEEP_PID
4282 }
4283 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4284
4285 test_43b() {
4286         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4287
4288         test_mkdir $DIR/$tdir
4289         cp -p $(which sleep) $DIR/$tdir/sleep || error "can't copy"
4290         $DIR/$tdir/sleep 60 &
4291         SLEEP_PID=$!
4292         # Make sure exec of $tdir/sleep wins race with truncate
4293         sleep 1
4294         $TRUNCATE $DIR/$tdir/sleep 0 && error "expected error, got success"
4295         kill $SLEEP_PID
4296 }
4297 run_test 43b "truncate of file being executed should return -ETXTBSY"
4298
4299 test_43c() {
4300         local testdir="$DIR/$tdir"
4301         test_mkdir $testdir
4302         cp $SHELL $testdir/
4303         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4304                 ( cd $testdir && md5sum -c )
4305 }
4306 run_test 43c "md5sum of copy into lustre"
4307
4308 test_44A() { # was test_44
4309         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4310
4311         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4312         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4313 }
4314 run_test 44A "zero length read from a sparse stripe"
4315
4316 test_44a() {
4317         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4318                 awk '{ print $2 }')
4319         [ -z "$nstripe" ] && skip "can't get stripe info"
4320         [[ $nstripe -gt $OSTCOUNT ]] &&
4321                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4322
4323         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4324                 awk '{ print $2 }')
4325         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4326                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4327                         awk '{ print $2 }')
4328         fi
4329
4330         OFFSETS="0 $((stride/2)) $((stride-1))"
4331         for offset in $OFFSETS; do
4332                 for i in $(seq 0 $((nstripe-1))); do
4333                         local GLOBALOFFSETS=""
4334                         # size in Bytes
4335                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4336                         local myfn=$DIR/d44a-$size
4337                         echo "--------writing $myfn at $size"
4338                         ll_sparseness_write $myfn $size ||
4339                                 error "ll_sparseness_write"
4340                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4341                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4342                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4343
4344                         for j in $(seq 0 $((nstripe-1))); do
4345                                 # size in Bytes
4346                                 size=$((((j + $nstripe )*$stride + $offset)))
4347                                 ll_sparseness_write $myfn $size ||
4348                                         error "ll_sparseness_write"
4349                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4350                         done
4351                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4352                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4353                         rm -f $myfn
4354                 done
4355         done
4356 }
4357 run_test 44a "test sparse pwrite ==============================="
4358
4359 dirty_osc_total() {
4360         tot=0
4361         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4362                 tot=$(($tot + $d))
4363         done
4364         echo $tot
4365 }
4366 do_dirty_record() {
4367         before=`dirty_osc_total`
4368         echo executing "\"$*\""
4369         eval $*
4370         after=`dirty_osc_total`
4371         echo before $before, after $after
4372 }
4373 test_45() {
4374         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4375
4376         f="$DIR/f45"
4377         # Obtain grants from OST if it supports it
4378         echo blah > ${f}_grant
4379         stop_writeback
4380         sync
4381         do_dirty_record "echo blah > $f"
4382         [[ $before -eq $after ]] && error "write wasn't cached"
4383         do_dirty_record "> $f"
4384         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4385         do_dirty_record "echo blah > $f"
4386         [[ $before -eq $after ]] && error "write wasn't cached"
4387         do_dirty_record "sync"
4388         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4389         do_dirty_record "echo blah > $f"
4390         [[ $before -eq $after ]] && error "write wasn't cached"
4391         do_dirty_record "cancel_lru_locks osc"
4392         [[ $before -gt $after ]] ||
4393                 error "lock cancellation didn't lower dirty count"
4394         start_writeback
4395 }
4396 run_test 45 "osc io page accounting ============================"
4397
4398 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4399 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4400 # objects offset and an assert hit when an rpc was built with 1023's mapped
4401 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4402 test_46() {
4403         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4404
4405         f="$DIR/f46"
4406         stop_writeback
4407         sync
4408         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4409         sync
4410         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4411         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4412         sync
4413         start_writeback
4414 }
4415 run_test 46 "dirtying a previously written page ================"
4416
4417 # test_47 is removed "Device nodes check" is moved to test_28
4418
4419 test_48a() { # bug 2399
4420         [ "$mds1_FSTYPE" = "zfs" ] &&
4421         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4422                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4423
4424         test_mkdir $DIR/$tdir
4425         cd $DIR/$tdir
4426         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4427         test_mkdir $DIR/$tdir
4428         touch foo || error "'touch foo' failed after recreating cwd"
4429         test_mkdir bar
4430         touch .foo || error "'touch .foo' failed after recreating cwd"
4431         test_mkdir .bar
4432         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4433         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4434         cd . || error "'cd .' failed after recreating cwd"
4435         mkdir . && error "'mkdir .' worked after recreating cwd"
4436         rmdir . && error "'rmdir .' worked after recreating cwd"
4437         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4438         cd .. || error "'cd ..' failed after recreating cwd"
4439 }
4440 run_test 48a "Access renamed working dir (should return errors)="
4441
4442 test_48b() { # bug 2399
4443         rm -rf $DIR/$tdir
4444         test_mkdir $DIR/$tdir
4445         cd $DIR/$tdir
4446         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4447         touch foo && error "'touch foo' worked after removing cwd"
4448         mkdir foo && error "'mkdir foo' worked after removing cwd"
4449         touch .foo && error "'touch .foo' worked after removing cwd"
4450         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4451         ls . > /dev/null && error "'ls .' worked after removing cwd"
4452         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4453         mkdir . && error "'mkdir .' worked after removing cwd"
4454         rmdir . && error "'rmdir .' worked after removing cwd"
4455         ln -s . foo && error "'ln -s .' worked after removing cwd"
4456         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4457 }
4458 run_test 48b "Access removed working dir (should return errors)="
4459
4460 test_48c() { # bug 2350
4461         #lctl set_param debug=-1
4462         #set -vx
4463         rm -rf $DIR/$tdir
4464         test_mkdir -p $DIR/$tdir/dir
4465         cd $DIR/$tdir/dir
4466         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4467         $TRACE touch foo && error "touch foo worked after removing cwd"
4468         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4469         touch .foo && error "touch .foo worked after removing cwd"
4470         mkdir .foo && error "mkdir .foo worked after removing cwd"
4471         $TRACE ls . && error "'ls .' worked after removing cwd"
4472         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4473         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4474         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4475         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4476         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4477 }
4478 run_test 48c "Access removed working subdir (should return errors)"
4479
4480 test_48d() { # bug 2350
4481         #lctl set_param debug=-1
4482         #set -vx
4483         rm -rf $DIR/$tdir
4484         test_mkdir -p $DIR/$tdir/dir
4485         cd $DIR/$tdir/dir
4486         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4487         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4488         $TRACE touch foo && error "'touch foo' worked after removing parent"
4489         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4490         touch .foo && error "'touch .foo' worked after removing parent"
4491         mkdir .foo && error "mkdir .foo worked after removing parent"
4492         $TRACE ls . && error "'ls .' worked after removing parent"
4493         $TRACE ls .. && error "'ls ..' worked after removing parent"
4494         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4495         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4496         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4497         true
4498 }
4499 run_test 48d "Access removed parent subdir (should return errors)"
4500
4501 test_48e() { # bug 4134
4502         #lctl set_param debug=-1
4503         #set -vx
4504         rm -rf $DIR/$tdir
4505         test_mkdir -p $DIR/$tdir/dir
4506         cd $DIR/$tdir/dir
4507         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4508         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4509         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4510         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4511         # On a buggy kernel addition of "touch foo" after cd .. will
4512         # produce kernel oops in lookup_hash_it
4513         touch ../foo && error "'cd ..' worked after recreate parent"
4514         cd $DIR
4515         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4516 }
4517 run_test 48e "Access to recreated parent subdir (should return errors)"
4518
4519 test_49() { # LU-1030
4520         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4521         remote_ost_nodsh && skip "remote OST with nodsh"
4522
4523         # get ost1 size - lustre-OST0000
4524         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4525                 awk '{ print $4 }')
4526         # write 800M at maximum
4527         [[ $ost1_size -lt 2 ]] && ost1_size=2
4528         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4529
4530         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4531         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4532         local dd_pid=$!
4533
4534         # change max_pages_per_rpc while writing the file
4535         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4536         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4537         # loop until dd process exits
4538         while ps ax -opid | grep -wq $dd_pid; do
4539                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4540                 sleep $((RANDOM % 5 + 1))
4541         done
4542         # restore original max_pages_per_rpc
4543         $LCTL set_param $osc1_mppc=$orig_mppc
4544         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4545 }
4546 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4547
4548 test_50() {
4549         # bug 1485
4550         test_mkdir $DIR/$tdir
4551         cd $DIR/$tdir
4552         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4553 }
4554 run_test 50 "special situations: /proc symlinks  ==============="
4555
4556 test_51a() {    # was test_51
4557         # bug 1516 - create an empty entry right after ".." then split dir
4558         test_mkdir -c1 $DIR/$tdir
4559         touch $DIR/$tdir/foo
4560         $MCREATE $DIR/$tdir/bar
4561         rm $DIR/$tdir/foo
4562         createmany -m $DIR/$tdir/longfile 201
4563         FNUM=202
4564         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4565                 $MCREATE $DIR/$tdir/longfile$FNUM
4566                 FNUM=$(($FNUM + 1))
4567                 echo -n "+"
4568         done
4569         echo
4570         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4571 }
4572 run_test 51a "special situations: split htree with empty entry =="
4573
4574 cleanup_print_lfs_df () {
4575         trap 0
4576         $LFS df
4577         $LFS df -i
4578 }
4579
4580 test_51b() {
4581         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4582
4583         local dir=$DIR/$tdir
4584         local nrdirs=$((65536 + 100))
4585
4586         # cleanup the directory
4587         rm -fr $dir
4588
4589         test_mkdir -c1 $dir
4590
4591         $LFS df
4592         $LFS df -i
4593         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4594         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4595         [[ $numfree -lt $nrdirs ]] &&
4596                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4597
4598         # need to check free space for the directories as well
4599         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4600         numfree=$(( blkfree / $(fs_inode_ksize) ))
4601         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4602
4603         trap cleanup_print_lfs_df EXIT
4604
4605         # create files
4606         createmany -d $dir/d $nrdirs || {
4607                 unlinkmany $dir/d $nrdirs
4608                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4609         }
4610
4611         # really created :
4612         nrdirs=$(ls -U $dir | wc -l)
4613
4614         # unlink all but 100 subdirectories, then check it still works
4615         local left=100
4616         local delete=$((nrdirs - left))
4617
4618         $LFS df
4619         $LFS df -i
4620
4621         # for ldiskfs the nlink count should be 1, but this is OSD specific
4622         # and so this is listed for informational purposes only
4623         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4624         unlinkmany -d $dir/d $delete ||
4625                 error "unlink of first $delete subdirs failed"
4626
4627         echo "nlink between: $(stat -c %h $dir)"
4628         local found=$(ls -U $dir | wc -l)
4629         [ $found -ne $left ] &&
4630                 error "can't find subdirs: found only $found, expected $left"
4631
4632         unlinkmany -d $dir/d $delete $left ||
4633                 error "unlink of second $left subdirs failed"
4634         # regardless of whether the backing filesystem tracks nlink accurately
4635         # or not, the nlink count shouldn't be more than "." and ".." here
4636         local after=$(stat -c %h $dir)
4637         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4638                 echo "nlink after: $after"
4639
4640         cleanup_print_lfs_df
4641 }
4642 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4643
4644 test_51d() {
4645         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4646         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4647
4648         test_mkdir $DIR/$tdir
4649         createmany -o $DIR/$tdir/t- 1000
4650         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4651         for N in $(seq 0 $((OSTCOUNT - 1))); do
4652                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4653                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4654                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4655                         '($1 == '$N') { objs += 1 } \
4656                         END { printf("%0.0f", objs) }')
4657                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4658         done
4659         unlinkmany $DIR/$tdir/t- 1000
4660
4661         NLAST=0
4662         for N in $(seq 1 $((OSTCOUNT - 1))); do
4663                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4664                         error "OST $N has less objects vs OST $NLAST" \
4665                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4666                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4667                         error "OST $N has less objects vs OST $NLAST" \
4668                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4669
4670                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4671                         error "OST $N has less #0 objects vs OST $NLAST" \
4672                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4673                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4674                         error "OST $N has less #0 objects vs OST $NLAST" \
4675                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4676                 NLAST=$N
4677         done
4678         rm -f $TMP/$tfile
4679 }
4680 run_test 51d "check object distribution"
4681
4682 test_51e() {
4683         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4684                 skip_env "ldiskfs only test"
4685         fi
4686
4687         test_mkdir -c1 $DIR/$tdir
4688         test_mkdir -c1 $DIR/$tdir/d0
4689
4690         touch $DIR/$tdir/d0/foo
4691         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4692                 error "file exceed 65000 nlink limit!"
4693         unlinkmany $DIR/$tdir/d0/f- 65001
4694         return 0
4695 }
4696 run_test 51e "check file nlink limit"
4697
4698 test_51f() {
4699         test_mkdir $DIR/$tdir
4700
4701         local max=100000
4702         local ulimit_old=$(ulimit -n)
4703         local spare=20 # number of spare fd's for scripts/libraries, etc.
4704         local mdt=$($LFS getstripe -m $DIR/$tdir)
4705         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4706
4707         echo "MDT$mdt numfree=$numfree, max=$max"
4708         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4709         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4710                 while ! ulimit -n $((numfree + spare)); do
4711                         numfree=$((numfree * 3 / 4))
4712                 done
4713                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4714         else
4715                 echo "left ulimit at $ulimit_old"
4716         fi
4717
4718         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4719                 unlinkmany $DIR/$tdir/f $numfree
4720                 error "create+open $numfree files in $DIR/$tdir failed"
4721         }
4722         ulimit -n $ulimit_old
4723
4724         # if createmany exits at 120s there will be fewer than $numfree files
4725         unlinkmany $DIR/$tdir/f $numfree || true
4726 }
4727 run_test 51f "check many open files limit"
4728
4729 test_52a() {
4730         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4731         test_mkdir $DIR/$tdir
4732         touch $DIR/$tdir/foo
4733         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4734         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4735         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4736         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4737         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4738                                         error "link worked"
4739         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4740         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4741         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4742                                                      error "lsattr"
4743         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4744         cp -r $DIR/$tdir $TMP/
4745         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4746 }
4747 run_test 52a "append-only flag test (should return errors)"
4748
4749 test_52b() {
4750         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4751         test_mkdir $DIR/$tdir
4752         touch $DIR/$tdir/foo
4753         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4754         cat test > $DIR/$tdir/foo && error "cat test worked"
4755         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4756         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4757         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4758                                         error "link worked"
4759         echo foo >> $DIR/$tdir/foo && error "echo worked"
4760         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4761         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4762         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4763         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4764                                                         error "lsattr"
4765         chattr -i $DIR/$tdir/foo || error "chattr failed"
4766
4767         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4768 }
4769 run_test 52b "immutable flag test (should return errors) ======="
4770
4771 test_53() {
4772         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4773         remote_mds_nodsh && skip "remote MDS with nodsh"
4774         remote_ost_nodsh && skip "remote OST with nodsh"
4775
4776         local param
4777         local param_seq
4778         local ostname
4779         local mds_last
4780         local mds_last_seq
4781         local ost_last
4782         local ost_last_seq
4783         local ost_last_id
4784         local ostnum
4785         local node
4786         local found=false
4787         local support_last_seq=true
4788
4789         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4790                 support_last_seq=false
4791
4792         # only test MDT0000
4793         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4794         local value
4795         for value in $(do_facet $SINGLEMDS \
4796                        $LCTL get_param osp.$mdtosc.prealloc_last_id) ; do
4797                 param=$(echo ${value[0]} | cut -d "=" -f1)
4798                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4799
4800                 if $support_last_seq; then
4801                         param_seq=$(echo $param |
4802                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4803                         mds_last_seq=$(do_facet $SINGLEMDS \
4804                                        $LCTL get_param -n $param_seq)
4805                 fi
4806                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4807
4808                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4809                 node=$(facet_active_host ost$((ostnum+1)))
4810                 param="obdfilter.$ostname.last_id"
4811                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4812                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4813                         ost_last_id=$ost_last
4814
4815                         if $support_last_seq; then
4816                                 ost_last_id=$(echo $ost_last |
4817                                               awk -F':' '{print $2}' |
4818                                               sed -e "s/^0x//g")
4819                                 ost_last_seq=$(echo $ost_last |
4820                                                awk -F':' '{print $1}')
4821                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4822                         fi
4823
4824                         if [[ $ost_last_id != $mds_last ]]; then
4825                                 error "$ost_last_id != $mds_last"
4826                         else
4827                                 found=true
4828                                 break
4829                         fi
4830                 done
4831         done
4832         $found || error "can not match last_seq/last_id for $mdtosc"
4833         return 0
4834 }
4835 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4836
4837 test_54a() {
4838         perl -MSocket -e ';' || skip "no Socket perl module installed"
4839
4840         $SOCKETSERVER $DIR/socket ||
4841                 error "$SOCKETSERVER $DIR/socket failed: $?"
4842         $SOCKETCLIENT $DIR/socket ||
4843                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4844         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4845 }
4846 run_test 54a "unix domain socket test =========================="
4847
4848 test_54b() {
4849         f="$DIR/f54b"
4850         mknod $f c 1 3
4851         chmod 0666 $f
4852         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4853 }
4854 run_test 54b "char device works in lustre ======================"
4855
4856 find_loop_dev() {
4857         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4858         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4859         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4860
4861         for i in $(seq 3 7); do
4862                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4863                 LOOPDEV=$LOOPBASE$i
4864                 LOOPNUM=$i
4865                 break
4866         done
4867 }
4868
4869 cleanup_54c() {
4870         local rc=0
4871         loopdev="$DIR/loop54c"
4872
4873         trap 0
4874         $UMOUNT $DIR/$tdir || rc=$?
4875         losetup -d $loopdev || true
4876         losetup -d $LOOPDEV || true
4877         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4878         return $rc
4879 }
4880
4881 test_54c() {
4882         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4883
4884         loopdev="$DIR/loop54c"
4885
4886         find_loop_dev
4887         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4888         trap cleanup_54c EXIT
4889         mknod $loopdev b 7 $LOOPNUM
4890         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4891         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4892         losetup $loopdev $DIR/$tfile ||
4893                 error "can't set up $loopdev for $DIR/$tfile"
4894         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4895         test_mkdir $DIR/$tdir
4896         mount -t ext2 $loopdev $DIR/$tdir ||
4897                 error "error mounting $loopdev on $DIR/$tdir"
4898         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4899                 error "dd write"
4900         df $DIR/$tdir
4901         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4902                 error "dd read"
4903         cleanup_54c
4904 }
4905 run_test 54c "block device works in lustre ====================="
4906
4907 test_54d() {
4908         f="$DIR/f54d"
4909         string="aaaaaa"
4910         mknod $f p
4911         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4912 }
4913 run_test 54d "fifo device works in lustre ======================"
4914
4915 test_54e() {
4916         f="$DIR/f54e"
4917         string="aaaaaa"
4918         cp -aL /dev/console $f
4919         echo $string > $f || error "echo $string to $f failed"
4920 }
4921 run_test 54e "console/tty device works in lustre ======================"
4922
4923 test_56a() {
4924         local numfiles=3
4925         local dir=$DIR/$tdir
4926
4927         rm -rf $dir
4928         test_mkdir -p $dir/dir
4929         for i in $(seq $numfiles); do
4930                 touch $dir/file$i
4931                 touch $dir/dir/file$i
4932         done
4933
4934         local numcomp=$($LFS getstripe --component-count $dir)
4935
4936         [[ $numcomp == 0 ]] && numcomp=1
4937
4938         # test lfs getstripe with --recursive
4939         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4940
4941         [[ $filenum -eq $((numfiles * 2)) ]] ||
4942                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4943         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4944         [[ $filenum -eq $numfiles ]] ||
4945                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4946         echo "$LFS getstripe showed obdidx or l_ost_idx"
4947
4948         # test lfs getstripe with file instead of dir
4949         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4950         [[ $filenum -eq 1 ]] ||
4951                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4952         echo "$LFS getstripe file1 passed"
4953
4954         #test lfs getstripe with --verbose
4955         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4956         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4957                 error "$LFS getstripe --verbose $dir: "\
4958                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4959         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4960                 error "$LFS getstripe $dir: showed lmm_magic"
4961
4962         #test lfs getstripe with -v prints lmm_fid
4963         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4964         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4965                 error "$LFS getstripe -v $dir: "\
4966                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4967         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4968                 error "$LFS getstripe $dir: showed lmm_fid by default"
4969         echo "$LFS getstripe --verbose passed"
4970
4971         #check for FID information
4972         local fid1=$($LFS getstripe --fid $dir/file1)
4973         local fid2=$($LFS getstripe --verbose $dir/file1 |
4974                      awk '/lmm_fid: / { print $2; exit; }')
4975         local fid3=$($LFS path2fid $dir/file1)
4976
4977         [ "$fid1" != "$fid2" ] &&
4978                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4979         [ "$fid1" != "$fid3" ] &&
4980                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4981         echo "$LFS getstripe --fid passed"
4982
4983         #test lfs getstripe with --obd
4984         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4985                 error "$LFS getstripe --obd wrong_uuid: should return error"
4986
4987         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4988
4989         local ostidx=1
4990         local obduuid=$(ostuuid_from_index $ostidx)
4991         local found=$($LFS getstripe -r --obd $obduuid $dir |
4992                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4993
4994         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4995         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4996                 ((filenum--))
4997         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4998                 ((filenum--))
4999
5000         [[ $found -eq $filenum ]] ||
5001                 error "$LFS getstripe --obd: found $found expect $filenum"
5002         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
5003                 sed '/^[         ]*'${ostidx}'[  ]/d' |
5004                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
5005                 error "$LFS getstripe --obd: should not show file on other obd"
5006         echo "$LFS getstripe --obd passed"
5007 }
5008 run_test 56a "check $LFS getstripe"
5009
5010 test_56b() {
5011         local dir=$DIR/$tdir
5012         local numdirs=3
5013
5014         test_mkdir $dir
5015         for i in $(seq $numdirs); do
5016                 test_mkdir $dir/dir$i
5017         done
5018
5019         # test lfs getdirstripe default mode is non-recursion, which is
5020         # different from lfs getstripe
5021         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
5022
5023         [[ $dircnt -eq 1 ]] ||
5024                 error "$LFS getdirstripe: found $dircnt, not 1"
5025         dircnt=$($LFS getdirstripe --recursive $dir |
5026                 grep -c lmv_stripe_count)
5027         [[ $dircnt -eq $((numdirs + 1)) ]] ||
5028                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
5029 }
5030 run_test 56b "check $LFS getdirstripe"
5031
5032 test_56c() {
5033         remote_ost_nodsh && skip "remote OST with nodsh"
5034
5035         local ost_idx=0
5036         local ost_name=$(ostname_from_index $ost_idx)
5037         local old_status=$(ost_dev_status $ost_idx)
5038
5039         [[ -z "$old_status" ]] ||
5040                 skip_env "OST $ost_name is in $old_status status"
5041
5042         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
5043         [[ $OST1_VERSION -ge $(version_code 2.12.3) ]] && do_facet ost1 \
5044                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=1
5045         sleep_maxage
5046
5047         local new_status=$(ost_dev_status $ost_idx)
5048
5049         [[ "$new_status" =~ "D" ]] ||
5050                 error "$ost_name status is '$new_status', missing 'D'"
5051         if [[ $OST1_VERSION -ge $(version_code 2.12.3) ]]; then
5052                 [[ "$new_status" =~ "N" ]] ||
5053                         error "$ost_name status is '$new_status', missing 'N'"
5054         fi
5055
5056         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
5057         [[ $OST1_VERSION -ge $(version_code 2.12.3) ]] && do_facet ost1 \
5058                 $LCTL set_param -n obdfilter.$ost_name.no_precreate=0
5059         sleep_maxage
5060
5061         new_status=$(ost_dev_status $ost_idx)
5062         [[ ! "$new_status" =~ "D" && ! "$new_status" =~ "N" ]] ||
5063                 error "$ost_name status is '$new_status', has 'D' and/or 'N'"
5064 }
5065 run_test 56c "check 'lfs df' showing device status"
5066
5067 NUMFILES=3
5068 NUMDIRS=3
5069 setup_56() {
5070         local local_tdir="$1"
5071         local local_numfiles="$2"
5072         local local_numdirs="$3"
5073         local dir_params="$4"
5074         local dir_stripe_params="$5"
5075
5076         if [ ! -d "$local_tdir" ] ; then
5077                 test_mkdir -p $dir_stripe_params $local_tdir
5078                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
5079                 for i in $(seq $local_numfiles) ; do
5080                         touch $local_tdir/file$i
5081                 done
5082                 for i in $(seq $local_numdirs) ; do
5083                         test_mkdir $dir_stripe_params $local_tdir/dir$i
5084                         for j in $(seq $local_numfiles) ; do
5085                                 touch $local_tdir/dir$i/file$j
5086                         done
5087                 done
5088         fi
5089 }
5090
5091 setup_56_special() {
5092         local local_tdir=$1
5093         local local_numfiles=$2
5094         local local_numdirs=$3
5095
5096         setup_56 $local_tdir $local_numfiles $local_numdirs
5097
5098         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
5099                 for i in $(seq $local_numfiles) ; do
5100                         mknod $local_tdir/loop${i}b b 7 $i
5101                         mknod $local_tdir/null${i}c c 1 3
5102                         ln -s $local_tdir/file1 $local_tdir/link${i}
5103                 done
5104                 for i in $(seq $local_numdirs) ; do
5105                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
5106                         mknod $local_tdir/dir$i/null${i}c c 1 3
5107                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
5108                 done
5109         fi
5110 }
5111
5112 test_56g() {
5113         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5114         local expected=$(($NUMDIRS + 2))
5115
5116         setup_56 $dir $NUMFILES $NUMDIRS
5117
5118         # test lfs find with -name
5119         for i in $(seq $NUMFILES) ; do
5120                 local nums=$($LFS find -name "*$i" $dir | wc -l)
5121
5122                 [ $nums -eq $expected ] ||
5123                         error "lfs find -name '*$i' $dir wrong: "\
5124                               "found $nums, expected $expected"
5125         done
5126 }
5127 run_test 56g "check lfs find -name"
5128
5129 test_56h() {
5130         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5131         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
5132
5133         setup_56 $dir $NUMFILES $NUMDIRS
5134
5135         # test lfs find with ! -name
5136         for i in $(seq $NUMFILES) ; do
5137                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
5138
5139                 [ $nums -eq $expected ] ||
5140                         error "lfs find ! -name '*$i' $dir wrong: "\
5141                               "found $nums, expected $expected"
5142         done
5143 }
5144 run_test 56h "check lfs find ! -name"
5145
5146 test_56i() {
5147         local dir=$DIR/$tdir
5148
5149         test_mkdir $dir
5150
5151         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
5152         local out=$($cmd)
5153
5154         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
5155 }
5156 run_test 56i "check 'lfs find -ost UUID' skips directories"
5157
5158 test_56j() {
5159         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5160
5161         setup_56_special $dir $NUMFILES $NUMDIRS
5162
5163         local expected=$((NUMDIRS + 1))
5164         local cmd="$LFS find -type d $dir"
5165         local nums=$($cmd | wc -l)
5166
5167         [ $nums -eq $expected ] ||
5168                 error "'$cmd' wrong: found $nums, expected $expected"
5169 }
5170 run_test 56j "check lfs find -type d"
5171
5172 test_56k() {
5173         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5174
5175         setup_56_special $dir $NUMFILES $NUMDIRS
5176
5177         local expected=$(((NUMDIRS + 1) * NUMFILES))
5178         local cmd="$LFS find -type f $dir"
5179         local nums=$($cmd | wc -l)
5180
5181         [ $nums -eq $expected ] ||
5182                 error "'$cmd' wrong: found $nums, expected $expected"
5183 }
5184 run_test 56k "check lfs find -type f"
5185
5186 test_56l() {
5187         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5188
5189         setup_56_special $dir $NUMFILES $NUMDIRS
5190
5191         local expected=$((NUMDIRS + NUMFILES))
5192         local cmd="$LFS find -type b $dir"
5193         local nums=$($cmd | wc -l)
5194
5195         [ $nums -eq $expected ] ||
5196                 error "'$cmd' wrong: found $nums, expected $expected"
5197 }
5198 run_test 56l "check lfs find -type b"
5199
5200 test_56m() {
5201         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5202
5203         setup_56_special $dir $NUMFILES $NUMDIRS
5204
5205         local expected=$((NUMDIRS + NUMFILES))
5206         local cmd="$LFS find -type c $dir"
5207         local nums=$($cmd | wc -l)
5208         [ $nums -eq $expected ] ||
5209                 error "'$cmd' wrong: found $nums, expected $expected"
5210 }
5211 run_test 56m "check lfs find -type c"
5212
5213 test_56n() {
5214         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5215         setup_56_special $dir $NUMFILES $NUMDIRS
5216
5217         local expected=$((NUMDIRS + NUMFILES))
5218         local cmd="$LFS find -type l $dir"
5219         local nums=$($cmd | wc -l)
5220
5221         [ $nums -eq $expected ] ||
5222                 error "'$cmd' wrong: found $nums, expected $expected"
5223 }
5224 run_test 56n "check lfs find -type l"
5225
5226 test_56o() {
5227         local dir=$DIR/$tdir
5228
5229         setup_56 $dir $NUMFILES $NUMDIRS
5230         utime $dir/file1 > /dev/null || error "utime (1)"
5231         utime $dir/file2 > /dev/null || error "utime (2)"
5232         utime $dir/dir1 > /dev/null || error "utime (3)"
5233         utime $dir/dir2 > /dev/null || error "utime (4)"
5234         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5235         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5236
5237         local expected=4
5238         local nums=$($LFS find -mtime +0 $dir | wc -l)
5239
5240         [ $nums -eq $expected ] ||
5241                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5242
5243         expected=12
5244         cmd="$LFS find -mtime 0 $dir"
5245         nums=$($cmd | wc -l)
5246         [ $nums -eq $expected ] ||
5247                 error "'$cmd' wrong: found $nums, expected $expected"
5248 }
5249 run_test 56o "check lfs find -mtime for old files"
5250
5251 test_56p() {
5252         [ $RUNAS_ID -eq $UID ] &&
5253                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5254
5255         local dir=$DIR/$tdir
5256
5257         setup_56 $dir $NUMFILES $NUMDIRS
5258         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5259
5260         local expected=$NUMFILES
5261         local cmd="$LFS find -uid $RUNAS_ID $dir"
5262         local nums=$($cmd | wc -l)
5263
5264         [ $nums -eq $expected ] ||
5265                 error "'$cmd' wrong: found $nums, expected $expected"
5266
5267         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5268         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5269         nums=$($cmd | wc -l)
5270         [ $nums -eq $expected ] ||
5271                 error "'$cmd' wrong: found $nums, expected $expected"
5272 }
5273 run_test 56p "check lfs find -uid and ! -uid"
5274
5275 test_56q() {
5276         [ $RUNAS_ID -eq $UID ] &&
5277                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5278
5279         local dir=$DIR/$tdir
5280
5281         setup_56 $dir $NUMFILES $NUMDIRS
5282         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5283
5284         local expected=$NUMFILES
5285         local cmd="$LFS find -gid $RUNAS_GID $dir"
5286         local nums=$($cmd | wc -l)
5287
5288         [ $nums -eq $expected ] ||
5289                 error "'$cmd' wrong: found $nums, expected $expected"
5290
5291         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5292         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5293         nums=$($cmd | wc -l)
5294         [ $nums -eq $expected ] ||
5295                 error "'$cmd' wrong: found $nums, expected $expected"
5296 }
5297 run_test 56q "check lfs find -gid and ! -gid"
5298
5299 test_56r() {
5300         local dir=$DIR/$tdir
5301
5302         setup_56 $dir $NUMFILES $NUMDIRS
5303
5304         local expected=12
5305         local cmd="$LFS find -size 0 -type f -lazy $dir"
5306         local nums=$($cmd | wc -l)
5307
5308         [ $nums -eq $expected ] ||
5309                 error "'$cmd' wrong: found $nums, expected $expected"
5310         cmd="$LFS find -size 0 -type f $dir"
5311         nums=$($cmd | wc -l)
5312         [ $nums -eq $expected ] ||
5313                 error "'$cmd' wrong: found $nums, expected $expected"
5314
5315         expected=0
5316         cmd="$LFS find ! -size 0 -type f -lazy $dir"
5317         nums=$($cmd | wc -l)
5318         [ $nums -eq $expected ] ||
5319                 error "'$cmd' wrong: found $nums, expected $expected"
5320         cmd="$LFS find ! -size 0 -type f $dir"
5321         nums=$($cmd | wc -l)
5322         [ $nums -eq $expected ] ||
5323                 error "'$cmd' wrong: found $nums, expected $expected"
5324
5325         echo "test" > $dir/$tfile
5326         echo "test2" > $dir/$tfile.2 && sync
5327         expected=1
5328         cmd="$LFS find -size 5 -type f -lazy $dir"
5329         nums=$($cmd | wc -l)
5330         [ $nums -eq $expected ] ||
5331                 error "'$cmd' wrong: found $nums, expected $expected"
5332         cmd="$LFS find -size 5 -type f $dir"
5333         nums=$($cmd | wc -l)
5334         [ $nums -eq $expected ] ||
5335                 error "'$cmd' wrong: found $nums, expected $expected"
5336
5337         expected=1
5338         cmd="$LFS find -size +5 -type f -lazy $dir"
5339         nums=$($cmd | wc -l)
5340         [ $nums -eq $expected ] ||
5341                 error "'$cmd' wrong: found $nums, expected $expected"
5342         cmd="$LFS find -size +5 -type f $dir"
5343         nums=$($cmd | wc -l)
5344         [ $nums -eq $expected ] ||
5345                 error "'$cmd' wrong: found $nums, expected $expected"
5346
5347         expected=2
5348         cmd="$LFS find -size +0 -type f -lazy $dir"
5349         nums=$($cmd | wc -l)
5350         [ $nums -eq $expected ] ||
5351                 error "'$cmd' wrong: found $nums, expected $expected"
5352         cmd="$LFS find -size +0 -type f $dir"
5353         nums=$($cmd | wc -l)
5354         [ $nums -eq $expected ] ||
5355                 error "'$cmd' wrong: found $nums, expected $expected"
5356
5357         expected=2
5358         cmd="$LFS find ! -size -5 -type f -lazy $dir"
5359         nums=$($cmd | wc -l)
5360         [ $nums -eq $expected ] ||
5361                 error "'$cmd' wrong: found $nums, expected $expected"
5362         cmd="$LFS find ! -size -5 -type f $dir"
5363         nums=$($cmd | wc -l)
5364         [ $nums -eq $expected ] ||
5365                 error "'$cmd' wrong: found $nums, expected $expected"
5366
5367         expected=12
5368         cmd="$LFS find -size -5 -type f -lazy $dir"
5369         nums=$($cmd | wc -l)
5370         [ $nums -eq $expected ] ||
5371                 error "'$cmd' wrong: found $nums, expected $expected"
5372         cmd="$LFS find -size -5 -type f $dir"
5373         nums=$($cmd | wc -l)
5374         [ $nums -eq $expected ] ||
5375                 error "'$cmd' wrong: found $nums, expected $expected"
5376 }
5377 run_test 56r "check lfs find -size works"
5378
5379 test_56ra_sub() {
5380         local expected=$1
5381         local glimpses=$2
5382         local cmd="$3"
5383
5384         cancel_lru_locks $OSC
5385
5386         local rpcs_before=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
5387         local nums=$($cmd | wc -l)
5388
5389         [ $nums -eq $expected ] ||
5390                 error "'$cmd' wrong: found $nums, expected $expected"
5391
5392         local rpcs_after=$(calc_stats $OSC.*$OSC*.stats ldlm_glimpse_enqueue)
5393
5394         if (( rpcs_before + glimpses != rpcs_after )); then
5395                 echo "Before: $rpcs_before After: $rpcs_after $NUMFILES"
5396                 $LCTL get_param osc.*.stats | grep ldlm_glimpse_enqueue
5397
5398                 if [[ $glimpses == 0 ]]; then
5399                         error "'$cmd' should not send glimpse RPCs to OST"
5400                 else
5401                         error "'$cmd' should send $glimpses glimpse RPCs to OST"
5402                 fi
5403         fi
5404 }
5405
5406 test_56ra() {
5407         [[ $MDS1_VERSION -ge $(version_code 2.12.4) ]] ||
5408                 skip "MDS < 2.12.4 doesn't return LSOM data"
5409         local dir=$DIR/$tdir
5410
5411         [[ $OSC == "mdc" ]] && skip "DoM files"
5412
5413         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5414         # open and close all files to ensure LSOM is updated
5415         cancel_lru_locks $OSC
5416         find $dir -type f | xargs cat > /dev/null
5417
5418         #   expect_found  glimpse_rpcs  command_to_run
5419         test_56ra_sub 12  0 "$LFS find -size 0 -type f -lazy $dir"
5420         test_56ra_sub 12 12 "$LFS find -size 0 -type f $dir"
5421         test_56ra_sub  0  0 "$LFS find ! -size 0 -type f -lazy $dir"
5422         test_56ra_sub  0 12 "$LFS find ! -size 0 -type f $dir"
5423
5424         echo "test" > $dir/$tfile
5425         echo "test2" > $dir/$tfile.2 && sync
5426         cancel_lru_locks $OSC
5427         cat $dir/$tfile $dir/$tfile.2 > /dev/null
5428
5429         test_56ra_sub  1  0 "$LFS find -size 5 -type f -lazy $dir"
5430         test_56ra_sub  1 14 "$LFS find -size 5 -type f $dir"
5431         test_56ra_sub  1  0 "$LFS find -size +5 -type f -lazy $dir"
5432         test_56ra_sub  1 14 "$LFS find -size +5 -type f $dir"
5433
5434         test_56ra_sub  2  0 "$LFS find -size +0 -type f -lazy $dir"
5435         test_56ra_sub  2 14 "$LFS find -size +0 -type f $dir"
5436         test_56ra_sub  2  0 "$LFS find ! -size -5 -type f -lazy $dir"
5437         test_56ra_sub  2 14 "$LFS find ! -size -5 -type f $dir"
5438         test_56ra_sub 12  0 "$LFS find -size -5 -type f -lazy $dir"
5439         test_56ra_sub 12 14 "$LFS find -size -5 -type f $dir"
5440 }
5441 run_test 56ra "check lfs find -size -lazy works for data on OSTs"
5442
5443 test_56s() { # LU-611 #LU-9369
5444         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5445
5446         local dir=$DIR/$tdir
5447         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5448
5449         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5450         for i in $(seq $NUMDIRS); do
5451                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5452         done
5453
5454         local expected=$NUMDIRS
5455         local cmd="$LFS find -c $OSTCOUNT $dir"
5456         local nums=$($cmd | wc -l)
5457
5458         [ $nums -eq $expected ] || {
5459                 $LFS getstripe -R $dir
5460                 error "'$cmd' wrong: found $nums, expected $expected"
5461         }
5462
5463         expected=$((NUMDIRS + onestripe))
5464         cmd="$LFS find -stripe-count +0 -type f $dir"
5465         nums=$($cmd | wc -l)
5466         [ $nums -eq $expected ] || {
5467                 $LFS getstripe -R $dir
5468                 error "'$cmd' wrong: found $nums, expected $expected"
5469         }
5470
5471         expected=$onestripe
5472         cmd="$LFS find -stripe-count 1 -type f $dir"
5473         nums=$($cmd | wc -l)
5474         [ $nums -eq $expected ] || {
5475                 $LFS getstripe -R $dir
5476                 error "'$cmd' wrong: found $nums, expected $expected"
5477         }
5478
5479         cmd="$LFS find -stripe-count -2 -type f $dir"
5480         nums=$($cmd | wc -l)
5481         [ $nums -eq $expected ] || {
5482                 $LFS getstripe -R $dir
5483                 error "'$cmd' wrong: found $nums, expected $expected"
5484         }
5485
5486         expected=0
5487         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5488         nums=$($cmd | wc -l)
5489         [ $nums -eq $expected ] || {
5490                 $LFS getstripe -R $dir
5491                 error "'$cmd' wrong: found $nums, expected $expected"
5492         }
5493 }
5494 run_test 56s "check lfs find -stripe-count works"
5495
5496 test_56t() { # LU-611 #LU-9369
5497         local dir=$DIR/$tdir
5498
5499         setup_56 $dir 0 $NUMDIRS
5500         for i in $(seq $NUMDIRS); do
5501                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5502         done
5503
5504         local expected=$NUMDIRS
5505         local cmd="$LFS find -S 8M $dir"
5506         local nums=$($cmd | wc -l)
5507
5508         [ $nums -eq $expected ] || {
5509                 $LFS getstripe -R $dir
5510                 error "'$cmd' wrong: found $nums, expected $expected"
5511         }
5512         rm -rf $dir
5513
5514         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5515
5516         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5517
5518         expected=$(((NUMDIRS + 1) * NUMFILES))
5519         cmd="$LFS find -stripe-size 512k -type f $dir"
5520         nums=$($cmd | wc -l)
5521         [ $nums -eq $expected ] ||
5522                 error "'$cmd' wrong: found $nums, expected $expected"
5523
5524         cmd="$LFS find -stripe-size +320k -type f $dir"
5525         nums=$($cmd | wc -l)
5526         [ $nums -eq $expected ] ||
5527                 error "'$cmd' wrong: found $nums, expected $expected"
5528
5529         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5530         cmd="$LFS find -stripe-size +200k -type f $dir"
5531         nums=$($cmd | wc -l)
5532         [ $nums -eq $expected ] ||
5533                 error "'$cmd' wrong: found $nums, expected $expected"
5534
5535         cmd="$LFS find -stripe-size -640k -type f $dir"
5536         nums=$($cmd | wc -l)
5537         [ $nums -eq $expected ] ||
5538                 error "'$cmd' wrong: found $nums, expected $expected"
5539
5540         expected=4
5541         cmd="$LFS find -stripe-size 256k -type f $dir"
5542         nums=$($cmd | wc -l)
5543         [ $nums -eq $expected ] ||
5544                 error "'$cmd' wrong: found $nums, expected $expected"
5545
5546         cmd="$LFS find -stripe-size -320k -type f $dir"
5547         nums=$($cmd | wc -l)
5548         [ $nums -eq $expected ] ||
5549                 error "'$cmd' wrong: found $nums, expected $expected"
5550
5551         expected=0
5552         cmd="$LFS find -stripe-size 1024k -type f $dir"
5553         nums=$($cmd | wc -l)
5554         [ $nums -eq $expected ] ||
5555                 error "'$cmd' wrong: found $nums, expected $expected"
5556 }
5557 run_test 56t "check lfs find -stripe-size works"
5558
5559 test_56u() { # LU-611
5560         local dir=$DIR/$tdir
5561
5562         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5563
5564         if [[ $OSTCOUNT -gt 1 ]]; then
5565                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5566                 onestripe=4
5567         else
5568                 onestripe=0
5569         fi
5570
5571         local expected=$(((NUMDIRS + 1) * NUMFILES))
5572         local cmd="$LFS find -stripe-index 0 -type f $dir"
5573         local nums=$($cmd | wc -l)
5574
5575         [ $nums -eq $expected ] ||
5576                 error "'$cmd' wrong: found $nums, expected $expected"
5577
5578         expected=$onestripe
5579         cmd="$LFS find -stripe-index 1 -type f $dir"
5580         nums=$($cmd | wc -l)
5581         [ $nums -eq $expected ] ||
5582                 error "'$cmd' wrong: found $nums, expected $expected"
5583
5584         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5585         nums=$($cmd | wc -l)
5586         [ $nums -eq $expected ] ||
5587                 error "'$cmd' wrong: found $nums, expected $expected"
5588
5589         expected=0
5590         # This should produce an error and not return any files
5591         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5592         nums=$($cmd 2>/dev/null | wc -l)
5593         [ $nums -eq $expected ] ||
5594                 error "'$cmd' wrong: found $nums, expected $expected"
5595
5596         if [[ $OSTCOUNT -gt 1 ]]; then
5597                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5598                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5599                 nums=$($cmd | wc -l)
5600                 [ $nums -eq $expected ] ||
5601                         error "'$cmd' wrong: found $nums, expected $expected"
5602         fi
5603 }
5604 run_test 56u "check lfs find -stripe-index works"
5605
5606 test_56v() {
5607         local mdt_idx=0
5608         local dir=$DIR/$tdir
5609
5610         setup_56 $dir $NUMFILES $NUMDIRS
5611
5612         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5613         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5614
5615         for file in $($LFS find -m $UUID $dir); do
5616                 file_midx=$($LFS getstripe -m $file)
5617                 [ $file_midx -eq $mdt_idx ] ||
5618                         error "lfs find -m $UUID != getstripe -m $file_midx"
5619         done
5620 }
5621 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5622
5623 test_56w() {
5624         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5625         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5626
5627         local dir=$DIR/$tdir
5628
5629         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5630
5631         local stripe_size=$($LFS getstripe -S -d $dir) ||
5632                 error "$LFS getstripe -S -d $dir failed"
5633         stripe_size=${stripe_size%% *}
5634
5635         local file_size=$((stripe_size * OSTCOUNT))
5636         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5637         local required_space=$((file_num * file_size))
5638         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5639                            head -n1)
5640         [[ $free_space -le $((required_space / 1024)) ]] &&
5641                 skip_env "need $required_space, have $free_space kbytes"
5642
5643         local dd_bs=65536
5644         local dd_count=$((file_size / dd_bs))
5645
5646         # write data into the files
5647         local i
5648         local j
5649         local file
5650
5651         for i in $(seq $NUMFILES); do
5652                 file=$dir/file$i
5653                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5654                         error "write data into $file failed"
5655         done
5656         for i in $(seq $NUMDIRS); do
5657                 for j in $(seq $NUMFILES); do
5658                         file=$dir/dir$i/file$j
5659                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5660                                 error "write data into $file failed"
5661                 done
5662         done
5663
5664         # $LFS_MIGRATE will fail if hard link migration is unsupported
5665         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5666                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5667                         error "creating links to $dir/dir1/file1 failed"
5668         fi
5669
5670         local expected=-1
5671
5672         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5673
5674         # lfs_migrate file
5675         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5676
5677         echo "$cmd"
5678         eval $cmd || error "$cmd failed"
5679
5680         check_stripe_count $dir/file1 $expected
5681
5682         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5683         then
5684                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5685                 # OST 1 if it is on OST 0. This file is small enough to
5686                 # be on only one stripe.
5687                 file=$dir/migr_1_ost
5688                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5689                         error "write data into $file failed"
5690                 local obdidx=$($LFS getstripe -i $file)
5691                 local oldmd5=$(md5sum $file)
5692                 local newobdidx=0
5693
5694                 [[ $obdidx -eq 0 ]] && newobdidx=1
5695                 cmd="$LFS migrate -i $newobdidx $file"
5696                 echo $cmd
5697                 eval $cmd || error "$cmd failed"
5698
5699                 local realobdix=$($LFS getstripe -i $file)
5700                 local newmd5=$(md5sum $file)
5701
5702                 [[ $newobdidx -ne $realobdix ]] &&
5703                         error "new OST is different (was=$obdidx, "\
5704                               "wanted=$newobdidx, got=$realobdix)"
5705                 [[ "$oldmd5" != "$newmd5" ]] &&
5706                         error "md5sum differ: $oldmd5, $newmd5"
5707         fi
5708
5709         # lfs_migrate dir
5710         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5711         echo "$cmd"
5712         eval $cmd || error "$cmd failed"
5713
5714         for j in $(seq $NUMFILES); do
5715                 check_stripe_count $dir/dir1/file$j $expected
5716         done
5717
5718         # lfs_migrate works with lfs find
5719         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5720              $LFS_MIGRATE -y -c $expected"
5721         echo "$cmd"
5722         eval $cmd || error "$cmd failed"
5723
5724         for i in $(seq 2 $NUMFILES); do
5725                 check_stripe_count $dir/file$i $expected
5726         done
5727         for i in $(seq 2 $NUMDIRS); do
5728                 for j in $(seq $NUMFILES); do
5729                 check_stripe_count $dir/dir$i/file$j $expected
5730                 done
5731         done
5732 }
5733 run_test 56w "check lfs_migrate -c stripe_count works"
5734
5735 test_56wb() {
5736         local file1=$DIR/$tdir/file1
5737         local create_pool=false
5738         local initial_pool=$($LFS getstripe -p $DIR)
5739         local pool_list=()
5740         local pool=""
5741
5742         echo -n "Creating test dir..."
5743         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5744         echo "done."
5745
5746         echo -n "Creating test file..."
5747         touch $file1 || error "cannot create file"
5748         echo "done."
5749
5750         echo -n "Detecting existing pools..."
5751         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5752
5753         if [ ${#pool_list[@]} -gt 0 ]; then
5754                 echo "${pool_list[@]}"
5755                 for thispool in "${pool_list[@]}"; do
5756                         if [[ -z "$initial_pool" ||
5757                               "$initial_pool" != "$thispool" ]]; then
5758                                 pool="$thispool"
5759                                 echo "Using existing pool '$pool'"
5760                                 break
5761                         fi
5762                 done
5763         else
5764                 echo "none detected."
5765         fi
5766         if [ -z "$pool" ]; then
5767                 pool=${POOL:-testpool}
5768                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5769                 echo -n "Creating pool '$pool'..."
5770                 create_pool=true
5771                 pool_add $pool &> /dev/null ||
5772                         error "pool_add failed"
5773                 echo "done."
5774
5775                 echo -n "Adding target to pool..."
5776                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5777                         error "pool_add_targets failed"
5778                 echo "done."
5779         fi
5780
5781         echo -n "Setting pool using -p option..."
5782         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5783                 error "migrate failed rc = $?"
5784         echo "done."
5785
5786         echo -n "Verifying test file is in pool after migrating..."
5787         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5788                 error "file was not migrated to pool $pool"
5789         echo "done."
5790
5791         echo -n "Removing test file from pool '$pool'..."
5792         # "lfs migrate $file" won't remove the file from the pool
5793         # until some striping information is changed.
5794         $LFS migrate -c 1 $file1 &> /dev/null ||
5795                 error "cannot remove from pool"
5796         [ "$($LFS getstripe -p $file1)" ] &&
5797                 error "pool still set"
5798         echo "done."
5799
5800         echo -n "Setting pool using --pool option..."
5801         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5802                 error "migrate failed rc = $?"
5803         echo "done."
5804
5805         # Clean up
5806         rm -f $file1
5807         if $create_pool; then
5808                 destroy_test_pools 2> /dev/null ||
5809                         error "destroy test pools failed"
5810         fi
5811 }
5812 run_test 56wb "check lfs_migrate pool support"
5813
5814 test_56wc() {
5815         local file1="$DIR/$tdir/file1"
5816         local parent_ssize
5817         local parent_scount
5818         local cur_ssize
5819         local cur_scount
5820         local orig_ssize
5821
5822         echo -n "Creating test dir..."
5823         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5824         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5825                 error "cannot set stripe by '-S 1M -c 1'"
5826         echo "done"
5827
5828         echo -n "Setting initial stripe for test file..."
5829         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5830                 error "cannot set stripe"
5831         cur_ssize=$($LFS getstripe -S "$file1")
5832         [ $cur_ssize -eq 524288 ] || error "setstripe -S $cur_ssize != 524288"
5833         echo "done."
5834
5835         # File currently set to -S 512K -c 1
5836
5837         # Ensure -c and -S options are rejected when -R is set
5838         echo -n "Verifying incompatible options are detected..."
5839         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5840                 error "incompatible -c and -R options not detected"
5841         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5842                 error "incompatible -S and -R options not detected"
5843         echo "done."
5844
5845         # Ensure unrecognized options are passed through to 'lfs migrate'
5846         echo -n "Verifying -S option is passed through to lfs migrate..."
5847         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5848                 error "migration failed"
5849         cur_ssize=$($LFS getstripe -S "$file1")
5850         [ $cur_ssize -eq 1048576 ] || error "migrate -S $cur_ssize != 1048576"
5851         echo "done."
5852
5853         # File currently set to -S 1M -c 1
5854
5855         # Ensure long options are supported
5856         echo -n "Verifying long options supported..."
5857         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5858                 error "long option without argument not supported"
5859         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5860                 error "long option with argument not supported"
5861         cur_ssize=$($LFS getstripe -S "$file1")
5862         [ $cur_ssize -eq 524288 ] ||
5863                 error "migrate --stripe-size $cur_ssize != 524288"
5864         echo "done."
5865
5866         # File currently set to -S 512K -c 1
5867
5868         if [ "$OSTCOUNT" -gt 1 ]; then
5869                 echo -n "Verifying explicit stripe count can be set..."
5870                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5871                         error "migrate failed"
5872                 cur_scount=$($LFS getstripe -c "$file1")
5873                 [ $cur_scount -eq 2 ] || error "migrate -c $cur_scount != 2"
5874                 echo "done."
5875         fi
5876
5877         # File currently set to -S 512K -c 1 or -S 512K -c 2
5878
5879         # Ensure parent striping is used if -R is set, and no stripe
5880         # count or size is specified
5881         echo -n "Setting stripe for parent directory..."
5882         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5883                 error "cannot set stripe '-S 2M -c 1'"
5884         echo "done."
5885
5886         echo -n "Verifying restripe option uses parent stripe settings..."
5887         parent_ssize=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5888         parent_scount=$($LFS getstripe -c $DIR/$tdir 2>/dev/null)
5889         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5890                 error "migrate failed"
5891         cur_ssize=$($LFS getstripe -S "$file1")
5892         [ $cur_ssize -eq $parent_ssize ] ||
5893                 error "migrate -R stripe_size $cur_ssize != $parent_ssize"
5894         cur_scount=$($LFS getstripe -c "$file1")
5895         [ $cur_scount -eq $parent_scount ] ||
5896                 error "migrate -R stripe_count $cur_scount != $parent_scount"
5897         echo "done."
5898
5899         # File currently set to -S 1M -c 1
5900
5901         # Ensure striping is preserved if -R is not set, and no stripe
5902         # count or size is specified
5903         echo -n "Verifying striping size preserved when not specified..."
5904         orig_ssize=$($LFS getstripe -S "$file1" 2>/dev/null)
5905         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5906                 error "cannot set stripe on parent directory"
5907         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5908                 error "migrate failed"
5909         cur_ssize=$($LFS getstripe -S "$file1")
5910         [ $cur_ssize -eq $orig_ssize ] ||
5911                 error "migrate by default $cur_ssize != $orig_ssize"
5912         echo "done."
5913
5914         # Ensure file name properly detected when final option has no argument
5915         echo -n "Verifying file name properly detected..."
5916         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5917                 error "file name interpreted as option argument"
5918         echo "done."
5919
5920         # Clean up
5921         rm -f "$file1"
5922 }
5923 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5924
5925 test_56wd() {
5926         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5927
5928         local file1=$DIR/$tdir/file1
5929
5930         echo -n "Creating test dir..."
5931         test_mkdir $DIR/$tdir || error "cannot create dir"
5932         echo "done."
5933
5934         echo -n "Creating test file..."
5935         touch $file1
5936         echo "done."
5937
5938         # Ensure 'lfs migrate' will fail by using a non-existent option,
5939         # and make sure rsync is not called to recover
5940         echo -n "Make sure --no-rsync option works..."
5941         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5942                 grep -q 'refusing to fall back to rsync' ||
5943                 error "rsync was called with --no-rsync set"
5944         echo "done."
5945
5946         # Ensure rsync is called without trying 'lfs migrate' first
5947         echo -n "Make sure --rsync option works..."
5948         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5949                 grep -q 'falling back to rsync' &&
5950                 error "lfs migrate was called with --rsync set"
5951         echo "done."
5952
5953         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5954         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5955                 grep -q 'at the same time' ||
5956                 error "--rsync and --no-rsync accepted concurrently"
5957         echo "done."
5958
5959         # Clean up
5960         rm -f $file1
5961 }
5962 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5963
5964 test_56x() {
5965         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5966         check_swap_layouts_support
5967
5968         local dir=$DIR/$tdir
5969         local ref1=/etc/passwd
5970         local file1=$dir/file1
5971
5972         test_mkdir $dir || error "creating dir $dir"
5973         $LFS setstripe -c 2 $file1
5974         cp $ref1 $file1
5975         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5976         stripe=$($LFS getstripe -c $file1)
5977         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5978         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5979
5980         # clean up
5981         rm -f $file1
5982 }
5983 run_test 56x "lfs migration support"
5984
5985 test_56xa() {
5986         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5987         check_swap_layouts_support
5988
5989         local dir=$DIR/$tdir/$testnum
5990
5991         test_mkdir -p $dir
5992
5993         local ref1=/etc/passwd
5994         local file1=$dir/file1
5995
5996         $LFS setstripe -c 2 $file1
5997         cp $ref1 $file1
5998         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5999
6000         local stripe=$($LFS getstripe -c $file1)
6001
6002         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
6003         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
6004
6005         # clean up
6006         rm -f $file1
6007 }
6008 run_test 56xa "lfs migration --block support"
6009
6010 check_migrate_links() {
6011         local dir="$1"
6012         local file1="$dir/file1"
6013         local begin="$2"
6014         local count="$3"
6015         local total_count=$(($begin + $count - 1))
6016         local symlink_count=10
6017         local uniq_count=10
6018
6019         if [ ! -f "$file1" ]; then
6020                 echo -n "creating initial file..."
6021                 $LFS setstripe -c 1 -S "512k" "$file1" ||
6022                         error "cannot setstripe initial file"
6023                 echo "done"
6024
6025                 echo -n "creating symlinks..."
6026                 for s in $(seq 1 $symlink_count); do
6027                         ln -s "$file1" "$dir/slink$s" ||
6028                                 error "cannot create symlinks"
6029                 done
6030                 echo "done"
6031
6032                 echo -n "creating nonlinked files..."
6033                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
6034                         error "cannot create nonlinked files"
6035                 echo "done"
6036         fi
6037
6038         # create hard links
6039         if [ ! -f "$dir/file$total_count" ]; then
6040                 echo -n "creating hard links $begin:$total_count..."
6041                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
6042                         /dev/null || error "cannot create hard links"
6043                 echo "done"
6044         fi
6045
6046         echo -n "checking number of hard links listed in xattrs..."
6047         local fid=$($LFS getstripe -F "$file1")
6048         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
6049
6050         echo "${#paths[*]}"
6051         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
6052                         skip "hard link list has unexpected size, skipping test"
6053         fi
6054         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
6055                         error "link names should exceed xattrs size"
6056         fi
6057
6058         echo -n "migrating files..."
6059         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
6060         local rc=$?
6061         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
6062         echo "done"
6063
6064         # make sure all links have been properly migrated
6065         echo -n "verifying files..."
6066         fid=$($LFS getstripe -F "$file1") ||
6067                 error "cannot get fid for file $file1"
6068         for i in $(seq 2 $total_count); do
6069                 local fid2=$($LFS getstripe -F $dir/file$i)
6070
6071                 [ "$fid2" == "$fid" ] ||
6072                         error "migrated hard link has mismatched FID"
6073         done
6074
6075         # make sure hard links were properly detected, and migration was
6076         # performed only once for the entire link set; nonlinked files should
6077         # also be migrated
6078         local actual=$(grep -c 'done' <<< "$migrate_out")
6079         local expected=$(($uniq_count + 1))
6080
6081         [ "$actual" -eq  "$expected" ] ||
6082                 error "hard links individually migrated ($actual != $expected)"
6083
6084         # make sure the correct number of hard links are present
6085         local hardlinks=$(stat -c '%h' "$file1")
6086
6087         [ $hardlinks -eq $total_count ] ||
6088                 error "num hard links $hardlinks != $total_count"
6089         echo "done"
6090
6091         return 0
6092 }
6093
6094 test_56xb() {
6095         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
6096                 skip "Need MDS version at least 2.10.55"
6097
6098         local dir="$DIR/$tdir"
6099
6100         test_mkdir "$dir" || error "cannot create dir $dir"
6101
6102         echo "testing lfs migrate mode when all links fit within xattrs"
6103         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 2 99
6104
6105         echo "testing rsync mode when all links fit within xattrs"
6106         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 2 99
6107
6108         echo "testing lfs migrate mode when all links do not fit within xattrs"
6109         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100
6110
6111         echo "testing rsync mode when all links do not fit within xattrs"
6112         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 101 100
6113
6114
6115         # clean up
6116         rm -rf $dir
6117 }
6118 run_test 56xb "lfs migration hard link support"
6119
6120 test_56xc() {
6121         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6122
6123         local dir="$DIR/$tdir"
6124
6125         test_mkdir "$dir" || error "cannot create dir $dir"
6126
6127         # Test 1: ensure file < 1 GB is always migrated with 1 stripe
6128         echo -n "Setting initial stripe for 20MB test file..."
6129         $LFS setstripe -c 2 -i 0 "$dir/20mb" ||
6130                 error "cannot setstripe 20MB file"
6131         echo "done"
6132         echo -n "Sizing 20MB test file..."
6133         truncate "$dir/20mb" 20971520 || error "cannot create 20MB test file"
6134         echo "done"
6135         echo -n "Verifying small file autostripe count is 1..."
6136         $LFS_MIGRATE -y -A -C 1 "$dir/20mb" ||
6137                 error "cannot migrate 20MB file"
6138         local stripe_count=$($LFS getstripe -c "$dir/20mb") ||
6139                 error "cannot get stripe for $dir/20mb"
6140         [ $stripe_count -eq 1 ] ||
6141                 error "unexpected stripe count $stripe_count for 20MB file"
6142         rm -f "$dir/20mb"
6143         echo "done"
6144
6145         # Test 2: File is small enough to fit within the available space on
6146         # sqrt(size_in_gb) + 1 OSTs but is larger than 1GB.  The file must
6147         # have at least an additional 1KB for each desired stripe for test 3
6148         echo -n "Setting stripe for 1GB test file..."
6149         $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe 1GB file"
6150         echo "done"
6151         echo -n "Sizing 1GB test file..."
6152         # File size is 1GB + 3KB
6153         truncate "$dir/1gb" 1073744896 || error "cannot create 1GB test file"
6154         echo "done"
6155
6156         # need at least 512MB per OST for 1GB file to fit in 2 stripes
6157         local avail=$($LCTL get_param -n llite.$FSNAME*.kbytesavail)
6158         if (( avail > 524288 * OSTCOUNT )); then
6159                 echo -n "Migrating 1GB file..."
6160                 $LFS_MIGRATE -y -A -C 1 "$dir/1gb" ||
6161                         error "cannot migrate 1GB file"
6162                 echo "done"
6163                 echo -n "Verifying autostripe count is sqrt(n) + 1..."
6164                 stripe_count=$($LFS getstripe -c "$dir/1gb") ||
6165                         error "cannot getstripe for 1GB file"
6166                 [ $stripe_count -eq 2 ] ||
6167                         error "unexpected stripe count $stripe_count != 2"
6168                 echo "done"
6169         fi
6170
6171         # Test 3: File is too large to fit within the available space on
6172         # sqrt(n) + 1 OSTs.  Simulate limited available space with -X
6173         if [ $OSTCOUNT -ge 3 ]; then
6174                 # The required available space is calculated as
6175                 # file size (1GB + 3KB) / OST count (3).
6176                 local kb_per_ost=349526
6177
6178                 echo -n "Migrating 1GB file with limit..."
6179                 $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" ||
6180                         error "cannot migrate 1GB file with limit"
6181                 echo "done"
6182
6183                 stripe_count=$($LFS getstripe -c "$dir/1gb")
6184                 echo -n "Verifying 1GB autostripe count with limited space..."
6185                 [ "$stripe_count" -a $stripe_count -ge 3 ] ||
6186                         error "unexpected stripe count $stripe_count (min 3)"
6187                 echo "done"
6188         fi
6189
6190         # clean up
6191         rm -rf $dir
6192 }
6193 run_test 56xc "lfs migration autostripe"
6194
6195 test_56xd() {
6196         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6197
6198         local dir=$DIR/$tdir
6199         local f_mgrt=$dir/$tfile.mgrt
6200         local f_yaml=$dir/$tfile.yaml
6201         local f_copy=$dir/$tfile.copy
6202         local layout_yaml="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
6203         local layout_copy="-c 2 -S 2M -i 1"
6204         local yamlfile=$dir/yamlfile
6205         local layout_before;
6206         local layout_after;
6207
6208         test_mkdir "$dir" || error "cannot create dir $dir"
6209         $LFS setstripe $layout_yaml $f_yaml ||
6210                 error "cannot setstripe $f_yaml with layout $layout_yaml"
6211         $LFS getstripe --yaml $f_yaml > $yamlfile
6212         $LFS setstripe $layout_copy $f_copy ||
6213                 error "cannot setstripe $f_copy with layout $layout_copy"
6214         touch $f_mgrt
6215         dd if=/dev/zero of=$f_mgrt bs=1M count=4
6216
6217         # 1. test option --yaml
6218         $LFS_MIGRATE -y --yaml $yamlfile $f_mgrt ||
6219                 error "cannot migrate $f_mgrt with --yaml $yamlfile"
6220         layout_before=$(get_layout_param $f_yaml)
6221         layout_after=$(get_layout_param $f_mgrt)
6222         [ "$layout_after" == "$layout_before" ] ||
6223                 error "lfs_migrate --yaml: $layout_after != $layout_before"
6224
6225         # 2. test option --copy
6226         $LFS_MIGRATE -y --copy $f_copy $f_mgrt ||
6227                 error "cannot migrate $f_mgrt with --copy $f_copy"
6228         layout_before=$(get_layout_param $f_copy)
6229         layout_after=$(get_layout_param $f_mgrt)
6230         [ "$layout_after" == "$layout_before" ] ||
6231                 error "lfs_migrate --copy: $layout_after != $layout_before"
6232 }
6233 run_test 56xd "check lfs_migrate --yaml and --copy support"
6234
6235 test_56xe() {
6236         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6237
6238         local dir=$DIR/$tdir
6239         local f_comp=$dir/$tfile
6240         local layout="-E 1M -S 512K -c 1 -E -1 -S 1M -c 2 -i 0"
6241         local layout_before=""
6242         local layout_after=""
6243
6244         test_mkdir "$dir" || error "cannot create dir $dir"
6245         $LFS setstripe $layout $f_comp ||
6246                 error "cannot setstripe $f_comp with layout $layout"
6247         layout_before=$(get_layout_param $f_comp)
6248         dd if=/dev/zero of=$f_comp bs=1M count=4
6249
6250         # 1. migrate a comp layout file by lfs_migrate
6251         $LFS_MIGRATE -y $f_comp || error "cannot migrate $f_comp by lfs_migrate"
6252         layout_after=$(get_layout_param $f_comp)
6253         [ "$layout_before" == "$layout_after" ] ||
6254                 error "lfs_migrate: $layout_before != $layout_after"
6255
6256         # 2. migrate a comp layout file by lfs migrate
6257         $LFS migrate $f_comp || error "cannot migrate $f_comp by lfs migrate"
6258         layout_after=$(get_layout_param $f_comp)
6259         [ "$layout_before" == "$layout_after" ] ||
6260                 error "lfs migrate: $layout_before != $layout_after"
6261 }
6262 run_test 56xe "migrate a composite layout file"
6263
6264 test_56y() {
6265         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
6266                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
6267
6268         local res=""
6269         local dir=$DIR/$tdir
6270         local f1=$dir/file1
6271         local f2=$dir/file2
6272
6273         test_mkdir -p $dir || error "creating dir $dir"
6274         touch $f1 || error "creating std file $f1"
6275         $MULTIOP $f2 H2c || error "creating released file $f2"
6276
6277         # a directory can be raid0, so ask only for files
6278         res=$($LFS find $dir -L raid0 -type f | wc -l)
6279         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
6280
6281         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
6282         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
6283
6284         # only files can be released, so no need to force file search
6285         res=$($LFS find $dir -L released)
6286         [[ $res == $f2 ]] || error "search released: found $res != $f2"
6287
6288         res=$($LFS find $dir -type f \! -L released)
6289         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
6290 }
6291 run_test 56y "lfs find -L raid0|released"
6292
6293 test_56z() { # LU-4824
6294         # This checks to make sure 'lfs find' continues after errors
6295         # There are two classes of errors that should be caught:
6296         # - If multiple paths are provided, all should be searched even if one
6297         #   errors out
6298         # - If errors are encountered during the search, it should not terminate
6299         #   early
6300         local dir=$DIR/$tdir
6301         local i
6302
6303         test_mkdir $dir
6304         for i in d{0..9}; do
6305                 test_mkdir $dir/$i
6306                 touch $dir/$i/$tfile
6307         done
6308         $LFS find $DIR/non_existent_dir $dir &&
6309                 error "$LFS find did not return an error"
6310         # Make a directory unsearchable. This should NOT be the last entry in
6311         # directory order.  Arbitrarily pick the 6th entry
6312         chmod 700 $($LFS find $dir -type d | sed '6!d')
6313
6314         $RUNAS $LFS find $DIR/non_existent $dir
6315         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
6316
6317         # The user should be able to see 10 directories and 9 files
6318         (( count == 19 )) ||
6319                 error "$LFS find found $count != 19 entries after error"
6320 }
6321 run_test 56z "lfs find should continue after an error"
6322
6323 test_56aa() { # LU-5937
6324         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
6325
6326         local dir=$DIR/$tdir
6327
6328         mkdir $dir
6329         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
6330
6331         createmany -o $dir/striped_dir/${tfile}- 1024
6332         local dirs=$($LFS find --size +8k $dir/)
6333
6334         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
6335 }
6336 run_test 56aa "lfs find --size under striped dir"
6337
6338 test_56ab() { # LU-10705
6339         test_mkdir $DIR/$tdir
6340         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
6341         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
6342         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
6343         # Flush writes to ensure valid blocks.  Need to be more thorough for
6344         # ZFS, since blocks are not allocated/returned to client immediately.
6345         sync_all_data
6346         wait_zfs_commit ost1 2
6347         cancel_lru_locks osc
6348         ls -ls $DIR/$tdir
6349
6350         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
6351
6352         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
6353
6354         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
6355         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
6356
6357         rm -f $DIR/$tdir/$tfile.[123]
6358 }
6359 run_test 56ab "lfs find --blocks"
6360
6361 test_56ba() {
6362         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
6363                 skip "Need MDS version at least 2.10.50"
6364
6365         # Create composite files with one component
6366         local dir=$DIR/$tdir
6367
6368         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
6369         # Create composite files with three components
6370         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
6371         # Create non-composite files
6372         createmany -o $dir/${tfile}- 10
6373
6374         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
6375
6376         [[ $nfiles == 10 ]] ||
6377                 error "lfs find -E 1M found $nfiles != 10 files"
6378
6379         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
6380         [[ $nfiles == 25 ]] ||
6381                 error "lfs find ! -E 1M found $nfiles != 25 files"
6382
6383         # All files have a component that starts at 0
6384         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
6385         [[ $nfiles == 35 ]] ||
6386                 error "lfs find --component-start 0 - $nfiles != 35 files"
6387
6388         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
6389         [[ $nfiles == 15 ]] ||
6390                 error "lfs find --component-start 2M - $nfiles != 15 files"
6391
6392         # All files created here have a componenet that does not starts at 2M
6393         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
6394         [[ $nfiles == 35 ]] ||
6395                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
6396
6397         # Find files with a specified number of components
6398         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
6399         [[ $nfiles == 15 ]] ||
6400                 error "lfs find --component-count 3 - $nfiles != 15 files"
6401
6402         # Remember non-composite files have a component count of zero
6403         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
6404         [[ $nfiles == 10 ]] ||
6405                 error "lfs find --component-count 0 - $nfiles != 10 files"
6406
6407         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
6408         [[ $nfiles == 20 ]] ||
6409                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
6410
6411         # All files have a flag called "init"
6412         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
6413         [[ $nfiles == 35 ]] ||
6414                 error "lfs find --component-flags init - $nfiles != 35 files"
6415
6416         # Multi-component files will have a component not initialized
6417         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
6418         [[ $nfiles == 15 ]] ||
6419                 error "lfs find !--component-flags init - $nfiles != 15 files"
6420
6421         rm -rf $dir
6422
6423 }
6424 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
6425
6426 test_56ca() {
6427         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
6428                 skip "Need MDS version at least 2.10.57"
6429
6430         local td=$DIR/$tdir
6431         local tf=$td/$tfile
6432         local dir
6433         local nfiles
6434         local cmd
6435         local i
6436         local j
6437
6438         # create mirrored directories and mirrored files
6439         mkdir $td || error "mkdir $td failed"
6440         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
6441         createmany -o $tf- 10 || error "create $tf- failed"
6442
6443         for i in $(seq 2); do
6444                 dir=$td/dir$i
6445                 mkdir $dir || error "mkdir $dir failed"
6446                 $LFS mirror create -N$((3 + i)) $dir ||
6447                         error "create mirrored dir $dir failed"
6448                 createmany -o $dir/$tfile- 10 ||
6449                         error "create $dir/$tfile- failed"
6450         done
6451
6452         # change the states of some mirrored files
6453         echo foo > $tf-6
6454         for i in $(seq 2); do
6455                 dir=$td/dir$i
6456                 for j in $(seq 4 9); do
6457                         echo foo > $dir/$tfile-$j
6458                 done
6459         done
6460
6461         # find mirrored files with specific mirror count
6462         cmd="$LFS find --mirror-count 3 --type f $td"
6463         nfiles=$($cmd | wc -l)
6464         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6465
6466         cmd="$LFS find ! --mirror-count 3 --type f $td"
6467         nfiles=$($cmd | wc -l)
6468         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6469
6470         cmd="$LFS find --mirror-count +2 --type f $td"
6471         nfiles=$($cmd | wc -l)
6472         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6473
6474         cmd="$LFS find --mirror-count -6 --type f $td"
6475         nfiles=$($cmd | wc -l)
6476         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6477
6478         # find mirrored files with specific file state
6479         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6480         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6481
6482         cmd="$LFS find --mirror-state=ro --type f $td"
6483         nfiles=$($cmd | wc -l)
6484         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6485
6486         cmd="$LFS find ! --mirror-state=ro --type f $td"
6487         nfiles=$($cmd | wc -l)
6488         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6489
6490         cmd="$LFS find --mirror-state=wp --type f $td"
6491         nfiles=$($cmd | wc -l)
6492         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6493
6494         cmd="$LFS find ! --mirror-state=sp --type f $td"
6495         nfiles=$($cmd | wc -l)
6496         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6497 }
6498 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6499
6500 test_57a() {
6501         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6502         # note test will not do anything if MDS is not local
6503         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6504                 skip_env "ldiskfs only test"
6505         fi
6506         remote_mds_nodsh && skip "remote MDS with nodsh"
6507
6508         local MNTDEV="osd*.*MDT*.mntdev"
6509         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6510         [ -z "$DEV" ] && error "can't access $MNTDEV"
6511         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6512                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6513                         error "can't access $DEV"
6514                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6515                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6516                 rm $TMP/t57a.dump
6517         done
6518 }
6519 run_test 57a "verify MDS filesystem created with large inodes =="
6520
6521 test_57b() {
6522         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6523         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6524                 skip_env "ldiskfs only test"
6525         fi
6526         remote_mds_nodsh && skip "remote MDS with nodsh"
6527
6528         local dir=$DIR/$tdir
6529         local filecount=100
6530         local file1=$dir/f1
6531         local fileN=$dir/f$filecount
6532
6533         rm -rf $dir || error "removing $dir"
6534         test_mkdir -c1 $dir
6535         local mdtidx=$($LFS getstripe -m $dir)
6536         local mdtname=MDT$(printf %04x $mdtidx)
6537         local facet=mds$((mdtidx + 1))
6538
6539         echo "mcreating $filecount files"
6540         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6541
6542         # verify that files do not have EAs yet
6543         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6544                 error "$file1 has an EA"
6545         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6546                 error "$fileN has an EA"
6547
6548         sync
6549         sleep 1
6550         df $dir  #make sure we get new statfs data
6551         local mdsfree=$(do_facet $facet \
6552                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6553         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6554         local file
6555
6556         echo "opening files to create objects/EAs"
6557         for file in $(seq -f $dir/f%g 1 $filecount); do
6558                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6559                         error "opening $file"
6560         done
6561
6562         # verify that files have EAs now
6563         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6564         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6565
6566         sleep 1  #make sure we get new statfs data
6567         df $dir
6568         local mdsfree2=$(do_facet $facet \
6569                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6570         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6571
6572         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6573                 if [ "$mdsfree" != "$mdsfree2" ]; then
6574                         error "MDC before $mdcfree != after $mdcfree2"
6575                 else
6576                         echo "MDC before $mdcfree != after $mdcfree2"
6577                         echo "unable to confirm if MDS has large inodes"
6578                 fi
6579         fi
6580         rm -rf $dir
6581 }
6582 run_test 57b "default LOV EAs are stored inside large inodes ==="
6583
6584 test_58() {
6585         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6586         [ -z "$(which wiretest 2>/dev/null)" ] &&
6587                         skip_env "could not find wiretest"
6588
6589         wiretest
6590 }
6591 run_test 58 "verify cross-platform wire constants =============="
6592
6593 test_59() {
6594         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6595
6596         echo "touch 130 files"
6597         createmany -o $DIR/f59- 130
6598         echo "rm 130 files"
6599         unlinkmany $DIR/f59- 130
6600         sync
6601         # wait for commitment of removal
6602         wait_delete_completed
6603 }
6604 run_test 59 "verify cancellation of llog records async ========="
6605
6606 TEST60_HEAD="test_60 run $RANDOM"
6607 test_60a() {
6608         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6609         remote_mgs_nodsh && skip "remote MGS with nodsh"
6610         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6611                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6612                         skip_env "missing subtest run-llog.sh"
6613
6614         log "$TEST60_HEAD - from kernel mode"
6615         do_facet mgs "$LCTL dk > /dev/null"
6616         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6617         do_facet mgs $LCTL dk > $TMP/$tfile
6618
6619         # LU-6388: test llog_reader
6620         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6621         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6622         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6623                         skip_env "missing llog_reader"
6624         local fstype=$(facet_fstype mgs)
6625         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6626                 skip_env "Only for ldiskfs or zfs type mgs"
6627
6628         local mntpt=$(facet_mntpt mgs)
6629         local mgsdev=$(mgsdevname 1)
6630         local fid_list
6631         local fid
6632         local rec_list
6633         local rec
6634         local rec_type
6635         local obj_file
6636         local path
6637         local seq
6638         local oid
6639         local pass=true
6640
6641         #get fid and record list
6642         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6643                 tail -n 4))
6644         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6645                 tail -n 4))
6646         #remount mgs as ldiskfs or zfs type
6647         stop mgs || error "stop mgs failed"
6648         mount_fstype mgs || error "remount mgs failed"
6649         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6650                 fid=${fid_list[i]}
6651                 rec=${rec_list[i]}
6652                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6653                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6654                 oid=$((16#$oid))
6655
6656                 case $fstype in
6657                         ldiskfs )
6658                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6659                         zfs )
6660                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6661                 esac
6662                 echo "obj_file is $obj_file"
6663                 do_facet mgs $llog_reader $obj_file
6664
6665                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6666                         awk '{ print $3 }' | sed -e "s/^type=//g")
6667                 if [ $rec_type != $rec ]; then
6668                         echo "FAILED test_60a wrong record type $rec_type," \
6669                               "should be $rec"
6670                         pass=false
6671                         break
6672                 fi
6673
6674                 #check obj path if record type is LLOG_LOGID_MAGIC
6675                 if [ "$rec" == "1064553b" ]; then
6676                         path=$(do_facet mgs $llog_reader $obj_file |
6677                                 grep "path=" | awk '{ print $NF }' |
6678                                 sed -e "s/^path=//g")
6679                         if [ $obj_file != $mntpt/$path ]; then
6680                                 echo "FAILED test_60a wrong obj path" \
6681                                       "$montpt/$path, should be $obj_file"
6682                                 pass=false
6683                                 break
6684                         fi
6685                 fi
6686         done
6687         rm -f $TMP/$tfile
6688         #restart mgs before "error", otherwise it will block the next test
6689         stop mgs || error "stop mgs failed"
6690         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6691         $pass || error "test failed, see FAILED test_60a messages for specifics"
6692 }
6693 run_test 60a "llog_test run from kernel module and test llog_reader"
6694
6695 test_60b() { # bug 6411
6696         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6697
6698         dmesg > $DIR/$tfile
6699         LLOG_COUNT=$(do_facet mgs dmesg |
6700                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6701                           /llog_[a-z]*.c:[0-9]/ {
6702                                 if (marker)
6703                                         from_marker++
6704                                 from_begin++
6705                           }
6706                           END {
6707                                 if (marker)
6708                                         print from_marker
6709                                 else
6710                                         print from_begin
6711                           }")
6712
6713         [[ $LLOG_COUNT -gt 120 ]] &&
6714                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6715 }
6716 run_test 60b "limit repeated messages from CERROR/CWARN"
6717
6718 test_60c() {
6719         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6720
6721         echo "create 5000 files"
6722         createmany -o $DIR/f60c- 5000
6723 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6724         lctl set_param fail_loc=0x80000137
6725         unlinkmany $DIR/f60c- 5000
6726         lctl set_param fail_loc=0
6727 }
6728 run_test 60c "unlink file when mds full"
6729
6730 test_60d() {
6731         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6732
6733         SAVEPRINTK=$(lctl get_param -n printk)
6734         # verify "lctl mark" is even working"
6735         MESSAGE="test message ID $RANDOM $$"
6736         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6737         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6738
6739         lctl set_param printk=0 || error "set lnet.printk failed"
6740         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6741         MESSAGE="new test message ID $RANDOM $$"
6742         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6743         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6744         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6745
6746         lctl set_param -n printk="$SAVEPRINTK"
6747 }
6748 run_test 60d "test printk console message masking"
6749
6750 test_60e() {
6751         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6752         remote_mds_nodsh && skip "remote MDS with nodsh"
6753
6754         touch $DIR/$tfile
6755 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6756         do_facet mds1 lctl set_param fail_loc=0x15b
6757         rm $DIR/$tfile
6758 }
6759 run_test 60e "no space while new llog is being created"
6760
6761 test_60g() {
6762         local pid
6763
6764         test_mkdir -c $MDSCOUNT $DIR/$tdir
6765         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6766
6767         (
6768                 local index=0
6769                 while true; do
6770                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6771                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6772                         index=$((index + 1))
6773                 done
6774         ) &
6775
6776         pid=$!
6777
6778         for i in $(seq 100); do 
6779                 # define OBD_FAIL_OSD_TXN_START    0x19a
6780                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6781                 usleep 100
6782         done
6783
6784         kill -9 $pid
6785
6786         mkdir $DIR/$tdir/new || error "mkdir failed"
6787         rmdir $DIR/$tdir/new || error "rmdir failed"
6788 }
6789 run_test 60g "transaction abort won't cause MDT hung"
6790
6791 test_60h() {
6792         [ $MDS1_VERSION -le $(version_code 2.12.52) ] ||
6793                 skip "Need MDS version at least 2.12.52"
6794         [ $MDSCOUNT -le 2 ] && skip "Need >= 2 MDTs"
6795
6796         local f
6797
6798         #define OBD_FAIL_MDS_STRIPE_CREATE       0x188
6799         #define OBD_FAIL_MDS_STRIPE_FID          0x189
6800         for fail_loc in 0x80000188 0x80000189; do
6801                 do_facet mds1 "$LCTL set_param fail_loc=$fail_loc"
6802                 $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir-$fail_loc ||
6803                         error "mkdir $dir-$fail_loc failed"
6804                 for i in {0..10}; do
6805                         # create may fail on missing stripe
6806                         echo $i > $DIR/$tdir-$fail_loc/$i
6807                 done
6808                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
6809                         error "getdirstripe $tdir-$fail_loc failed"
6810                 $LFS migrate -m 1 $DIR/$tdir-$fail_loc ||
6811                         error "migrate $tdir-$fail_loc failed"
6812                 $LFS getdirstripe $DIR/$tdir-$fail_loc ||
6813                         error "getdirstripe $tdir-$fail_loc failed"
6814                 pushd $DIR/$tdir-$fail_loc
6815                 for f in *; do
6816                         echo $f | cmp $f - || error "$f data mismatch"
6817                 done
6818                 popd
6819                 rm -rf $DIR/$tdir-$fail_loc
6820         done
6821 }
6822 run_test 60h "striped directory with missing stripes can be accessed"
6823
6824 test_61a() {
6825         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6826
6827         f="$DIR/f61"
6828         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6829         cancel_lru_locks osc
6830         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6831         sync
6832 }
6833 run_test 61a "mmap() writes don't make sync hang ================"
6834
6835 test_61b() {
6836         mmap_mknod_test $DIR/$tfile || error "mmap_mknod_test failed"
6837 }
6838 run_test 61b "mmap() of unstriped file is successful"
6839
6840 # bug 2330 - insufficient obd_match error checking causes LBUG
6841 test_62() {
6842         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6843
6844         f="$DIR/f62"
6845         echo foo > $f
6846         cancel_lru_locks osc
6847         lctl set_param fail_loc=0x405
6848         cat $f && error "cat succeeded, expect -EIO"
6849         lctl set_param fail_loc=0
6850 }
6851 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6852 # match every page all of the time.
6853 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6854
6855 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6856 # Though this test is irrelevant anymore, it helped to reveal some
6857 # other grant bugs (LU-4482), let's keep it.
6858 test_63a() {   # was test_63
6859         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6860
6861         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6862
6863         for i in `seq 10` ; do
6864                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6865                 sleep 5
6866                 kill $!
6867                 sleep 1
6868         done
6869
6870         rm -f $DIR/f63 || true
6871 }
6872 run_test 63a "Verify oig_wait interruption does not crash ======="
6873
6874 # bug 2248 - async write errors didn't return to application on sync
6875 # bug 3677 - async write errors left page locked
6876 test_63b() {
6877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6878
6879         debugsave
6880         lctl set_param debug=-1
6881
6882         # ensure we have a grant to do async writes
6883         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6884         rm $DIR/$tfile
6885
6886         sync    # sync lest earlier test intercept the fail_loc
6887
6888         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6889         lctl set_param fail_loc=0x80000406
6890         $MULTIOP $DIR/$tfile Owy && \
6891                 error "sync didn't return ENOMEM"
6892         sync; sleep 2; sync     # do a real sync this time to flush page
6893         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6894                 error "locked page left in cache after async error" || true
6895         debugrestore
6896 }
6897 run_test 63b "async write errors should be returned to fsync ==="
6898
6899 test_64a () {
6900         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6901
6902         df $DIR
6903         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6904 }
6905 run_test 64a "verify filter grant calculations (in kernel) ====="
6906
6907 test_64b () {
6908         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6909
6910         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6911 }
6912 run_test 64b "check out-of-space detection on client"
6913
6914 test_64c() {
6915         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6916 }
6917 run_test 64c "verify grant shrink"
6918
6919 # this does exactly what osc_request.c:osc_announce_cached() does in
6920 # order to calculate max amount of grants to ask from server
6921 want_grant() {
6922         local tgt=$1
6923
6924         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6925         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6926
6927         ((rpc_in_flight ++));
6928         nrpages=$((nrpages * rpc_in_flight))
6929
6930         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6931
6932         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6933
6934         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6935         local undirty=$((nrpages * PAGE_SIZE))
6936
6937         local max_extent_pages
6938         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6939             grep grant_max_extent_size | awk '{print $2}')
6940         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6941         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6942         local grant_extent_tax
6943         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6944             grep grant_extent_tax | awk '{print $2}')
6945
6946         undirty=$((undirty + nrextents * grant_extent_tax))
6947
6948         echo $undirty
6949 }
6950
6951 # this is size of unit for grant allocation. It should be equal to
6952 # what tgt_grant.c:tgt_grant_chunk() calculates
6953 grant_chunk() {
6954         local tgt=$1
6955         local max_brw_size
6956         local grant_extent_tax
6957
6958         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6959             grep max_brw_size | awk '{print $2}')
6960
6961         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6962             grep grant_extent_tax | awk '{print $2}')
6963
6964         echo $(((max_brw_size + grant_extent_tax) * 2))
6965 }
6966
6967 test_64d() {
6968         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6969                 skip "OST < 2.10.55 doesn't limit grants enough"
6970
6971         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6972         local file=$DIR/$tfile
6973
6974         [[ $($LCTL get_param osc.${tgt}.import |
6975              grep "connect_flags:.*grant_param") ]] ||
6976                 skip "no grant_param connect flag"
6977
6978         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6979
6980         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6981
6982         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6983         stack_trap "rm -f $file" EXIT
6984
6985         $SETSTRIPE $file -i 0 -c 1
6986         dd if=/dev/zero of=$file bs=1M count=1000 &
6987         ddpid=$!
6988
6989         while true
6990         do
6991                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6992                 if [[ $cur_grant -gt $max_cur_granted ]]
6993                 then
6994                         kill $ddpid
6995                         error "cur_grant $cur_grant > $max_cur_granted"
6996                 fi
6997                 kill -0 $ddpid
6998                 [[ $? -ne 0 ]] && break;
6999                 sleep 2
7000         done
7001
7002         rm -f $DIR/$tfile
7003         wait_delete_completed
7004         $LCTL set_param debug="$olddebug" 2> /dev/null || true
7005 }
7006 run_test 64d "check grant limit exceed"
7007
7008 # bug 1414 - set/get directories' stripe info
7009 test_65a() {
7010         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7011
7012         test_mkdir $DIR/$tdir
7013         touch $DIR/$tdir/f1
7014         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
7015 }
7016 run_test 65a "directory with no stripe info"
7017
7018 test_65b() {
7019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7020
7021         test_mkdir $DIR/$tdir
7022         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
7023
7024         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7025                                                 error "setstripe"
7026         touch $DIR/$tdir/f2
7027         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
7028 }
7029 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
7030
7031 test_65c() {
7032         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7033         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
7034
7035         test_mkdir $DIR/$tdir
7036         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
7037
7038         $LFS setstripe -S $((stripesize * 4)) -i 1 \
7039                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
7040         touch $DIR/$tdir/f3
7041         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
7042 }
7043 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
7044
7045 test_65d() {
7046         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7047
7048         test_mkdir $DIR/$tdir
7049         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
7050         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
7051
7052         if [[ $STRIPECOUNT -le 0 ]]; then
7053                 sc=1
7054         elif [[ $STRIPECOUNT -gt 2000 ]]; then
7055 #LOV_MAX_STRIPE_COUNT is 2000
7056                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
7057         else
7058                 sc=$(($STRIPECOUNT - 1))
7059         fi
7060         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
7061         touch $DIR/$tdir/f4 $DIR/$tdir/f5
7062         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
7063                 error "lverify failed"
7064 }
7065 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
7066
7067 test_65e() {
7068         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7069
7070         test_mkdir $DIR/$tdir
7071
7072         $SETSTRIPE $DIR/$tdir || error "setstripe"
7073         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
7074                                         error "no stripe info failed"
7075         touch $DIR/$tdir/f6
7076         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
7077 }
7078 run_test 65e "directory setstripe defaults"
7079
7080 test_65f() {
7081         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7082
7083         test_mkdir $DIR/${tdir}f
7084         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
7085 }
7086 run_test 65f "dir setstripe permission (should return error) ==="
7087
7088 test_65g() {
7089         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7090
7091         test_mkdir $DIR/$tdir
7092         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
7093
7094         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7095                 error "setstripe -S failed"
7096         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
7097         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
7098                 error "delete default stripe failed"
7099 }
7100 run_test 65g "directory setstripe -d"
7101
7102 test_65h() {
7103         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7104
7105         test_mkdir $DIR/$tdir
7106         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
7107
7108         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
7109                 error "setstripe -S failed"
7110         test_mkdir $DIR/$tdir/dd1
7111         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
7112                 error "stripe info inherit failed"
7113 }
7114 run_test 65h "directory stripe info inherit ===================="
7115
7116 test_65i() {
7117         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7118
7119         save_layout_restore_at_exit $MOUNT
7120
7121         # bug6367: set non-default striping on root directory
7122         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
7123
7124         # bug12836: getstripe on -1 default directory striping
7125         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
7126
7127         # bug12836: getstripe -v on -1 default directory striping
7128         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
7129
7130         # bug12836: new find on -1 default directory striping
7131         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
7132 }
7133 run_test 65i "various tests to set root directory striping"
7134
7135 test_65j() { # bug6367
7136         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7137
7138         sync; sleep 1
7139
7140         # if we aren't already remounting for each test, do so for this test
7141         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
7142                 cleanup || error "failed to unmount"
7143                 setup
7144         fi
7145
7146         save_layout_restore_at_exit $MOUNT
7147
7148         $SETSTRIPE -d $MOUNT || error "setstripe failed"
7149 }
7150 run_test 65j "set default striping on root directory (bug 6367)="
7151
7152 cleanup_65k() {
7153         rm -rf $DIR/$tdir
7154         wait_delete_completed
7155         do_facet $SINGLEMDS "lctl set_param -n \
7156                 osp.$ost*MDT0000.max_create_count=$max_count"
7157         do_facet $SINGLEMDS "lctl set_param -n \
7158                 osp.$ost*MDT0000.create_count=$count"
7159         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
7160         echo $INACTIVE_OSC "is Activate"
7161
7162         wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
7163 }
7164
7165 test_65k() { # bug11679
7166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7167         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7168         remote_mds_nodsh && skip "remote MDS with nodsh"
7169
7170         local disable_precreate=true
7171         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
7172                 disable_precreate=false
7173
7174         echo "Check OST status: "
7175         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
7176                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
7177
7178         for OSC in $MDS_OSCS; do
7179                 echo $OSC "is active"
7180                 do_facet $SINGLEMDS lctl --device %$OSC activate
7181         done
7182
7183         for INACTIVE_OSC in $MDS_OSCS; do
7184                 local ost=$(osc_to_ost $INACTIVE_OSC)
7185                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
7186                                lov.*md*.target_obd |
7187                                awk -F: /$ost/'{ print $1 }' | head -n 1)
7188
7189                 mkdir -p $DIR/$tdir
7190                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
7191                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
7192
7193                 echo "Deactivate: " $INACTIVE_OSC
7194                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
7195
7196                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
7197                               osp.$ost*MDT0000.create_count")
7198                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
7199                                   osp.$ost*MDT0000.max_create_count")
7200                 $disable_precreate &&
7201                         do_facet $SINGLEMDS "lctl set_param -n \
7202                                 osp.$ost*MDT0000.max_create_count=0"
7203
7204                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
7205                         [ -f $DIR/$tdir/$idx ] && continue
7206                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
7207                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
7208                                 { cleanup_65k;
7209                                   error "setstripe $idx should succeed"; }
7210                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
7211                 done
7212                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
7213                 rmdir $DIR/$tdir
7214
7215                 do_facet $SINGLEMDS "lctl set_param -n \
7216                         osp.$ost*MDT0000.max_create_count=$max_count"
7217                 do_facet $SINGLEMDS "lctl set_param -n \
7218                         osp.$ost*MDT0000.create_count=$count"
7219                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
7220                 echo $INACTIVE_OSC "is Activate"
7221
7222                 wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
7223         done
7224 }
7225 run_test 65k "validate manual striping works properly with deactivated OSCs"
7226
7227 test_65l() { # bug 12836
7228         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7229
7230         test_mkdir -p $DIR/$tdir/test_dir
7231         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
7232         $LFS find -mtime -1 $DIR/$tdir >/dev/null
7233 }
7234 run_test 65l "lfs find on -1 stripe dir ========================"
7235
7236 test_65m() {
7237         local layout=$(save_layout $MOUNT)
7238         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
7239                 restore_layout $MOUNT $layout
7240                 error "setstripe should fail by non-root users"
7241         }
7242         true
7243 }
7244 run_test 65m "normal user can't set filesystem default stripe"
7245
7246 test_65n() {
7247         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.0) ]] ||
7248                 skip "Need MDS version at least 2.12.0"
7249         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
7250
7251         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
7252         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
7253         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
7254
7255         local root_layout=$(save_layout $MOUNT)
7256         stack_trap "restore_layout $MOUNT $root_layout" EXIT
7257
7258         # new subdirectory under root directory should not inherit
7259         # the default layout from root
7260         local dir1=$MOUNT/$tdir-1
7261         mkdir $dir1 || error "mkdir $dir1 failed"
7262         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
7263                 error "$dir1 shouldn't have LOV EA"
7264
7265         # delete the default layout on root directory
7266         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
7267
7268         local dir2=$MOUNT/$tdir-2
7269         mkdir $dir2 || error "mkdir $dir2 failed"
7270         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
7271                 error "$dir2 shouldn't have LOV EA"
7272
7273         # set a new striping pattern on root directory
7274         local def_stripe_size=$($LFS getstripe -S $MOUNT)
7275         local new_def_stripe_size=$((def_stripe_size * 2))
7276         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
7277                 error "set stripe size on $MOUNT failed"
7278
7279         # new file created in $dir2 should inherit the new stripe size from
7280         # the filesystem default
7281         local file2=$dir2/$tfile-2
7282         touch $file2 || error "touch $file2 failed"
7283
7284         local file2_stripe_size=$($LFS getstripe -S $file2)
7285         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
7286                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
7287
7288         local dir3=$MOUNT/$tdir-3
7289         mkdir $dir3 || error "mkdir $dir3 failed"
7290         # $dir3 shouldn't have LOV EA, but "lfs getstripe -d $dir3" should show
7291         # the root layout, which is the actual default layout that will be used
7292         # when new files are created in $dir3.
7293         local dir3_layout=$(get_layout_param $dir3)
7294         local root_dir_layout=$(get_layout_param $MOUNT)
7295         [[ "$dir3_layout" = "$root_dir_layout" ]] ||
7296                 error "$dir3 should show the default layout from $MOUNT"
7297
7298         # set OST pool on root directory
7299         local pool=$TESTNAME
7300         pool_add $pool || error "add $pool failed"
7301         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
7302                 error "add targets to $pool failed"
7303
7304         $LFS setstripe -p $pool $MOUNT ||
7305                 error "set OST pool on $MOUNT failed"
7306
7307         # new file created in $dir3 should inherit the pool from
7308         # the filesystem default
7309         local file3=$dir3/$tfile-3
7310         touch $file3 || error "touch $file3 failed"
7311
7312         local file3_pool=$($LFS getstripe -p $file3)
7313         [[ "$file3_pool" = "$pool" ]] ||
7314                 error "$file3 didn't inherit OST pool $pool"
7315
7316         local dir4=$MOUNT/$tdir-4
7317         mkdir $dir4 || error "mkdir $dir4 failed"
7318         local dir4_layout=$(get_layout_param $dir4)
7319         root_dir_layout=$(get_layout_param $MOUNT)
7320         echo "$LFS getstripe -d $dir4"
7321         $LFS getstripe -d $dir4
7322         echo "$LFS getstripe -d $MOUNT"
7323         $LFS getstripe -d $MOUNT
7324         [[ "$dir4_layout" = "$root_dir_layout" ]] ||
7325                 error "$dir4 should show the default layout from $MOUNT"
7326
7327         # new file created in $dir4 should inherit the pool from
7328         # the filesystem default
7329         local file4=$dir4/$tfile-4
7330         touch $file4 || error "touch $file4 failed"
7331
7332         local file4_pool=$($LFS getstripe -p $file4)
7333         [[ "$file4_pool" = "$pool" ]] ||
7334                 error "$file4 didn't inherit OST pool $pool"
7335
7336         # new subdirectory under non-root directory should inherit
7337         # the default layout from its parent directory
7338         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
7339                 error "set directory layout on $dir4 failed"
7340
7341         local dir5=$dir4/$tdir-5
7342         mkdir $dir5 || error "mkdir $dir5 failed"
7343
7344         dir4_layout=$(get_layout_param $dir4)
7345         local dir5_layout=$(get_layout_param $dir5)
7346         [[ "$dir4_layout" = "$dir5_layout" ]] ||
7347                 error "$dir5 should inherit the default layout from $dir4"
7348
7349         # though subdir under ROOT doesn't inherit default layout, but
7350         # its sub dir/file should be created with default layout.
7351         [[ $MDSCOUNT -ge 2 ]] || skip_env "needs >= 2 MDTs"
7352         [[ $MDS1_VERSION -ge $(version_code 2.12.59) ]] ||
7353         [[ $MDS1_VERSION -ge $(version_code 2.12.3) &&
7354            $MDS1_VERSION -lt $(version_code 2.12.50) ]] ||
7355                 skip "Need MDS version at least 2.12.3 or 2.12.59"
7356
7357         local default_lmv_count=$($LFS getdirstripe -D -c $MOUNT)
7358         local default_lmv_index=$($LFS getdirstripe -D -i $MOUNT)
7359         local default_lmv_hash=$($LFS getdirstripe -D -H $MOUNT)
7360
7361         if [ $default_lmv_hash == "none" ]; then
7362                 stack_trap "$LFS setdirstripe -D -d $MOUNT" EXIT
7363         else
7364                 stack_trap "$LFS setdirstripe -D -i $default_lmv_index \
7365                         -c $default_lmv_count -H $default_lmv_hash $MOUNT" EXIT
7366         fi
7367
7368         $LFS setdirstripe -D -c 2 $MOUNT ||
7369                 error "setdirstripe -D -c 2 failed"
7370         mkdir $MOUNT/$tdir-6 || error "mkdir $tdir-6 failed"
7371         local lmv_count=$($LFS getdirstripe -c $MOUNT/$tdir-6)
7372         [ $lmv_count -eq 2 ] || error "$tdir-6 stripe count $lmv_count"
7373 }
7374 run_test 65n "don't inherit default layout from root for new subdirectories"
7375
7376 # bug 2543 - update blocks count on client
7377 test_66() {
7378         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7379
7380         COUNT=${COUNT:-8}
7381         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
7382         sync; sync_all_data; sync; sync_all_data
7383         cancel_lru_locks osc
7384         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
7385         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
7386 }
7387 run_test 66 "update inode blocks count on client ==============="
7388
7389 meminfo() {
7390         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
7391 }
7392
7393 swap_used() {
7394         swapon -s | awk '($1 == "'$1'") { print $4 }'
7395 }
7396
7397 # bug5265, obdfilter oa2dentry return -ENOENT
7398 # #define OBD_FAIL_SRV_ENOENT 0x217
7399 test_69() {
7400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7401         remote_ost_nodsh && skip "remote OST with nodsh"
7402
7403         f="$DIR/$tfile"
7404         $SETSTRIPE -c 1 -i 0 $f
7405
7406         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
7407
7408         do_facet ost1 lctl set_param fail_loc=0x217
7409         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
7410         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
7411
7412         do_facet ost1 lctl set_param fail_loc=0
7413         $DIRECTIO write $f 0 2 || error "write error"
7414
7415         cancel_lru_locks osc
7416         $DIRECTIO read $f 0 1 || error "read error"
7417
7418         do_facet ost1 lctl set_param fail_loc=0x217
7419         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
7420
7421         do_facet ost1 lctl set_param fail_loc=0
7422         rm -f $f
7423 }
7424 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
7425
7426 test_71() {
7427         test_mkdir $DIR/$tdir
7428         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
7429         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
7430 }
7431 run_test 71 "Running dbench on lustre (don't segment fault) ===="
7432
7433 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
7434         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7435         [ "$RUNAS_ID" = "$UID" ] &&
7436                 skip_env "RUNAS_ID = UID = $UID -- skipping"
7437         # Check that testing environment is properly set up. Skip if not
7438         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
7439                 skip_env "User $RUNAS_ID does not exist - skipping"
7440
7441         touch $DIR/$tfile
7442         chmod 777 $DIR/$tfile
7443         chmod ug+s $DIR/$tfile
7444         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
7445                 error "$RUNAS dd $DIR/$tfile failed"
7446         # See if we are still setuid/sgid
7447         test -u $DIR/$tfile -o -g $DIR/$tfile &&
7448                 error "S/gid is not dropped on write"
7449         # Now test that MDS is updated too
7450         cancel_lru_locks mdc
7451         test -u $DIR/$tfile -o -g $DIR/$tfile &&
7452                 error "S/gid is not dropped on MDS"
7453         rm -f $DIR/$tfile
7454 }
7455 run_test 72a "Test that remove suid works properly (bug5695) ===="
7456
7457 test_72b() { # bug 24226 -- keep mode setting when size is not changing
7458         local perm
7459
7460         [ "$RUNAS_ID" = "$UID" ] &&
7461                 skip_env "RUNAS_ID = UID = $UID -- skipping"
7462         [ "$RUNAS_ID" -eq 0 ] &&
7463                 skip_env "RUNAS_ID = 0 -- skipping"
7464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7465         # Check that testing environment is properly set up. Skip if not
7466         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
7467                 skip_env "User $RUNAS_ID does not exist - skipping"
7468
7469         touch $DIR/${tfile}-f{g,u}
7470         test_mkdir $DIR/${tfile}-dg
7471         test_mkdir $DIR/${tfile}-du
7472         chmod 770 $DIR/${tfile}-{f,d}{g,u}
7473         chmod g+s $DIR/${tfile}-{f,d}g
7474         chmod u+s $DIR/${tfile}-{f,d}u
7475         for perm in 777 2777 4777; do
7476                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
7477                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
7478                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
7479                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
7480         done
7481         true
7482 }
7483 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
7484
7485 # bug 3462 - multiple simultaneous MDC requests
7486 test_73() {
7487         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7488
7489         test_mkdir $DIR/d73-1
7490         test_mkdir $DIR/d73-2
7491         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
7492         pid1=$!
7493
7494         lctl set_param fail_loc=0x80000129
7495         $MULTIOP $DIR/d73-1/f73-2 Oc &
7496         sleep 1
7497         lctl set_param fail_loc=0
7498
7499         $MULTIOP $DIR/d73-2/f73-3 Oc &
7500         pid3=$!
7501
7502         kill -USR1 $pid1
7503         wait $pid1 || return 1
7504
7505         sleep 25
7506
7507         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
7508         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
7509         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
7510
7511         rm -rf $DIR/d73-*
7512 }
7513 run_test 73 "multiple MDC requests (should not deadlock)"
7514
7515 test_74a() { # bug 6149, 6184
7516         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7517
7518         touch $DIR/f74a
7519         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7520         #
7521         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7522         # will spin in a tight reconnection loop
7523         $LCTL set_param fail_loc=0x8000030e
7524         # get any lock that won't be difficult - lookup works.
7525         ls $DIR/f74a
7526         $LCTL set_param fail_loc=0
7527         rm -f $DIR/f74a
7528         true
7529 }
7530 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7531
7532 test_74b() { # bug 13310
7533         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7534
7535         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7536         #
7537         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7538         # will spin in a tight reconnection loop
7539         $LCTL set_param fail_loc=0x8000030e
7540         # get a "difficult" lock
7541         touch $DIR/f74b
7542         $LCTL set_param fail_loc=0
7543         rm -f $DIR/f74b
7544         true
7545 }
7546 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7547
7548 test_74c() {
7549         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7550
7551         #define OBD_FAIL_LDLM_NEW_LOCK
7552         $LCTL set_param fail_loc=0x319
7553         touch $DIR/$tfile && error "touch successful"
7554         $LCTL set_param fail_loc=0
7555         true
7556 }
7557 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7558
7559 num_inodes() {
7560         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7561 }
7562
7563 test_76() { # Now for bug 20433, added originally in bug 1443
7564         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7565
7566         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7567
7568         cancel_lru_locks osc
7569         BEFORE_INODES=$(num_inodes)
7570         echo "before inodes: $BEFORE_INODES"
7571         local COUNT=1000
7572         [ "$SLOW" = "no" ] && COUNT=100
7573         for i in $(seq $COUNT); do
7574                 touch $DIR/$tfile
7575                 rm -f $DIR/$tfile
7576         done
7577         cancel_lru_locks osc
7578         AFTER_INODES=$(num_inodes)
7579         echo "after inodes: $AFTER_INODES"
7580         local wait=0
7581         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7582                 sleep 2
7583                 AFTER_INODES=$(num_inodes)
7584                 wait=$((wait+2))
7585                 echo "wait $wait seconds inodes: $AFTER_INODES"
7586                 if [ $wait -gt 30 ]; then
7587                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7588                 fi
7589         done
7590 }
7591 run_test 76 "confirm clients recycle inodes properly ===="
7592
7593
7594 export ORIG_CSUM=""
7595 set_checksums()
7596 {
7597         # Note: in sptlrpc modes which enable its own bulk checksum, the
7598         # original crc32_le bulk checksum will be automatically disabled,
7599         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7600         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7601         # In this case set_checksums() will not be no-op, because sptlrpc
7602         # bulk checksum will be enabled all through the test.
7603
7604         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7605         lctl set_param -n osc.*.checksums $1
7606         return 0
7607 }
7608
7609 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7610                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7611 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7612                              tr -d [] | head -n1)}
7613 set_checksum_type()
7614 {
7615         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7616         log "set checksum type to $1"
7617         return 0
7618 }
7619 F77_TMP=$TMP/f77-temp
7620 F77SZ=8
7621 setup_f77() {
7622         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7623                 error "error writing to $F77_TMP"
7624 }
7625
7626 test_77a() { # bug 10889
7627         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7628         $GSS && skip_env "could not run with gss"
7629
7630         [ ! -f $F77_TMP ] && setup_f77
7631         set_checksums 1
7632         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7633         set_checksums 0
7634         rm -f $DIR/$tfile
7635 }
7636 run_test 77a "normal checksum read/write operation"
7637
7638 test_77b() { # bug 10889
7639         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7640         $GSS && skip_env "could not run with gss"
7641
7642         [ ! -f $F77_TMP ] && setup_f77
7643         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7644         $LCTL set_param fail_loc=0x80000409
7645         set_checksums 1
7646
7647         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7648                 error "dd error: $?"
7649         $LCTL set_param fail_loc=0
7650
7651         for algo in $CKSUM_TYPES; do
7652                 cancel_lru_locks osc
7653                 set_checksum_type $algo
7654                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7655                 $LCTL set_param fail_loc=0x80000408
7656                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7657                 $LCTL set_param fail_loc=0
7658         done
7659         set_checksums 0
7660         set_checksum_type $ORIG_CSUM_TYPE
7661         rm -f $DIR/$tfile
7662 }
7663 run_test 77b "checksum error on client write, read"
7664
7665 cleanup_77c() {
7666         trap 0
7667         set_checksums 0
7668         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7669         $check_ost &&
7670                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7671         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7672         $check_ost && [ -n "$ost_file_prefix" ] &&
7673                 do_facet ost1 rm -f ${ost_file_prefix}\*
7674 }
7675
7676 test_77c() {
7677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7678         $GSS && skip_env "could not run with gss"
7679         remote_ost_nodsh && skip "remote OST with nodsh"
7680
7681         local bad1
7682         local osc_file_prefix
7683         local osc_file
7684         local check_ost=false
7685         local ost_file_prefix
7686         local ost_file
7687         local orig_cksum
7688         local dump_cksum
7689         local fid
7690
7691         # ensure corruption will occur on first OSS/OST
7692         $LFS setstripe -i 0 $DIR/$tfile
7693
7694         [ ! -f $F77_TMP ] && setup_f77
7695         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7696                 error "dd write error: $?"
7697         fid=$($LFS path2fid $DIR/$tfile)
7698
7699         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7700         then
7701                 check_ost=true
7702                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7703                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7704         else
7705                 echo "OSS do not support bulk pages dump upon error"
7706         fi
7707
7708         osc_file_prefix=$($LCTL get_param -n debug_path)
7709         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7710
7711         trap cleanup_77c EXIT
7712
7713         set_checksums 1
7714         # enable bulk pages dump upon error on Client
7715         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7716         # enable bulk pages dump upon error on OSS
7717         $check_ost &&
7718                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7719
7720         # flush Client cache to allow next read to reach OSS
7721         cancel_lru_locks osc
7722
7723         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7724         $LCTL set_param fail_loc=0x80000408
7725         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7726         $LCTL set_param fail_loc=0
7727
7728         rm -f $DIR/$tfile
7729
7730         # check cksum dump on Client
7731         osc_file=$(ls ${osc_file_prefix}*)
7732         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7733         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7734         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7735         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7736         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7737                      cksum)
7738         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7739         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7740                 error "dump content does not match on Client"
7741
7742         $check_ost || skip "No need to check cksum dump on OSS"
7743
7744         # check cksum dump on OSS
7745         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7746         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7747         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7748         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7749         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7750                 error "dump content does not match on OSS"
7751
7752         cleanup_77c
7753 }
7754 run_test 77c "checksum error on client read with debug"
7755
7756 test_77d() { # bug 10889
7757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7758         $GSS && skip_env "could not run with gss"
7759
7760         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7761         $LCTL set_param fail_loc=0x80000409
7762         set_checksums 1
7763         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7764                 error "direct write: rc=$?"
7765         $LCTL set_param fail_loc=0
7766         set_checksums 0
7767
7768         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7769         $LCTL set_param fail_loc=0x80000408
7770         set_checksums 1
7771         cancel_lru_locks osc
7772         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7773                 error "direct read: rc=$?"
7774         $LCTL set_param fail_loc=0
7775         set_checksums 0
7776 }
7777 run_test 77d "checksum error on OST direct write, read"
7778
7779 test_77f() { # bug 10889
7780         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7781         $GSS && skip_env "could not run with gss"
7782
7783         set_checksums 1
7784         for algo in $CKSUM_TYPES; do
7785                 cancel_lru_locks osc
7786                 set_checksum_type $algo
7787                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7788                 $LCTL set_param fail_loc=0x409
7789                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7790                         error "direct write succeeded"
7791                 $LCTL set_param fail_loc=0
7792         done
7793         set_checksum_type $ORIG_CSUM_TYPE
7794         set_checksums 0
7795 }
7796 run_test 77f "repeat checksum error on write (expect error)"
7797
7798 test_77g() { # bug 10889
7799         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7800         $GSS && skip_env "could not run with gss"
7801         remote_ost_nodsh && skip "remote OST with nodsh"
7802
7803         [ ! -f $F77_TMP ] && setup_f77
7804
7805         local file=$DIR/$tfile
7806         stack_trap "rm -f $file" EXIT
7807
7808         $SETSTRIPE -c 1 -i 0 $file
7809         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7810         do_facet ost1 lctl set_param fail_loc=0x8000021a
7811         set_checksums 1
7812         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7813                 error "write error: rc=$?"
7814         do_facet ost1 lctl set_param fail_loc=0
7815         set_checksums 0
7816
7817         cancel_lru_locks osc
7818         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7819         do_facet ost1 lctl set_param fail_loc=0x8000021b
7820         set_checksums 1
7821         cmp $F77_TMP $file || error "file compare failed"
7822         do_facet ost1 lctl set_param fail_loc=0
7823         set_checksums 0
7824 }
7825 run_test 77g "checksum error on OST write, read"
7826
7827 test_77k() { # LU-10906
7828         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7829         $GSS && skip_env "could not run with gss"
7830
7831         local cksum_param="osc.$FSNAME*.checksums"
7832         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7833         local checksum
7834         local i
7835
7836         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7837         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7838         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7839                 EXIT
7840
7841         for i in 0 1; do
7842                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7843                         error "failed to set checksum=$i on MGS"
7844                 wait_update $HOSTNAME "$get_checksum" $i
7845                 #remount
7846                 echo "remount client, checksum should be $i"
7847                 remount_client $MOUNT || "failed to remount client"
7848                 checksum=$(eval $get_checksum)
7849                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7850         done
7851
7852         for opt in "checksum" "nochecksum"; do
7853                 #remount with mount option
7854                 echo "remount client with option $opt, checksum should be $i"
7855                 umount_client $MOUNT || "failed to umount client"
7856                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7857                         "failed to mount client with option '$opt'"
7858                 checksum=$(eval $get_checksum)
7859                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7860                 i=$((i - 1))
7861         done
7862
7863         remount_client $MOUNT || "failed to remount client"
7864 }
7865 run_test 77k "enable/disable checksum correctly"
7866
7867 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7868 rm -f $F77_TMP
7869 unset F77_TMP
7870
7871 cleanup_test_78() {
7872         trap 0
7873         rm -f $DIR/$tfile
7874 }
7875
7876 test_78() { # bug 10901
7877         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7878         remote_ost || skip_env "local OST"
7879
7880         NSEQ=5
7881         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7882         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7883         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7884         echo "MemTotal: $MEMTOTAL"
7885
7886         # reserve 256MB of memory for the kernel and other running processes,
7887         # and then take 1/2 of the remaining memory for the read/write buffers.
7888         if [ $MEMTOTAL -gt 512 ] ;then
7889                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7890         else
7891                 # for those poor memory-starved high-end clusters...
7892                 MEMTOTAL=$((MEMTOTAL / 2))
7893         fi
7894         echo "Mem to use for directio: $MEMTOTAL"
7895
7896         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7897         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7898         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7899         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7900                 head -n1)
7901         echo "Smallest OST: $SMALLESTOST"
7902         [[ $SMALLESTOST -lt 10240 ]] &&
7903                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7904
7905         trap cleanup_test_78 EXIT
7906
7907         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7908                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7909
7910         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7911         echo "File size: $F78SIZE"
7912         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7913         for i in $(seq 1 $NSEQ); do
7914                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7915                 echo directIO rdwr round $i of $NSEQ
7916                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7917         done
7918
7919         cleanup_test_78
7920 }
7921 run_test 78 "handle large O_DIRECT writes correctly ============"
7922
7923 test_79() { # bug 12743
7924         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7925
7926         wait_delete_completed
7927
7928         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7929         BKFREE=$(calc_osc_kbytes kbytesfree)
7930         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7931
7932         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7933         DFTOTAL=`echo $STRING | cut -d, -f1`
7934         DFUSED=`echo $STRING  | cut -d, -f2`
7935         DFAVAIL=`echo $STRING | cut -d, -f3`
7936         DFFREE=$(($DFTOTAL - $DFUSED))
7937
7938         ALLOWANCE=$((64 * $OSTCOUNT))
7939
7940         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7941            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7942                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7943         fi
7944         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7945            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7946                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7947         fi
7948         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7949            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7950                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7951         fi
7952 }
7953 run_test 79 "df report consistency check ======================="
7954
7955 test_80() { # bug 10718
7956         remote_ost_nodsh && skip "remote OST with nodsh"
7957         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7958
7959         # relax strong synchronous semantics for slow backends like ZFS
7960         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7961                 local soc="obdfilter.*.sync_lock_cancel"
7962                 local save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
7963
7964                 # "sync_on_lock_cancel" was broken by v2_11_55_0-26-g7059644e9a
7965                 if [ -z "$save" ]; then
7966                         soc="obdfilter.*.sync_on_lock_cancel"
7967                         save=$(do_facet ost1 $LCTL get_param -n $soc | head -n1)
7968                 fi
7969
7970                 if [ "$save" != "never" ]; then
7971                         local hosts=$(comma_list $(osts_nodes))
7972
7973                         do_nodes $hosts $LCTL set_param $soc=never
7974                         stack_trap "do_nodes $hosts $LCTL set_param $soc=$save"
7975                 fi
7976         fi
7977
7978         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7979         sync; sleep 1; sync
7980         local before=$(date +%s)
7981         cancel_lru_locks osc
7982         local after=$(date +%s)
7983         local diff=$((after - before))
7984         [ $diff -le 1 ] || error "elapsed for 1M@1T = $diff"
7985
7986         rm -f $DIR/$tfile
7987 }
7988 run_test 80 "Page eviction is equally fast at high offsets too"
7989
7990 test_81a() { # LU-456
7991         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7992         remote_ost_nodsh && skip "remote OST with nodsh"
7993
7994         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7995         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7996         do_facet ost1 lctl set_param fail_loc=0x80000228
7997
7998         # write should trigger a retry and success
7999         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
8000         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8001         RC=$?
8002         if [ $RC -ne 0 ] ; then
8003                 error "write should success, but failed for $RC"
8004         fi
8005 }
8006 run_test 81a "OST should retry write when get -ENOSPC ==============="
8007
8008 test_81b() { # LU-456
8009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8010         remote_ost_nodsh && skip "remote OST with nodsh"
8011
8012         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
8013         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
8014         do_facet ost1 lctl set_param fail_loc=0x228
8015
8016         # write should retry several times and return -ENOSPC finally
8017         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
8018         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8019         RC=$?
8020         ENOSPC=28
8021         if [ $RC -ne $ENOSPC ] ; then
8022                 error "dd should fail for -ENOSPC, but succeed."
8023         fi
8024 }
8025 run_test 81b "OST should return -ENOSPC when retry still fails ======="
8026
8027 test_82() { # LU-1031
8028         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
8029         local gid1=14091995
8030         local gid2=16022000
8031
8032         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
8033         local MULTIPID1=$!
8034         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
8035         local MULTIPID2=$!
8036         kill -USR1 $MULTIPID2
8037         sleep 2
8038         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
8039                 error "First grouplock does not block second one"
8040         else
8041                 echo "Second grouplock blocks first one"
8042         fi
8043         kill -USR1 $MULTIPID1
8044         wait $MULTIPID1
8045         wait $MULTIPID2
8046 }
8047 run_test 82 "Basic grouplock test"
8048
8049 test_99() {
8050         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
8051
8052         test_mkdir $DIR/$tdir.cvsroot
8053         chown $RUNAS_ID $DIR/$tdir.cvsroot
8054
8055         cd $TMP
8056         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
8057
8058         cd /etc/init.d
8059         # some versions of cvs import exit(1) when asked to import links or
8060         # files they can't read.  ignore those files.
8061         local toignore=$(find . -type l -printf '-I %f\n' -o \
8062                          ! -perm /4 -printf '-I %f\n')
8063         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
8064                 $tdir.reposname vtag rtag
8065
8066         cd $DIR
8067         test_mkdir $DIR/$tdir.reposname
8068         chown $RUNAS_ID $DIR/$tdir.reposname
8069         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
8070
8071         cd $DIR/$tdir.reposname
8072         $RUNAS touch foo99
8073         $RUNAS cvs add -m 'addmsg' foo99
8074         $RUNAS cvs update
8075         $RUNAS cvs commit -m 'nomsg' foo99
8076         rm -fr $DIR/$tdir.cvsroot
8077 }
8078 run_test 99 "cvs strange file/directory operations"
8079
8080 test_100() {
8081         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8082         [[ "$NETTYPE" =~ tcp ]] ||
8083                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
8084         remote_ost_nodsh && skip "remote OST with nodsh"
8085         remote_mds_nodsh && skip "remote MDS with nodsh"
8086         remote_servers ||
8087                 skip "useless for local single node setup"
8088
8089         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
8090                 [ "$PROT" != "tcp" ] && continue
8091                 RPORT=$(echo $REMOTE | cut -d: -f2)
8092                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
8093
8094                 rc=0
8095                 LPORT=`echo $LOCAL | cut -d: -f2`
8096                 if [ $LPORT -ge 1024 ]; then
8097                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
8098                         netstat -tna
8099                         error_exit "local: $LPORT > 1024, remote: $RPORT"
8100                 fi
8101         done
8102         [ "$rc" = 0 ] || error_exit "privileged port not found" )
8103 }
8104 run_test 100 "check local port using privileged port ==========="
8105
8106 function get_named_value()
8107 {
8108     local tag
8109
8110     tag=$1
8111     while read ;do
8112         line=$REPLY
8113         case $line in
8114         $tag*)
8115             echo $line | sed "s/^$tag[ ]*//"
8116             break
8117             ;;
8118         esac
8119     done
8120 }
8121
8122 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
8123                    awk '/^max_cached_mb/ { print $2 }')
8124
8125 cleanup_101a() {
8126         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
8127         trap 0
8128 }
8129
8130 test_101a() {
8131         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8132         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
8133
8134         local s
8135         local discard
8136         local nreads=10000
8137         local cache_limit=32
8138
8139         $LCTL set_param -n osc.*-osc*.rpc_stats 0
8140         trap cleanup_101a EXIT
8141         $LCTL set_param -n llite.*.read_ahead_stats 0
8142         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
8143
8144         #
8145         # randomly read 10000 of 64K chunks from file 3x 32MB in size
8146         #
8147         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
8148         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
8149
8150         discard=0
8151         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
8152                 get_named_value 'read but discarded' | cut -d" " -f1); do
8153                         discard=$(($discard + $s))
8154         done
8155         cleanup_101a
8156
8157         if [[ $(($discard * 10)) -gt $nreads ]]; then
8158                 $LCTL get_param osc.*-osc*.rpc_stats
8159                 $LCTL get_param llite.*.read_ahead_stats
8160                 error "too many ($discard) discarded pages"
8161         fi
8162         rm -f $DIR/$tfile || true
8163 }
8164 run_test 101a "check read-ahead for random reads"
8165
8166 setup_test101bc() {
8167         test_mkdir $DIR/$tdir
8168         local STRIPE_SIZE=$1
8169         local FILE_LENGTH=$2
8170         STRIPE_OFFSET=0
8171
8172         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
8173
8174         local list=$(comma_list $(osts_nodes))
8175         set_osd_param $list '' read_cache_enable 0
8176         set_osd_param $list '' writethrough_cache_enable 0
8177
8178         trap cleanup_test101bc EXIT
8179         # prepare the read-ahead file
8180         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
8181
8182         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
8183                                 count=$FILE_SIZE_MB 2> /dev/null
8184
8185 }
8186
8187 cleanup_test101bc() {
8188         trap 0
8189         rm -rf $DIR/$tdir
8190         rm -f $DIR/$tfile
8191
8192         local list=$(comma_list $(osts_nodes))
8193         set_osd_param $list '' read_cache_enable 1
8194         set_osd_param $list '' writethrough_cache_enable 1
8195 }
8196
8197 calc_total() {
8198         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
8199 }
8200
8201 ra_check_101() {
8202         local READ_SIZE=$1
8203         local STRIPE_SIZE=$2
8204         local FILE_LENGTH=$3
8205         local RA_INC=1048576
8206         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
8207         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
8208                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
8209         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
8210                         get_named_value 'read but discarded' |
8211                         cut -d" " -f1 | calc_total)
8212         if [[ $DISCARD -gt $discard_limit ]]; then
8213                 $LCTL get_param llite.*.read_ahead_stats
8214                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
8215         else
8216                 echo "Read-ahead success for size ${READ_SIZE}"
8217         fi
8218 }
8219
8220 test_101b() {
8221         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8222         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8223
8224         local STRIPE_SIZE=1048576
8225         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
8226
8227         if [ $SLOW == "yes" ]; then
8228                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
8229         else
8230                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
8231         fi
8232
8233         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
8234
8235         # prepare the read-ahead file
8236         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
8237         cancel_lru_locks osc
8238         for BIDX in 2 4 8 16 32 64 128 256
8239         do
8240                 local BSIZE=$((BIDX*4096))
8241                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
8242                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
8243                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
8244                 $LCTL set_param -n llite.*.read_ahead_stats 0
8245                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
8246                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
8247                 cancel_lru_locks osc
8248                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
8249         done
8250         cleanup_test101bc
8251         true
8252 }
8253 run_test 101b "check stride-io mode read-ahead ================="
8254
8255 test_101c() {
8256         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8257
8258         local STRIPE_SIZE=1048576
8259         local FILE_LENGTH=$((STRIPE_SIZE*100))
8260         local nreads=10000
8261         local osc_rpc_stats
8262
8263         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
8264
8265         cancel_lru_locks osc
8266         $LCTL set_param osc.*.rpc_stats 0
8267         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
8268         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
8269                 local stats=$($LCTL get_param -n $osc_rpc_stats)
8270                 local lines=$(echo "$stats" | awk 'END {print NR;}')
8271                 local size
8272
8273                 if [ $lines -le 20 ]; then
8274                         continue
8275                 fi
8276                 for size in 1 2 4 8; do
8277                         local rpc=$(echo "$stats" |
8278                                     awk '($1 == "'$size':") {print $2; exit; }')
8279                         [ $rpc != 0 ] &&
8280                                 error "Small $((size*4))k read IO $rpc !"
8281                 done
8282                 echo "$osc_rpc_stats check passed!"
8283         done
8284         cleanup_test101bc
8285         true
8286 }
8287 run_test 101c "check stripe_size aligned read-ahead ================="
8288
8289 set_read_ahead() {
8290         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
8291         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
8292 }
8293
8294 test_101d() {
8295         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8296
8297         local file=$DIR/$tfile
8298         local sz_MB=${FILESIZE_101d:-500}
8299         local ra_MB=${READAHEAD_MB:-40}
8300
8301         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
8302         [ $free_MB -lt $sz_MB ] &&
8303                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
8304
8305         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
8306         $SETSTRIPE -c -1 $file || error "setstripe failed"
8307
8308         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
8309         echo Cancel LRU locks on lustre client to flush the client cache
8310         cancel_lru_locks osc
8311
8312         echo Disable read-ahead
8313         local old_READAHEAD=$(set_read_ahead 0)
8314
8315         echo Reading the test file $file with read-ahead disabled
8316         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
8317
8318         echo Cancel LRU locks on lustre client to flush the client cache
8319         cancel_lru_locks osc
8320         echo Enable read-ahead with ${ra_MB}MB
8321         set_read_ahead $ra_MB
8322
8323         echo Reading the test file $file with read-ahead enabled
8324         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
8325
8326         echo "read-ahead disabled time read $raOFF"
8327         echo "read-ahead enabled  time read $raON"
8328
8329         set_read_ahead $old_READAHEAD
8330         rm -f $file
8331         wait_delete_completed
8332
8333         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
8334                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
8335 }
8336 run_test 101d "file read with and without read-ahead enabled"
8337
8338 test_101e() {
8339         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8340
8341         local file=$DIR/$tfile
8342         local size_KB=500  #KB
8343         local count=100
8344         local bsize=1024
8345
8346         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
8347         local need_KB=$((count * size_KB))
8348         [[ $free_KB -le $need_KB ]] &&
8349                 skip_env "Need free space $need_KB, have $free_KB"
8350
8351         echo "Creating $count ${size_KB}K test files"
8352         for ((i = 0; i < $count; i++)); do
8353                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
8354         done
8355
8356         echo "Cancel LRU locks on lustre client to flush the client cache"
8357         cancel_lru_locks $OSC
8358
8359         echo "Reset readahead stats"
8360         $LCTL set_param -n llite.*.read_ahead_stats 0
8361
8362         for ((i = 0; i < $count; i++)); do
8363                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
8364         done
8365
8366         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
8367                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
8368
8369         for ((i = 0; i < $count; i++)); do
8370                 rm -rf $file.$i 2>/dev/null
8371         done
8372
8373         #10000 means 20% reads are missing in readahead
8374         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
8375 }
8376 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
8377
8378 test_101f() {
8379         which iozone || skip_env "no iozone installed"
8380
8381         local old_debug=$($LCTL get_param debug)
8382         old_debug=${old_debug#*=}
8383         $LCTL set_param debug="reada mmap"
8384
8385         # create a test file
8386         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
8387
8388         echo Cancel LRU locks on lustre client to flush the client cache
8389         cancel_lru_locks osc
8390
8391         echo Reset readahead stats
8392         $LCTL set_param -n llite.*.read_ahead_stats 0
8393
8394         echo mmap read the file with small block size
8395         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
8396                 > /dev/null 2>&1
8397
8398         echo checking missing pages
8399         $LCTL get_param llite.*.read_ahead_stats
8400         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
8401                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
8402
8403         $LCTL set_param debug="$old_debug"
8404         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
8405         rm -f $DIR/$tfile
8406 }
8407 run_test 101f "check mmap read performance"
8408
8409 test_101g_brw_size_test() {
8410         local mb=$1
8411         local pages=$((mb * 1048576 / PAGE_SIZE))
8412         local file=$DIR/$tfile
8413
8414         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
8415                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
8416         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
8417                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
8418                         return 2
8419         done
8420
8421         stack_trap "rm -f $file" EXIT
8422         $LCTL set_param -n osc.*.rpc_stats=0
8423
8424         # 10 RPCs should be enough for the test
8425         local count=10
8426         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
8427                 { error "dd write ${mb} MB blocks failed"; return 3; }
8428         cancel_lru_locks osc
8429         dd of=/dev/null if=$file bs=${mb}M count=$count ||
8430                 { error "dd write ${mb} MB blocks failed"; return 4; }
8431
8432         # calculate number of full-sized read and write RPCs
8433         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
8434                 sed -n '/pages per rpc/,/^$/p' |
8435                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
8436                 END { print reads,writes }'))
8437         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
8438                 return 5
8439         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
8440                 return 6
8441
8442         return 0
8443 }
8444
8445 test_101g() {
8446         remote_ost_nodsh && skip "remote OST with nodsh"
8447
8448         local rpcs
8449         local osts=$(get_facets OST)
8450         local list=$(comma_list $(osts_nodes))
8451         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
8452         local brw_size="obdfilter.*.brw_size"
8453
8454         $LFS setstripe -i 0 -c 1 $DIR/$tfile
8455
8456         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
8457         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
8458              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
8459                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
8460            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
8461              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
8462                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
8463                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
8464                 if [[ $orig_mb -lt 16 ]]; then
8465                         save_lustre_params $osts "$brw_size" > $p
8466                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
8467                                 error "set 16MB RPC size failed"
8468
8469                         echo "remount client to enable new RPC size"
8470                         remount_client $MOUNT || error "remount_client failed"
8471                 fi
8472
8473                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
8474                 # should be able to set brw_size=12, but no rpc_stats for that
8475                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
8476         fi
8477
8478         test_101g_brw_size_test 4 || error "4MB RPC test failed"
8479
8480         if [[ $orig_mb -lt 16 ]]; then
8481                 restore_lustre_params < $p
8482                 remount_client $MOUNT || error "remount_client restore failed"
8483         fi
8484
8485         rm -f $p $DIR/$tfile
8486 }
8487 run_test 101g "Big bulk(4/16 MiB) readahead"
8488
8489 setup_test102() {
8490         test_mkdir $DIR/$tdir
8491         chown $RUNAS_ID $DIR/$tdir
8492         STRIPE_SIZE=65536
8493         STRIPE_OFFSET=1
8494         STRIPE_COUNT=$OSTCOUNT
8495         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
8496
8497         trap cleanup_test102 EXIT
8498         cd $DIR
8499         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
8500         cd $DIR/$tdir
8501         for num in 1 2 3 4; do
8502                 for count in $(seq 1 $STRIPE_COUNT); do
8503                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
8504                                 local size=`expr $STRIPE_SIZE \* $num`
8505                                 local file=file"$num-$idx-$count"
8506                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
8507                         done
8508                 done
8509         done
8510
8511         cd $DIR
8512         $1 tar cf $TMP/f102.tar $tdir --xattrs
8513 }
8514
8515 cleanup_test102() {
8516         trap 0
8517         rm -f $TMP/f102.tar
8518         rm -rf $DIR/d0.sanity/d102
8519 }
8520
8521 test_102a() {
8522         [ "$UID" != 0 ] && skip "must run as root"
8523         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
8524                 skip_env "must have user_xattr"
8525
8526         [ -z "$(which setfattr 2>/dev/null)" ] &&
8527                 skip_env "could not find setfattr"
8528
8529         local testfile=$DIR/$tfile
8530
8531         touch $testfile
8532         echo "set/get xattr..."
8533         setfattr -n trusted.name1 -v value1 $testfile ||
8534                 error "setfattr -n trusted.name1=value1 $testfile failed"
8535         getfattr -n trusted.name1 $testfile 2> /dev/null |
8536           grep "trusted.name1=.value1" ||
8537                 error "$testfile missing trusted.name1=value1"
8538
8539         setfattr -n user.author1 -v author1 $testfile ||
8540                 error "setfattr -n user.author1=author1 $testfile failed"
8541         getfattr -n user.author1 $testfile 2> /dev/null |
8542           grep "user.author1=.author1" ||
8543                 error "$testfile missing trusted.author1=author1"
8544
8545         echo "listxattr..."
8546         setfattr -n trusted.name2 -v value2 $testfile ||
8547                 error "$testfile unable to set trusted.name2"
8548         setfattr -n trusted.name3 -v value3 $testfile ||
8549                 error "$testfile unable to set trusted.name3"
8550         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8551             grep "trusted.name" | wc -l) -eq 3 ] ||
8552                 error "$testfile missing 3 trusted.name xattrs"
8553
8554         setfattr -n user.author2 -v author2 $testfile ||
8555                 error "$testfile unable to set user.author2"
8556         setfattr -n user.author3 -v author3 $testfile ||
8557                 error "$testfile unable to set user.author3"
8558         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8559             grep "user.author" | wc -l) -eq 3 ] ||
8560                 error "$testfile missing 3 user.author xattrs"
8561
8562         echo "remove xattr..."
8563         setfattr -x trusted.name1 $testfile ||
8564                 error "$testfile error deleting trusted.name1"
8565         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8566                 error "$testfile did not delete trusted.name1 xattr"
8567
8568         setfattr -x user.author1 $testfile ||
8569                 error "$testfile error deleting user.author1"
8570         echo "set lustre special xattr ..."
8571         $LFS setstripe -c1 $testfile
8572         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8573                 awk -F "=" '/trusted.lov/ { print $2 }' )
8574         setfattr -n "trusted.lov" -v $lovea $testfile ||
8575                 error "$testfile doesn't ignore setting trusted.lov again"
8576         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8577                 error "$testfile allow setting invalid trusted.lov"
8578         rm -f $testfile
8579 }
8580 run_test 102a "user xattr test =================================="
8581
8582 test_102b() {
8583         [ -z "$(which setfattr 2>/dev/null)" ] &&
8584                 skip_env "could not find setfattr"
8585         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8586
8587         # b10930: get/set/list trusted.lov xattr
8588         echo "get/set/list trusted.lov xattr ..."
8589         local testfile=$DIR/$tfile
8590         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8591                 error "setstripe failed"
8592         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
8593                 error "getstripe failed"
8594         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8595                 error "can't get trusted.lov from $testfile"
8596
8597         local testfile2=${testfile}2
8598         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8599                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8600
8601         $MCREATE $testfile2
8602         setfattr -n trusted.lov -v $value $testfile2
8603         local stripe_size=$($GETSTRIPE -S $testfile2)
8604         local stripe_count=$($GETSTRIPE -c $testfile2)
8605         [[ $stripe_size -eq 65536 ]] ||
8606                 error "stripe size $stripe_size != 65536"
8607         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8608                 error "stripe count $stripe_count != $STRIPECOUNT"
8609         rm -f $DIR/$tfile
8610 }
8611 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8612
8613 test_102c() {
8614         [ -z "$(which setfattr 2>/dev/null)" ] &&
8615                 skip_env "could not find setfattr"
8616         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8617
8618         # b10930: get/set/list lustre.lov xattr
8619         echo "get/set/list lustre.lov xattr ..."
8620         test_mkdir $DIR/$tdir
8621         chown $RUNAS_ID $DIR/$tdir
8622         local testfile=$DIR/$tdir/$tfile
8623         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8624                 error "setstripe failed"
8625         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8626                 error "getstripe failed"
8627         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8628         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8629
8630         local testfile2=${testfile}2
8631         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8632                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8633
8634         $RUNAS $MCREATE $testfile2
8635         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8636         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8637         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8638         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8639         [ $stripe_count -eq $STRIPECOUNT ] ||
8640                 error "stripe count $stripe_count != $STRIPECOUNT"
8641 }
8642 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8643
8644 compare_stripe_info1() {
8645         local stripe_index_all_zero=true
8646
8647         for num in 1 2 3 4; do
8648                 for count in $(seq 1 $STRIPE_COUNT); do
8649                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8650                                 local size=$((STRIPE_SIZE * num))
8651                                 local file=file"$num-$offset-$count"
8652                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8653                                 [[ $stripe_size -ne $size ]] &&
8654                                     error "$file: size $stripe_size != $size"
8655                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8656                                 # allow fewer stripes to be created, ORI-601
8657                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8658                                     error "$file: count $stripe_count != $count"
8659                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8660                                 [[ $stripe_index -ne 0 ]] &&
8661                                         stripe_index_all_zero=false
8662                         done
8663                 done
8664         done
8665         $stripe_index_all_zero &&
8666                 error "all files are being extracted starting from OST index 0"
8667         return 0
8668 }
8669
8670 have_xattrs_include() {
8671         tar --help | grep -q xattrs-include &&
8672                 echo --xattrs-include="lustre.*"
8673 }
8674
8675 test_102d() {
8676         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8677         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8678
8679         XINC=$(have_xattrs_include)
8680         setup_test102
8681         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8682         cd $DIR/$tdir/$tdir
8683         compare_stripe_info1
8684 }
8685 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8686
8687 test_102f() {
8688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8689         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8690
8691         XINC=$(have_xattrs_include)
8692         setup_test102
8693         test_mkdir $DIR/$tdir.restore
8694         cd $DIR
8695         tar cf - --xattrs $tdir | tar xf - \
8696                 -C $DIR/$tdir.restore --xattrs $XINC
8697         cd $DIR/$tdir.restore/$tdir
8698         compare_stripe_info1
8699 }
8700 run_test 102f "tar copy files, not keep osts"
8701
8702 grow_xattr() {
8703         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8704                 skip "must have user_xattr"
8705         [ -z "$(which setfattr 2>/dev/null)" ] &&
8706                 skip_env "could not find setfattr"
8707         [ -z "$(which getfattr 2>/dev/null)" ] &&
8708                 skip_env "could not find getfattr"
8709
8710         local xsize=${1:-1024}  # in bytes
8711         local file=$DIR/$tfile
8712         local value="$(generate_string $xsize)"
8713         local xbig=trusted.big
8714
8715         touch $file
8716         log "save $xbig on $file"
8717         setfattr -n $xbig -v $value $file ||
8718                 error "saving $xbig on $file failed"
8719
8720         local orig=$(get_xattr_value $xbig $file)
8721         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8722
8723         local xsml=trusted.sml
8724         log "save $xsml on $file"
8725         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8726
8727         local new=$(get_xattr_value $xbig $file)
8728         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8729
8730         log "grow $xsml on $file"
8731         setfattr -n $xsml -v "$value" $file ||
8732                 error "growing $xsml on $file failed"
8733
8734         new=$(get_xattr_value $xbig $file)
8735         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8736         log "$xbig still valid after growing $xsml"
8737
8738         rm -f $file
8739 }
8740
8741 test_102h() { # bug 15777
8742         grow_xattr 1024
8743 }
8744 run_test 102h "grow xattr from inside inode to external block"
8745
8746 test_102ha() {
8747         large_xattr_enabled || skip_env "ea_inode feature disabled"
8748
8749         grow_xattr $(max_xattr_size)
8750 }
8751 run_test 102ha "grow xattr from inside inode to external inode"
8752
8753 test_102i() { # bug 17038
8754         [ -z "$(which getfattr 2>/dev/null)" ] &&
8755                 skip "could not find getfattr"
8756
8757         touch $DIR/$tfile
8758         ln -s $DIR/$tfile $DIR/${tfile}link
8759         getfattr -n trusted.lov $DIR/$tfile ||
8760                 error "lgetxattr on $DIR/$tfile failed"
8761         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8762                 grep -i "no such attr" ||
8763                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8764         rm -f $DIR/$tfile $DIR/${tfile}link
8765 }
8766 run_test 102i "lgetxattr test on symbolic link ============"
8767
8768 test_102j() {
8769         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8770         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8771
8772         XINC=$(have_xattrs_include)
8773         setup_test102 "$RUNAS"
8774         chown $RUNAS_ID $DIR/$tdir
8775         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8776         cd $DIR/$tdir/$tdir
8777         compare_stripe_info1 "$RUNAS"
8778 }
8779 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8780
8781 test_102k() {
8782         [ -z "$(which setfattr 2>/dev/null)" ] &&
8783                 skip "could not find setfattr"
8784
8785         touch $DIR/$tfile
8786         # b22187 just check that does not crash for regular file.
8787         setfattr -n trusted.lov $DIR/$tfile
8788         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8789         local test_kdir=$DIR/$tdir
8790         test_mkdir $test_kdir
8791         local default_size=$($LFS getstripe -S $test_kdir)
8792         local default_count=$($LFS getstripe -c $test_kdir)
8793         local default_offset=$($LFS getstripe -i $test_kdir)
8794         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8795                 error 'dir setstripe failed'
8796         setfattr -n trusted.lov $test_kdir
8797         local stripe_size=$($LFS getstripe -S $test_kdir)
8798         local stripe_count=$($LFS getstripe -c $test_kdir)
8799         local stripe_offset=$($LFS getstripe -i $test_kdir)
8800         [ $stripe_size -eq $default_size ] ||
8801                 error "stripe size $stripe_size != $default_size"
8802         [ $stripe_count -eq $default_count ] ||
8803                 error "stripe count $stripe_count != $default_count"
8804         [ $stripe_offset -eq $default_offset ] ||
8805                 error "stripe offset $stripe_offset != $default_offset"
8806         rm -rf $DIR/$tfile $test_kdir
8807 }
8808 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8809
8810 test_102l() {
8811         [ -z "$(which getfattr 2>/dev/null)" ] &&
8812                 skip "could not find getfattr"
8813
8814         # LU-532 trusted. xattr is invisible to non-root
8815         local testfile=$DIR/$tfile
8816
8817         touch $testfile
8818
8819         echo "listxattr as user..."
8820         chown $RUNAS_ID $testfile
8821         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8822             grep -q "trusted" &&
8823                 error "$testfile trusted xattrs are user visible"
8824
8825         return 0;
8826 }
8827 run_test 102l "listxattr size test =================================="
8828
8829 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8830         local path=$DIR/$tfile
8831         touch $path
8832
8833         listxattr_size_check $path || error "listattr_size_check $path failed"
8834 }
8835 run_test 102m "Ensure listxattr fails on small bufffer ========"
8836
8837 cleanup_test102
8838
8839 getxattr() { # getxattr path name
8840         # Return the base64 encoding of the value of xattr name on path.
8841         local path=$1
8842         local name=$2
8843
8844         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8845         # file: $path
8846         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8847         #
8848         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8849
8850         getfattr --absolute-names --encoding=base64 --name=$name $path |
8851                 awk -F= -v name=$name '$1 == name {
8852                         print substr($0, index($0, "=") + 1);
8853         }'
8854 }
8855
8856 test_102n() { # LU-4101 mdt: protect internal xattrs
8857         [ -z "$(which setfattr 2>/dev/null)" ] &&
8858                 skip "could not find setfattr"
8859         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8860         then
8861                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8862         fi
8863
8864         local file0=$DIR/$tfile.0
8865         local file1=$DIR/$tfile.1
8866         local xattr0=$TMP/$tfile.0
8867         local xattr1=$TMP/$tfile.1
8868         local namelist="lov lma lmv link fid version som hsm"
8869         local name
8870         local value
8871
8872         rm -rf $file0 $file1 $xattr0 $xattr1
8873         touch $file0 $file1
8874
8875         # Get 'before' xattrs of $file1.
8876         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8877
8878         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8879                 namelist+=" lfsck_namespace"
8880         for name in $namelist; do
8881                 # Try to copy xattr from $file0 to $file1.
8882                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8883
8884                 setfattr --name=trusted.$name --value="$value" $file1 ||
8885                         error "setxattr 'trusted.$name' failed"
8886
8887                 # Try to set a garbage xattr.
8888                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8889
8890                 if [[ x$name == "xlov" ]]; then
8891                         setfattr --name=trusted.lov --value="$value" $file1 &&
8892                         error "setxattr invalid 'trusted.lov' success"
8893                 else
8894                         setfattr --name=trusted.$name --value="$value" $file1 ||
8895                                 error "setxattr invalid 'trusted.$name' failed"
8896                 fi
8897
8898                 # Try to remove the xattr from $file1. We don't care if this
8899                 # appears to succeed or fail, we just don't want there to be
8900                 # any changes or crashes.
8901                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8902         done
8903
8904         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8905         then
8906                 name="lfsck_ns"
8907                 # Try to copy xattr from $file0 to $file1.
8908                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8909
8910                 setfattr --name=trusted.$name --value="$value" $file1 ||
8911                         error "setxattr 'trusted.$name' failed"
8912
8913                 # Try to set a garbage xattr.
8914                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8915
8916                 setfattr --name=trusted.$name --value="$value" $file1 ||
8917                         error "setxattr 'trusted.$name' failed"
8918
8919                 # Try to remove the xattr from $file1. We don't care if this
8920                 # appears to succeed or fail, we just don't want there to be
8921                 # any changes or crashes.
8922                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8923         fi
8924
8925         # Get 'after' xattrs of file1.
8926         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8927
8928         if ! diff $xattr0 $xattr1; then
8929                 error "before and after xattrs of '$file1' differ"
8930         fi
8931
8932         rm -rf $file0 $file1 $xattr0 $xattr1
8933
8934         return 0
8935 }
8936 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8937
8938 test_102p() { # LU-4703 setxattr did not check ownership
8939         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8940                 skip "MDS needs to be at least 2.5.56"
8941
8942         local testfile=$DIR/$tfile
8943
8944         touch $testfile
8945
8946         echo "setfacl as user..."
8947         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8948         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8949
8950         echo "setfattr as user..."
8951         setfacl -m "u:$RUNAS_ID:---" $testfile
8952         $RUNAS setfattr -x system.posix_acl_access $testfile
8953         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8954 }
8955 run_test 102p "check setxattr(2) correctly fails without permission"
8956
8957 test_102q() {
8958         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8959                 skip "MDS needs to be at least 2.6.92"
8960
8961         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8962 }
8963 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8964
8965 test_102r() {
8966         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8967                 skip "MDS needs to be at least 2.6.93"
8968
8969         touch $DIR/$tfile || error "touch"
8970         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8971         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8972         rm $DIR/$tfile || error "rm"
8973
8974         #normal directory
8975         mkdir -p $DIR/$tdir || error "mkdir"
8976         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8977         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8978         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8979                 error "$testfile error deleting user.author1"
8980         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8981                 grep "user.$(basename $tdir)" &&
8982                 error "$tdir did not delete user.$(basename $tdir)"
8983         rmdir $DIR/$tdir || error "rmdir"
8984
8985         #striped directory
8986         test_mkdir $DIR/$tdir
8987         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8988         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8989         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8990                 error "$testfile error deleting user.author1"
8991         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8992                 grep "user.$(basename $tdir)" &&
8993                 error "$tdir did not delete user.$(basename $tdir)"
8994         rmdir $DIR/$tdir || error "rm striped dir"
8995 }
8996 run_test 102r "set EAs with empty values"
8997
8998 test_102s() {
8999         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
9000                 skip "MDS needs to be at least 2.11.52"
9001
9002         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9003
9004         save_lustre_params client "llite.*.xattr_cache" > $save
9005
9006         for cache in 0 1; do
9007                 lctl set_param llite.*.xattr_cache=$cache
9008
9009                 rm -f $DIR/$tfile
9010                 touch $DIR/$tfile || error "touch"
9011                 for prefix in lustre security system trusted user; do
9012                         # Note getxattr() may fail with 'Operation not
9013                         # supported' or 'No such attribute' depending
9014                         # on prefix and cache.
9015                         getfattr -n $prefix.n102s $DIR/$tfile &&
9016                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
9017                 done
9018         done
9019
9020         restore_lustre_params < $save
9021 }
9022 run_test 102s "getting nonexistent xattrs should fail"
9023
9024 test_102t() {
9025         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
9026                 skip "MDS needs to be at least 2.11.52"
9027
9028         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9029
9030         save_lustre_params client "llite.*.xattr_cache" > $save
9031
9032         for cache in 0 1; do
9033                 lctl set_param llite.*.xattr_cache=$cache
9034
9035                 for buf_size in 0 256; do
9036                         rm -f $DIR/$tfile
9037                         touch $DIR/$tfile || error "touch"
9038                         setfattr -n user.multiop $DIR/$tfile
9039                         $MULTIOP $DIR/$tfile oa$buf_size ||
9040                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
9041                 done
9042         done
9043
9044         restore_lustre_params < $save
9045 }
9046 run_test 102t "zero length xattr values handled correctly"
9047
9048 run_acl_subtest()
9049 {
9050     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
9051     return $?
9052 }
9053
9054 test_103a() {
9055         [ "$UID" != 0 ] && skip "must run as root"
9056         $GSS && skip_env "could not run under gss"
9057         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
9058                 skip_env "must have acl enabled"
9059         [ -z "$(which setfacl 2>/dev/null)" ] &&
9060                 skip_env "could not find setfacl"
9061         remote_mds_nodsh && skip "remote MDS with nodsh"
9062
9063         gpasswd -a daemon bin                           # LU-5641
9064         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
9065
9066         declare -a identity_old
9067
9068         for num in $(seq $MDSCOUNT); do
9069                 switch_identity $num true || identity_old[$num]=$?
9070         done
9071
9072         SAVE_UMASK=$(umask)
9073         umask 0022
9074         mkdir -p $DIR/$tdir
9075         cd $DIR/$tdir
9076
9077         echo "performing cp ..."
9078         run_acl_subtest cp || error "run_acl_subtest cp failed"
9079         echo "performing getfacl-noacl..."
9080         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
9081         echo "performing misc..."
9082         run_acl_subtest misc || error  "misc test failed"
9083         echo "performing permissions..."
9084         run_acl_subtest permissions || error "permissions failed"
9085         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
9086         if [ $MDS1_VERSION -gt $(version_code 2.8.55) ] ||
9087                 { [ $MDS1_VERSION -lt $(version_code 2.6) ] &&
9088                         [ $MDS1_VERSION -ge $(version_code 2.5.29) ]; }
9089         then
9090                 echo "performing permissions xattr..."
9091                 run_acl_subtest permissions_xattr ||
9092                         error "permissions_xattr failed"
9093         fi
9094         echo "performing setfacl..."
9095         run_acl_subtest setfacl || error  "setfacl test failed"
9096
9097         # inheritance test got from HP
9098         echo "performing inheritance..."
9099         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
9100         chmod +x make-tree || error "chmod +x failed"
9101         run_acl_subtest inheritance || error "inheritance test failed"
9102         rm -f make-tree
9103
9104         echo "LU-974 ignore umask when acl is enabled..."
9105         run_acl_subtest 974 || error "LU-974 umask test failed"
9106         if [ $MDSCOUNT -ge 2 ]; then
9107                 run_acl_subtest 974_remote ||
9108                         error "LU-974 umask test failed under remote dir"
9109         fi
9110
9111         echo "LU-2561 newly created file is same size as directory..."
9112         if [ "$mds1_FSTYPE" != "zfs" ]; then
9113                 run_acl_subtest 2561 || error "LU-2561 test failed"
9114         else
9115                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
9116         fi
9117
9118         run_acl_subtest 4924 || error "LU-4924 test failed"
9119
9120         cd $SAVE_PWD
9121         umask $SAVE_UMASK
9122
9123         for num in $(seq $MDSCOUNT); do
9124                 if [ "${identity_old[$num]}" = 1 ]; then
9125                         switch_identity $num false || identity_old[$num]=$?
9126                 fi
9127         done
9128 }
9129 run_test 103a "acl test"
9130
9131 test_103b() {
9132         declare -a pids
9133         local U
9134
9135         for U in {0..511}; do
9136                 {
9137                 local O=$(printf "%04o" $U)
9138
9139                 umask $(printf "%04o" $((511 ^ $O)))
9140                 $LFS setstripe -c 1 $DIR/$tfile.s$O
9141                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
9142
9143                 (( $S == ($O & 0666) )) ||
9144                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
9145
9146                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
9147                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
9148                 (( $S == ($O & 0666) )) ||
9149                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
9150
9151                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
9152                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
9153                 (( $S == ($O & 0666) )) ||
9154                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
9155                 rm -f $DIR/$tfile.[smp]$0
9156                 } &
9157                 local pid=$!
9158
9159                 # limit the concurrently running threads to 64. LU-11878
9160                 local idx=$((U % 64))
9161                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
9162                 pids[idx]=$pid
9163         done
9164         wait
9165 }
9166 run_test 103b "umask lfs setstripe"
9167
9168 test_103c() {
9169         mkdir -p $DIR/$tdir
9170         cp -rp $DIR/$tdir $DIR/$tdir.bak
9171
9172         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
9173                 error "$DIR/$tdir shouldn't contain default ACL"
9174         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
9175                 error "$DIR/$tdir.bak shouldn't contain default ACL"
9176         true
9177 }
9178 run_test 103c "'cp -rp' won't set empty acl"
9179
9180 test_104a() {
9181         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9182
9183         touch $DIR/$tfile
9184         lfs df || error "lfs df failed"
9185         lfs df -ih || error "lfs df -ih failed"
9186         lfs df -h $DIR || error "lfs df -h $DIR failed"
9187         lfs df -i $DIR || error "lfs df -i $DIR failed"
9188         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
9189         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
9190
9191         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
9192         lctl --device %$OSC deactivate
9193         lfs df || error "lfs df with deactivated OSC failed"
9194         lctl --device %$OSC activate
9195         # wait the osc back to normal
9196         wait_osc_import_ready client ost
9197
9198         lfs df || error "lfs df with reactivated OSC failed"
9199         rm -f $DIR/$tfile
9200 }
9201 run_test 104a "lfs df [-ih] [path] test ========================="
9202
9203 test_104b() {
9204         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9205         [ $RUNAS_ID -eq $UID ] &&
9206                 skip_env "RUNAS_ID = UID = $UID -- skipping"
9207
9208         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
9209                         grep "Permission denied" | wc -l)))
9210         if [ $denied_cnt -ne 0 ]; then
9211                 error "lfs check servers test failed"
9212         fi
9213 }
9214 run_test 104b "$RUNAS lfs check servers test ===================="
9215
9216 test_105a() {
9217         # doesn't work on 2.4 kernels
9218         touch $DIR/$tfile
9219         if $(flock_is_enabled); then
9220                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
9221         else
9222                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
9223         fi
9224         rm -f $DIR/$tfile
9225 }
9226 run_test 105a "flock when mounted without -o flock test ========"
9227
9228 test_105b() {
9229         touch $DIR/$tfile
9230         if $(flock_is_enabled); then
9231                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
9232         else
9233                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
9234         fi
9235         rm -f $DIR/$tfile
9236 }
9237 run_test 105b "fcntl when mounted without -o flock test ========"
9238
9239 test_105c() {
9240         touch $DIR/$tfile
9241         if $(flock_is_enabled); then
9242                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
9243         else
9244                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
9245         fi
9246         rm -f $DIR/$tfile
9247 }
9248 run_test 105c "lockf when mounted without -o flock test"
9249
9250 test_105d() { # bug 15924
9251         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9252
9253         test_mkdir $DIR/$tdir
9254         flock_is_enabled || skip_env "mount w/o flock enabled"
9255         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
9256         $LCTL set_param fail_loc=0x80000315
9257         flocks_test 2 $DIR/$tdir
9258 }
9259 run_test 105d "flock race (should not freeze) ========"
9260
9261 test_105e() { # bug 22660 && 22040
9262         flock_is_enabled || skip_env "mount w/o flock enabled"
9263
9264         touch $DIR/$tfile
9265         flocks_test 3 $DIR/$tfile
9266 }
9267 run_test 105e "Two conflicting flocks from same process"
9268
9269 test_106() { #bug 10921
9270         test_mkdir $DIR/$tdir
9271         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
9272         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
9273 }
9274 run_test 106 "attempt exec of dir followed by chown of that dir"
9275
9276 test_107() {
9277         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9278
9279         CDIR=`pwd`
9280         local file=core
9281
9282         cd $DIR
9283         rm -f $file
9284
9285         local save_pattern=$(sysctl -n kernel.core_pattern)
9286         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
9287         sysctl -w kernel.core_pattern=$file
9288         sysctl -w kernel.core_uses_pid=0
9289
9290         ulimit -c unlimited
9291         sleep 60 &
9292         SLEEPPID=$!
9293
9294         sleep 1
9295
9296         kill -s 11 $SLEEPPID
9297         wait $SLEEPPID
9298         if [ -e $file ]; then
9299                 size=`stat -c%s $file`
9300                 [ $size -eq 0 ] && error "Fail to create core file $file"
9301         else
9302                 error "Fail to create core file $file"
9303         fi
9304         rm -f $file
9305         sysctl -w kernel.core_pattern=$save_pattern
9306         sysctl -w kernel.core_uses_pid=$save_uses_pid
9307         cd $CDIR
9308 }
9309 run_test 107 "Coredump on SIG"
9310
9311 test_110() {
9312         test_mkdir $DIR/$tdir
9313         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
9314         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
9315                 error "mkdir with 256 char should fail, but did not"
9316         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
9317                 error "create with 255 char failed"
9318         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
9319                 error "create with 256 char should fail, but did not"
9320
9321         ls -l $DIR/$tdir
9322         rm -rf $DIR/$tdir
9323 }
9324 run_test 110 "filename length checking"
9325
9326 #
9327 # Purpose: To verify dynamic thread (OSS) creation.
9328 #
9329 test_115() {
9330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9331         remote_ost_nodsh && skip "remote OST with nodsh"
9332
9333         # Lustre does not stop service threads once they are started.
9334         # Reset number of running threads to default.
9335         stopall
9336         setupall
9337
9338         local OSTIO_pre
9339         local save_params="$TMP/sanity-$TESTNAME.parameters"
9340
9341         # Get ll_ost_io count before I/O
9342         OSTIO_pre=$(do_facet ost1 \
9343                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
9344         # Exit if lustre is not running (ll_ost_io not running).
9345         [ -z "$OSTIO_pre" ] && error "no OSS threads"
9346
9347         echo "Starting with $OSTIO_pre threads"
9348         local thread_max=$((OSTIO_pre * 2))
9349         local rpc_in_flight=$((thread_max * 2))
9350         # Number of I/O Process proposed to be started.
9351         local nfiles
9352         local facets=$(get_facets OST)
9353
9354         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
9355         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
9356
9357         # Set in_flight to $rpc_in_flight
9358         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
9359                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
9360         nfiles=${rpc_in_flight}
9361         # Set ost thread_max to $thread_max
9362         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
9363
9364         # 5 Minutes should be sufficient for max number of OSS
9365         # threads(thread_max) to be created.
9366         local timeout=300
9367
9368         # Start I/O.
9369         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
9370         test_mkdir $DIR/$tdir
9371         for i in $(seq $nfiles); do
9372                 local file=$DIR/$tdir/${tfile}-$i
9373                 $LFS setstripe -c -1 -i 0 $file
9374                 ($WTL $file $timeout)&
9375         done
9376
9377         # I/O Started - Wait for thread_started to reach thread_max or report
9378         # error if thread_started is more than thread_max.
9379         echo "Waiting for thread_started to reach thread_max"
9380         local thread_started=0
9381         local end_time=$((SECONDS + timeout))
9382
9383         while [ $SECONDS -le $end_time ] ; do
9384                 echo -n "."
9385                 # Get ost i/o thread_started count.
9386                 thread_started=$(do_facet ost1 \
9387                         "$LCTL get_param \
9388                         ost.OSS.ost_io.threads_started | cut -d= -f2")
9389                 # Break out if thread_started is equal/greater than thread_max
9390                 if [[ $thread_started -ge $thread_max ]]; then
9391                         echo ll_ost_io thread_started $thread_started, \
9392                                 equal/greater than thread_max $thread_max
9393                         break
9394                 fi
9395                 sleep 1
9396         done
9397
9398         # Cleanup - We have the numbers, Kill i/o jobs if running.
9399         jobcount=($(jobs -p))
9400         for i in $(seq 0 $((${#jobcount[@]}-1)))
9401         do
9402                 kill -9 ${jobcount[$i]}
9403                 if [ $? -ne 0 ] ; then
9404                         echo Warning: \
9405                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
9406                 fi
9407         done
9408
9409         # Cleanup files left by WTL binary.
9410         for i in $(seq $nfiles); do
9411                 local file=$DIR/$tdir/${tfile}-$i
9412                 rm -rf $file
9413                 if [ $? -ne 0 ] ; then
9414                         echo "Warning: Failed to delete file $file"
9415                 fi
9416         done
9417
9418         restore_lustre_params <$save_params
9419         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
9420
9421         # Error out if no new thread has started or Thread started is greater
9422         # than thread max.
9423         if [[ $thread_started -le $OSTIO_pre ||
9424                         $thread_started -gt $thread_max ]]; then
9425                 error "ll_ost_io: thread_started $thread_started" \
9426                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
9427                       "No new thread started or thread started greater " \
9428                       "than thread_max."
9429         fi
9430 }
9431 run_test 115 "verify dynamic thread creation===================="
9432
9433 free_min_max () {
9434         wait_delete_completed
9435         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
9436         echo "OST kbytes available: ${AVAIL[@]}"
9437         MAXV=${AVAIL[0]}
9438         MAXI=0
9439         MINV=${AVAIL[0]}
9440         MINI=0
9441         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
9442                 #echo OST $i: ${AVAIL[i]}kb
9443                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
9444                         MAXV=${AVAIL[i]}
9445                         MAXI=$i
9446                 fi
9447                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
9448                         MINV=${AVAIL[i]}
9449                         MINI=$i
9450                 fi
9451         done
9452         echo "Min free space: OST $MINI: $MINV"
9453         echo "Max free space: OST $MAXI: $MAXV"
9454 }
9455
9456 test_116a() { # was previously test_116()
9457         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9458         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9459         remote_mds_nodsh && skip "remote MDS with nodsh"
9460
9461         echo -n "Free space priority "
9462         do_facet $SINGLEMDS lctl get_param -n lo[vd].*-mdtlov.qos_prio_free |
9463                 head -n1
9464         declare -a AVAIL
9465         free_min_max
9466
9467         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
9468         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
9469         trap simple_cleanup_common EXIT
9470
9471         # Check if we need to generate uneven OSTs
9472         test_mkdir -p $DIR/$tdir/OST${MINI}
9473         local FILL=$((MINV / 4))
9474         local DIFF=$((MAXV - MINV))
9475         local DIFF2=$((DIFF * 100 / MINV))
9476
9477         local threshold=$(do_facet $SINGLEMDS \
9478                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
9479         threshold=${threshold%%%}
9480         echo -n "Check for uneven OSTs: "
9481         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
9482
9483         if [[ $DIFF2 -gt $threshold ]]; then
9484                 echo "ok"
9485                 echo "Don't need to fill OST$MINI"
9486         else
9487                 # generate uneven OSTs. Write 2% over the QOS threshold value
9488                 echo "no"
9489                 DIFF=$((threshold - DIFF2 + 2))
9490                 DIFF2=$((MINV * DIFF / 100))
9491                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
9492                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
9493                         error "setstripe failed"
9494                 DIFF=$((DIFF2 / 2048))
9495                 i=0
9496                 while [ $i -lt $DIFF ]; do
9497                         i=$((i + 1))
9498                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
9499                                 bs=2M count=1 2>/dev/null
9500                         echo -n .
9501                 done
9502                 echo .
9503                 sync
9504                 sleep_maxage
9505                 free_min_max
9506         fi
9507
9508         DIFF=$((MAXV - MINV))
9509         DIFF2=$((DIFF * 100 / MINV))
9510         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
9511         if [ $DIFF2 -gt $threshold ]; then
9512                 echo "ok"
9513         else
9514                 echo "failed - QOS mode won't be used"
9515                 simple_cleanup_common
9516                 skip "QOS imbalance criteria not met"
9517         fi
9518
9519         MINI1=$MINI
9520         MINV1=$MINV
9521         MAXI1=$MAXI
9522         MAXV1=$MAXV
9523
9524         # now fill using QOS
9525         $SETSTRIPE -c 1 $DIR/$tdir
9526         FILL=$((FILL / 200))
9527         if [ $FILL -gt 600 ]; then
9528                 FILL=600
9529         fi
9530         echo "writing $FILL files to QOS-assigned OSTs"
9531         i=0
9532         while [ $i -lt $FILL ]; do
9533                 i=$((i + 1))
9534                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9535                         count=1 2>/dev/null
9536                 echo -n .
9537         done
9538         echo "wrote $i 200k files"
9539         sync
9540         sleep_maxage
9541
9542         echo "Note: free space may not be updated, so measurements might be off"
9543         free_min_max
9544         DIFF2=$((MAXV - MINV))
9545         echo "free space delta: orig $DIFF final $DIFF2"
9546         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9547         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9548         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9549         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9550         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9551         if [[ $DIFF -gt 0 ]]; then
9552                 FILL=$((DIFF2 * 100 / DIFF - 100))
9553                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9554         fi
9555
9556         # Figure out which files were written where
9557         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9558                awk '/'$MINI1': / {print $2; exit}')
9559         echo $UUID
9560         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9561         echo "$MINC files created on smaller OST $MINI1"
9562         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9563                awk '/'$MAXI1': / {print $2; exit}')
9564         echo $UUID
9565         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9566         echo "$MAXC files created on larger OST $MAXI1"
9567         if [[ $MINC -gt 0 ]]; then
9568                 FILL=$((MAXC * 100 / MINC - 100))
9569                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9570         fi
9571         [[ $MAXC -gt $MINC ]] ||
9572                 error_ignore LU-9 "stripe QOS didn't balance free space"
9573         simple_cleanup_common
9574 }
9575 run_test 116a "stripe QOS: free space balance ==================="
9576
9577 test_116b() { # LU-2093
9578         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9579         remote_mds_nodsh && skip "remote MDS with nodsh"
9580
9581 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9582         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9583                        lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9584         [ -z "$old_rr" ] && skip "no QOS"
9585         do_facet $SINGLEMDS lctl set_param \
9586                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9587         mkdir -p $DIR/$tdir
9588         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9589         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9590         do_facet $SINGLEMDS lctl set_param fail_loc=0
9591         rm -rf $DIR/$tdir
9592         do_facet $SINGLEMDS lctl set_param \
9593                 lo[vd].$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9594 }
9595 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9596
9597 test_117() # bug 10891
9598 {
9599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9600
9601         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9602         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9603         lctl set_param fail_loc=0x21e
9604         > $DIR/$tfile || error "truncate failed"
9605         lctl set_param fail_loc=0
9606         echo "Truncate succeeded."
9607         rm -f $DIR/$tfile
9608 }
9609 run_test 117 "verify osd extend =========="
9610
9611 NO_SLOW_RESENDCOUNT=4
9612 export OLD_RESENDCOUNT=""
9613 set_resend_count () {
9614         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9615         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9616         lctl set_param -n $PROC_RESENDCOUNT $1
9617         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9618 }
9619
9620 # for reduce test_118* time (b=14842)
9621 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9622
9623 # Reset async IO behavior after error case
9624 reset_async() {
9625         FILE=$DIR/reset_async
9626
9627         # Ensure all OSCs are cleared
9628         $SETSTRIPE -c -1 $FILE
9629         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9630         sync
9631         rm $FILE
9632 }
9633
9634 test_118a() #bug 11710
9635 {
9636         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9637
9638         reset_async
9639
9640         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9641         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9642         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9643
9644         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9645                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9646                 return 1;
9647         fi
9648         rm -f $DIR/$tfile
9649 }
9650 run_test 118a "verify O_SYNC works =========="
9651
9652 test_118b()
9653 {
9654         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9655         remote_ost_nodsh && skip "remote OST with nodsh"
9656
9657         reset_async
9658
9659         #define OBD_FAIL_SRV_ENOENT 0x217
9660         set_nodes_failloc "$(osts_nodes)" 0x217
9661         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9662         RC=$?
9663         set_nodes_failloc "$(osts_nodes)" 0
9664         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9665         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9666                     grep -c writeback)
9667
9668         if [[ $RC -eq 0 ]]; then
9669                 error "Must return error due to dropped pages, rc=$RC"
9670                 return 1;
9671         fi
9672
9673         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9674                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9675                 return 1;
9676         fi
9677
9678         echo "Dirty pages not leaked on ENOENT"
9679
9680         # Due to the above error the OSC will issue all RPCs syncronously
9681         # until a subsequent RPC completes successfully without error.
9682         $MULTIOP $DIR/$tfile Ow4096yc
9683         rm -f $DIR/$tfile
9684
9685         return 0
9686 }
9687 run_test 118b "Reclaim dirty pages on fatal error =========="
9688
9689 test_118c()
9690 {
9691         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9692
9693         # for 118c, restore the original resend count, LU-1940
9694         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9695                                 set_resend_count $OLD_RESENDCOUNT
9696         remote_ost_nodsh && skip "remote OST with nodsh"
9697
9698         reset_async
9699
9700         #define OBD_FAIL_OST_EROFS               0x216
9701         set_nodes_failloc "$(osts_nodes)" 0x216
9702
9703         # multiop should block due to fsync until pages are written
9704         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9705         MULTIPID=$!
9706         sleep 1
9707
9708         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9709                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9710         fi
9711
9712         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9713                     grep -c writeback)
9714         if [[ $WRITEBACK -eq 0 ]]; then
9715                 error "No page in writeback, writeback=$WRITEBACK"
9716         fi
9717
9718         set_nodes_failloc "$(osts_nodes)" 0
9719         wait $MULTIPID
9720         RC=$?
9721         if [[ $RC -ne 0 ]]; then
9722                 error "Multiop fsync failed, rc=$RC"
9723         fi
9724
9725         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9726         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9727                     grep -c writeback)
9728         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9729                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9730         fi
9731
9732         rm -f $DIR/$tfile
9733         echo "Dirty pages flushed via fsync on EROFS"
9734         return 0
9735 }
9736 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9737
9738 # continue to use small resend count to reduce test_118* time (b=14842)
9739 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9740
9741 test_118d()
9742 {
9743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9744         remote_ost_nodsh && skip "remote OST with nodsh"
9745
9746         reset_async
9747
9748         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9749         set_nodes_failloc "$(osts_nodes)" 0x214
9750         # multiop should block due to fsync until pages are written
9751         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9752         MULTIPID=$!
9753         sleep 1
9754
9755         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9756                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9757         fi
9758
9759         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9760                     grep -c writeback)
9761         if [[ $WRITEBACK -eq 0 ]]; then
9762                 error "No page in writeback, writeback=$WRITEBACK"
9763         fi
9764
9765         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9766         set_nodes_failloc "$(osts_nodes)" 0
9767
9768         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9769         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9770                     grep -c writeback)
9771         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9772                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9773         fi
9774
9775         rm -f $DIR/$tfile
9776         echo "Dirty pages gaurenteed flushed via fsync"
9777         return 0
9778 }
9779 run_test 118d "Fsync validation inject a delay of the bulk =========="
9780
9781 test_118f() {
9782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9783
9784         reset_async
9785
9786         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9787         lctl set_param fail_loc=0x8000040a
9788
9789         # Should simulate EINVAL error which is fatal
9790         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9791         RC=$?
9792         if [[ $RC -eq 0 ]]; then
9793                 error "Must return error due to dropped pages, rc=$RC"
9794         fi
9795
9796         lctl set_param fail_loc=0x0
9797
9798         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9799         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9800         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9801                     grep -c writeback)
9802         if [[ $LOCKED -ne 0 ]]; then
9803                 error "Locked pages remain in cache, locked=$LOCKED"
9804         fi
9805
9806         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9807                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9808         fi
9809
9810         rm -f $DIR/$tfile
9811         echo "No pages locked after fsync"
9812
9813         reset_async
9814         return 0
9815 }
9816 run_test 118f "Simulate unrecoverable OSC side error =========="
9817
9818 test_118g() {
9819         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9820
9821         reset_async
9822
9823         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9824         lctl set_param fail_loc=0x406
9825
9826         # simulate local -ENOMEM
9827         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9828         RC=$?
9829
9830         lctl set_param fail_loc=0
9831         if [[ $RC -eq 0 ]]; then
9832                 error "Must return error due to dropped pages, rc=$RC"
9833         fi
9834
9835         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9836         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9837         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9838                         grep -c writeback)
9839         if [[ $LOCKED -ne 0 ]]; then
9840                 error "Locked pages remain in cache, locked=$LOCKED"
9841         fi
9842
9843         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9844                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9845         fi
9846
9847         rm -f $DIR/$tfile
9848         echo "No pages locked after fsync"
9849
9850         reset_async
9851         return 0
9852 }
9853 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9854
9855 test_118h() {
9856         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9857         remote_ost_nodsh && skip "remote OST with nodsh"
9858
9859         reset_async
9860
9861         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9862         set_nodes_failloc "$(osts_nodes)" 0x20e
9863         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9864         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9865         RC=$?
9866
9867         set_nodes_failloc "$(osts_nodes)" 0
9868         if [[ $RC -eq 0 ]]; then
9869                 error "Must return error due to dropped pages, rc=$RC"
9870         fi
9871
9872         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9873         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9874         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9875                     grep -c writeback)
9876         if [[ $LOCKED -ne 0 ]]; then
9877                 error "Locked pages remain in cache, locked=$LOCKED"
9878         fi
9879
9880         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9881                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9882         fi
9883
9884         rm -f $DIR/$tfile
9885         echo "No pages locked after fsync"
9886
9887         return 0
9888 }
9889 run_test 118h "Verify timeout in handling recoverables errors  =========="
9890
9891 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9892
9893 test_118i() {
9894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9895         remote_ost_nodsh && skip "remote OST with nodsh"
9896
9897         reset_async
9898
9899         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9900         set_nodes_failloc "$(osts_nodes)" 0x20e
9901
9902         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9903         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9904         PID=$!
9905         sleep 5
9906         set_nodes_failloc "$(osts_nodes)" 0
9907
9908         wait $PID
9909         RC=$?
9910         if [[ $RC -ne 0 ]]; then
9911                 error "got error, but should be not, rc=$RC"
9912         fi
9913
9914         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9915         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9916         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9917         if [[ $LOCKED -ne 0 ]]; then
9918                 error "Locked pages remain in cache, locked=$LOCKED"
9919         fi
9920
9921         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9922                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9923         fi
9924
9925         rm -f $DIR/$tfile
9926         echo "No pages locked after fsync"
9927
9928         return 0
9929 }
9930 run_test 118i "Fix error before timeout in recoverable error  =========="
9931
9932 [ "$SLOW" = "no" ] && set_resend_count 4
9933
9934 test_118j() {
9935         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9936         remote_ost_nodsh && skip "remote OST with nodsh"
9937
9938         reset_async
9939
9940         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9941         set_nodes_failloc "$(osts_nodes)" 0x220
9942
9943         # return -EIO from OST
9944         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9945         RC=$?
9946         set_nodes_failloc "$(osts_nodes)" 0x0
9947         if [[ $RC -eq 0 ]]; then
9948                 error "Must return error due to dropped pages, rc=$RC"
9949         fi
9950
9951         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9952         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9953         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9954         if [[ $LOCKED -ne 0 ]]; then
9955                 error "Locked pages remain in cache, locked=$LOCKED"
9956         fi
9957
9958         # in recoverable error on OST we want resend and stay until it finished
9959         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9960                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9961         fi
9962
9963         rm -f $DIR/$tfile
9964         echo "No pages locked after fsync"
9965
9966         return 0
9967 }
9968 run_test 118j "Simulate unrecoverable OST side error =========="
9969
9970 test_118k()
9971 {
9972         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9973         remote_ost_nodsh && skip "remote OSTs with nodsh"
9974
9975         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9976         set_nodes_failloc "$(osts_nodes)" 0x20e
9977         test_mkdir $DIR/$tdir
9978
9979         for ((i=0;i<10;i++)); do
9980                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9981                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9982                 SLEEPPID=$!
9983                 sleep 0.500s
9984                 kill $SLEEPPID
9985                 wait $SLEEPPID
9986         done
9987
9988         set_nodes_failloc "$(osts_nodes)" 0
9989         rm -rf $DIR/$tdir
9990 }
9991 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9992
9993 test_118l() # LU-646
9994 {
9995         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9996
9997         test_mkdir $DIR/$tdir
9998         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9999         rm -rf $DIR/$tdir
10000 }
10001 run_test 118l "fsync dir"
10002
10003 test_118m() # LU-3066
10004 {
10005         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10006
10007         test_mkdir $DIR/$tdir
10008         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
10009         rm -rf $DIR/$tdir
10010 }
10011 run_test 118m "fdatasync dir ========="
10012
10013 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
10014
10015 test_118n()
10016 {
10017         local begin
10018         local end
10019
10020         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10021         remote_ost_nodsh && skip "remote OSTs with nodsh"
10022
10023         # Sleep to avoid a cached response.
10024         #define OBD_STATFS_CACHE_SECONDS 1
10025         sleep 2
10026
10027         # Inject a 10 second delay in the OST_STATFS handler.
10028         #define OBD_FAIL_OST_STATFS_DELAY 0x242
10029         set_nodes_failloc "$(osts_nodes)" 0x242
10030
10031         begin=$SECONDS
10032         stat --file-system $MOUNT > /dev/null
10033         end=$SECONDS
10034
10035         set_nodes_failloc "$(osts_nodes)" 0
10036
10037         if ((end - begin > 20)); then
10038             error "statfs took $((end - begin)) seconds, expected 10"
10039         fi
10040 }
10041 run_test 118n "statfs() sends OST_STATFS requests in parallel"
10042
10043 test_119a() # bug 11737
10044 {
10045         BSIZE=$((512 * 1024))
10046         directio write $DIR/$tfile 0 1 $BSIZE
10047         # We ask to read two blocks, which is more than a file size.
10048         # directio will indicate an error when requested and actual
10049         # sizes aren't equeal (a normal situation in this case) and
10050         # print actual read amount.
10051         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
10052         if [ "$NOB" != "$BSIZE" ]; then
10053                 error "read $NOB bytes instead of $BSIZE"
10054         fi
10055         rm -f $DIR/$tfile
10056 }
10057 run_test 119a "Short directIO read must return actual read amount"
10058
10059 test_119b() # bug 11737
10060 {
10061         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10062
10063         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
10064         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
10065         sync
10066         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
10067                 error "direct read failed"
10068         rm -f $DIR/$tfile
10069 }
10070 run_test 119b "Sparse directIO read must return actual read amount"
10071
10072 test_119c() # bug 13099
10073 {
10074         BSIZE=1048576
10075         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
10076         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
10077         rm -f $DIR/$tfile
10078 }
10079 run_test 119c "Testing for direct read hitting hole"
10080
10081 test_119d() # bug 15950
10082 {
10083         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10084
10085         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
10086         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
10087         BSIZE=1048576
10088         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
10089         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
10090         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
10091         lctl set_param fail_loc=0x40d
10092         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
10093         pid_dio=$!
10094         sleep 1
10095         cat $DIR/$tfile > /dev/null &
10096         lctl set_param fail_loc=0
10097         pid_reads=$!
10098         wait $pid_dio
10099         log "the DIO writes have completed, now wait for the reads (should not block very long)"
10100         sleep 2
10101         [ -n "`ps h -p $pid_reads -o comm`" ] && \
10102         error "the read rpcs have not completed in 2s"
10103         rm -f $DIR/$tfile
10104         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
10105 }
10106 run_test 119d "The DIO path should try to send a new rpc once one is completed"
10107
10108 test_120a() {
10109         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10110         remote_mds_nodsh && skip "remote MDS with nodsh"
10111         test_mkdir $DIR/$tdir
10112         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10113                 skip_env "no early lock cancel on server"
10114
10115         lru_resize_disable mdc
10116         lru_resize_disable osc
10117         cancel_lru_locks mdc
10118         # asynchronous object destroy at MDT could cause bl ast to client
10119         cancel_lru_locks osc
10120
10121         stat $DIR/$tdir > /dev/null
10122         can1=$(do_facet $SINGLEMDS \
10123                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10124                awk '/ldlm_cancel/ {print $2}')
10125         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10126                awk '/ldlm_bl_callback/ {print $2}')
10127         test_mkdir -c1 $DIR/$tdir/d1
10128         can2=$(do_facet $SINGLEMDS \
10129                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10130                awk '/ldlm_cancel/ {print $2}')
10131         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10132                awk '/ldlm_bl_callback/ {print $2}')
10133         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10134         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10135         lru_resize_enable mdc
10136         lru_resize_enable osc
10137 }
10138 run_test 120a "Early Lock Cancel: mkdir test"
10139
10140 test_120b() {
10141         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10142         remote_mds_nodsh && skip "remote MDS with nodsh"
10143         test_mkdir $DIR/$tdir
10144         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10145                 skip_env "no early lock cancel on server"
10146
10147         lru_resize_disable mdc
10148         lru_resize_disable osc
10149         cancel_lru_locks mdc
10150         stat $DIR/$tdir > /dev/null
10151         can1=$(do_facet $SINGLEMDS \
10152                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10153                awk '/ldlm_cancel/ {print $2}')
10154         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10155                awk '/ldlm_bl_callback/ {print $2}')
10156         touch $DIR/$tdir/f1
10157         can2=$(do_facet $SINGLEMDS \
10158                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10159                awk '/ldlm_cancel/ {print $2}')
10160         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10161                awk '/ldlm_bl_callback/ {print $2}')
10162         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10163         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10164         lru_resize_enable mdc
10165         lru_resize_enable osc
10166 }
10167 run_test 120b "Early Lock Cancel: create test"
10168
10169 test_120c() {
10170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10171         remote_mds_nodsh && skip "remote MDS with nodsh"
10172         test_mkdir -c1 $DIR/$tdir
10173         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10174                 skip "no early lock cancel on server"
10175
10176         lru_resize_disable mdc
10177         lru_resize_disable osc
10178         test_mkdir -c1 $DIR/$tdir/d1
10179         test_mkdir -c1 $DIR/$tdir/d2
10180         touch $DIR/$tdir/d1/f1
10181         cancel_lru_locks mdc
10182         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
10183         can1=$(do_facet $SINGLEMDS \
10184                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10185                awk '/ldlm_cancel/ {print $2}')
10186         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10187                awk '/ldlm_bl_callback/ {print $2}')
10188         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
10189         can2=$(do_facet $SINGLEMDS \
10190                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10191                awk '/ldlm_cancel/ {print $2}')
10192         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10193                awk '/ldlm_bl_callback/ {print $2}')
10194         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10195         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10196         lru_resize_enable mdc
10197         lru_resize_enable osc
10198 }
10199 run_test 120c "Early Lock Cancel: link test"
10200
10201 test_120d() {
10202         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10203         remote_mds_nodsh && skip "remote MDS with nodsh"
10204         test_mkdir -c1 $DIR/$tdir
10205         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10206                 skip_env "no early lock cancel on server"
10207
10208         lru_resize_disable mdc
10209         lru_resize_disable osc
10210         touch $DIR/$tdir
10211         cancel_lru_locks mdc
10212         stat $DIR/$tdir > /dev/null
10213         can1=$(do_facet $SINGLEMDS \
10214                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10215                awk '/ldlm_cancel/ {print $2}')
10216         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10217                awk '/ldlm_bl_callback/ {print $2}')
10218         chmod a+x $DIR/$tdir
10219         can2=$(do_facet $SINGLEMDS \
10220                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10221                awk '/ldlm_cancel/ {print $2}')
10222         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10223                awk '/ldlm_bl_callback/ {print $2}')
10224         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10225         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10226         lru_resize_enable mdc
10227         lru_resize_enable osc
10228 }
10229 run_test 120d "Early Lock Cancel: setattr test"
10230
10231 test_120e() {
10232         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10233         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10234                 skip_env "no early lock cancel on server"
10235         remote_mds_nodsh && skip "remote MDS with nodsh"
10236
10237         local dlmtrace_set=false
10238
10239         test_mkdir -c1 $DIR/$tdir
10240         lru_resize_disable mdc
10241         lru_resize_disable osc
10242         ! $LCTL get_param debug | grep -q dlmtrace &&
10243                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
10244         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
10245         cancel_lru_locks mdc
10246         cancel_lru_locks osc
10247         dd if=$DIR/$tdir/f1 of=/dev/null
10248         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
10249         # XXX client can not do early lock cancel of OST lock
10250         # during unlink (LU-4206), so cancel osc lock now.
10251         sleep 2
10252         cancel_lru_locks osc
10253         can1=$(do_facet $SINGLEMDS \
10254                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10255                awk '/ldlm_cancel/ {print $2}')
10256         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10257                awk '/ldlm_bl_callback/ {print $2}')
10258         unlink $DIR/$tdir/f1
10259         sleep 5
10260         can2=$(do_facet $SINGLEMDS \
10261                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10262                awk '/ldlm_cancel/ {print $2}')
10263         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10264                awk '/ldlm_bl_callback/ {print $2}')
10265         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
10266                 $LCTL dk $TMP/cancel.debug.txt
10267         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
10268                 $LCTL dk $TMP/blocking.debug.txt
10269         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
10270         lru_resize_enable mdc
10271         lru_resize_enable osc
10272 }
10273 run_test 120e "Early Lock Cancel: unlink test"
10274
10275 test_120f() {
10276         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10277         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10278                 skip_env "no early lock cancel on server"
10279         remote_mds_nodsh && skip "remote MDS with nodsh"
10280
10281         test_mkdir -c1 $DIR/$tdir
10282         lru_resize_disable mdc
10283         lru_resize_disable osc
10284         test_mkdir -c1 $DIR/$tdir/d1
10285         test_mkdir -c1 $DIR/$tdir/d2
10286         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
10287         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
10288         cancel_lru_locks mdc
10289         cancel_lru_locks osc
10290         dd if=$DIR/$tdir/d1/f1 of=/dev/null
10291         dd if=$DIR/$tdir/d2/f2 of=/dev/null
10292         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
10293         # XXX client can not do early lock cancel of OST lock
10294         # during rename (LU-4206), so cancel osc lock now.
10295         sleep 2
10296         cancel_lru_locks osc
10297         can1=$(do_facet $SINGLEMDS \
10298                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10299                awk '/ldlm_cancel/ {print $2}')
10300         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10301                awk '/ldlm_bl_callback/ {print $2}')
10302         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
10303         sleep 5
10304         can2=$(do_facet $SINGLEMDS \
10305                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10306                awk '/ldlm_cancel/ {print $2}')
10307         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10308                awk '/ldlm_bl_callback/ {print $2}')
10309         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
10310         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
10311         lru_resize_enable mdc
10312         lru_resize_enable osc
10313 }
10314 run_test 120f "Early Lock Cancel: rename test"
10315
10316 test_120g() {
10317         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10318         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
10319                 skip_env "no early lock cancel on server"
10320         remote_mds_nodsh && skip "remote MDS with nodsh"
10321
10322         lru_resize_disable mdc
10323         lru_resize_disable osc
10324         count=10000
10325         echo create $count files
10326         test_mkdir $DIR/$tdir
10327         cancel_lru_locks mdc
10328         cancel_lru_locks osc
10329         t0=$(date +%s)
10330
10331         can0=$(do_facet $SINGLEMDS \
10332                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10333                awk '/ldlm_cancel/ {print $2}')
10334         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10335                awk '/ldlm_bl_callback/ {print $2}')
10336         createmany -o $DIR/$tdir/f $count
10337         sync
10338         can1=$(do_facet $SINGLEMDS \
10339                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10340                awk '/ldlm_cancel/ {print $2}')
10341         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10342                awk '/ldlm_bl_callback/ {print $2}')
10343         t1=$(date +%s)
10344         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
10345         echo rm $count files
10346         rm -r $DIR/$tdir
10347         sync
10348         can2=$(do_facet $SINGLEMDS \
10349                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
10350                awk '/ldlm_cancel/ {print $2}')
10351         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
10352                awk '/ldlm_bl_callback/ {print $2}')
10353         t2=$(date +%s)
10354         echo total: $count removes in $((t2-t1))
10355         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
10356         sleep 2
10357         # wait for commitment of removal
10358         lru_resize_enable mdc
10359         lru_resize_enable osc
10360 }
10361 run_test 120g "Early Lock Cancel: performance test"
10362
10363 test_121() { #bug #10589
10364         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10365
10366         rm -rf $DIR/$tfile
10367         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
10368 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
10369         lctl set_param fail_loc=0x310
10370         cancel_lru_locks osc > /dev/null
10371         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
10372         lctl set_param fail_loc=0
10373         [[ $reads -eq $writes ]] ||
10374                 error "read $reads blocks, must be $writes blocks"
10375 }
10376 run_test 121 "read cancel race ========="
10377
10378 test_123a() { # was test 123, statahead(bug 11401)
10379         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10380
10381         SLOWOK=0
10382         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
10383                 log "testing UP system. Performance may be lower than expected."
10384                 SLOWOK=1
10385         fi
10386
10387         rm -rf $DIR/$tdir
10388         test_mkdir $DIR/$tdir
10389         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
10390         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
10391         MULT=10
10392         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
10393                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
10394
10395                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
10396                 lctl set_param -n llite.*.statahead_max 0
10397                 lctl get_param llite.*.statahead_max
10398                 cancel_lru_locks mdc
10399                 cancel_lru_locks osc
10400                 stime=`date +%s`
10401                 time ls -l $DIR/$tdir | wc -l
10402                 etime=`date +%s`
10403                 delta=$((etime - stime))
10404                 log "ls $i files without statahead: $delta sec"
10405                 lctl set_param llite.*.statahead_max=$max
10406
10407                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
10408                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
10409                 cancel_lru_locks mdc
10410                 cancel_lru_locks osc
10411                 stime=`date +%s`
10412                 time ls -l $DIR/$tdir | wc -l
10413                 etime=`date +%s`
10414                 delta_sa=$((etime - stime))
10415                 log "ls $i files with statahead: $delta_sa sec"
10416                 lctl get_param -n llite.*.statahead_stats
10417                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
10418
10419                 [[ $swrong -lt $ewrong ]] &&
10420                         log "statahead was stopped, maybe too many locks held!"
10421                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
10422
10423                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
10424                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
10425                     lctl set_param -n llite.*.statahead_max 0
10426                     lctl get_param llite.*.statahead_max
10427                     cancel_lru_locks mdc
10428                     cancel_lru_locks osc
10429                     stime=`date +%s`
10430                     time ls -l $DIR/$tdir | wc -l
10431                     etime=`date +%s`
10432                     delta=$((etime - stime))
10433                     log "ls $i files again without statahead: $delta sec"
10434                     lctl set_param llite.*.statahead_max=$max
10435                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
10436                         if [  $SLOWOK -eq 0 ]; then
10437                                 error "ls $i files is slower with statahead!"
10438                         else
10439                                 log "ls $i files is slower with statahead!"
10440                         fi
10441                         break
10442                     fi
10443                 fi
10444
10445                 [ $delta -gt 20 ] && break
10446                 [ $delta -gt 8 ] && MULT=$((50 / delta))
10447                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
10448         done
10449         log "ls done"
10450
10451         stime=`date +%s`
10452         rm -r $DIR/$tdir
10453         sync
10454         etime=`date +%s`
10455         delta=$((etime - stime))
10456         log "rm -r $DIR/$tdir/: $delta seconds"
10457         log "rm done"
10458         lctl get_param -n llite.*.statahead_stats
10459 }
10460 run_test 123a "verify statahead work"
10461
10462 test_123b () { # statahead(bug 15027)
10463         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10464
10465         test_mkdir $DIR/$tdir
10466         createmany -o $DIR/$tdir/$tfile-%d 1000
10467
10468         cancel_lru_locks mdc
10469         cancel_lru_locks osc
10470
10471 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
10472         lctl set_param fail_loc=0x80000803
10473         ls -lR $DIR/$tdir > /dev/null
10474         log "ls done"
10475         lctl set_param fail_loc=0x0
10476         lctl get_param -n llite.*.statahead_stats
10477         rm -r $DIR/$tdir
10478         sync
10479
10480 }
10481 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
10482
10483 test_123c() {
10484         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
10485
10486         test_mkdir -i 0 -c 1 $DIR/$tdir.0
10487         test_mkdir -i 1 -c 1 $DIR/$tdir.1
10488         touch $DIR/$tdir.1/{1..3}
10489         mv $DIR/$tdir.1/{1..3} $DIR/$tdir.0
10490
10491         remount_client $MOUNT
10492
10493         $MULTIOP $DIR/$tdir.0 Q
10494
10495         # let statahead to complete
10496         ls -l $DIR/$tdir.0 > /dev/null
10497
10498         testid=$(echo $TESTNAME | tr '_' ' ')
10499         dmesg | tac | sed "/$testid/,$ d" | grep "Can not initialize inode" &&
10500                 error "statahead warning" || true
10501 }
10502 run_test 123c "Can not initialize inode warning on DNE statahead"
10503
10504 test_124a() {
10505         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10506         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10507                 skip_env "no lru resize on server"
10508
10509         local NR=2000
10510
10511         test_mkdir $DIR/$tdir
10512
10513         log "create $NR files at $DIR/$tdir"
10514         createmany -o $DIR/$tdir/f $NR ||
10515                 error "failed to create $NR files in $DIR/$tdir"
10516
10517         cancel_lru_locks mdc
10518         ls -l $DIR/$tdir > /dev/null
10519
10520         local NSDIR=""
10521         local LRU_SIZE=0
10522         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
10523                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
10524                 LRU_SIZE=$($LCTL get_param -n $PARAM)
10525                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
10526                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
10527                         log "NSDIR=$NSDIR"
10528                         log "NS=$(basename $NSDIR)"
10529                         break
10530                 fi
10531         done
10532
10533         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
10534                 skip "Not enough cached locks created!"
10535         fi
10536         log "LRU=$LRU_SIZE"
10537
10538         local SLEEP=30
10539
10540         # We know that lru resize allows one client to hold $LIMIT locks
10541         # for 10h. After that locks begin to be killed by client.
10542         local MAX_HRS=10
10543         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
10544         log "LIMIT=$LIMIT"
10545         if [ $LIMIT -lt $LRU_SIZE ]; then
10546                 skip "Limit is too small $LIMIT"
10547         fi
10548
10549         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10550         # killing locks. Some time was spent for creating locks. This means
10551         # that up to the moment of sleep finish we must have killed some of
10552         # them (10-100 locks). This depends on how fast ther were created.
10553         # Many of them were touched in almost the same moment and thus will
10554         # be killed in groups.
10555         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10556
10557         # Use $LRU_SIZE_B here to take into account real number of locks
10558         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10559         local LRU_SIZE_B=$LRU_SIZE
10560         log "LVF=$LVF"
10561         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10562         log "OLD_LVF=$OLD_LVF"
10563         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10564
10565         # Let's make sure that we really have some margin. Client checks
10566         # cached locks every 10 sec.
10567         SLEEP=$((SLEEP+20))
10568         log "Sleep ${SLEEP} sec"
10569         local SEC=0
10570         while ((SEC<$SLEEP)); do
10571                 echo -n "..."
10572                 sleep 5
10573                 SEC=$((SEC+5))
10574                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10575                 echo -n "$LRU_SIZE"
10576         done
10577         echo ""
10578         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10579         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10580
10581         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10582                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10583                 unlinkmany $DIR/$tdir/f $NR
10584                 return
10585         }
10586
10587         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10588         log "unlink $NR files at $DIR/$tdir"
10589         unlinkmany $DIR/$tdir/f $NR
10590 }
10591 run_test 124a "lru resize ======================================="
10592
10593 get_max_pool_limit()
10594 {
10595         local limit=$($LCTL get_param \
10596                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10597         local max=0
10598         for l in $limit; do
10599                 if [[ $l -gt $max ]]; then
10600                         max=$l
10601                 fi
10602         done
10603         echo $max
10604 }
10605
10606 test_124b() {
10607         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10608         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10609                 skip_env "no lru resize on server"
10610
10611         LIMIT=$(get_max_pool_limit)
10612
10613         NR=$(($(default_lru_size)*20))
10614         if [[ $NR -gt $LIMIT ]]; then
10615                 log "Limit lock number by $LIMIT locks"
10616                 NR=$LIMIT
10617         fi
10618
10619         IFree=$(mdsrate_inodes_available)
10620         if [ $IFree -lt $NR ]; then
10621                 log "Limit lock number by $IFree inodes"
10622                 NR=$IFree
10623         fi
10624
10625         lru_resize_disable mdc
10626         test_mkdir -p $DIR/$tdir/disable_lru_resize
10627
10628         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10629         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10630         cancel_lru_locks mdc
10631         stime=`date +%s`
10632         PID=""
10633         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10634         PID="$PID $!"
10635         sleep 2
10636         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10637         PID="$PID $!"
10638         sleep 2
10639         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10640         PID="$PID $!"
10641         wait $PID
10642         etime=`date +%s`
10643         nolruresize_delta=$((etime-stime))
10644         log "ls -la time: $nolruresize_delta seconds"
10645         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10646         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10647
10648         lru_resize_enable mdc
10649         test_mkdir -p $DIR/$tdir/enable_lru_resize
10650
10651         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10652         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10653         cancel_lru_locks mdc
10654         stime=`date +%s`
10655         PID=""
10656         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10657         PID="$PID $!"
10658         sleep 2
10659         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10660         PID="$PID $!"
10661         sleep 2
10662         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10663         PID="$PID $!"
10664         wait $PID
10665         etime=`date +%s`
10666         lruresize_delta=$((etime-stime))
10667         log "ls -la time: $lruresize_delta seconds"
10668         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10669
10670         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10671                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10672         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10673                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10674         else
10675                 log "lru resize performs the same with no lru resize"
10676         fi
10677         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10678 }
10679 run_test 124b "lru resize (performance test) ======================="
10680
10681 test_124c() {
10682         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10683         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10684                 skip_env "no lru resize on server"
10685
10686         # cache ununsed locks on client
10687         local nr=100
10688         cancel_lru_locks mdc
10689         test_mkdir $DIR/$tdir
10690         createmany -o $DIR/$tdir/f $nr ||
10691                 error "failed to create $nr files in $DIR/$tdir"
10692         ls -l $DIR/$tdir > /dev/null
10693
10694         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10695         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10696         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10697         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10698         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10699
10700         # set lru_max_age to 1 sec
10701         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10702         echo "sleep $((recalc_p * 2)) seconds..."
10703         sleep $((recalc_p * 2))
10704
10705         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10706         # restore lru_max_age
10707         $LCTL set_param -n $nsdir.lru_max_age $max_age
10708         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10709         unlinkmany $DIR/$tdir/f $nr
10710 }
10711 run_test 124c "LRUR cancel very aged locks"
10712
10713 test_124d() {
10714         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10715         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10716                 skip_env "no lru resize on server"
10717
10718         # cache ununsed locks on client
10719         local nr=100
10720
10721         lru_resize_disable mdc
10722         stack_trap "lru_resize_enable mdc" EXIT
10723
10724         cancel_lru_locks mdc
10725
10726         # asynchronous object destroy at MDT could cause bl ast to client
10727         test_mkdir $DIR/$tdir
10728         createmany -o $DIR/$tdir/f $nr ||
10729                 error "failed to create $nr files in $DIR/$tdir"
10730         stack_trap "unlinkmany $DIR/$tdir/f $nr" EXIT
10731
10732         ls -l $DIR/$tdir > /dev/null
10733
10734         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10735         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10736         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10737         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10738
10739         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10740
10741         # set lru_max_age to 1 sec
10742         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10743         stack_trap "$LCTL set_param -n $nsdir.lru_max_age $max_age" EXIT
10744
10745         echo "sleep $((recalc_p * 2)) seconds..."
10746         sleep $((recalc_p * 2))
10747
10748         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10749
10750         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10751 }
10752 run_test 124d "cancel very aged locks if lru-resize diasbaled"
10753
10754 test_125() { # 13358
10755         $LCTL get_param -n llite.*.client_type | grep -q local ||
10756                 skip "must run as local client"
10757         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10758                 skip_env "must have acl enabled"
10759         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10760
10761         test_mkdir $DIR/$tdir
10762         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10763         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10764         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10765 }
10766 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10767
10768 test_126() { # bug 12829/13455
10769         $GSS && skip_env "must run as gss disabled"
10770         $LCTL get_param -n llite.*.client_type | grep -q local ||
10771                 skip "must run as local client"
10772         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10773
10774         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10775         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10776         rm -f $DIR/$tfile
10777         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10778 }
10779 run_test 126 "check that the fsgid provided by the client is taken into account"
10780
10781 test_127a() { # bug 15521
10782         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10783
10784         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10785         $LCTL set_param osc.*.stats=0
10786         FSIZE=$((2048 * 1024))
10787         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10788         cancel_lru_locks osc
10789         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10790
10791         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10792         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10793                 echo "got $COUNT $NAME"
10794                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10795                 eval $NAME=$COUNT || error "Wrong proc format"
10796
10797                 case $NAME in
10798                         read_bytes|write_bytes)
10799                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10800                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10801                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10802                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10803                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10804                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10805                                 error "sumsquare is too small: $SUMSQ"
10806                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10807                                 error "sumsquare is too big: $SUMSQ"
10808                         ;;
10809                         *) ;;
10810                 esac
10811         done < $DIR/${tfile}.tmp
10812
10813         #check that we actually got some stats
10814         [ "$read_bytes" ] || error "Missing read_bytes stats"
10815         [ "$write_bytes" ] || error "Missing write_bytes stats"
10816         [ "$read_bytes" != 0 ] || error "no read done"
10817         [ "$write_bytes" != 0 ] || error "no write done"
10818 }
10819 run_test 127a "verify the client stats are sane"
10820
10821 test_127b() { # bug LU-333
10822         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10823         local name count samp unit min max sum sumsq
10824
10825         $LCTL set_param llite.*.stats=0
10826
10827         # perform 2 reads and writes so MAX is different from SUM.
10828         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10829         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10830         cancel_lru_locks osc
10831         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10832         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10833
10834         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10835         while read name count samp unit min max sum sumsq; do
10836                 echo "got $count $name"
10837                 eval $name=$count || error "Wrong proc format"
10838
10839                 case $name in
10840                 read_bytes)
10841                         [ $count -ne 2 ] && error "count is not 2: $count"
10842                         [ $min -ne $PAGE_SIZE ] &&
10843                                 error "min is not $PAGE_SIZE: $min"
10844                         [ $max -ne $PAGE_SIZE ] &&
10845                                 error "max is incorrect: $max"
10846                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10847                                 error "sum is wrong: $sum"
10848                         ;;
10849                 write_bytes)
10850                         [ $count -ne 2 ] && error "count is not 2: $count"
10851                         [ $min -ne $PAGE_SIZE ] &&
10852                                 error "min is not $PAGE_SIZE: $min"
10853                         [ $max -ne $PAGE_SIZE ] &&
10854                                 error "max is incorrect: $max"
10855                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10856                                 error "sum is wrong: $sum"
10857                         ;;
10858                 *) ;;
10859                 esac
10860         done < $TMP/$tfile.tmp
10861
10862         #check that we actually got some stats
10863         [ "$read_bytes" ] || error "Missing read_bytes stats"
10864         [ "$write_bytes" ] || error "Missing write_bytes stats"
10865         [ "$read_bytes" != 0 ] || error "no read done"
10866         [ "$write_bytes" != 0 ] || error "no write done"
10867
10868         rm -f $TMP/${tfile}.tmp
10869 }
10870 run_test 127b "verify the llite client stats are sane"
10871
10872 test_127c() { # LU-12394
10873         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10874         local size
10875         local bsize
10876         local reads
10877         local writes
10878         local count
10879
10880         $LCTL set_param llite.*.extents_stats=1
10881         stack_trap "$LCTL set_param llite.*.extents_stats=0" EXIT
10882
10883         # Use two stripes so there is enough space in default config
10884         $LFS setstripe -c 2 $DIR/$tfile
10885
10886         # Extent stats start at 0-4K and go in power of two buckets
10887         # LL_HIST_START = 12 --> 2^12 = 4K
10888         # We do 3K*2^i, so 3K, 6K, 12K, 24K... hitting each bucket.
10889         # We do not do buckets larger than 64 MiB to avoid ENOSPC issues on
10890         # small configs
10891         for size in 3K 6K 12K 24K 48K 96K 192K 384K 768K 1536K 3M 6M 12M 24M 48M;
10892                 do
10893                 # Write and read, 2x each, second time at a non-zero offset
10894                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1
10895                 dd if=/dev/zero of=$DIR/$tfile bs=$size count=1 seek=10
10896                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1
10897                 dd if=$DIR/$tfile of=/dev/null bs=$size count=1 seek=10
10898                 rm -f $DIR/$tfile
10899         done
10900
10901         $LCTL get_param llite.*.extents_stats
10902
10903         count=2
10904         for bsize in 4K 8K 16K 32K 64K 128K 256K 512K 1M 2M 4M 8M 16M 32M 64M;
10905                 do
10906                 local bucket=$($LCTL get_param -n llite.*.extents_stats |
10907                                 grep -m 1 $bsize)
10908                 reads=$(echo $bucket | awk '{print $5}')
10909                 writes=$(echo $bucket | awk '{print $9}')
10910                 [ "$reads" -eq $count ] ||
10911                         error "$reads reads in < $bsize bucket, expect $count"
10912                 [ "$writes" -eq $count ] ||
10913                         error "$writes writes in < $bsize bucket, expect $count"
10914         done
10915
10916         # Test mmap write and read
10917         $LCTL set_param llite.*.extents_stats=c
10918         size=512
10919         dd if=/dev/zero of=$DIR/$tfile bs=${size}K count=1
10920         $MULTIOP $DIR/$tfile OSMRUc || error "$MULTIOP $DIR/$tfile failed"
10921         $MULTIOP $DIR/$tfile OSMWUc || error "$MULTIOP $DIR/$tfile failed"
10922
10923         $LCTL get_param llite.*.extents_stats
10924
10925         count=$(((size*1024) / PAGE_SIZE))
10926
10927         bsize=$((2 * PAGE_SIZE / 1024))K
10928
10929         bucket=$($LCTL get_param -n llite.*.extents_stats |
10930                         grep -m 1 $bsize)
10931         reads=$(echo $bucket | awk '{print $5}')
10932         writes=$(echo $bucket | awk '{print $9}')
10933         # mmap writes fault in the page first, creating an additonal read
10934         [ "$reads" -eq $((2 * count)) ] ||
10935                 error "$reads reads in < $bsize bucket, expect $count"
10936         [ "$writes" -eq $count ] ||
10937                 error "$writes writes in < $bsize bucket, expect $count"
10938 }
10939 run_test 127c "test llite extent stats with regular & mmap i/o"
10940
10941 test_128() { # bug 15212
10942         touch $DIR/$tfile
10943         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10944                 find $DIR/$tfile
10945                 find $DIR/$tfile
10946         EOF
10947
10948         result=$(grep error $TMP/$tfile.log)
10949         rm -f $DIR/$tfile $TMP/$tfile.log
10950         [ -z "$result" ] ||
10951                 error "consecutive find's under interactive lfs failed"
10952 }
10953 run_test 128 "interactive lfs for 2 consecutive find's"
10954
10955 set_dir_limits () {
10956         local mntdev
10957         local canondev
10958         local node
10959
10960         local ldproc=/proc/fs/ldiskfs
10961         local facets=$(get_facets MDS)
10962
10963         for facet in ${facets//,/ }; do
10964                 canondev=$(ldiskfs_canon \
10965                            *.$(convert_facet2label $facet).mntdev $facet)
10966                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10967                         ldproc=/sys/fs/ldiskfs
10968                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10969                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10970         done
10971 }
10972
10973 check_mds_dmesg() {
10974         local facets=$(get_facets MDS)
10975         for facet in ${facets//,/ }; do
10976                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10977         done
10978         return 1
10979 }
10980
10981 test_129() {
10982         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10983         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10984                 skip "Need MDS version with at least 2.5.56"
10985         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10986                 skip_env "ldiskfs only test"
10987         fi
10988         remote_mds_nodsh && skip "remote MDS with nodsh"
10989
10990         local ENOSPC=28
10991         local EFBIG=27
10992         local has_warning=false
10993
10994         rm -rf $DIR/$tdir
10995         mkdir -p $DIR/$tdir
10996
10997         # block size of mds1
10998         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10999         set_dir_limits $maxsize $maxsize
11000         local dirsize=$(stat -c%s "$DIR/$tdir")
11001         local nfiles=0
11002         while [[ $dirsize -le $maxsize ]]; do
11003                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
11004                 rc=$?
11005                 if ! $has_warning; then
11006                         check_mds_dmesg '"is approaching"' && has_warning=true
11007                 fi
11008                 # check two errors:
11009                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
11010                 # EFBIG for previous versions included in ldiskfs series
11011                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
11012                         set_dir_limits 0 0
11013                         echo "return code $rc received as expected"
11014
11015                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
11016                                 error_exit "create failed w/o dir size limit"
11017
11018                         check_mds_dmesg '"has reached"' ||
11019                                 error_exit "reached message should be output"
11020
11021                         [ $has_warning = "false" ] &&
11022                                 error_exit "warning message should be output"
11023
11024                         dirsize=$(stat -c%s "$DIR/$tdir")
11025
11026                         [[ $dirsize -ge $maxsize ]] && return 0
11027                         error_exit "current dir size $dirsize, " \
11028                                    "previous limit $maxsize"
11029                 elif [ $rc -ne 0 ]; then
11030                         set_dir_limits 0 0
11031                         error_exit "return $rc received instead of expected " \
11032                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
11033                 fi
11034                 nfiles=$((nfiles + 1))
11035                 dirsize=$(stat -c%s "$DIR/$tdir")
11036         done
11037
11038         set_dir_limits 0 0
11039         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
11040 }
11041 run_test 129 "test directory size limit ========================"
11042
11043 OLDIFS="$IFS"
11044 cleanup_130() {
11045         trap 0
11046         IFS="$OLDIFS"
11047 }
11048
11049 test_130a() {
11050         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11051         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
11052
11053         trap cleanup_130 EXIT RETURN
11054
11055         local fm_file=$DIR/$tfile
11056         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
11057         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
11058                 error "dd failed for $fm_file"
11059
11060         # LU-1795: test filefrag/FIEMAP once, even if unsupported
11061         filefrag -ves $fm_file
11062         RC=$?
11063         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
11064                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11065         [ $RC != 0 ] && error "filefrag $fm_file failed"
11066
11067         filefrag_op=$(filefrag -ve -k $fm_file |
11068                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11069         lun=$($GETSTRIPE -i $fm_file)
11070
11071         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
11072         IFS=$'\n'
11073         tot_len=0
11074         for line in $filefrag_op
11075         do
11076                 frag_lun=`echo $line | cut -d: -f5`
11077                 ext_len=`echo $line | cut -d: -f4`
11078                 if (( $frag_lun != $lun )); then
11079                         cleanup_130
11080                         error "FIEMAP on 1-stripe file($fm_file) failed"
11081                         return
11082                 fi
11083                 (( tot_len += ext_len ))
11084         done
11085
11086         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
11087                 cleanup_130
11088                 error "FIEMAP on 1-stripe file($fm_file) failed;"
11089                 return
11090         fi
11091
11092         cleanup_130
11093
11094         echo "FIEMAP on single striped file succeeded"
11095 }
11096 run_test 130a "FIEMAP (1-stripe file)"
11097
11098 test_130b() {
11099         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
11100
11101         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11102         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
11103
11104         trap cleanup_130 EXIT RETURN
11105
11106         local fm_file=$DIR/$tfile
11107         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
11108                         error "setstripe on $fm_file"
11109         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
11110                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11111
11112         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
11113                 error "dd failed on $fm_file"
11114
11115         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11116         filefrag_op=$(filefrag -ve -k $fm_file |
11117                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11118
11119         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11120                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11121
11122         IFS=$'\n'
11123         tot_len=0
11124         num_luns=1
11125         for line in $filefrag_op
11126         do
11127                 frag_lun=$(echo $line | cut -d: -f5 |
11128                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11129                 ext_len=$(echo $line | cut -d: -f4)
11130                 if (( $frag_lun != $last_lun )); then
11131                         if (( tot_len != 1024 )); then
11132                                 cleanup_130
11133                                 error "FIEMAP on $fm_file failed; returned " \
11134                                 "len $tot_len for OST $last_lun instead of 1024"
11135                                 return
11136                         else
11137                                 (( num_luns += 1 ))
11138                                 tot_len=0
11139                         fi
11140                 fi
11141                 (( tot_len += ext_len ))
11142                 last_lun=$frag_lun
11143         done
11144         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
11145                 cleanup_130
11146                 error "FIEMAP on $fm_file failed; returned wrong number of " \
11147                         "luns or wrong len for OST $last_lun"
11148                 return
11149         fi
11150
11151         cleanup_130
11152
11153         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
11154 }
11155 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
11156
11157 test_130c() {
11158         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11159
11160         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11161         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
11162
11163         trap cleanup_130 EXIT RETURN
11164
11165         local fm_file=$DIR/$tfile
11166         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
11167         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
11168                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11169
11170         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
11171                         error "dd failed on $fm_file"
11172
11173         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11174         filefrag_op=$(filefrag -ve -k $fm_file |
11175                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11176
11177         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11178                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11179
11180         IFS=$'\n'
11181         tot_len=0
11182         num_luns=1
11183         for line in $filefrag_op
11184         do
11185                 frag_lun=$(echo $line | cut -d: -f5 |
11186                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11187                 ext_len=$(echo $line | cut -d: -f4)
11188                 if (( $frag_lun != $last_lun )); then
11189                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
11190                         if (( logical != 512 )); then
11191                                 cleanup_130
11192                                 error "FIEMAP on $fm_file failed; returned " \
11193                                 "logical start for lun $logical instead of 512"
11194                                 return
11195                         fi
11196                         if (( tot_len != 512 )); then
11197                                 cleanup_130
11198                                 error "FIEMAP on $fm_file failed; returned " \
11199                                 "len $tot_len for OST $last_lun instead of 1024"
11200                                 return
11201                         else
11202                                 (( num_luns += 1 ))
11203                                 tot_len=0
11204                         fi
11205                 fi
11206                 (( tot_len += ext_len ))
11207                 last_lun=$frag_lun
11208         done
11209         if (( num_luns != 2 || tot_len != 512 )); then
11210                 cleanup_130
11211                 error "FIEMAP on $fm_file failed; returned wrong number of " \
11212                         "luns or wrong len for OST $last_lun"
11213                 return
11214         fi
11215
11216         cleanup_130
11217
11218         echo "FIEMAP on 2-stripe file with hole succeeded"
11219 }
11220 run_test 130c "FIEMAP (2-stripe file with hole)"
11221
11222 test_130d() {
11223         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
11224
11225         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11226         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
11227
11228         trap cleanup_130 EXIT RETURN
11229
11230         local fm_file=$DIR/$tfile
11231         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
11232                         error "setstripe on $fm_file"
11233         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
11234                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11235
11236         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
11237         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
11238                 error "dd failed on $fm_file"
11239
11240         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11241         filefrag_op=$(filefrag -ve -k $fm_file |
11242                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11243
11244         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11245                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11246
11247         IFS=$'\n'
11248         tot_len=0
11249         num_luns=1
11250         for line in $filefrag_op
11251         do
11252                 frag_lun=$(echo $line | cut -d: -f5 |
11253                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11254                 ext_len=$(echo $line | cut -d: -f4)
11255                 if (( $frag_lun != $last_lun )); then
11256                         if (( tot_len != 1024 )); then
11257                                 cleanup_130
11258                                 error "FIEMAP on $fm_file failed; returned " \
11259                                 "len $tot_len for OST $last_lun instead of 1024"
11260                                 return
11261                         else
11262                                 (( num_luns += 1 ))
11263                                 tot_len=0
11264                         fi
11265                 fi
11266                 (( tot_len += ext_len ))
11267                 last_lun=$frag_lun
11268         done
11269         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
11270                 cleanup_130
11271                 error "FIEMAP on $fm_file failed; returned wrong number of " \
11272                         "luns or wrong len for OST $last_lun"
11273                 return
11274         fi
11275
11276         cleanup_130
11277
11278         echo "FIEMAP on N-stripe file succeeded"
11279 }
11280 run_test 130d "FIEMAP (N-stripe file)"
11281
11282 test_130e() {
11283         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
11284
11285         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11286         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
11287
11288         trap cleanup_130 EXIT RETURN
11289
11290         local fm_file=$DIR/$tfile
11291         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
11292         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
11293                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
11294
11295         NUM_BLKS=512
11296         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
11297         for ((i = 0; i < $NUM_BLKS; i++))
11298         do
11299                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
11300         done
11301
11302         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11303         filefrag_op=$(filefrag -ve -k $fm_file |
11304                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
11305
11306         last_lun=$(echo $filefrag_op | cut -d: -f5 |
11307                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11308
11309         IFS=$'\n'
11310         tot_len=0
11311         num_luns=1
11312         for line in $filefrag_op
11313         do
11314                 frag_lun=$(echo $line | cut -d: -f5 |
11315                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
11316                 ext_len=$(echo $line | cut -d: -f4)
11317                 if (( $frag_lun != $last_lun )); then
11318                         if (( tot_len != $EXPECTED_LEN )); then
11319                                 cleanup_130
11320                                 error "FIEMAP on $fm_file failed; returned " \
11321                                 "len $tot_len for OST $last_lun instead " \
11322                                 "of $EXPECTED_LEN"
11323                                 return
11324                         else
11325                                 (( num_luns += 1 ))
11326                                 tot_len=0
11327                         fi
11328                 fi
11329                 (( tot_len += ext_len ))
11330                 last_lun=$frag_lun
11331         done
11332         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
11333                 cleanup_130
11334                 error "FIEMAP on $fm_file failed; returned wrong number " \
11335                         "of luns or wrong len for OST $last_lun"
11336                 return
11337         fi
11338
11339         cleanup_130
11340
11341         echo "FIEMAP with continuation calls succeeded"
11342 }
11343 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
11344
11345 test_130f() {
11346         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
11347         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
11348
11349         local fm_file=$DIR/$tfile
11350         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
11351                 error "multiop create with lov_delay_create on $fm_file"
11352
11353         filefrag -ves $fm_file || error "filefrag $fm_file failed"
11354         filefrag_extents=$(filefrag -vek $fm_file |
11355                            awk '/extents? found/ { print $2 }')
11356         if [[ "$filefrag_extents" != "0" ]]; then
11357                 error "FIEMAP on $fm_file failed; " \
11358                       "returned $filefrag_extents expected 0"
11359         fi
11360
11361         rm -f $fm_file
11362 }
11363 run_test 130f "FIEMAP (unstriped file)"
11364
11365 # Test for writev/readv
11366 test_131a() {
11367         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
11368                 error "writev test failed"
11369         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
11370                 error "readv failed"
11371         rm -f $DIR/$tfile
11372 }
11373 run_test 131a "test iov's crossing stripe boundary for writev/readv"
11374
11375 test_131b() {
11376         local fsize=$((524288 + 1048576 + 1572864))
11377         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
11378                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
11379                         error "append writev test failed"
11380
11381         ((fsize += 1572864 + 1048576))
11382         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
11383                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
11384                         error "append writev test failed"
11385         rm -f $DIR/$tfile
11386 }
11387 run_test 131b "test append writev"
11388
11389 test_131c() {
11390         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
11391         error "NOT PASS"
11392 }
11393 run_test 131c "test read/write on file w/o objects"
11394
11395 test_131d() {
11396         rwv -f $DIR/$tfile -w -n 1 1572864
11397         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
11398         if [ "$NOB" != 1572864 ]; then
11399                 error "Short read filed: read $NOB bytes instead of 1572864"
11400         fi
11401         rm -f $DIR/$tfile
11402 }
11403 run_test 131d "test short read"
11404
11405 test_131e() {
11406         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
11407         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
11408         error "read hitting hole failed"
11409         rm -f $DIR/$tfile
11410 }
11411 run_test 131e "test read hitting hole"
11412
11413 check_stats() {
11414         local facet=$1
11415         local op=$2
11416         local want=${3:-0}
11417         local res
11418
11419         case $facet in
11420         mds*) res=$(do_facet $facet \
11421                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
11422                  ;;
11423         ost*) res=$(do_facet $facet \
11424                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
11425                  ;;
11426         *) error "Wrong facet '$facet'" ;;
11427         esac
11428         [ "$res" ] || error "The counter for $op on $facet was not incremented"
11429         # if the argument $3 is zero, it means any stat increment is ok.
11430         if [[ $want -gt 0 ]]; then
11431                 local count=$(echo $res | awk '{ print $2 }')
11432                 [[ $count -ne $want ]] &&
11433                         error "The $op counter on $facet is $count, not $want"
11434         fi
11435 }
11436
11437 test_133a() {
11438         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11439         remote_ost_nodsh && skip "remote OST with nodsh"
11440         remote_mds_nodsh && skip "remote MDS with nodsh"
11441         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
11442                 skip_env "MDS doesn't support rename stats"
11443
11444         local testdir=$DIR/${tdir}/stats_testdir
11445
11446         mkdir -p $DIR/${tdir}
11447
11448         # clear stats.
11449         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11450         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
11451
11452         # verify mdt stats first.
11453         mkdir ${testdir} || error "mkdir failed"
11454         check_stats $SINGLEMDS "mkdir" 1
11455         touch ${testdir}/${tfile} || error "touch failed"
11456         check_stats $SINGLEMDS "open" 1
11457         check_stats $SINGLEMDS "close" 1
11458         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
11459                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
11460                 check_stats $SINGLEMDS "mknod" 2
11461         }
11462         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
11463         check_stats $SINGLEMDS "unlink" 1
11464         rm -f ${testdir}/${tfile} || error "file remove failed"
11465         check_stats $SINGLEMDS "unlink" 2
11466
11467         # remove working dir and check mdt stats again.
11468         rmdir ${testdir} || error "rmdir failed"
11469         check_stats $SINGLEMDS "rmdir" 1
11470
11471         local testdir1=$DIR/${tdir}/stats_testdir1
11472         mkdir -p ${testdir}
11473         mkdir -p ${testdir1}
11474         touch ${testdir1}/test1
11475         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
11476         check_stats $SINGLEMDS "crossdir_rename" 1
11477
11478         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
11479         check_stats $SINGLEMDS "samedir_rename" 1
11480
11481         rm -rf $DIR/${tdir}
11482 }
11483 run_test 133a "Verifying MDT stats ========================================"
11484
11485 test_133b() {
11486         local res
11487
11488         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11489         remote_ost_nodsh && skip "remote OST with nodsh"
11490         remote_mds_nodsh && skip "remote MDS with nodsh"
11491
11492         local testdir=$DIR/${tdir}/stats_testdir
11493
11494         mkdir -p ${testdir} || error "mkdir failed"
11495         touch ${testdir}/${tfile} || error "touch failed"
11496         cancel_lru_locks mdc
11497
11498         # clear stats.
11499         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11500         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
11501
11502         # extra mdt stats verification.
11503         chmod 444 ${testdir}/${tfile} || error "chmod failed"
11504         check_stats $SINGLEMDS "setattr" 1
11505         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11506         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
11507         then            # LU-1740
11508                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
11509                 check_stats $SINGLEMDS "getattr" 1
11510         fi
11511         rm -rf $DIR/${tdir}
11512
11513         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
11514         # so the check below is not reliable
11515         [ $MDSCOUNT -eq 1 ] || return 0
11516
11517         # Sleep to avoid a cached response.
11518         #define OBD_STATFS_CACHE_SECONDS 1
11519         sleep 2
11520         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11521         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
11522         $LFS df || error "lfs failed"
11523         check_stats $SINGLEMDS "statfs" 1
11524
11525         # check aggregated statfs (LU-10018)
11526         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
11527                 return 0
11528         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
11529                 return 0
11530         sleep 2
11531         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11532         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
11533         df $DIR
11534         check_stats $SINGLEMDS "statfs" 1
11535
11536         # We want to check that the client didn't send OST_STATFS to
11537         # ost1 but the MDT also uses OST_STATFS for precreate. So some
11538         # extra care is needed here.
11539         if remote_mds; then
11540                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
11541                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
11542
11543                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
11544                 [ "$res" ] && error "OST got STATFS"
11545         fi
11546
11547         return 0
11548 }
11549 run_test 133b "Verifying extra MDT stats =================================="
11550
11551 test_133c() {
11552         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11553         remote_ost_nodsh && skip "remote OST with nodsh"
11554         remote_mds_nodsh && skip "remote MDS with nodsh"
11555
11556         local testdir=$DIR/$tdir/stats_testdir
11557
11558         test_mkdir -p $testdir
11559
11560         # verify obdfilter stats.
11561         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
11562         sync
11563         cancel_lru_locks osc
11564         wait_delete_completed
11565
11566         # clear stats.
11567         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11568         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
11569
11570         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
11571                 error "dd failed"
11572         sync
11573         cancel_lru_locks osc
11574         check_stats ost1 "write" 1
11575
11576         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
11577         check_stats ost1 "read" 1
11578
11579         > $testdir/$tfile || error "truncate failed"
11580         check_stats ost1 "punch" 1
11581
11582         rm -f $testdir/$tfile || error "file remove failed"
11583         wait_delete_completed
11584         check_stats ost1 "destroy" 1
11585
11586         rm -rf $DIR/$tdir
11587 }
11588 run_test 133c "Verifying OST stats ========================================"
11589
11590 order_2() {
11591         local value=$1
11592         local orig=$value
11593         local order=1
11594
11595         while [ $value -ge 2 ]; do
11596                 order=$((order*2))
11597                 value=$((value/2))
11598         done
11599
11600         if [ $orig -gt $order ]; then
11601                 order=$((order*2))
11602         fi
11603         echo $order
11604 }
11605
11606 size_in_KMGT() {
11607     local value=$1
11608     local size=('K' 'M' 'G' 'T');
11609     local i=0
11610     local size_string=$value
11611
11612     while [ $value -ge 1024 ]; do
11613         if [ $i -gt 3 ]; then
11614             #T is the biggest unit we get here, if that is bigger,
11615             #just return XXXT
11616             size_string=${value}T
11617             break
11618         fi
11619         value=$((value >> 10))
11620         if [ $value -lt 1024 ]; then
11621             size_string=${value}${size[$i]}
11622             break
11623         fi
11624         i=$((i + 1))
11625     done
11626
11627     echo $size_string
11628 }
11629
11630 get_rename_size() {
11631         local size=$1
11632         local context=${2:-.}
11633         local sample=$(do_facet $SINGLEMDS $LCTL \
11634                 get_param mdt.$FSNAME-MDT0000.rename_stats |
11635                 grep -A1 $context |
11636                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
11637         echo $sample
11638 }
11639
11640 test_133d() {
11641         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11642         remote_ost_nodsh && skip "remote OST with nodsh"
11643         remote_mds_nodsh && skip "remote MDS with nodsh"
11644         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
11645                 skip_env "MDS doesn't support rename stats"
11646
11647         local testdir1=$DIR/${tdir}/stats_testdir1
11648         local testdir2=$DIR/${tdir}/stats_testdir2
11649         mkdir -p $DIR/${tdir}
11650
11651         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11652
11653         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
11654         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
11655
11656         createmany -o $testdir1/test 512 || error "createmany failed"
11657
11658         # check samedir rename size
11659         mv ${testdir1}/test0 ${testdir1}/test_0
11660
11661         local testdir1_size=$(ls -l $DIR/${tdir} |
11662                 awk '/stats_testdir1/ {print $5}')
11663         local testdir2_size=$(ls -l $DIR/${tdir} |
11664                 awk '/stats_testdir2/ {print $5}')
11665
11666         testdir1_size=$(order_2 $testdir1_size)
11667         testdir2_size=$(order_2 $testdir2_size)
11668
11669         testdir1_size=$(size_in_KMGT $testdir1_size)
11670         testdir2_size=$(size_in_KMGT $testdir2_size)
11671
11672         echo "source rename dir size: ${testdir1_size}"
11673         echo "target rename dir size: ${testdir2_size}"
11674
11675         local cmd="do_facet $SINGLEMDS $LCTL "
11676         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11677
11678         eval $cmd || error "$cmd failed"
11679         local samedir=$($cmd | grep 'same_dir')
11680         local same_sample=$(get_rename_size $testdir1_size)
11681         [ -z "$samedir" ] && error "samedir_rename_size count error"
11682         [[ $same_sample -eq 1 ]] ||
11683                 error "samedir_rename_size error $same_sample"
11684         echo "Check same dir rename stats success"
11685
11686         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11687
11688         # check crossdir rename size
11689         mv ${testdir1}/test_0 ${testdir2}/test_0
11690
11691         testdir1_size=$(ls -l $DIR/${tdir} |
11692                 awk '/stats_testdir1/ {print $5}')
11693         testdir2_size=$(ls -l $DIR/${tdir} |
11694                 awk '/stats_testdir2/ {print $5}')
11695
11696         testdir1_size=$(order_2 $testdir1_size)
11697         testdir2_size=$(order_2 $testdir2_size)
11698
11699         testdir1_size=$(size_in_KMGT $testdir1_size)
11700         testdir2_size=$(size_in_KMGT $testdir2_size)
11701
11702         echo "source rename dir size: ${testdir1_size}"
11703         echo "target rename dir size: ${testdir2_size}"
11704
11705         eval $cmd || error "$cmd failed"
11706         local crossdir=$($cmd | grep 'crossdir')
11707         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11708         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11709         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11710         [[ $src_sample -eq 1 ]] ||
11711                 error "crossdir_rename_size error $src_sample"
11712         [[ $tgt_sample -eq 1 ]] ||
11713                 error "crossdir_rename_size error $tgt_sample"
11714         echo "Check cross dir rename stats success"
11715         rm -rf $DIR/${tdir}
11716 }
11717 run_test 133d "Verifying rename_stats ========================================"
11718
11719 test_133e() {
11720         remote_mds_nodsh && skip "remote MDS with nodsh"
11721         remote_ost_nodsh && skip "remote OST with nodsh"
11722         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11723
11724         local testdir=$DIR/${tdir}/stats_testdir
11725         local ctr f0 f1 bs=32768 count=42 sum
11726
11727         mkdir -p ${testdir} || error "mkdir failed"
11728
11729         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
11730
11731         for ctr in {write,read}_bytes; do
11732                 sync
11733                 cancel_lru_locks osc
11734
11735                 do_facet ost1 $LCTL set_param -n \
11736                         "obdfilter.*.exports.clear=clear"
11737
11738                 if [ $ctr = write_bytes ]; then
11739                         f0=/dev/zero
11740                         f1=${testdir}/${tfile}
11741                 else
11742                         f0=${testdir}/${tfile}
11743                         f1=/dev/null
11744                 fi
11745
11746                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11747                         error "dd failed"
11748                 sync
11749                 cancel_lru_locks osc
11750
11751                 sum=$(do_facet ost1 $LCTL get_param \
11752                         "obdfilter.*.exports.*.stats" |
11753                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11754                                 $1 == ctr { sum += $7 }
11755                                 END { printf("%0.0f", sum) }')
11756
11757                 if ((sum != bs * count)); then
11758                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11759                 fi
11760         done
11761
11762         rm -rf $DIR/${tdir}
11763 }
11764 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11765
11766 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11767
11768 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11769 # not honor the -ignore_readdir_race option correctly. So we call
11770 # error_ignore() rather than error() in these cases. See LU-11152.
11771 error_133() {
11772         if (find --version; do_facet mds1 find --version) |
11773                 grep -q '\b4\.5\.1[1-4]\b'; then
11774                 error_ignore LU-11152 "$@"
11775         else
11776                 error "$@"
11777         fi
11778 }
11779
11780 test_133f() {
11781         # First without trusting modes.
11782         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11783         echo "proc_dirs='$proc_dirs'"
11784         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11785         find $proc_dirs -exec cat '{}' \; &> /dev/null
11786
11787         # Second verifying readability.
11788         $LCTL get_param -R '*' &> /dev/null
11789
11790         # Verifing writability with badarea_io.
11791         find $proc_dirs \
11792                 -ignore_readdir_race \
11793                 -type f \
11794                 -not -name force_lbug \
11795                 -not -name changelog_mask \
11796                 -exec badarea_io '{}' \; ||
11797                         error_133 "find $proc_dirs failed"
11798 }
11799 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11800
11801 test_133g() {
11802         remote_mds_nodsh && skip "remote MDS with nodsh"
11803         remote_ost_nodsh && skip "remote OST with nodsh"
11804
11805         # eventually, this can also be replaced with "lctl get_param -R",
11806         # but not until that option is always available on the server
11807         local facet
11808         for facet in mds1 ost1; do
11809                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11810                         skip_noexit "Too old lustre on $facet"
11811                 local facet_proc_dirs=$(do_facet $facet \
11812                                         \\\ls -d $proc_regexp 2>/dev/null)
11813                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11814                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11815                 do_facet $facet find $facet_proc_dirs \
11816                         ! -name req_history \
11817                         -exec cat '{}' \\\; &> /dev/null
11818
11819                 do_facet $facet find $facet_proc_dirs \
11820                         ! -name req_history \
11821                         -type f \
11822                         -exec cat '{}' \\\; &> /dev/null ||
11823                                 error "proc file read failed"
11824
11825                 do_facet $facet find $facet_proc_dirs \
11826                         -ignore_readdir_race \
11827                         -type f \
11828                         -not -name force_lbug \
11829                         -not -name changelog_mask \
11830                         -exec badarea_io '{}' \\\; ||
11831                                 error_133 "$facet find $facet_proc_dirs failed"
11832         done
11833
11834         # remount the FS in case writes/reads /proc break the FS
11835         cleanup || error "failed to unmount"
11836         setup || error "failed to setup"
11837         true
11838 }
11839 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11840
11841 test_133h() {
11842         remote_mds_nodsh && skip "remote MDS with nodsh"
11843         remote_ost_nodsh && skip "remote OST with nodsh"
11844         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11845                 skip "Need MDS version at least 2.9.54"
11846
11847         local facet
11848
11849         for facet in client mds1 ost1; do
11850                 local facet_proc_dirs=$(do_facet $facet \
11851                                         \\\ls -d $proc_regexp 2> /dev/null)
11852                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11853                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11854                 # Get the list of files that are missing the terminating newline
11855                 local missing=($(do_facet $facet \
11856                         find ${facet_proc_dirs} -type f \|              \
11857                                 while read F\; do                       \
11858                                         awk -v FS='\v' -v RS='\v\v'     \
11859                                         "'END { if(NR>0 &&              \
11860                                         \\\$NF !~ /.*\\\n\$/)           \
11861                                                 print FILENAME}'"       \
11862                                         '\$F'\;                         \
11863                                 done 2>/dev/null))
11864                 [ ${#missing[*]} -eq 0 ] ||
11865                         error "files do not end with newline: ${missing[*]}"
11866         done
11867 }
11868 run_test 133h "Proc files should end with newlines"
11869
11870 test_134a() {
11871         remote_mds_nodsh && skip "remote MDS with nodsh"
11872         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11873                 skip "Need MDS version at least 2.7.54"
11874
11875         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11876         cancel_lru_locks mdc
11877
11878         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11879         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11880         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11881
11882         local nr=1000
11883         createmany -o $DIR/$tdir/f $nr ||
11884                 error "failed to create $nr files in $DIR/$tdir"
11885         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11886
11887         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11888         do_facet mds1 $LCTL set_param fail_loc=0x327
11889         do_facet mds1 $LCTL set_param fail_val=500
11890         touch $DIR/$tdir/m
11891
11892         echo "sleep 10 seconds ..."
11893         sleep 10
11894         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11895
11896         do_facet mds1 $LCTL set_param fail_loc=0
11897         do_facet mds1 $LCTL set_param fail_val=0
11898         [ $lck_cnt -lt $unused ] ||
11899                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11900
11901         rm $DIR/$tdir/m
11902         unlinkmany $DIR/$tdir/f $nr
11903 }
11904 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11905
11906 test_134b() {
11907         remote_mds_nodsh && skip "remote MDS with nodsh"
11908         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11909                 skip "Need MDS version at least 2.7.54"
11910
11911         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11912         cancel_lru_locks mdc
11913
11914         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11915                         ldlm.lock_reclaim_threshold_mb)
11916         # disable reclaim temporarily
11917         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11918
11919         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11920         do_facet mds1 $LCTL set_param fail_loc=0x328
11921         do_facet mds1 $LCTL set_param fail_val=500
11922
11923         $LCTL set_param debug=+trace
11924
11925         local nr=600
11926         createmany -o $DIR/$tdir/f $nr &
11927         local create_pid=$!
11928
11929         echo "Sleep $TIMEOUT seconds ..."
11930         sleep $TIMEOUT
11931         if ! ps -p $create_pid  > /dev/null 2>&1; then
11932                 do_facet mds1 $LCTL set_param fail_loc=0
11933                 do_facet mds1 $LCTL set_param fail_val=0
11934                 do_facet mds1 $LCTL set_param \
11935                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11936                 error "createmany finished incorrectly!"
11937         fi
11938         do_facet mds1 $LCTL set_param fail_loc=0
11939         do_facet mds1 $LCTL set_param fail_val=0
11940         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11941         wait $create_pid || return 1
11942
11943         unlinkmany $DIR/$tdir/f $nr
11944 }
11945 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11946
11947 test_140() { #bug-17379
11948         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11949
11950         test_mkdir $DIR/$tdir
11951         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11952         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11953
11954         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11955         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11956         local i=0
11957         while i=$((i + 1)); do
11958                 test_mkdir $i
11959                 cd $i || error "Changing to $i"
11960                 ln -s ../stat stat || error "Creating stat symlink"
11961                 # Read the symlink until ELOOP present,
11962                 # not LBUGing the system is considered success,
11963                 # we didn't overrun the stack.
11964                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11965                 if [ $ret -ne 0 ]; then
11966                         if [ $ret -eq 40 ]; then
11967                                 break  # -ELOOP
11968                         else
11969                                 error "Open stat symlink"
11970                                         return
11971                         fi
11972                 fi
11973         done
11974         i=$((i - 1))
11975         echo "The symlink depth = $i"
11976         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11977                                         error "Invalid symlink depth"
11978
11979         # Test recursive symlink
11980         ln -s symlink_self symlink_self
11981         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11982         echo "open symlink_self returns $ret"
11983         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11984 }
11985 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11986
11987 test_150() {
11988         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11989
11990         local TF="$TMP/$tfile"
11991
11992         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11993         cp $TF $DIR/$tfile
11994         cancel_lru_locks $OSC
11995         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11996         remount_client $MOUNT
11997         df -P $MOUNT
11998         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11999
12000         $TRUNCATE $TF 6000
12001         $TRUNCATE $DIR/$tfile 6000
12002         cancel_lru_locks $OSC
12003         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
12004
12005         echo "12345" >>$TF
12006         echo "12345" >>$DIR/$tfile
12007         cancel_lru_locks $OSC
12008         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
12009
12010         echo "12345" >>$TF
12011         echo "12345" >>$DIR/$tfile
12012         cancel_lru_locks $OSC
12013         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
12014
12015         rm -f $TF
12016         true
12017 }
12018 run_test 150 "truncate/append tests"
12019
12020 #LU-2902 roc_hit was not able to read all values from lproc
12021 function roc_hit_init() {
12022         local list=$(comma_list $(osts_nodes))
12023         local dir=$DIR/$tdir-check
12024         local file=$dir/$tfile
12025         local BEFORE
12026         local AFTER
12027         local idx
12028
12029         test_mkdir $dir
12030         #use setstripe to do a write to every ost
12031         for i in $(seq 0 $((OSTCOUNT-1))); do
12032                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
12033                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
12034                 idx=$(printf %04x $i)
12035                 BEFORE=$(get_osd_param $list *OST*$idx stats |
12036                         awk '$1 == "cache_access" {sum += $7}
12037                                 END { printf("%0.0f", sum) }')
12038
12039                 cancel_lru_locks osc
12040                 cat $file >/dev/null
12041
12042                 AFTER=$(get_osd_param $list *OST*$idx stats |
12043                         awk '$1 == "cache_access" {sum += $7}
12044                                 END { printf("%0.0f", sum) }')
12045
12046                 echo BEFORE:$BEFORE AFTER:$AFTER
12047                 if ! let "AFTER - BEFORE == 4"; then
12048                         rm -rf $dir
12049                         error "roc_hit is not safe to use"
12050                 fi
12051                 rm $file
12052         done
12053
12054         rm -rf $dir
12055 }
12056
12057 function roc_hit() {
12058         local list=$(comma_list $(osts_nodes))
12059         echo $(get_osd_param $list '' stats |
12060                 awk '$1 == "cache_hit" {sum += $7}
12061                         END { printf("%0.0f", sum) }')
12062 }
12063
12064 function set_cache() {
12065         local on=1
12066
12067         if [ "$2" == "off" ]; then
12068                 on=0;
12069         fi
12070         local list=$(comma_list $(osts_nodes))
12071         set_osd_param $list '' $1_cache_enable $on
12072
12073         cancel_lru_locks osc
12074 }
12075
12076 test_151() {
12077         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12078         remote_ost_nodsh && skip "remote OST with nodsh"
12079
12080         local CPAGES=3
12081         local list=$(comma_list $(osts_nodes))
12082
12083         # check whether obdfilter is cache capable at all
12084         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
12085                 skip "not cache-capable obdfilter"
12086         fi
12087
12088         # check cache is enabled on all obdfilters
12089         if get_osd_param $list '' read_cache_enable | grep 0; then
12090                 skip "oss cache is disabled"
12091         fi
12092
12093         set_osd_param $list '' writethrough_cache_enable 1
12094
12095         # check write cache is enabled on all obdfilters
12096         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
12097                 skip "oss write cache is NOT enabled"
12098         fi
12099
12100         roc_hit_init
12101
12102         #define OBD_FAIL_OBD_NO_LRU  0x609
12103         do_nodes $list $LCTL set_param fail_loc=0x609
12104
12105         # pages should be in the case right after write
12106         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
12107                 error "dd failed"
12108
12109         local BEFORE=$(roc_hit)
12110         cancel_lru_locks osc
12111         cat $DIR/$tfile >/dev/null
12112         local AFTER=$(roc_hit)
12113
12114         do_nodes $list $LCTL set_param fail_loc=0
12115
12116         if ! let "AFTER - BEFORE == CPAGES"; then
12117                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12118         fi
12119
12120         # the following read invalidates the cache
12121         cancel_lru_locks osc
12122         set_osd_param $list '' read_cache_enable 0
12123         cat $DIR/$tfile >/dev/null
12124
12125         # now data shouldn't be found in the cache
12126         BEFORE=$(roc_hit)
12127         cancel_lru_locks osc
12128         cat $DIR/$tfile >/dev/null
12129         AFTER=$(roc_hit)
12130         if let "AFTER - BEFORE != 0"; then
12131                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12132         fi
12133
12134         set_osd_param $list '' read_cache_enable 1
12135         rm -f $DIR/$tfile
12136 }
12137 run_test 151 "test cache on oss and controls ==============================="
12138
12139 test_152() {
12140         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12141
12142         local TF="$TMP/$tfile"
12143
12144         # simulate ENOMEM during write
12145 #define OBD_FAIL_OST_NOMEM      0x226
12146         lctl set_param fail_loc=0x80000226
12147         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
12148         cp $TF $DIR/$tfile
12149         sync || error "sync failed"
12150         lctl set_param fail_loc=0
12151
12152         # discard client's cache
12153         cancel_lru_locks osc
12154
12155         # simulate ENOMEM during read
12156         lctl set_param fail_loc=0x80000226
12157         cmp $TF $DIR/$tfile || error "cmp failed"
12158         lctl set_param fail_loc=0
12159
12160         rm -f $TF
12161 }
12162 run_test 152 "test read/write with enomem ============================"
12163
12164 test_153() {
12165         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
12166 }
12167 run_test 153 "test if fdatasync does not crash ======================="
12168
12169 dot_lustre_fid_permission_check() {
12170         local fid=$1
12171         local ffid=$MOUNT/.lustre/fid/$fid
12172         local test_dir=$2
12173
12174         echo "stat fid $fid"
12175         stat $ffid > /dev/null || error "stat $ffid failed."
12176         echo "touch fid $fid"
12177         touch $ffid || error "touch $ffid failed."
12178         echo "write to fid $fid"
12179         cat /etc/hosts > $ffid || error "write $ffid failed."
12180         echo "read fid $fid"
12181         diff /etc/hosts $ffid || error "read $ffid failed."
12182         echo "append write to fid $fid"
12183         cat /etc/hosts >> $ffid || error "append write $ffid failed."
12184         echo "rename fid $fid"
12185         mv $ffid $test_dir/$tfile.1 &&
12186                 error "rename $ffid to $tfile.1 should fail."
12187         touch $test_dir/$tfile.1
12188         mv $test_dir/$tfile.1 $ffid &&
12189                 error "rename $tfile.1 to $ffid should fail."
12190         rm -f $test_dir/$tfile.1
12191         echo "truncate fid $fid"
12192         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
12193         echo "link fid $fid"
12194         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
12195         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
12196                 echo "setfacl fid $fid"
12197                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
12198                 echo "getfacl fid $fid"
12199                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
12200         fi
12201         echo "unlink fid $fid"
12202         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
12203         echo "mknod fid $fid"
12204         mknod $ffid c 1 3 && error "mknod $ffid should fail."
12205
12206         fid=[0xf00000400:0x1:0x0]
12207         ffid=$MOUNT/.lustre/fid/$fid
12208
12209         echo "stat non-exist fid $fid"
12210         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
12211         echo "write to non-exist fid $fid"
12212         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
12213         echo "link new fid $fid"
12214         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
12215
12216         mkdir -p $test_dir/$tdir
12217         touch $test_dir/$tdir/$tfile
12218         fid=$($LFS path2fid $test_dir/$tdir)
12219         rc=$?
12220         [ $rc -ne 0 ] &&
12221                 error "error: could not get fid for $test_dir/$dir/$tfile."
12222
12223         ffid=$MOUNT/.lustre/fid/$fid
12224
12225         echo "ls $fid"
12226         ls $ffid > /dev/null || error "ls $ffid failed."
12227         echo "touch $fid/$tfile.1"
12228         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
12229
12230         echo "touch $MOUNT/.lustre/fid/$tfile"
12231         touch $MOUNT/.lustre/fid/$tfile && \
12232                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
12233
12234         echo "setxattr to $MOUNT/.lustre/fid"
12235         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
12236
12237         echo "listxattr for $MOUNT/.lustre/fid"
12238         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
12239
12240         echo "delxattr from $MOUNT/.lustre/fid"
12241         setfattr -x trusted.name1 $MOUNT/.lustre/fid
12242
12243         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
12244         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
12245                 error "touch invalid fid should fail."
12246
12247         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
12248         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
12249                 error "touch non-normal fid should fail."
12250
12251         echo "rename $tdir to $MOUNT/.lustre/fid"
12252         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
12253                 error "rename to $MOUNT/.lustre/fid should fail."
12254
12255         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
12256         then            # LU-3547
12257                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
12258                 local new_obf_mode=777
12259
12260                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
12261                 chmod $new_obf_mode $DIR/.lustre/fid ||
12262                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
12263
12264                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
12265                 [ $obf_mode -eq $new_obf_mode ] ||
12266                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
12267
12268                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
12269                 chmod $old_obf_mode $DIR/.lustre/fid ||
12270                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
12271         fi
12272
12273         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
12274         fid=$($LFS path2fid $test_dir/$tfile-2)
12275
12276         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
12277         then # LU-5424
12278                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
12279                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
12280                         error "create lov data thru .lustre failed"
12281         fi
12282         echo "cp /etc/passwd $test_dir/$tfile-2"
12283         cp /etc/passwd $test_dir/$tfile-2 ||
12284                 error "copy to $test_dir/$tfile-2 failed."
12285         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
12286         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
12287                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
12288
12289         rm -rf $test_dir/tfile.lnk
12290         rm -rf $test_dir/$tfile-2
12291 }
12292
12293 test_154A() {
12294         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
12295                 skip "Need MDS version at least 2.4.1"
12296
12297         local tf=$DIR/$tfile
12298         touch $tf
12299
12300         local fid=$($LFS path2fid $tf)
12301         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
12302
12303         # check that we get the same pathname back
12304         local found=$($LFS fid2path $MOUNT "$fid")
12305         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
12306         [ "$found" == "$tf" ] ||
12307                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
12308 }
12309 run_test 154A "lfs path2fid and fid2path basic checks"
12310
12311 test_154B() {
12312         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
12313                 skip "Need MDS version at least 2.4.1"
12314
12315         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
12316         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
12317         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
12318         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
12319
12320         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
12321         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
12322
12323         # check that we get the same pathname
12324         echo "PFID: $PFID, name: $name"
12325         local FOUND=$($LFS fid2path $MOUNT "$PFID")
12326         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
12327         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
12328                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
12329
12330         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
12331 }
12332 run_test 154B "verify the ll_decode_linkea tool"
12333
12334 test_154a() {
12335         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12336         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
12337         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
12338                 skip "Need MDS version at least 2.2.51"
12339         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
12340
12341         cp /etc/hosts $DIR/$tfile
12342
12343         fid=$($LFS path2fid $DIR/$tfile)
12344         rc=$?
12345         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
12346
12347         dot_lustre_fid_permission_check "$fid" $DIR ||
12348                 error "dot lustre permission check $fid failed"
12349
12350         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
12351
12352         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
12353
12354         touch $MOUNT/.lustre/file &&
12355                 error "creation is not allowed under .lustre"
12356
12357         mkdir $MOUNT/.lustre/dir &&
12358                 error "mkdir is not allowed under .lustre"
12359
12360         rm -rf $DIR/$tfile
12361 }
12362 run_test 154a "Open-by-FID"
12363
12364 test_154b() {
12365         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12366         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
12367         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12368         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
12369                 skip "Need MDS version at least 2.2.51"
12370
12371         local remote_dir=$DIR/$tdir/remote_dir
12372         local MDTIDX=1
12373         local rc=0
12374
12375         mkdir -p $DIR/$tdir
12376         $LFS mkdir -i $MDTIDX $remote_dir ||
12377                 error "create remote directory failed"
12378
12379         cp /etc/hosts $remote_dir/$tfile
12380
12381         fid=$($LFS path2fid $remote_dir/$tfile)
12382         rc=$?
12383         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
12384
12385         dot_lustre_fid_permission_check "$fid" $remote_dir ||
12386                 error "dot lustre permission check $fid failed"
12387         rm -rf $DIR/$tdir
12388 }
12389 run_test 154b "Open-by-FID for remote directory"
12390
12391 test_154c() {
12392         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
12393                 skip "Need MDS version at least 2.4.1"
12394
12395         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
12396         local FID1=$($LFS path2fid $DIR/$tfile.1)
12397         local FID2=$($LFS path2fid $DIR/$tfile.2)
12398         local FID3=$($LFS path2fid $DIR/$tfile.3)
12399
12400         local N=1
12401         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
12402                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
12403                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
12404                 local want=FID$N
12405                 [ "$FID" = "${!want}" ] ||
12406                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
12407                 N=$((N + 1))
12408         done
12409
12410         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
12411         do
12412                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
12413                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
12414                 N=$((N + 1))
12415         done
12416 }
12417 run_test 154c "lfs path2fid and fid2path multiple arguments"
12418
12419 test_154d() {
12420         remote_mds_nodsh && skip "remote MDS with nodsh"
12421         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
12422                 skip "Need MDS version at least 2.5.53"
12423
12424         if remote_mds; then
12425                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
12426         else
12427                 nid="0@lo"
12428         fi
12429         local proc_ofile="mdt.*.exports.'$nid'.open_files"
12430         local fd
12431         local cmd
12432
12433         rm -f $DIR/$tfile
12434         touch $DIR/$tfile
12435
12436         local fid=$($LFS path2fid $DIR/$tfile)
12437         # Open the file
12438         fd=$(free_fd)
12439         cmd="exec $fd<$DIR/$tfile"
12440         eval $cmd
12441         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
12442         echo "$fid_list" | grep "$fid"
12443         rc=$?
12444
12445         cmd="exec $fd>/dev/null"
12446         eval $cmd
12447         if [ $rc -ne 0 ]; then
12448                 error "FID $fid not found in open files list $fid_list"
12449         fi
12450 }
12451 run_test 154d "Verify open file fid"
12452
12453 test_154e()
12454 {
12455         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
12456                 skip "Need MDS version at least 2.6.50"
12457
12458         if ls -a $MOUNT | grep -q '^\.lustre$'; then
12459                 error ".lustre returned by readdir"
12460         fi
12461 }
12462 run_test 154e ".lustre is not returned by readdir"
12463
12464 test_154f() {
12465         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
12466
12467         # create parent directory on a single MDT to avoid cross-MDT hardlinks
12468         test_mkdir -p -c1 $DIR/$tdir/d
12469         # test dirs inherit from its stripe
12470         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
12471         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
12472         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
12473         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
12474         touch $DIR/f
12475
12476         # get fid of parents
12477         local FID0=$($LFS path2fid $DIR/$tdir/d)
12478         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
12479         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
12480         local FID3=$($LFS path2fid $DIR)
12481
12482         # check that path2fid --parents returns expected <parent_fid>/name
12483         # 1) test for a directory (single parent)
12484         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
12485         [ "$parent" == "$FID0/foo1" ] ||
12486                 error "expected parent: $FID0/foo1, got: $parent"
12487
12488         # 2) test for a file with nlink > 1 (multiple parents)
12489         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
12490         echo "$parent" | grep -F "$FID1/$tfile" ||
12491                 error "$FID1/$tfile not returned in parent list"
12492         echo "$parent" | grep -F "$FID2/link" ||
12493                 error "$FID2/link not returned in parent list"
12494
12495         # 3) get parent by fid
12496         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
12497         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
12498         echo "$parent" | grep -F "$FID1/$tfile" ||
12499                 error "$FID1/$tfile not returned in parent list (by fid)"
12500         echo "$parent" | grep -F "$FID2/link" ||
12501                 error "$FID2/link not returned in parent list (by fid)"
12502
12503         # 4) test for entry in root directory
12504         parent=$($LFS path2fid --parents $DIR/f)
12505         echo "$parent" | grep -F "$FID3/f" ||
12506                 error "$FID3/f not returned in parent list"
12507
12508         # 5) test it on root directory
12509         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
12510                 error "$MOUNT should not have parents"
12511
12512         # enable xattr caching and check that linkea is correctly updated
12513         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
12514         save_lustre_params client "llite.*.xattr_cache" > $save
12515         lctl set_param llite.*.xattr_cache 1
12516
12517         # 6.1) linkea update on rename
12518         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
12519
12520         # get parents by fid
12521         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
12522         # foo1 should no longer be returned in parent list
12523         echo "$parent" | grep -F "$FID1" &&
12524                 error "$FID1 should no longer be in parent list"
12525         # the new path should appear
12526         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
12527                 error "$FID2/$tfile.moved is not in parent list"
12528
12529         # 6.2) linkea update on unlink
12530         rm -f $DIR/$tdir/d/foo2/link
12531         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
12532         # foo2/link should no longer be returned in parent list
12533         echo "$parent" | grep -F "$FID2/link" &&
12534                 error "$FID2/link should no longer be in parent list"
12535         true
12536
12537         rm -f $DIR/f
12538         restore_lustre_params < $save
12539         rm -f $save
12540 }
12541 run_test 154f "get parent fids by reading link ea"
12542
12543 test_154g()
12544 {
12545         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
12546         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
12547            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
12548                 skip "Need MDS version at least 2.6.92"
12549
12550         mkdir -p $DIR/$tdir
12551         llapi_fid_test -d $DIR/$tdir
12552 }
12553 run_test 154g "various llapi FID tests"
12554
12555 test_155_small_load() {
12556     local temp=$TMP/$tfile
12557     local file=$DIR/$tfile
12558
12559     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
12560         error "dd of=$temp bs=6096 count=1 failed"
12561     cp $temp $file
12562     cancel_lru_locks $OSC
12563     cmp $temp $file || error "$temp $file differ"
12564
12565     $TRUNCATE $temp 6000
12566     $TRUNCATE $file 6000
12567     cmp $temp $file || error "$temp $file differ (truncate1)"
12568
12569     echo "12345" >>$temp
12570     echo "12345" >>$file
12571     cmp $temp $file || error "$temp $file differ (append1)"
12572
12573     echo "12345" >>$temp
12574     echo "12345" >>$file
12575     cmp $temp $file || error "$temp $file differ (append2)"
12576
12577     rm -f $temp $file
12578     true
12579 }
12580
12581 test_155_big_load() {
12582         remote_ost_nodsh && skip "remote OST with nodsh"
12583
12584         local temp=$TMP/$tfile
12585         local file=$DIR/$tfile
12586
12587         free_min_max
12588         local cache_size=$(do_facet ost$((MAXI+1)) \
12589                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
12590         local large_file_size=$((cache_size * 2))
12591
12592         echo "OSS cache size: $cache_size KB"
12593         echo "Large file size: $large_file_size KB"
12594
12595         [ $MAXV -le $large_file_size ] &&
12596                 skip_env "max available OST size needs > $large_file_size KB"
12597
12598         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
12599
12600         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
12601                 error "dd of=$temp bs=$large_file_size count=1k failed"
12602         cp $temp $file
12603         ls -lh $temp $file
12604         cancel_lru_locks osc
12605         cmp $temp $file || error "$temp $file differ"
12606
12607         rm -f $temp $file
12608         true
12609 }
12610
12611 save_writethrough() {
12612         local facets=$(get_facets OST)
12613
12614         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
12615 }
12616
12617 test_155a() {
12618         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12619
12620         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12621
12622         save_writethrough $p
12623
12624         set_cache read on
12625         set_cache writethrough on
12626         test_155_small_load
12627         restore_lustre_params < $p
12628         rm -f $p
12629 }
12630 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
12631
12632 test_155b() {
12633         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12634
12635         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12636
12637         save_writethrough $p
12638
12639         set_cache read on
12640         set_cache writethrough off
12641         test_155_small_load
12642         restore_lustre_params < $p
12643         rm -f $p
12644 }
12645 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
12646
12647 test_155c() {
12648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12649
12650         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12651
12652         save_writethrough $p
12653
12654         set_cache read off
12655         set_cache writethrough on
12656         test_155_small_load
12657         restore_lustre_params < $p
12658         rm -f $p
12659 }
12660 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12661
12662 test_155d() {
12663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12664
12665         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12666
12667         save_writethrough $p
12668
12669         set_cache read off
12670         set_cache writethrough off
12671         test_155_small_load
12672         restore_lustre_params < $p
12673         rm -f $p
12674 }
12675 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12676
12677 test_155e() {
12678         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12679
12680         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12681
12682         save_writethrough $p
12683
12684         set_cache read on
12685         set_cache writethrough on
12686         test_155_big_load
12687         restore_lustre_params < $p
12688         rm -f $p
12689 }
12690 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12691
12692 test_155f() {
12693         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12694
12695         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12696
12697         save_writethrough $p
12698
12699         set_cache read on
12700         set_cache writethrough off
12701         test_155_big_load
12702         restore_lustre_params < $p
12703         rm -f $p
12704 }
12705 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12706
12707 test_155g() {
12708         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12709
12710         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12711
12712         save_writethrough $p
12713
12714         set_cache read off
12715         set_cache writethrough on
12716         test_155_big_load
12717         restore_lustre_params < $p
12718         rm -f $p
12719 }
12720 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12721
12722 test_155h() {
12723         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12724
12725         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12726
12727         save_writethrough $p
12728
12729         set_cache read off
12730         set_cache writethrough off
12731         test_155_big_load
12732         restore_lustre_params < $p
12733         rm -f $p
12734 }
12735 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12736
12737 test_156() {
12738         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12739         remote_ost_nodsh && skip "remote OST with nodsh"
12740         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
12741                 skip "stats not implemented on old servers"
12742         [ "$ost1_FSTYPE" = "zfs" ] &&
12743                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12744
12745         local CPAGES=3
12746         local BEFORE
12747         local AFTER
12748         local file="$DIR/$tfile"
12749         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12750
12751         save_writethrough $p
12752         roc_hit_init
12753
12754         log "Turn on read and write cache"
12755         set_cache read on
12756         set_cache writethrough on
12757
12758         log "Write data and read it back."
12759         log "Read should be satisfied from the cache."
12760         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12761         BEFORE=$(roc_hit)
12762         cancel_lru_locks osc
12763         cat $file >/dev/null
12764         AFTER=$(roc_hit)
12765         if ! let "AFTER - BEFORE == CPAGES"; then
12766                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12767         else
12768                 log "cache hits:: before: $BEFORE, after: $AFTER"
12769         fi
12770
12771         log "Read again; it should be satisfied from the cache."
12772         BEFORE=$AFTER
12773         cancel_lru_locks osc
12774         cat $file >/dev/null
12775         AFTER=$(roc_hit)
12776         if ! let "AFTER - BEFORE == CPAGES"; then
12777                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12778         else
12779                 log "cache hits:: before: $BEFORE, after: $AFTER"
12780         fi
12781
12782         log "Turn off the read cache and turn on the write cache"
12783         set_cache read off
12784         set_cache writethrough on
12785
12786         log "Read again; it should be satisfied from the cache."
12787         BEFORE=$(roc_hit)
12788         cancel_lru_locks osc
12789         cat $file >/dev/null
12790         AFTER=$(roc_hit)
12791         if ! let "AFTER - BEFORE == CPAGES"; then
12792                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12793         else
12794                 log "cache hits:: before: $BEFORE, after: $AFTER"
12795         fi
12796
12797         log "Read again; it should not be satisfied from the cache."
12798         BEFORE=$AFTER
12799         cancel_lru_locks osc
12800         cat $file >/dev/null
12801         AFTER=$(roc_hit)
12802         if ! let "AFTER - BEFORE == 0"; then
12803                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12804         else
12805                 log "cache hits:: before: $BEFORE, after: $AFTER"
12806         fi
12807
12808         log "Write data and read it back."
12809         log "Read should be satisfied from the cache."
12810         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12811         BEFORE=$(roc_hit)
12812         cancel_lru_locks osc
12813         cat $file >/dev/null
12814         AFTER=$(roc_hit)
12815         if ! let "AFTER - BEFORE == CPAGES"; then
12816                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12817         else
12818                 log "cache hits:: before: $BEFORE, after: $AFTER"
12819         fi
12820
12821         log "Read again; it should not be satisfied from the cache."
12822         BEFORE=$AFTER
12823         cancel_lru_locks osc
12824         cat $file >/dev/null
12825         AFTER=$(roc_hit)
12826         if ! let "AFTER - BEFORE == 0"; then
12827                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12828         else
12829                 log "cache hits:: before: $BEFORE, after: $AFTER"
12830         fi
12831
12832         log "Turn off read and write cache"
12833         set_cache read off
12834         set_cache writethrough off
12835
12836         log "Write data and read it back"
12837         log "It should not be satisfied from the cache."
12838         rm -f $file
12839         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12840         cancel_lru_locks osc
12841         BEFORE=$(roc_hit)
12842         cat $file >/dev/null
12843         AFTER=$(roc_hit)
12844         if ! let "AFTER - BEFORE == 0"; then
12845                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12846         else
12847                 log "cache hits:: before: $BEFORE, after: $AFTER"
12848         fi
12849
12850         log "Turn on the read cache and turn off the write cache"
12851         set_cache read on
12852         set_cache writethrough off
12853
12854         log "Write data and read it back"
12855         log "It should not be satisfied from the cache."
12856         rm -f $file
12857         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12858         BEFORE=$(roc_hit)
12859         cancel_lru_locks osc
12860         cat $file >/dev/null
12861         AFTER=$(roc_hit)
12862         if ! let "AFTER - BEFORE == 0"; then
12863                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12864         else
12865                 log "cache hits:: before: $BEFORE, after: $AFTER"
12866         fi
12867
12868         log "Read again; it should be satisfied from the cache."
12869         BEFORE=$(roc_hit)
12870         cancel_lru_locks osc
12871         cat $file >/dev/null
12872         AFTER=$(roc_hit)
12873         if ! let "AFTER - BEFORE == CPAGES"; then
12874                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12875         else
12876                 log "cache hits:: before: $BEFORE, after: $AFTER"
12877         fi
12878
12879         restore_lustre_params < $p
12880         rm -f $p $file
12881 }
12882 run_test 156 "Verification of tunables"
12883
12884 test_160a() {
12885         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12886         remote_mds_nodsh && skip "remote MDS with nodsh"
12887         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12888                 skip "Need MDS version at least 2.2.0"
12889
12890         changelog_register || error "changelog_register failed"
12891         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12892         changelog_users $SINGLEMDS | grep -q $cl_user ||
12893                 error "User $cl_user not found in changelog_users"
12894
12895         # change something
12896         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12897         changelog_clear 0 || error "changelog_clear failed"
12898         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12899         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12900         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12901         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12902         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12903         rm $DIR/$tdir/pics/desktop.jpg
12904
12905         changelog_dump | tail -10
12906
12907         echo "verifying changelog mask"
12908         changelog_chmask "-MKDIR"
12909         changelog_chmask "-CLOSE"
12910
12911         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12912         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12913
12914         changelog_chmask "+MKDIR"
12915         changelog_chmask "+CLOSE"
12916
12917         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12918         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12919
12920         changelog_dump | tail -10
12921         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12922         CLOSES=$(changelog_dump | grep -c "CLOSE")
12923         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12924         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12925
12926         # verify contents
12927         echo "verifying target fid"
12928         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12929         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12930         [ "$fidc" == "$fidf" ] ||
12931                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12932         echo "verifying parent fid"
12933         # The FID returned from the Changelog may be the directory shard on
12934         # a different MDT, and not the FID returned by path2fid on the parent.
12935         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12936         # since this is what will matter when recreating this file in the tree.
12937         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12938         local pathp=$($LFS fid2path $MOUNT "$fidp")
12939         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12940                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12941
12942         echo "getting records for $cl_user"
12943         changelog_users $SINGLEMDS
12944         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12945         local nclr=3
12946         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12947                 error "changelog_clear failed"
12948         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12949         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12950         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12951                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12952
12953         local min0_rec=$(changelog_users $SINGLEMDS |
12954                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12955         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12956                           awk '{ print $1; exit; }')
12957
12958         changelog_dump | tail -n 5
12959         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12960         [ $first_rec == $((min0_rec + 1)) ] ||
12961                 error "first index should be $min0_rec + 1 not $first_rec"
12962
12963         # LU-3446 changelog index reset on MDT restart
12964         local cur_rec1=$(changelog_users $SINGLEMDS |
12965                          awk '/^current.index:/ { print $NF }')
12966         changelog_clear 0 ||
12967                 error "clear all changelog records for $cl_user failed"
12968         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12969         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12970                 error "Fail to start $SINGLEMDS"
12971         local cur_rec2=$(changelog_users $SINGLEMDS |
12972                          awk '/^current.index:/ { print $NF }')
12973         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12974         [ $cur_rec1 == $cur_rec2 ] ||
12975                 error "current index should be $cur_rec1 not $cur_rec2"
12976
12977         echo "verifying users from this test are deregistered"
12978         changelog_deregister || error "changelog_deregister failed"
12979         changelog_users $SINGLEMDS | grep -q $cl_user &&
12980                 error "User '$cl_user' still in changelog_users"
12981
12982         # lctl get_param -n mdd.*.changelog_users
12983         # current index: 144
12984         # ID    index (idle seconds)
12985         # cl3   144 (2)
12986         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12987                 # this is the normal case where all users were deregistered
12988                 # make sure no new records are added when no users are present
12989                 local last_rec1=$(changelog_users $SINGLEMDS |
12990                                   awk '/^current.index:/ { print $NF }')
12991                 touch $DIR/$tdir/chloe
12992                 local last_rec2=$(changelog_users $SINGLEMDS |
12993                                   awk '/^current.index:/ { print $NF }')
12994                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12995                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12996         else
12997                 # any changelog users must be leftovers from a previous test
12998                 changelog_users $SINGLEMDS
12999                 echo "other changelog users; can't verify off"
13000         fi
13001 }
13002 run_test 160a "changelog sanity"
13003
13004 test_160b() { # LU-3587
13005         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13006         remote_mds_nodsh && skip "remote MDS with nodsh"
13007         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
13008                 skip "Need MDS version at least 2.2.0"
13009
13010         changelog_register || error "changelog_register failed"
13011         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
13012         changelog_users $SINGLEMDS | grep -q $cl_user ||
13013                 error "User '$cl_user' not found in changelog_users"
13014
13015         local longname1=$(str_repeat a 255)
13016         local longname2=$(str_repeat b 255)
13017
13018         cd $DIR
13019         echo "creating very long named file"
13020         touch $longname1 || error "create of '$longname1' failed"
13021         echo "renaming very long named file"
13022         mv $longname1 $longname2
13023
13024         changelog_dump | grep RENME | tail -n 5
13025         rm -f $longname2
13026 }
13027 run_test 160b "Verify that very long rename doesn't crash in changelog"
13028
13029 test_160c() {
13030         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13031         remote_mds_nodsh && skip "remote MDS with nodsh"
13032
13033         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
13034                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
13035                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
13036                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
13037
13038         local rc=0
13039
13040         # Registration step
13041         changelog_register || error "changelog_register failed"
13042
13043         rm -rf $DIR/$tdir
13044         mkdir -p $DIR/$tdir
13045         $MCREATE $DIR/$tdir/foo_160c
13046         changelog_chmask "-TRUNC"
13047         $TRUNCATE $DIR/$tdir/foo_160c 200
13048         changelog_chmask "+TRUNC"
13049         $TRUNCATE $DIR/$tdir/foo_160c 199
13050         changelog_dump | tail -n 5
13051         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
13052         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
13053 }
13054 run_test 160c "verify that changelog log catch the truncate event"
13055
13056 test_160d() {
13057         remote_mds_nodsh && skip "remote MDS with nodsh"
13058         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13060         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
13061                 skip "Need MDS version at least 2.7.60"
13062
13063         # Registration step
13064         changelog_register || error "changelog_register failed"
13065
13066         mkdir -p $DIR/$tdir/migrate_dir
13067         changelog_clear 0 || error "changelog_clear failed"
13068
13069         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
13070         changelog_dump | tail -n 5
13071         local migrates=$(changelog_dump | grep -c "MIGRT")
13072         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
13073 }
13074 run_test 160d "verify that changelog log catch the migrate event"
13075
13076 test_160e() {
13077         remote_mds_nodsh && skip "remote MDS with nodsh"
13078
13079         # Create a user
13080         changelog_register || error "changelog_register failed"
13081
13082         # Delete a future user (expect fail)
13083         local MDT0=$(facet_svc $SINGLEMDS)
13084         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
13085         local rc=$?
13086
13087         if [ $rc -eq 0 ]; then
13088                 error "Deleted non-existant user cl77"
13089         elif [ $rc -ne 2 ]; then
13090                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
13091         fi
13092
13093         # Clear to a bad index (1 billion should be safe)
13094         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
13095         rc=$?
13096
13097         if [ $rc -eq 0 ]; then
13098                 error "Successfully cleared to invalid CL index"
13099         elif [ $rc -ne 22 ]; then
13100                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
13101         fi
13102 }
13103 run_test 160e "changelog negative testing (should return errors)"
13104
13105 test_160f() {
13106         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13107         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
13108                 skip "Need MDS version at least 2.10.56"
13109
13110         local mdts=$(comma_list $(mdts_nodes))
13111
13112         # Create a user
13113         changelog_register || error "first changelog_register failed"
13114         changelog_register || error "second changelog_register failed"
13115         local cl_users
13116         declare -A cl_user1
13117         declare -A cl_user2
13118         local user_rec1
13119         local user_rec2
13120         local i
13121
13122         # generate some changelog records to accumulate on each MDT
13123         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
13124         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
13125                 error "create $DIR/$tdir/$tfile failed"
13126
13127         # check changelogs have been generated
13128         local nbcl=$(changelog_dump | wc -l)
13129         [[ $nbcl -eq 0 ]] && error "no changelogs found"
13130
13131         for param in "changelog_max_idle_time=10" \
13132                      "changelog_gc=1" \
13133                      "changelog_min_gc_interval=2" \
13134                      "changelog_min_free_cat_entries=3"; do
13135                 local MDT0=$(facet_svc $SINGLEMDS)
13136                 local var="${param%=*}"
13137                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
13138
13139                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
13140                 do_nodes $mdts $LCTL set_param mdd.*.$param
13141         done
13142
13143         # force cl_user2 to be idle (1st part)
13144         sleep 9
13145
13146         # simulate changelog catalog almost full
13147         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
13148         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
13149
13150         for i in $(seq $MDSCOUNT); do
13151                 cl_users=(${CL_USERS[mds$i]})
13152                 cl_user1[mds$i]="${cl_users[0]}"
13153                 cl_user2[mds$i]="${cl_users[1]}"
13154
13155                 [ -n "${cl_user1[mds$i]}" ] ||
13156                         error "mds$i: no user registered"
13157                 [ -n "${cl_user2[mds$i]}" ] ||
13158                         error "mds$i: only ${cl_user2[mds$i]} is registered"
13159
13160                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13161                 [ -n "$user_rec1" ] ||
13162                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13163                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
13164                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13165                 [ -n "$user_rec2" ] ||
13166                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13167                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
13168                      "$user_rec1 + 2 == $user_rec2"
13169                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
13170                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
13171                               "$user_rec1 + 2, but is $user_rec2"
13172                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
13173                 [ -n "$user_rec2" ] ||
13174                         error "mds$i: User ${cl_user2[mds$i]} not registered"
13175                 [ $user_rec1 == $user_rec2 ] ||
13176                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
13177                               "$user_rec1, but is $user_rec2"
13178         done
13179
13180         # force cl_user2 to be idle (2nd part) and to reach
13181         # changelog_max_idle_time
13182         sleep 2
13183
13184         # generate one more changelog to trigger fail_loc
13185         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
13186                 error "create $DIR/$tdir/${tfile}bis failed"
13187
13188         # ensure gc thread is done
13189         for i in $(mdts_nodes); do
13190                 wait_update $i \
13191                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
13192                         error "$i: GC-thread not done"
13193         done
13194
13195         local first_rec
13196         for i in $(seq $MDSCOUNT); do
13197                 # check cl_user1 still registered
13198                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
13199                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13200                 # check cl_user2 unregistered
13201                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
13202                         error "mds$i: User ${cl_user2[mds$i]} still registered"
13203
13204                 # check changelogs are present and starting at $user_rec1 + 1
13205                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13206                 [ -n "$user_rec1" ] ||
13207                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13208                 first_rec=$($LFS changelog $(facet_svc mds$i) |
13209                             awk '{ print $1; exit; }')
13210
13211                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
13212                 [ $((user_rec1 + 1)) == $first_rec ] ||
13213                         error "mds$i: first index should be $user_rec1 + 1, " \
13214                               "but is $first_rec"
13215         done
13216 }
13217 run_test 160f "changelog garbage collect (timestamped users)"
13218
13219 test_160g() {
13220         remote_mds_nodsh && skip "remote MDS with nodsh"
13221         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
13222                 skip "Need MDS version at least 2.10.56"
13223
13224         local mdts=$(comma_list $(mdts_nodes))
13225
13226         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
13227         do_nodes $mdts $LCTL set_param fail_loc=0x1314
13228
13229         # Create a user
13230         changelog_register || error "first changelog_register failed"
13231         changelog_register || error "second changelog_register failed"
13232         local cl_users
13233         declare -A cl_user1
13234         declare -A cl_user2
13235         local user_rec1
13236         local user_rec2
13237         local i
13238
13239         # generate some changelog records to accumulate on each MDT
13240         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
13241         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
13242                 error "create $DIR/$tdir/$tfile failed"
13243
13244         # check changelogs have been generated
13245         local nbcl=$(changelog_dump | wc -l)
13246         [[ $nbcl -eq 0 ]] && error "no changelogs found"
13247
13248         # reduce the max_idle_indexes value to make sure we exceed it
13249         max_ndx=$((nbcl / 2 - 1))
13250
13251         for param in "changelog_max_idle_indexes=$max_ndx" \
13252                      "changelog_gc=1" \
13253                      "changelog_min_gc_interval=2" \
13254                      "changelog_min_free_cat_entries=3"; do
13255                 local MDT0=$(facet_svc $SINGLEMDS)
13256                 local var="${param%=*}"
13257                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
13258
13259                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
13260                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
13261                         error "unable to set mdd.*.$param"
13262         done
13263
13264         # simulate changelog catalog almost full
13265         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
13266         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
13267
13268         for i in $(seq $MDSCOUNT); do
13269                 cl_users=(${CL_USERS[mds$i]})
13270                 cl_user1[mds$i]="${cl_users[0]}"
13271                 cl_user2[mds$i]="${cl_users[1]}"
13272
13273                 [ -n "${cl_user1[mds$i]}" ] ||
13274                         error "mds$i: no user registered"
13275                 [ -n "${cl_user2[mds$i]}" ] ||
13276                         error "mds$i: only ${cl_user1[mds$i]} is registered"
13277
13278                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13279                 [ -n "$user_rec1" ] ||
13280                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13281                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
13282                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13283                 [ -n "$user_rec2" ] ||
13284                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13285                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
13286                      "$user_rec1 + 2 == $user_rec2"
13287                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
13288                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
13289                               "$user_rec1 + 2, but is $user_rec2"
13290                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
13291                 [ -n "$user_rec2" ] ||
13292                         error "mds$i: User ${cl_user2[mds$i]} not registered"
13293                 [ $user_rec1 == $user_rec2 ] ||
13294                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
13295                               "$user_rec1, but is $user_rec2"
13296         done
13297
13298         # ensure we are past the previous changelog_min_gc_interval set above
13299         sleep 2
13300
13301         # generate one more changelog to trigger fail_loc
13302         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
13303                 error "create $DIR/$tdir/${tfile}bis failed"
13304
13305         # ensure gc thread is done
13306         for i in $(mdts_nodes); do
13307                 wait_update $i \
13308                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
13309                         error "$i: GC-thread not done"
13310         done
13311
13312         local first_rec
13313         for i in $(seq $MDSCOUNT); do
13314                 # check cl_user1 still registered
13315                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
13316                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13317                 # check cl_user2 unregistered
13318                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
13319                         error "mds$i: User ${cl_user2[mds$i]} still registered"
13320
13321                 # check changelogs are present and starting at $user_rec1 + 1
13322                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13323                 [ -n "$user_rec1" ] ||
13324                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13325                 first_rec=$($LFS changelog $(facet_svc mds$i) |
13326                             awk '{ print $1; exit; }')
13327
13328                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
13329                 [ $((user_rec1 + 1)) == $first_rec ] ||
13330                         error "mds$i: first index should be $user_rec1 + 1, " \
13331                               "but is $first_rec"
13332         done
13333 }
13334 run_test 160g "changelog garbage collect (old users)"
13335
13336 test_160h() {
13337         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13338         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
13339                 skip "Need MDS version at least 2.10.56"
13340
13341         local mdts=$(comma_list $(mdts_nodes))
13342
13343         # Create a user
13344         changelog_register || error "first changelog_register failed"
13345         changelog_register || error "second changelog_register failed"
13346         local cl_users
13347         declare -A cl_user1
13348         declare -A cl_user2
13349         local user_rec1
13350         local user_rec2
13351         local i
13352
13353         # generate some changelog records to accumulate on each MDT
13354         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
13355         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
13356                 error "create $DIR/$tdir/$tfile failed"
13357
13358         # check changelogs have been generated
13359         local nbcl=$(changelog_dump | wc -l)
13360         [[ $nbcl -eq 0 ]] && error "no changelogs found"
13361
13362         for param in "changelog_max_idle_time=10" \
13363                      "changelog_gc=1" \
13364                      "changelog_min_gc_interval=2"; do
13365                 local MDT0=$(facet_svc $SINGLEMDS)
13366                 local var="${param%=*}"
13367                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
13368
13369                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
13370                 do_nodes $mdts $LCTL set_param mdd.*.$param
13371         done
13372
13373         # force cl_user2 to be idle (1st part)
13374         sleep 9
13375
13376         for i in $(seq $MDSCOUNT); do
13377                 cl_users=(${CL_USERS[mds$i]})
13378                 cl_user1[mds$i]="${cl_users[0]}"
13379                 cl_user2[mds$i]="${cl_users[1]}"
13380
13381                 [ -n "${cl_user1[mds$i]}" ] ||
13382                         error "mds$i: no user registered"
13383                 [ -n "${cl_user2[mds$i]}" ] ||
13384                         error "mds$i: only ${cl_user2[mds$i]} is registered"
13385
13386                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13387                 [ -n "$user_rec1" ] ||
13388                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13389                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
13390                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13391                 [ -n "$user_rec2" ] ||
13392                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13393                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
13394                      "$user_rec1 + 2 == $user_rec2"
13395                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
13396                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
13397                               "$user_rec1 + 2, but is $user_rec2"
13398                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
13399                 [ -n "$user_rec2" ] ||
13400                         error "mds$i: User ${cl_user2[mds$i]} not registered"
13401                 [ $user_rec1 == $user_rec2 ] ||
13402                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
13403                               "$user_rec1, but is $user_rec2"
13404         done
13405
13406         # force cl_user2 to be idle (2nd part) and to reach
13407         # changelog_max_idle_time
13408         sleep 2
13409
13410         # force each GC-thread start and block then
13411         # one per MDT/MDD, set fail_val accordingly
13412         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
13413         do_nodes $mdts $LCTL set_param fail_loc=0x1316
13414
13415         # generate more changelogs to trigger fail_loc
13416         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
13417                 error "create $DIR/$tdir/${tfile}bis failed"
13418
13419         # stop MDT to stop GC-thread, should be done in back-ground as it will
13420         # block waiting for the thread to be released and exit
13421         declare -A stop_pids
13422         for i in $(seq $MDSCOUNT); do
13423                 stop mds$i &
13424                 stop_pids[mds$i]=$!
13425         done
13426
13427         for i in $(mdts_nodes); do
13428                 local facet
13429                 local nb=0
13430                 local facets=$(facets_up_on_host $i)
13431
13432                 for facet in ${facets//,/ }; do
13433                         if [[ $facet == mds* ]]; then
13434                                 nb=$((nb + 1))
13435                         fi
13436                 done
13437                 # ensure each MDS's gc threads are still present and all in "R"
13438                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
13439                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
13440                         error "$i: expected $nb GC-thread"
13441                 wait_update $i \
13442                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
13443                         "R" 20 ||
13444                         error "$i: GC-thread not found in R-state"
13445                 # check umounts of each MDT on MDS have reached kthread_stop()
13446                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
13447                         error "$i: expected $nb umount"
13448                 wait_update $i \
13449                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
13450                         error "$i: umount not found in D-state"
13451         done
13452
13453         # release all GC-threads
13454         do_nodes $mdts $LCTL set_param fail_loc=0
13455
13456         # wait for MDT stop to complete
13457         for i in $(seq $MDSCOUNT); do
13458                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
13459         done
13460
13461         # XXX
13462         # may try to check if any orphan changelog records are present
13463         # via ldiskfs/zfs and llog_reader...
13464
13465         # re-start/mount MDTs
13466         for i in $(seq $MDSCOUNT); do
13467                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
13468                         error "Fail to start mds$i"
13469         done
13470
13471         local first_rec
13472         for i in $(seq $MDSCOUNT); do
13473                 # check cl_user1 still registered
13474                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
13475                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13476                 # check cl_user2 unregistered
13477                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
13478                         error "mds$i: User ${cl_user2[mds$i]} still registered"
13479
13480                 # check changelogs are present and starting at $user_rec1 + 1
13481                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
13482                 [ -n "$user_rec1" ] ||
13483                         error "mds$i: User ${cl_user1[mds$i]} not registered"
13484                 first_rec=$($LFS changelog $(facet_svc mds$i) |
13485                             awk '{ print $1; exit; }')
13486
13487                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
13488                 [ $((user_rec1 + 1)) == $first_rec ] ||
13489                         error "mds$i: first index should be $user_rec1 + 1, " \
13490                               "but is $first_rec"
13491         done
13492 }
13493 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
13494               "during mount"
13495
13496 test_160i() {
13497
13498         local mdts=$(comma_list $(mdts_nodes))
13499
13500         changelog_register || error "first changelog_register failed"
13501
13502         # generate some changelog records to accumulate on each MDT
13503         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
13504         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
13505                 error "create $DIR/$tdir/$tfile failed"
13506
13507         # check changelogs have been generated
13508         local nbcl=$(changelog_dump | wc -l)
13509         [[ $nbcl -eq 0 ]] && error "no changelogs found"
13510
13511         # simulate race between register and unregister
13512         # XXX as fail_loc is set per-MDS, with DNE configs the race
13513         # simulation will only occur for one MDT per MDS and for the
13514         # others the normal race scenario will take place
13515         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
13516         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
13517         do_nodes $mdts $LCTL set_param fail_val=1
13518
13519         # unregister 1st user
13520         changelog_deregister &
13521         local pid1=$!
13522         # wait some time for deregister work to reach race rdv
13523         sleep 2
13524         # register 2nd user
13525         changelog_register || error "2nd user register failed"
13526
13527         wait $pid1 || error "1st user deregister failed"
13528
13529         local i
13530         local last_rec
13531         declare -A LAST_REC
13532         for i in $(seq $MDSCOUNT); do
13533                 if changelog_users mds$i | grep "^cl"; then
13534                         # make sure new records are added with one user present
13535                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
13536                                           awk '/^current.index:/ { print $NF }')
13537                 else
13538                         error "mds$i has no user registered"
13539                 fi
13540         done
13541
13542         # generate more changelog records to accumulate on each MDT
13543         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
13544                 error "create $DIR/$tdir/${tfile}bis failed"
13545
13546         for i in $(seq $MDSCOUNT); do
13547                 last_rec=$(changelog_users $SINGLEMDS |
13548                            awk '/^current.index:/ { print $NF }')
13549                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
13550                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
13551                         error "changelogs are off on mds$i"
13552         done
13553 }
13554 run_test 160i "changelog user register/unregister race"
13555
13556 test_160k() {
13557         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13558         remote_mds_nodsh && skip "remote MDS with nodsh"
13559
13560         mkdir -p $DIR/$tdir/1/1
13561
13562         changelog_register || error "changelog_register failed"
13563         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
13564
13565         changelog_users $SINGLEMDS | grep -q $cl_user ||
13566                 error "User '$cl_user' not found in changelog_users"
13567 #define OBD_FAIL_MDS_CHANGELOG_REORDER 0x15d
13568         do_facet mds1 $LCTL set_param fail_loc=0x8000015d fail_val=3
13569         rmdir $DIR/$tdir/1/1 & sleep 1
13570         mkdir $DIR/$tdir/2
13571         touch $DIR/$tdir/2/2
13572         rm -rf $DIR/$tdir/2
13573
13574         wait
13575         sleep 4
13576
13577         changelog_dump | grep rmdir || error "rmdir not recorded"
13578
13579         rm -rf $DIR/$tdir
13580         changelog_deregister
13581 }
13582 run_test 160k "Verify that changelog records are not lost"
13583
13584 test_160j() {
13585         remote_mds_nodsh && skip "remote MDS with nodsh"
13586         [[ $MDS1_VERSION -lt $(version_code 2.12.56) ]] &&
13587                 skip "Need MDS version at least 2.12.56"
13588
13589         mount_client $MOUNT2 || error "mount_client on $MOUNT2 failed"
13590
13591         changelog_register || error "first changelog_register failed"
13592
13593         # generate some changelog
13594         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
13595         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
13596                 error "create $DIR/$tdir/${tfile}bis failed"
13597
13598         # open the changelog device
13599         exec 3>/dev/changelog-$FSNAME-MDT0000
13600         exec 4</dev/changelog-$FSNAME-MDT0000
13601
13602         # umount the first lustre mount
13603         umount $MOUNT
13604
13605         # read changelog
13606         cat <&4 >/dev/null || error "read changelog failed"
13607
13608         # clear changelog
13609         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
13610         changelog_users $SINGLEMDS | grep -q $cl_user ||
13611                 error "User $cl_user not found in changelog_users"
13612
13613         printf 'clear:'$cl_user':0' >&3
13614
13615         # close
13616         exec 3>&-
13617         exec 4<&-
13618
13619         # cleanup
13620         changelog_deregister || error "changelog_deregister failed"
13621
13622         umount $MOUNT2
13623         mount_client $MOUNT || error "mount_client on $MOUNT failed"
13624 }
13625 run_test 160j "client can be umounted  while its chanangelog is being used"
13626
13627 test_161a() {
13628         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13629
13630         test_mkdir -c1 $DIR/$tdir
13631         cp /etc/hosts $DIR/$tdir/$tfile
13632         test_mkdir -c1 $DIR/$tdir/foo1
13633         test_mkdir -c1 $DIR/$tdir/foo2
13634         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
13635         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
13636         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
13637         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
13638         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
13639         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13640                 $LFS fid2path $DIR $FID
13641                 error "bad link ea"
13642         fi
13643         # middle
13644         rm $DIR/$tdir/foo2/zachary
13645         # last
13646         rm $DIR/$tdir/foo2/thor
13647         # first
13648         rm $DIR/$tdir/$tfile
13649         # rename
13650         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
13651         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
13652                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
13653         rm $DIR/$tdir/foo2/maggie
13654
13655         # overflow the EA
13656         local longname=$tfile.avg_len_is_thirty_two_
13657         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
13658                 error_noexit 'failed to unlink many hardlinks'" EXIT
13659         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
13660                 error "failed to hardlink many files"
13661         links=$($LFS fid2path $DIR $FID | wc -l)
13662         echo -n "${links}/1000 links in link EA"
13663         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
13664 }
13665 run_test 161a "link ea sanity"
13666
13667 test_161b() {
13668         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13669         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
13670
13671         local MDTIDX=1
13672         local remote_dir=$DIR/$tdir/remote_dir
13673
13674         mkdir -p $DIR/$tdir
13675         $LFS mkdir -i $MDTIDX $remote_dir ||
13676                 error "create remote directory failed"
13677
13678         cp /etc/hosts $remote_dir/$tfile
13679         mkdir -p $remote_dir/foo1
13680         mkdir -p $remote_dir/foo2
13681         ln $remote_dir/$tfile $remote_dir/foo1/sofia
13682         ln $remote_dir/$tfile $remote_dir/foo2/zachary
13683         ln $remote_dir/$tfile $remote_dir/foo1/luna
13684         ln $remote_dir/$tfile $remote_dir/foo2/thor
13685
13686         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
13687                      tr -d ']')
13688         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13689                 $LFS fid2path $DIR $FID
13690                 error "bad link ea"
13691         fi
13692         # middle
13693         rm $remote_dir/foo2/zachary
13694         # last
13695         rm $remote_dir/foo2/thor
13696         # first
13697         rm $remote_dir/$tfile
13698         # rename
13699         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
13700         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
13701         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
13702                 $LFS fid2path $DIR $FID
13703                 error "bad link rename"
13704         fi
13705         rm $remote_dir/foo2/maggie
13706
13707         # overflow the EA
13708         local longname=filename_avg_len_is_thirty_two_
13709         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
13710                 error "failed to hardlink many files"
13711         links=$($LFS fid2path $DIR $FID | wc -l)
13712         echo -n "${links}/1000 links in link EA"
13713         [[ ${links} -gt 60 ]] ||
13714                 error "expected at least 60 links in link EA"
13715         unlinkmany $remote_dir/foo2/$longname 1000 ||
13716         error "failed to unlink many hardlinks"
13717 }
13718 run_test 161b "link ea sanity under remote directory"
13719
13720 test_161c() {
13721         remote_mds_nodsh && skip "remote MDS with nodsh"
13722         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13723         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
13724                 skip "Need MDS version at least 2.1.5"
13725
13726         # define CLF_RENAME_LAST 0x0001
13727         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
13728         changelog_register || error "changelog_register failed"
13729
13730         rm -rf $DIR/$tdir
13731         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13732         touch $DIR/$tdir/foo_161c
13733         touch $DIR/$tdir/bar_161c
13734         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13735         changelog_dump | grep RENME | tail -n 5
13736         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13737         changelog_clear 0 || error "changelog_clear failed"
13738         if [ x$flags != "x0x1" ]; then
13739                 error "flag $flags is not 0x1"
13740         fi
13741
13742         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13743         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13744         touch $DIR/$tdir/foo_161c
13745         touch $DIR/$tdir/bar_161c
13746         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13747         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13748         changelog_dump | grep RENME | tail -n 5
13749         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13750         changelog_clear 0 || error "changelog_clear failed"
13751         if [ x$flags != "x0x0" ]; then
13752                 error "flag $flags is not 0x0"
13753         fi
13754         echo "rename overwrite a target having nlink > 1," \
13755                 "changelog record has flags of $flags"
13756
13757         # rename doesn't overwrite a target (changelog flag 0x0)
13758         touch $DIR/$tdir/foo_161c
13759         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13760         changelog_dump | grep RENME | tail -n 5
13761         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13762         changelog_clear 0 || error "changelog_clear failed"
13763         if [ x$flags != "x0x0" ]; then
13764                 error "flag $flags is not 0x0"
13765         fi
13766         echo "rename doesn't overwrite a target," \
13767                 "changelog record has flags of $flags"
13768
13769         # define CLF_UNLINK_LAST 0x0001
13770         # unlink a file having nlink = 1 (changelog flag 0x1)
13771         rm -f $DIR/$tdir/foo2_161c
13772         changelog_dump | grep UNLNK | tail -n 5
13773         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13774         changelog_clear 0 || error "changelog_clear failed"
13775         if [ x$flags != "x0x1" ]; then
13776                 error "flag $flags is not 0x1"
13777         fi
13778         echo "unlink a file having nlink = 1," \
13779                 "changelog record has flags of $flags"
13780
13781         # unlink a file having nlink > 1 (changelog flag 0x0)
13782         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13783         rm -f $DIR/$tdir/foobar_161c
13784         changelog_dump | grep UNLNK | tail -n 5
13785         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13786         changelog_clear 0 || error "changelog_clear failed"
13787         if [ x$flags != "x0x0" ]; then
13788                 error "flag $flags is not 0x0"
13789         fi
13790         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13791 }
13792 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13793
13794 test_161d() {
13795         remote_mds_nodsh && skip "remote MDS with nodsh"
13796
13797         local pid
13798         local fid
13799
13800         changelog_register || error "changelog_register failed"
13801
13802         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13803         # interfer with $MOUNT/.lustre/fid/ access
13804         mkdir $DIR/$tdir
13805         [[ $? -eq 0 ]] || error "mkdir failed"
13806
13807         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13808         $LCTL set_param fail_loc=0x8000140c
13809         # 5s pause
13810         $LCTL set_param fail_val=5
13811
13812         # create file
13813         echo foofoo > $DIR/$tdir/$tfile &
13814         pid=$!
13815
13816         # wait for create to be delayed
13817         sleep 2
13818
13819         ps -p $pid
13820         [[ $? -eq 0 ]] || error "create should be blocked"
13821
13822         local tempfile=$(mktemp)
13823         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13824         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13825         # some delay may occur during ChangeLog publishing and file read just
13826         # above, that could allow file write to happen finally
13827         [[ -s $tempfile ]] && echo "file should be empty"
13828
13829         $LCTL set_param fail_loc=0
13830
13831         wait $pid
13832         [[ $? -eq 0 ]] || error "create failed"
13833 }
13834 run_test 161d "create with concurrent .lustre/fid access"
13835
13836 check_path() {
13837         local expected="$1"
13838         shift
13839         local fid="$2"
13840
13841         local path
13842         path=$($LFS fid2path "$@")
13843         local rc=$?
13844
13845         if [ $rc -ne 0 ]; then
13846                 error "path looked up of '$expected' failed: rc=$rc"
13847         elif [ "$path" != "$expected" ]; then
13848                 error "path looked up '$path' instead of '$expected'"
13849         else
13850                 echo "FID '$fid' resolves to path '$path' as expected"
13851         fi
13852 }
13853
13854 test_162a() { # was test_162
13855         test_mkdir -p -c1 $DIR/$tdir/d2
13856         touch $DIR/$tdir/d2/$tfile
13857         touch $DIR/$tdir/d2/x1
13858         touch $DIR/$tdir/d2/x2
13859         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13860         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13861         # regular file
13862         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13863         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13864
13865         # softlink
13866         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13867         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13868         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13869
13870         # softlink to wrong file
13871         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13872         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13873         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13874
13875         # hardlink
13876         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13877         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13878         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13879         # fid2path dir/fsname should both work
13880         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13881         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13882
13883         # hardlink count: check that there are 2 links
13884         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13885         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13886
13887         # hardlink indexing: remove the first link
13888         rm $DIR/$tdir/d2/p/q/r/hlink
13889         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13890 }
13891 run_test 162a "path lookup sanity"
13892
13893 test_162b() {
13894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13895         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13896
13897         mkdir $DIR/$tdir
13898         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13899                                 error "create striped dir failed"
13900
13901         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13902                                         tail -n 1 | awk '{print $2}')
13903         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13904
13905         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13906         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13907
13908         # regular file
13909         for ((i=0;i<5;i++)); do
13910                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13911                         error "get fid for f$i failed"
13912                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13913
13914                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13915                         error "get fid for d$i failed"
13916                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13917         done
13918
13919         return 0
13920 }
13921 run_test 162b "striped directory path lookup sanity"
13922
13923 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13924 test_162c() {
13925         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13926                 skip "Need MDS version at least 2.7.51"
13927
13928         local lpath=$tdir.local
13929         local rpath=$tdir.remote
13930
13931         test_mkdir $DIR/$lpath
13932         test_mkdir $DIR/$rpath
13933
13934         for ((i = 0; i <= 101; i++)); do
13935                 lpath="$lpath/$i"
13936                 mkdir $DIR/$lpath
13937                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13938                         error "get fid for local directory $DIR/$lpath failed"
13939                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13940
13941                 rpath="$rpath/$i"
13942                 test_mkdir $DIR/$rpath
13943                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13944                         error "get fid for remote directory $DIR/$rpath failed"
13945                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13946         done
13947
13948         return 0
13949 }
13950 run_test 162c "fid2path works with paths 100 or more directories deep"
13951
13952 test_169() {
13953         # do directio so as not to populate the page cache
13954         log "creating a 10 Mb file"
13955         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13956         log "starting reads"
13957         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13958         log "truncating the file"
13959         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13960         log "killing dd"
13961         kill %+ || true # reads might have finished
13962         echo "wait until dd is finished"
13963         wait
13964         log "removing the temporary file"
13965         rm -rf $DIR/$tfile || error "tmp file removal failed"
13966 }
13967 run_test 169 "parallel read and truncate should not deadlock"
13968
13969 test_170() {
13970         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13971
13972         $LCTL clear     # bug 18514
13973         $LCTL debug_daemon start $TMP/${tfile}_log_good
13974         touch $DIR/$tfile
13975         $LCTL debug_daemon stop
13976         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13977                 error "sed failed to read log_good"
13978
13979         $LCTL debug_daemon start $TMP/${tfile}_log_good
13980         rm -rf $DIR/$tfile
13981         $LCTL debug_daemon stop
13982
13983         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13984                error "lctl df log_bad failed"
13985
13986         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13987         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13988
13989         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13990         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13991
13992         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13993                 error "bad_line good_line1 good_line2 are empty"
13994
13995         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13996         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13997         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13998
13999         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
14000         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
14001         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
14002
14003         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
14004                 error "bad_line_new good_line_new are empty"
14005
14006         local expected_good=$((good_line1 + good_line2*2))
14007
14008         rm -f $TMP/${tfile}*
14009         # LU-231, short malformed line may not be counted into bad lines
14010         if [ $bad_line -ne $bad_line_new ] &&
14011                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
14012                 error "expected $bad_line bad lines, but got $bad_line_new"
14013                 return 1
14014         fi
14015
14016         if [ $expected_good -ne $good_line_new ]; then
14017                 error "expected $expected_good good lines, but got $good_line_new"
14018                 return 2
14019         fi
14020         true
14021 }
14022 run_test 170 "test lctl df to handle corrupted log ====================="
14023
14024 test_171() { # bug20592
14025         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14026
14027         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
14028         $LCTL set_param fail_loc=0x50e
14029         $LCTL set_param fail_val=3000
14030         multiop_bg_pause $DIR/$tfile O_s || true
14031         local MULTIPID=$!
14032         kill -USR1 $MULTIPID
14033         # cause log dump
14034         sleep 3
14035         wait $MULTIPID
14036         if dmesg | grep "recursive fault"; then
14037                 error "caught a recursive fault"
14038         fi
14039         $LCTL set_param fail_loc=0
14040         true
14041 }
14042 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
14043
14044 # it would be good to share it with obdfilter-survey/iokit-libecho code
14045 setup_obdecho_osc () {
14046         local rc=0
14047         local ost_nid=$1
14048         local obdfilter_name=$2
14049         echo "Creating new osc for $obdfilter_name on $ost_nid"
14050         # make sure we can find loopback nid
14051         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
14052
14053         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
14054                            ${obdfilter_name}_osc_UUID || rc=2; }
14055         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
14056                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
14057         return $rc
14058 }
14059
14060 cleanup_obdecho_osc () {
14061         local obdfilter_name=$1
14062         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
14063         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
14064         return 0
14065 }
14066
14067 obdecho_test() {
14068         local OBD=$1
14069         local node=$2
14070         local pages=${3:-64}
14071         local rc=0
14072         local id
14073
14074         local count=10
14075         local obd_size=$(get_obd_size $node $OBD)
14076         local page_size=$(get_page_size $node)
14077         if [[ -n "$obd_size" ]]; then
14078                 local new_count=$((obd_size / (pages * page_size / 1024)))
14079                 [[ $new_count -ge $count ]] || count=$new_count
14080         fi
14081
14082         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
14083         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
14084                            rc=2; }
14085         if [ $rc -eq 0 ]; then
14086             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
14087             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
14088         fi
14089         echo "New object id is $id"
14090         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
14091                            rc=4; }
14092         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
14093                            "test_brw $count w v $pages $id" || rc=4; }
14094         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
14095                            rc=4; }
14096         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
14097                                         "cleanup" || rc=5; }
14098         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
14099                                         "detach" || rc=6; }
14100         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
14101         return $rc
14102 }
14103
14104 test_180a() {
14105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14106
14107         if ! module_loaded obdecho; then
14108                 load_module obdecho/obdecho &&
14109                         stack_trap "rmmod obdecho" EXIT ||
14110                         error "unable to load obdecho on client"
14111         fi
14112
14113         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
14114         local host=$($LCTL get_param -n osc.$osc.import |
14115                      awk '/current_connection:/ { print $2 }' )
14116         local target=$($LCTL get_param -n osc.$osc.import |
14117                        awk '/target:/ { print $2 }' )
14118         target=${target%_UUID}
14119
14120         if [ -n "$target" ]; then
14121                 setup_obdecho_osc $host $target &&
14122                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
14123                         { error "obdecho setup failed with $?"; return; }
14124
14125                 obdecho_test ${target}_osc client ||
14126                         error "obdecho_test failed on ${target}_osc"
14127         else
14128                 $LCTL get_param osc.$osc.import
14129                 error "there is no osc.$osc.import target"
14130         fi
14131 }
14132 run_test 180a "test obdecho on osc"
14133
14134 test_180b() {
14135         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14136         remote_ost_nodsh && skip "remote OST with nodsh"
14137
14138         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
14139                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
14140                 error "failed to load module obdecho"
14141
14142         local target=$(do_facet ost1 $LCTL dl |
14143                        awk '/obdfilter/ { print $4; exit; }')
14144
14145         if [ -n "$target" ]; then
14146                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
14147         else
14148                 do_facet ost1 $LCTL dl
14149                 error "there is no obdfilter target on ost1"
14150         fi
14151 }
14152 run_test 180b "test obdecho directly on obdfilter"
14153
14154 test_180c() { # LU-2598
14155         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14156         remote_ost_nodsh && skip "remote OST with nodsh"
14157         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
14158                 skip "Need MDS version at least 2.4.0"
14159
14160         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
14161                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
14162                 error "failed to load module obdecho"
14163
14164         local target=$(do_facet ost1 $LCTL dl |
14165                        awk '/obdfilter/ { print $4; exit; }')
14166
14167         if [ -n "$target" ]; then
14168                 local pages=16384 # 64MB bulk I/O RPC size
14169
14170                 obdecho_test "$target" ost1 "$pages" ||
14171                         error "obdecho_test with pages=$pages failed with $?"
14172         else
14173                 do_facet ost1 $LCTL dl
14174                 error "there is no obdfilter target on ost1"
14175         fi
14176 }
14177 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
14178
14179 test_181() { # bug 22177
14180         test_mkdir $DIR/$tdir
14181         # create enough files to index the directory
14182         createmany -o $DIR/$tdir/foobar 4000
14183         # print attributes for debug purpose
14184         lsattr -d .
14185         # open dir
14186         multiop_bg_pause $DIR/$tdir D_Sc || return 1
14187         MULTIPID=$!
14188         # remove the files & current working dir
14189         unlinkmany $DIR/$tdir/foobar 4000
14190         rmdir $DIR/$tdir
14191         kill -USR1 $MULTIPID
14192         wait $MULTIPID
14193         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
14194         return 0
14195 }
14196 run_test 181 "Test open-unlinked dir ========================"
14197
14198 test_182() {
14199         local fcount=1000
14200         local tcount=10
14201
14202         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
14203
14204         $LCTL set_param mdc.*.rpc_stats=clear
14205
14206         for (( i = 0; i < $tcount; i++ )) ; do
14207                 mkdir $DIR/$tdir/$i
14208         done
14209
14210         for (( i = 0; i < $tcount; i++ )) ; do
14211                 createmany -o $DIR/$tdir/$i/f- $fcount &
14212         done
14213         wait
14214
14215         for (( i = 0; i < $tcount; i++ )) ; do
14216                 unlinkmany $DIR/$tdir/$i/f- $fcount &
14217         done
14218         wait
14219
14220         $LCTL get_param mdc.*.rpc_stats
14221
14222         rm -rf $DIR/$tdir
14223 }
14224 run_test 182 "Test parallel modify metadata operations ================"
14225
14226 test_183() { # LU-2275
14227         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14228         remote_mds_nodsh && skip "remote MDS with nodsh"
14229         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
14230                 skip "Need MDS version at least 2.3.56"
14231
14232         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
14233         echo aaa > $DIR/$tdir/$tfile
14234
14235 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
14236         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
14237
14238         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
14239         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
14240
14241         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14242
14243         # Flush negative dentry cache
14244         touch $DIR/$tdir/$tfile
14245
14246         # We are not checking for any leaked references here, they'll
14247         # become evident next time we do cleanup with module unload.
14248         rm -rf $DIR/$tdir
14249 }
14250 run_test 183 "No crash or request leak in case of strange dispositions ========"
14251
14252 # test suite 184 is for LU-2016, LU-2017
14253 test_184a() {
14254         check_swap_layouts_support
14255
14256         dir0=$DIR/$tdir/$testnum
14257         test_mkdir -p -c1 $dir0
14258         ref1=/etc/passwd
14259         ref2=/etc/group
14260         file1=$dir0/f1
14261         file2=$dir0/f2
14262         $SETSTRIPE -c1 $file1
14263         cp $ref1 $file1
14264         $SETSTRIPE -c2 $file2
14265         cp $ref2 $file2
14266         gen1=$($GETSTRIPE -g $file1)
14267         gen2=$($GETSTRIPE -g $file2)
14268
14269         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
14270         gen=$($GETSTRIPE -g $file1)
14271         [[ $gen1 != $gen ]] ||
14272                 "Layout generation on $file1 does not change"
14273         gen=$($GETSTRIPE -g $file2)
14274         [[ $gen2 != $gen ]] ||
14275                 "Layout generation on $file2 does not change"
14276
14277         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
14278         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14279
14280         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
14281 }
14282 run_test 184a "Basic layout swap"
14283
14284 test_184b() {
14285         check_swap_layouts_support
14286
14287         dir0=$DIR/$tdir/$testnum
14288         mkdir -p $dir0 || error "creating dir $dir0"
14289         file1=$dir0/f1
14290         file2=$dir0/f2
14291         file3=$dir0/f3
14292         dir1=$dir0/d1
14293         dir2=$dir0/d2
14294         mkdir $dir1 $dir2
14295         $SETSTRIPE -c1 $file1
14296         $SETSTRIPE -c2 $file2
14297         $SETSTRIPE -c1 $file3
14298         chown $RUNAS_ID $file3
14299         gen1=$($GETSTRIPE -g $file1)
14300         gen2=$($GETSTRIPE -g $file2)
14301
14302         $LFS swap_layouts $dir1 $dir2 &&
14303                 error "swap of directories layouts should fail"
14304         $LFS swap_layouts $dir1 $file1 &&
14305                 error "swap of directory and file layouts should fail"
14306         $RUNAS $LFS swap_layouts $file1 $file2 &&
14307                 error "swap of file we cannot write should fail"
14308         $LFS swap_layouts $file1 $file3 &&
14309                 error "swap of file with different owner should fail"
14310         /bin/true # to clear error code
14311 }
14312 run_test 184b "Forbidden layout swap (will generate errors)"
14313
14314 test_184c() {
14315         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
14316         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
14317         check_swap_layouts_support
14318
14319         local dir0=$DIR/$tdir/$testnum
14320         mkdir -p $dir0 || error "creating dir $dir0"
14321
14322         local ref1=$dir0/ref1
14323         local ref2=$dir0/ref2
14324         local file1=$dir0/file1
14325         local file2=$dir0/file2
14326         # create a file large enough for the concurrent test
14327         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
14328         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
14329         echo "ref file size: ref1($(stat -c %s $ref1))," \
14330              "ref2($(stat -c %s $ref2))"
14331
14332         cp $ref2 $file2
14333         dd if=$ref1 of=$file1 bs=16k &
14334         local DD_PID=$!
14335
14336         # Make sure dd starts to copy file
14337         while [ ! -f $file1 ]; do sleep 0.1; done
14338
14339         $LFS swap_layouts $file1 $file2
14340         local rc=$?
14341         wait $DD_PID
14342         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
14343         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
14344
14345         # how many bytes copied before swapping layout
14346         local copied=$(stat -c %s $file2)
14347         local remaining=$(stat -c %s $ref1)
14348         remaining=$((remaining - copied))
14349         echo "Copied $copied bytes before swapping layout..."
14350
14351         cmp -n $copied $file1 $ref2 | grep differ &&
14352                 error "Content mismatch [0, $copied) of ref2 and file1"
14353         cmp -n $copied $file2 $ref1 ||
14354                 error "Content mismatch [0, $copied) of ref1 and file2"
14355         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
14356                 error "Content mismatch [$copied, EOF) of ref1 and file1"
14357
14358         # clean up
14359         rm -f $ref1 $ref2 $file1 $file2
14360 }
14361 run_test 184c "Concurrent write and layout swap"
14362
14363 test_184d() {
14364         check_swap_layouts_support
14365         [ -z "$(which getfattr 2>/dev/null)" ] &&
14366                 skip_env "no getfattr command"
14367
14368         local file1=$DIR/$tdir/$tfile-1
14369         local file2=$DIR/$tdir/$tfile-2
14370         local file3=$DIR/$tdir/$tfile-3
14371         local lovea1
14372         local lovea2
14373
14374         mkdir -p $DIR/$tdir
14375         touch $file1 || error "create $file1 failed"
14376         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
14377                 error "create $file2 failed"
14378         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
14379                 error "create $file3 failed"
14380         lovea1=$(get_layout_param $file1)
14381
14382         $LFS swap_layouts $file2 $file3 ||
14383                 error "swap $file2 $file3 layouts failed"
14384         $LFS swap_layouts $file1 $file2 ||
14385                 error "swap $file1 $file2 layouts failed"
14386
14387         lovea2=$(get_layout_param $file2)
14388         echo "$lovea1"
14389         echo "$lovea2"
14390         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
14391
14392         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
14393         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
14394 }
14395 run_test 184d "allow stripeless layouts swap"
14396
14397 test_184e() {
14398         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
14399                 skip "Need MDS version at least 2.6.94"
14400         check_swap_layouts_support
14401         [ -z "$(which getfattr 2>/dev/null)" ] &&
14402                 skip_env "no getfattr command"
14403
14404         local file1=$DIR/$tdir/$tfile-1
14405         local file2=$DIR/$tdir/$tfile-2
14406         local file3=$DIR/$tdir/$tfile-3
14407         local lovea
14408
14409         mkdir -p $DIR/$tdir
14410         touch $file1 || error "create $file1 failed"
14411         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
14412                 error "create $file2 failed"
14413         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
14414                 error "create $file3 failed"
14415
14416         $LFS swap_layouts $file1 $file2 ||
14417                 error "swap $file1 $file2 layouts failed"
14418
14419         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
14420         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
14421
14422         echo 123 > $file1 || error "Should be able to write into $file1"
14423
14424         $LFS swap_layouts $file1 $file3 ||
14425                 error "swap $file1 $file3 layouts failed"
14426
14427         echo 123 > $file1 || error "Should be able to write into $file1"
14428
14429         rm -rf $file1 $file2 $file3
14430 }
14431 run_test 184e "Recreate layout after stripeless layout swaps"
14432
14433 test_184f() {
14434         # Create a file with name longer than sizeof(struct stat) ==
14435         # 144 to see if we can get chars from the file name to appear
14436         # in the returned striping. Note that 'f' == 0x66.
14437         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
14438
14439         mkdir -p $DIR/$tdir
14440         mcreate $DIR/$tdir/$file
14441         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
14442                 error "IOC_MDC_GETFILEINFO returned garbage striping"
14443         fi
14444 }
14445 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
14446
14447 test_185() { # LU-2441
14448         # LU-3553 - no volatile file support in old servers
14449         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
14450                 skip "Need MDS version at least 2.3.60"
14451
14452         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
14453         touch $DIR/$tdir/spoo
14454         local mtime1=$(stat -c "%Y" $DIR/$tdir)
14455         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
14456                 error "cannot create/write a volatile file"
14457         [ "$FILESET" == "" ] &&
14458         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
14459                 error "FID is still valid after close"
14460
14461         multiop_bg_pause $DIR/$tdir vVw4096_c
14462         local multi_pid=$!
14463
14464         local OLD_IFS=$IFS
14465         IFS=":"
14466         local fidv=($fid)
14467         IFS=$OLD_IFS
14468         # assume that the next FID for this client is sequential, since stdout
14469         # is unfortunately eaten by multiop_bg_pause
14470         local n=$((${fidv[1]} + 1))
14471         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
14472         if [ "$FILESET" == "" ]; then
14473                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
14474                         error "FID is missing before close"
14475         fi
14476         kill -USR1 $multi_pid
14477         # 1 second delay, so if mtime change we will see it
14478         sleep 1
14479         local mtime2=$(stat -c "%Y" $DIR/$tdir)
14480         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
14481 }
14482 run_test 185 "Volatile file support"
14483
14484 function create_check_volatile() {
14485         local idx=$1
14486         local tgt
14487
14488         $MULTIOP $MOUNT/.lustre/fid V${idx}Fw4096_c >&/tmp/${tfile}.fid &
14489         local PID=$!
14490         sleep 1
14491         local FID=$(cat /tmp/${tfile}.fid)
14492         [ "$FID" == "" ] && error "can't get FID for volatile"
14493         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID || error "can't stat $FID"
14494         tgt=$($LFS getstripe -m $MOUNT/.lustre/fid/$FID)
14495         [ "$tgt" != "$idx" ] && error "wrong MDS $tgt, expected $idx"
14496         kill -USR1 $PID
14497         wait
14498         sleep 1
14499         cancel_lru_locks mdc # flush opencache
14500         $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID && error "can stat $FID"
14501         return 0
14502 }
14503
14504 test_185a(){
14505         # LU-12516 - volatile creation via .lustre
14506         [[ $MDS1_VERSION -ge $(version_code 2.12.2) ]] ||
14507                 skip "Need MDS version at least 2.12.2"
14508
14509         create_check_volatile 0
14510         [ $MDSCOUNT -lt 2 ] && return 0
14511
14512         # DNE case
14513         create_check_volatile 1
14514
14515         return 0
14516 }
14517 run_test 185a "Volatile file creation in .lustre/fid/"
14518
14519 test_187a() {
14520         remote_mds_nodsh && skip "remote MDS with nodsh"
14521         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
14522                 skip "Need MDS version at least 2.3.0"
14523
14524         local dir0=$DIR/$tdir/$testnum
14525         mkdir -p $dir0 || error "creating dir $dir0"
14526
14527         local file=$dir0/file1
14528         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
14529         local dv1=$($LFS data_version $file)
14530         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
14531         local dv2=$($LFS data_version $file)
14532         [[ $dv1 != $dv2 ]] ||
14533                 error "data version did not change on write $dv1 == $dv2"
14534
14535         # clean up
14536         rm -f $file1
14537 }
14538 run_test 187a "Test data version change"
14539
14540 test_187b() {
14541         remote_mds_nodsh && skip "remote MDS with nodsh"
14542         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
14543                 skip "Need MDS version at least 2.3.0"
14544
14545         local dir0=$DIR/$tdir/$testnum
14546         mkdir -p $dir0 || error "creating dir $dir0"
14547
14548         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
14549         [[ ${DV[0]} != ${DV[1]} ]] ||
14550                 error "data version did not change on write"\
14551                       " ${DV[0]} == ${DV[1]}"
14552
14553         # clean up
14554         rm -f $file1
14555 }
14556 run_test 187b "Test data version change on volatile file"
14557
14558 test_200() {
14559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14560         remote_mgs_nodsh && skip "remote MGS with nodsh"
14561         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
14562
14563         local POOL=${POOL:-cea1}
14564         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
14565         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
14566         # Pool OST targets
14567         local first_ost=0
14568         local last_ost=$(($OSTCOUNT - 1))
14569         local ost_step=2
14570         local ost_list=$(seq $first_ost $ost_step $last_ost)
14571         local ost_range="$first_ost $last_ost $ost_step"
14572         local test_path=$POOL_ROOT/$POOL_DIR_NAME
14573         local file_dir=$POOL_ROOT/file_tst
14574         local subdir=$test_path/subdir
14575         local rc=0
14576
14577         while : ; do
14578                 # former test_200a test_200b
14579                 pool_add $POOL                          || { rc=$? ; break; }
14580                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
14581                 # former test_200c test_200d
14582                 mkdir -p $test_path
14583                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
14584                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
14585                 mkdir -p $subdir
14586                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
14587                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
14588                                                         || { rc=$? ; break; }
14589                 # former test_200e test_200f
14590                 local files=$((OSTCOUNT*3))
14591                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
14592                                                         || { rc=$? ; break; }
14593                 pool_create_files $POOL $file_dir $files "$ost_list" \
14594                                                         || { rc=$? ; break; }
14595                 # former test_200g test_200h
14596                 pool_lfs_df $POOL                       || { rc=$? ; break; }
14597                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
14598
14599                 # former test_201a test_201b test_201c
14600                 pool_remove_first_target $POOL          || { rc=$? ; break; }
14601
14602                 local f=$test_path/$tfile
14603                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
14604                 pool_remove $POOL $f                    || { rc=$? ; break; }
14605                 break
14606         done
14607
14608         destroy_test_pools
14609
14610         return $rc
14611 }
14612 run_test 200 "OST pools"
14613
14614 # usage: default_attr <count | size | offset>
14615 default_attr() {
14616         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
14617 }
14618
14619 # usage: check_default_stripe_attr
14620 check_default_stripe_attr() {
14621         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
14622         case $1 in
14623         --stripe-count|-c)
14624                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
14625         --stripe-size|-S)
14626                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
14627         --stripe-index|-i)
14628                 EXPECTED=-1;;
14629         *)
14630                 error "unknown getstripe attr '$1'"
14631         esac
14632
14633         [ $ACTUAL == $EXPECTED ] ||
14634                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
14635 }
14636
14637 test_204a() {
14638         test_mkdir $DIR/$tdir
14639         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
14640
14641         check_default_stripe_attr --stripe-count
14642         check_default_stripe_attr --stripe-size
14643         check_default_stripe_attr --stripe-index
14644 }
14645 run_test 204a "Print default stripe attributes"
14646
14647 test_204b() {
14648         test_mkdir $DIR/$tdir
14649         $SETSTRIPE --stripe-count 1 $DIR/$tdir
14650
14651         check_default_stripe_attr --stripe-size
14652         check_default_stripe_attr --stripe-index
14653 }
14654 run_test 204b "Print default stripe size and offset"
14655
14656 test_204c() {
14657         test_mkdir $DIR/$tdir
14658         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
14659
14660         check_default_stripe_attr --stripe-count
14661         check_default_stripe_attr --stripe-index
14662 }
14663 run_test 204c "Print default stripe count and offset"
14664
14665 test_204d() {
14666         test_mkdir $DIR/$tdir
14667         $SETSTRIPE --stripe-index 0 $DIR/$tdir
14668
14669         check_default_stripe_attr --stripe-count
14670         check_default_stripe_attr --stripe-size
14671 }
14672 run_test 204d "Print default stripe count and size"
14673
14674 test_204e() {
14675         test_mkdir $DIR/$tdir
14676         $SETSTRIPE -d $DIR/$tdir
14677
14678         check_default_stripe_attr --stripe-count --raw
14679         check_default_stripe_attr --stripe-size --raw
14680         check_default_stripe_attr --stripe-index --raw
14681 }
14682 run_test 204e "Print raw stripe attributes"
14683
14684 test_204f() {
14685         test_mkdir $DIR/$tdir
14686         $SETSTRIPE --stripe-count 1 $DIR/$tdir
14687
14688         check_default_stripe_attr --stripe-size --raw
14689         check_default_stripe_attr --stripe-index --raw
14690 }
14691 run_test 204f "Print raw stripe size and offset"
14692
14693 test_204g() {
14694         test_mkdir $DIR/$tdir
14695         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
14696
14697         check_default_stripe_attr --stripe-count --raw
14698         check_default_stripe_attr --stripe-index --raw
14699 }
14700 run_test 204g "Print raw stripe count and offset"
14701
14702 test_204h() {
14703         test_mkdir $DIR/$tdir
14704         $SETSTRIPE --stripe-index 0 $DIR/$tdir
14705
14706         check_default_stripe_attr --stripe-count --raw
14707         check_default_stripe_attr --stripe-size --raw
14708 }
14709 run_test 204h "Print raw stripe count and size"
14710
14711 # Figure out which job scheduler is being used, if any,
14712 # or use a fake one
14713 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
14714         JOBENV=SLURM_JOB_ID
14715 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
14716         JOBENV=LSB_JOBID
14717 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
14718         JOBENV=PBS_JOBID
14719 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
14720         JOBENV=LOADL_STEP_ID
14721 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
14722         JOBENV=JOB_ID
14723 else
14724         $LCTL list_param jobid_name > /dev/null 2>&1
14725         if [ $? -eq 0 ]; then
14726                 JOBENV=nodelocal
14727         else
14728                 JOBENV=FAKE_JOBID
14729         fi
14730 fi
14731 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
14732
14733 verify_jobstats() {
14734         local cmd=($1)
14735         shift
14736         local facets="$@"
14737
14738 # we don't really need to clear the stats for this test to work, since each
14739 # command has a unique jobid, but it makes debugging easier if needed.
14740 #       for facet in $facets; do
14741 #               local dev=$(convert_facet2label $facet)
14742 #               # clear old jobstats
14743 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
14744 #       done
14745
14746         # use a new JobID for each test, or we might see an old one
14747         [ "$JOBENV" = "FAKE_JOBID" ] &&
14748                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
14749
14750         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
14751
14752         [ "$JOBENV" = "nodelocal" ] && {
14753                 FAKE_JOBID=id.$testnum.%e.$RANDOM
14754                 $LCTL set_param jobid_name=$FAKE_JOBID
14755                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14756         }
14757
14758         log "Test: ${cmd[*]}"
14759         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14760
14761         if [ $JOBENV = "FAKE_JOBID" ]; then
14762                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14763         else
14764                 ${cmd[*]}
14765         fi
14766
14767         # all files are created on OST0000
14768         for facet in $facets; do
14769                 local stats="*.$(convert_facet2label $facet).job_stats"
14770
14771                 # strip out libtool wrappers for in-tree executables
14772                 if [ $(do_facet $facet lctl get_param $stats |
14773                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14774                         do_facet $facet lctl get_param $stats
14775                         error "No jobstats for $JOBVAL found on $facet::$stats"
14776                 fi
14777         done
14778 }
14779
14780 jobstats_set() {
14781         local new_jobenv=$1
14782
14783         set_persistent_param_and_check client "jobid_var" \
14784                 "$FSNAME.sys.jobid_var" $new_jobenv
14785 }
14786
14787 test_205a() { # Job stats
14788         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14789         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
14790                 skip "Need MDS version with at least 2.7.1"
14791         remote_mgs_nodsh && skip "remote MGS with nodsh"
14792         remote_mds_nodsh && skip "remote MDS with nodsh"
14793         remote_ost_nodsh && skip "remote OST with nodsh"
14794         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14795                 skip "Server doesn't support jobstats"
14796         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14797
14798         local old_jobenv=$($LCTL get_param -n jobid_var)
14799         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14800
14801         if [[ $PERM_CMD = *"set_param -P"* ]]; then
14802                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14803         else
14804                 stack_trap "do_facet mgs $PERM_CMD \
14805                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14806         fi
14807         changelog_register
14808
14809         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14810                                 mdt.*.job_cleanup_interval | head -n 1)
14811         local new_interval=5
14812         do_facet $SINGLEMDS \
14813                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14814         stack_trap "do_facet $SINGLEMDS \
14815                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14816         local start=$SECONDS
14817
14818         local cmd
14819         # mkdir
14820         cmd="mkdir $DIR/$tdir"
14821         verify_jobstats "$cmd" "$SINGLEMDS"
14822         # rmdir
14823         cmd="rmdir $DIR/$tdir"
14824         verify_jobstats "$cmd" "$SINGLEMDS"
14825         # mkdir on secondary MDT
14826         if [ $MDSCOUNT -gt 1 ]; then
14827                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14828                 verify_jobstats "$cmd" "mds2"
14829         fi
14830         # mknod
14831         cmd="mknod $DIR/$tfile c 1 3"
14832         verify_jobstats "$cmd" "$SINGLEMDS"
14833         # unlink
14834         cmd="rm -f $DIR/$tfile"
14835         verify_jobstats "$cmd" "$SINGLEMDS"
14836         # create all files on OST0000 so verify_jobstats can find OST stats
14837         # open & close
14838         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
14839         verify_jobstats "$cmd" "$SINGLEMDS"
14840         # setattr
14841         cmd="touch $DIR/$tfile"
14842         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14843         # write
14844         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14845         verify_jobstats "$cmd" "ost1"
14846         # read
14847         cancel_lru_locks osc
14848         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14849         verify_jobstats "$cmd" "ost1"
14850         # truncate
14851         cmd="$TRUNCATE $DIR/$tfile 0"
14852         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14853         # rename
14854         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14855         verify_jobstats "$cmd" "$SINGLEMDS"
14856         # jobstats expiry - sleep until old stats should be expired
14857         local left=$((new_interval + 5 - (SECONDS - start)))
14858         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14859                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14860                         "0" $left
14861         cmd="mkdir $DIR/$tdir.expire"
14862         verify_jobstats "$cmd" "$SINGLEMDS"
14863         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14864             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14865
14866         # Ensure that jobid are present in changelog (if supported by MDS)
14867         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14868                 changelog_dump | tail -10
14869                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14870                 [ $jobids -eq 9 ] ||
14871                         error "Wrong changelog jobid count $jobids != 9"
14872
14873                 # LU-5862
14874                 JOBENV="disable"
14875                 jobstats_set $JOBENV
14876                 touch $DIR/$tfile
14877                 changelog_dump | grep $tfile
14878                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14879                 [ $jobids -eq 0 ] ||
14880                         error "Unexpected jobids when jobid_var=$JOBENV"
14881         fi
14882
14883         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14884         JOBENV="JOBCOMPLEX"
14885         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14886
14887         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14888 }
14889 run_test 205a "Verify job stats"
14890
14891 # LU-13117
14892 test_205b() {
14893         $LCTL set_param jobid_var=USER jobid_name="%e.%u"
14894         env -i USERTESTJOBSTATS=foolish touch $DIR/$tfile.1
14895         do_facet $SINGLEMDS $LCTL get_param mdt.*.job_stats |
14896                 grep job_id: | grep foolish &&
14897                         error "Unexpected jobid found"
14898         true
14899 }
14900 run_test 205b "Verify job stats jobid parsing"
14901
14902 # LU-1480, LU-1773 and LU-1657
14903 test_206() {
14904         mkdir -p $DIR/$tdir
14905         $SETSTRIPE -c -1 $DIR/$tdir
14906 #define OBD_FAIL_LOV_INIT 0x1403
14907         $LCTL set_param fail_loc=0xa0001403
14908         $LCTL set_param fail_val=1
14909         touch $DIR/$tdir/$tfile || true
14910 }
14911 run_test 206 "fail lov_init_raid0() doesn't lbug"
14912
14913 test_207a() {
14914         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14915         local fsz=`stat -c %s $DIR/$tfile`
14916         cancel_lru_locks mdc
14917
14918         # do not return layout in getattr intent
14919 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14920         $LCTL set_param fail_loc=0x170
14921         local sz=`stat -c %s $DIR/$tfile`
14922
14923         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14924
14925         rm -rf $DIR/$tfile
14926 }
14927 run_test 207a "can refresh layout at glimpse"
14928
14929 test_207b() {
14930         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14931         local cksum=`md5sum $DIR/$tfile`
14932         local fsz=`stat -c %s $DIR/$tfile`
14933         cancel_lru_locks mdc
14934         cancel_lru_locks osc
14935
14936         # do not return layout in getattr intent
14937 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14938         $LCTL set_param fail_loc=0x171
14939
14940         # it will refresh layout after the file is opened but before read issues
14941         echo checksum is "$cksum"
14942         echo "$cksum" |md5sum -c --quiet || error "file differs"
14943
14944         rm -rf $DIR/$tfile
14945 }
14946 run_test 207b "can refresh layout at open"
14947
14948 test_208() {
14949         # FIXME: in this test suite, only RD lease is used. This is okay
14950         # for now as only exclusive open is supported. After generic lease
14951         # is done, this test suite should be revised. - Jinshan
14952
14953         remote_mds_nodsh && skip "remote MDS with nodsh"
14954         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14955                 skip "Need MDS version at least 2.4.52"
14956
14957         echo "==== test 1: verify get lease work"
14958         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14959
14960         echo "==== test 2: verify lease can be broken by upcoming open"
14961         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14962         local PID=$!
14963         sleep 1
14964
14965         $MULTIOP $DIR/$tfile oO_RDONLY:c
14966         kill -USR1 $PID && wait $PID || error "break lease error"
14967
14968         echo "==== test 3: verify lease can't be granted if an open already exists"
14969         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14970         local PID=$!
14971         sleep 1
14972
14973         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14974         kill -USR1 $PID && wait $PID || error "open file error"
14975
14976         echo "==== test 4: lease can sustain over recovery"
14977         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14978         PID=$!
14979         sleep 1
14980
14981         fail mds1
14982
14983         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14984
14985         echo "==== test 5: lease broken can't be regained by replay"
14986         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14987         PID=$!
14988         sleep 1
14989
14990         # open file to break lease and then recovery
14991         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14992         fail mds1
14993
14994         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14995
14996         rm -f $DIR/$tfile
14997 }
14998 run_test 208 "Exclusive open"
14999
15000 test_209() {
15001         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
15002                 skip_env "must have disp_stripe"
15003
15004         touch $DIR/$tfile
15005         sync; sleep 5; sync;
15006
15007         echo 3 > /proc/sys/vm/drop_caches
15008         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
15009
15010         # open/close 500 times
15011         for i in $(seq 500); do
15012                 cat $DIR/$tfile
15013         done
15014
15015         echo 3 > /proc/sys/vm/drop_caches
15016         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
15017
15018         echo "before: $req_before, after: $req_after"
15019         [ $((req_after - req_before)) -ge 300 ] &&
15020                 error "open/close requests are not freed"
15021         return 0
15022 }
15023 run_test 209 "read-only open/close requests should be freed promptly"
15024
15025 test_212() {
15026         size=`date +%s`
15027         size=$((size % 8192 + 1))
15028         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
15029         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
15030         rm -f $DIR/f212 $DIR/f212.xyz
15031 }
15032 run_test 212 "Sendfile test ============================================"
15033
15034 test_213() {
15035         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
15036         cancel_lru_locks osc
15037         lctl set_param fail_loc=0x8000040f
15038         # generate a read lock
15039         cat $DIR/$tfile > /dev/null
15040         # write to the file, it will try to cancel the above read lock.
15041         cat /etc/hosts >> $DIR/$tfile
15042 }
15043 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
15044
15045 test_214() { # for bug 20133
15046         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
15047         for (( i=0; i < 340; i++ )) ; do
15048                 touch $DIR/$tdir/d214c/a$i
15049         done
15050
15051         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
15052         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
15053         ls $DIR/d214c || error "ls $DIR/d214c failed"
15054         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
15055         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
15056 }
15057 run_test 214 "hash-indexed directory test - bug 20133"
15058
15059 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
15060 create_lnet_proc_files() {
15061         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
15062 }
15063
15064 # counterpart of create_lnet_proc_files
15065 remove_lnet_proc_files() {
15066         rm -f $TMP/lnet_$1.sys
15067 }
15068
15069 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
15070 # 3rd arg as regexp for body
15071 check_lnet_proc_stats() {
15072         local l=$(cat "$TMP/lnet_$1" |wc -l)
15073         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
15074
15075         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
15076 }
15077
15078 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
15079 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
15080 # optional and can be regexp for 2nd line (lnet.routes case)
15081 check_lnet_proc_entry() {
15082         local blp=2          # blp stands for 'position of 1st line of body'
15083         [ -z "$5" ] || blp=3 # lnet.routes case
15084
15085         local l=$(cat "$TMP/lnet_$1" |wc -l)
15086         # subtracting one from $blp because the body can be empty
15087         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
15088
15089         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
15090                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
15091
15092         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
15093                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
15094
15095         # bail out if any unexpected line happened
15096         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
15097         [ "$?" != 0 ] || error "$2 misformatted"
15098 }
15099
15100 test_215() { # for bugs 18102, 21079, 21517
15101         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15102
15103         local N='(0|[1-9][0-9]*)'       # non-negative numeric
15104         local P='[1-9][0-9]*'           # positive numeric
15105         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
15106         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
15107         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
15108         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
15109
15110         local L1 # regexp for 1st line
15111         local L2 # regexp for 2nd line (optional)
15112         local BR # regexp for the rest (body)
15113
15114         # lnet.stats should look as 11 space-separated non-negative numerics
15115         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
15116         create_lnet_proc_files "stats"
15117         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
15118         remove_lnet_proc_files "stats"
15119
15120         # lnet.routes should look like this:
15121         # Routing disabled/enabled
15122         # net hops priority state router
15123         # where net is a string like tcp0, hops > 0, priority >= 0,
15124         # state is up/down,
15125         # router is a string like 192.168.1.1@tcp2
15126         L1="^Routing (disabled|enabled)$"
15127         L2="^net +hops +priority +state +router$"
15128         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
15129         create_lnet_proc_files "routes"
15130         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
15131         remove_lnet_proc_files "routes"
15132
15133         # lnet.routers should look like this:
15134         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
15135         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
15136         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
15137         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
15138         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
15139         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
15140         create_lnet_proc_files "routers"
15141         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
15142         remove_lnet_proc_files "routers"
15143
15144         # lnet.peers should look like this:
15145         # nid refs state last max rtr min tx min queue
15146         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
15147         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
15148         # numeric (0 or >0 or <0), queue >= 0.
15149         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
15150         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
15151         create_lnet_proc_files "peers"
15152         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
15153         remove_lnet_proc_files "peers"
15154
15155         # lnet.buffers  should look like this:
15156         # pages count credits min
15157         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
15158         L1="^pages +count +credits +min$"
15159         BR="^ +$N +$N +$I +$I$"
15160         create_lnet_proc_files "buffers"
15161         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
15162         remove_lnet_proc_files "buffers"
15163
15164         # lnet.nis should look like this:
15165         # nid status alive refs peer rtr max tx min
15166         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
15167         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
15168         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
15169         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
15170         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
15171         create_lnet_proc_files "nis"
15172         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
15173         remove_lnet_proc_files "nis"
15174
15175         # can we successfully write to lnet.stats?
15176         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
15177 }
15178 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
15179
15180 test_216() { # bug 20317
15181         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15182         remote_ost_nodsh && skip "remote OST with nodsh"
15183
15184         local node
15185         local facets=$(get_facets OST)
15186         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15187
15188         save_lustre_params client "osc.*.contention_seconds" > $p
15189         save_lustre_params $facets \
15190                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
15191         save_lustre_params $facets \
15192                 "ldlm.namespaces.filter-*.contended_locks" >> $p
15193         save_lustre_params $facets \
15194                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
15195         clear_stats osc.*.osc_stats
15196
15197         # agressive lockless i/o settings
15198         do_nodes $(comma_list $(osts_nodes)) \
15199                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
15200                         ldlm.namespaces.filter-*.contended_locks=0 \
15201                         ldlm.namespaces.filter-*.contention_seconds=60"
15202         lctl set_param -n osc.*.contention_seconds=60
15203
15204         $DIRECTIO write $DIR/$tfile 0 10 4096
15205         $CHECKSTAT -s 40960 $DIR/$tfile
15206
15207         # disable lockless i/o
15208         do_nodes $(comma_list $(osts_nodes)) \
15209                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
15210                         ldlm.namespaces.filter-*.contended_locks=32 \
15211                         ldlm.namespaces.filter-*.contention_seconds=0"
15212         lctl set_param -n osc.*.contention_seconds=0
15213         clear_stats osc.*.osc_stats
15214
15215         dd if=/dev/zero of=$DIR/$tfile count=0
15216         $CHECKSTAT -s 0 $DIR/$tfile
15217
15218         restore_lustre_params <$p
15219         rm -f $p
15220         rm $DIR/$tfile
15221 }
15222 run_test 216 "check lockless direct write updates file size and kms correctly"
15223
15224 test_217() { # bug 22430
15225         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15226
15227         local node
15228         local nid
15229
15230         for node in $(nodes_list); do
15231                 nid=$(host_nids_address $node $NETTYPE)
15232                 if [[ $nid = *-* ]] ; then
15233                         echo "lctl ping $(h2nettype $nid)"
15234                         lctl ping $(h2nettype $nid)
15235                 else
15236                         echo "skipping $node (no hyphen detected)"
15237                 fi
15238         done
15239 }
15240 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
15241
15242 test_218() {
15243        # do directio so as not to populate the page cache
15244        log "creating a 10 Mb file"
15245        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
15246        log "starting reads"
15247        dd if=$DIR/$tfile of=/dev/null bs=4096 &
15248        log "truncating the file"
15249        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
15250        log "killing dd"
15251        kill %+ || true # reads might have finished
15252        echo "wait until dd is finished"
15253        wait
15254        log "removing the temporary file"
15255        rm -rf $DIR/$tfile || error "tmp file removal failed"
15256 }
15257 run_test 218 "parallel read and truncate should not deadlock"
15258
15259 test_219() {
15260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15261
15262         # write one partial page
15263         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
15264         # set no grant so vvp_io_commit_write will do sync write
15265         $LCTL set_param fail_loc=0x411
15266         # write a full page at the end of file
15267         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
15268
15269         $LCTL set_param fail_loc=0
15270         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
15271         $LCTL set_param fail_loc=0x411
15272         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
15273
15274         # LU-4201
15275         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
15276         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
15277 }
15278 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
15279
15280 test_220() { #LU-325
15281         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15282         remote_ost_nodsh && skip "remote OST with nodsh"
15283         remote_mds_nodsh && skip "remote MDS with nodsh"
15284         remote_mgs_nodsh && skip "remote MGS with nodsh"
15285
15286         local OSTIDX=0
15287
15288         # create on MDT0000 so the last_id and next_id are correct
15289         mkdir $DIR/$tdir
15290         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
15291         OST=${OST%_UUID}
15292
15293         # on the mdt's osc
15294         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
15295         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
15296                         osp.$mdtosc_proc1.prealloc_last_id)
15297         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
15298                         osp.$mdtosc_proc1.prealloc_next_id)
15299
15300         $LFS df -i
15301
15302         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
15303         #define OBD_FAIL_OST_ENOINO              0x229
15304         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
15305         create_pool $FSNAME.$TESTNAME || return 1
15306         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
15307
15308         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
15309
15310         MDSOBJS=$((last_id - next_id))
15311         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
15312
15313         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
15314         echo "OST still has $count kbytes free"
15315
15316         echo "create $MDSOBJS files @next_id..."
15317         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
15318
15319         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
15320                         osp.$mdtosc_proc1.prealloc_last_id)
15321         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
15322                         osp.$mdtosc_proc1.prealloc_next_id)
15323
15324         echo "after creation, last_id=$last_id2, next_id=$next_id2"
15325         $LFS df -i
15326
15327         echo "cleanup..."
15328
15329         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
15330         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
15331
15332         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
15333                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
15334         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
15335                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
15336         echo "unlink $MDSOBJS files @$next_id..."
15337         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
15338 }
15339 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
15340
15341 test_221() {
15342         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15343
15344         dd if=`which date` of=$MOUNT/date oflag=sync
15345         chmod +x $MOUNT/date
15346
15347         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
15348         $LCTL set_param fail_loc=0x80001401
15349
15350         $MOUNT/date > /dev/null
15351         rm -f $MOUNT/date
15352 }
15353 run_test 221 "make sure fault and truncate race to not cause OOM"
15354
15355 test_222a () {
15356         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15357
15358         rm -rf $DIR/$tdir
15359         test_mkdir $DIR/$tdir
15360         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15361         createmany -o $DIR/$tdir/$tfile 10
15362         cancel_lru_locks mdc
15363         cancel_lru_locks osc
15364         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
15365         $LCTL set_param fail_loc=0x31a
15366         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
15367         $LCTL set_param fail_loc=0
15368         rm -r $DIR/$tdir
15369 }
15370 run_test 222a "AGL for ls should not trigger CLIO lock failure"
15371
15372 test_222b () {
15373         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15374
15375         rm -rf $DIR/$tdir
15376         test_mkdir $DIR/$tdir
15377         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15378         createmany -o $DIR/$tdir/$tfile 10
15379         cancel_lru_locks mdc
15380         cancel_lru_locks osc
15381         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
15382         $LCTL set_param fail_loc=0x31a
15383         rm -r $DIR/$tdir || error "AGL for rmdir failed"
15384         $LCTL set_param fail_loc=0
15385 }
15386 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
15387
15388 test_223 () {
15389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15390
15391         rm -rf $DIR/$tdir
15392         test_mkdir $DIR/$tdir
15393         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15394         createmany -o $DIR/$tdir/$tfile 10
15395         cancel_lru_locks mdc
15396         cancel_lru_locks osc
15397         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
15398         $LCTL set_param fail_loc=0x31b
15399         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
15400         $LCTL set_param fail_loc=0
15401         rm -r $DIR/$tdir
15402 }
15403 run_test 223 "osc reenqueue if without AGL lock granted ======================="
15404
15405 test_224a() { # LU-1039, MRP-303
15406         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15407
15408         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
15409         $LCTL set_param fail_loc=0x508
15410         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
15411         $LCTL set_param fail_loc=0
15412         df $DIR
15413 }
15414 run_test 224a "Don't panic on bulk IO failure"
15415
15416 test_224b() { # LU-1039, MRP-303
15417         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15418
15419         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
15420         cancel_lru_locks osc
15421         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
15422         $LCTL set_param fail_loc=0x515
15423         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
15424         $LCTL set_param fail_loc=0
15425         df $DIR
15426 }
15427 run_test 224b "Don't panic on bulk IO failure"
15428
15429 test_224c() { # LU-6441
15430         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15431         remote_mds_nodsh && skip "remote MDS with nodsh"
15432
15433         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
15434         save_writethrough $p
15435         set_cache writethrough on
15436
15437         local pages_per_rpc=$($LCTL get_param \
15438                                 osc.*.max_pages_per_rpc)
15439         local at_max=$($LCTL get_param -n at_max)
15440         local timeout=$($LCTL get_param -n timeout)
15441         local test_at="at_max"
15442         local param_at="$FSNAME.sys.at_max"
15443         local test_timeout="timeout"
15444         local param_timeout="$FSNAME.sys.timeout"
15445
15446         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
15447
15448         set_persistent_param_and_check client "$test_at" "$param_at" 0
15449         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
15450
15451         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
15452         do_facet ost1 $LCTL set_param fail_loc=0x520
15453         $LFS setstripe -c 1 -i 0 $DIR/$tfile
15454         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
15455         sync
15456         do_facet ost1 $LCTL set_param fail_loc=0
15457
15458         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
15459         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
15460                 $timeout
15461
15462         $LCTL set_param -n $pages_per_rpc
15463         restore_lustre_params < $p
15464         rm -f $p
15465 }
15466 run_test 224c "Don't hang if one of md lost during large bulk RPC"
15467
15468 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
15469 test_225a () {
15470         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15471         if [ -z ${MDSSURVEY} ]; then
15472                 skip_env "mds-survey not found"
15473         fi
15474         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
15475                 skip "Need MDS version at least 2.2.51"
15476
15477         local mds=$(facet_host $SINGLEMDS)
15478         local target=$(do_nodes $mds 'lctl dl' |
15479                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
15480
15481         local cmd1="file_count=1000 thrhi=4"
15482         local cmd2="dir_count=2 layer=mdd stripe_count=0"
15483         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
15484         local cmd="$cmd1 $cmd2 $cmd3"
15485
15486         rm -f ${TMP}/mds_survey*
15487         echo + $cmd
15488         eval $cmd || error "mds-survey with zero-stripe failed"
15489         cat ${TMP}/mds_survey*
15490         rm -f ${TMP}/mds_survey*
15491 }
15492 run_test 225a "Metadata survey sanity with zero-stripe"
15493
15494 test_225b () {
15495         if [ -z ${MDSSURVEY} ]; then
15496                 skip_env "mds-survey not found"
15497         fi
15498         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
15499                 skip "Need MDS version at least 2.2.51"
15500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15501         remote_mds_nodsh && skip "remote MDS with nodsh"
15502         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
15503                 skip_env "Need to mount OST to test"
15504         fi
15505
15506         local mds=$(facet_host $SINGLEMDS)
15507         local target=$(do_nodes $mds 'lctl dl' |
15508                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
15509
15510         local cmd1="file_count=1000 thrhi=4"
15511         local cmd2="dir_count=2 layer=mdd stripe_count=1"
15512         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
15513         local cmd="$cmd1 $cmd2 $cmd3"
15514
15515         rm -f ${TMP}/mds_survey*
15516         echo + $cmd
15517         eval $cmd || error "mds-survey with stripe_count failed"
15518         cat ${TMP}/mds_survey*
15519         rm -f ${TMP}/mds_survey*
15520 }
15521 run_test 225b "Metadata survey sanity with stripe_count = 1"
15522
15523 mcreate_path2fid () {
15524         local mode=$1
15525         local major=$2
15526         local minor=$3
15527         local name=$4
15528         local desc=$5
15529         local path=$DIR/$tdir/$name
15530         local fid
15531         local rc
15532         local fid_path
15533
15534         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
15535                 error "cannot create $desc"
15536
15537         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
15538         rc=$?
15539         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
15540
15541         fid_path=$($LFS fid2path $MOUNT $fid)
15542         rc=$?
15543         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
15544
15545         [ "$path" == "$fid_path" ] ||
15546                 error "fid2path returned $fid_path, expected $path"
15547
15548         echo "pass with $path and $fid"
15549 }
15550
15551 test_226a () {
15552         rm -rf $DIR/$tdir
15553         mkdir -p $DIR/$tdir
15554
15555         mcreate_path2fid 0010666 0 0 fifo "FIFO"
15556         mcreate_path2fid 0020666 1 3 null "character special file (null)"
15557         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
15558         mcreate_path2fid 0040666 0 0 dir "directory"
15559         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
15560         mcreate_path2fid 0100666 0 0 file "regular file"
15561         mcreate_path2fid 0120666 0 0 link "symbolic link"
15562         mcreate_path2fid 0140666 0 0 sock "socket"
15563 }
15564 run_test 226a "call path2fid and fid2path on files of all type"
15565
15566 test_226b () {
15567         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15568
15569         local MDTIDX=1
15570
15571         rm -rf $DIR/$tdir
15572         mkdir -p $DIR/$tdir
15573         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
15574                 error "create remote directory failed"
15575         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
15576         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
15577                                 "character special file (null)"
15578         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
15579                                 "character special file (no device)"
15580         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
15581         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
15582                                 "block special file (loop)"
15583         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
15584         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
15585         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
15586 }
15587 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
15588
15589 # LU-1299 Executing or running ldd on a truncated executable does not
15590 # cause an out-of-memory condition.
15591 test_227() {
15592         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15593         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
15594
15595         dd if=$(which date) of=$MOUNT/date bs=1k count=1
15596         chmod +x $MOUNT/date
15597
15598         $MOUNT/date > /dev/null
15599         ldd $MOUNT/date > /dev/null
15600         rm -f $MOUNT/date
15601 }
15602 run_test 227 "running truncated executable does not cause OOM"
15603
15604 # LU-1512 try to reuse idle OI blocks
15605 test_228a() {
15606         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15607         remote_mds_nodsh && skip "remote MDS with nodsh"
15608         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
15609
15610         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
15611         local myDIR=$DIR/$tdir
15612
15613         mkdir -p $myDIR
15614         #define OBD_FAIL_SEQ_EXHAUST             0x1002
15615         $LCTL set_param fail_loc=0x80001002
15616         createmany -o $myDIR/t- 10000
15617         $LCTL set_param fail_loc=0
15618         # The guard is current the largest FID holder
15619         touch $myDIR/guard
15620         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15621                     tr -d '[')
15622         local IDX=$(($SEQ % 64))
15623
15624         do_facet $SINGLEMDS sync
15625         # Make sure journal flushed.
15626         sleep 6
15627         local blk1=$(do_facet $SINGLEMDS \
15628                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15629                      grep Blockcount | awk '{print $4}')
15630
15631         # Remove old files, some OI blocks will become idle.
15632         unlinkmany $myDIR/t- 10000
15633         # Create new files, idle OI blocks should be reused.
15634         createmany -o $myDIR/t- 2000
15635         do_facet $SINGLEMDS sync
15636         # Make sure journal flushed.
15637         sleep 6
15638         local blk2=$(do_facet $SINGLEMDS \
15639                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15640                      grep Blockcount | awk '{print $4}')
15641
15642         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15643 }
15644 run_test 228a "try to reuse idle OI blocks"
15645
15646 test_228b() {
15647         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15648         remote_mds_nodsh && skip "remote MDS with nodsh"
15649         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
15650
15651         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
15652         local myDIR=$DIR/$tdir
15653
15654         mkdir -p $myDIR
15655         #define OBD_FAIL_SEQ_EXHAUST             0x1002
15656         $LCTL set_param fail_loc=0x80001002
15657         createmany -o $myDIR/t- 10000
15658         $LCTL set_param fail_loc=0
15659         # The guard is current the largest FID holder
15660         touch $myDIR/guard
15661         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15662                     tr -d '[')
15663         local IDX=$(($SEQ % 64))
15664
15665         do_facet $SINGLEMDS sync
15666         # Make sure journal flushed.
15667         sleep 6
15668         local blk1=$(do_facet $SINGLEMDS \
15669                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15670                      grep Blockcount | awk '{print $4}')
15671
15672         # Remove old files, some OI blocks will become idle.
15673         unlinkmany $myDIR/t- 10000
15674
15675         # stop the MDT
15676         stop $SINGLEMDS || error "Fail to stop MDT."
15677         # remount the MDT
15678         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
15679
15680         df $MOUNT || error "Fail to df."
15681         # Create new files, idle OI blocks should be reused.
15682         createmany -o $myDIR/t- 2000
15683         do_facet $SINGLEMDS sync
15684         # Make sure journal flushed.
15685         sleep 6
15686         local blk2=$(do_facet $SINGLEMDS \
15687                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15688                      grep Blockcount | awk '{print $4}')
15689
15690         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15691 }
15692 run_test 228b "idle OI blocks can be reused after MDT restart"
15693
15694 #LU-1881
15695 test_228c() {
15696         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15697         remote_mds_nodsh && skip "remote MDS with nodsh"
15698         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
15699
15700         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
15701         local myDIR=$DIR/$tdir
15702
15703         mkdir -p $myDIR
15704         #define OBD_FAIL_SEQ_EXHAUST             0x1002
15705         $LCTL set_param fail_loc=0x80001002
15706         # 20000 files can guarantee there are index nodes in the OI file
15707         createmany -o $myDIR/t- 20000
15708         $LCTL set_param fail_loc=0
15709         # The guard is current the largest FID holder
15710         touch $myDIR/guard
15711         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15712                     tr -d '[')
15713         local IDX=$(($SEQ % 64))
15714
15715         do_facet $SINGLEMDS sync
15716         # Make sure journal flushed.
15717         sleep 6
15718         local blk1=$(do_facet $SINGLEMDS \
15719                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15720                      grep Blockcount | awk '{print $4}')
15721
15722         # Remove old files, some OI blocks will become idle.
15723         unlinkmany $myDIR/t- 20000
15724         rm -f $myDIR/guard
15725         # The OI file should become empty now
15726
15727         # Create new files, idle OI blocks should be reused.
15728         createmany -o $myDIR/t- 2000
15729         do_facet $SINGLEMDS sync
15730         # Make sure journal flushed.
15731         sleep 6
15732         local blk2=$(do_facet $SINGLEMDS \
15733                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15734                      grep Blockcount | awk '{print $4}')
15735
15736         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15737 }
15738 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
15739
15740 test_229() { # LU-2482, LU-3448
15741         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15742         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
15743         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
15744                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
15745
15746         rm -f $DIR/$tfile
15747
15748         # Create a file with a released layout and stripe count 2.
15749         $MULTIOP $DIR/$tfile H2c ||
15750                 error "failed to create file with released layout"
15751
15752         $GETSTRIPE -v $DIR/$tfile
15753
15754         local pattern=$($GETSTRIPE -L $DIR/$tfile)
15755         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
15756
15757         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
15758         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15759         stat $DIR/$tfile || error "failed to stat released file"
15760
15761         chown $RUNAS_ID $DIR/$tfile ||
15762                 error "chown $RUNAS_ID $DIR/$tfile failed"
15763
15764         chgrp $RUNAS_ID $DIR/$tfile ||
15765                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15766
15767         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15768         rm $DIR/$tfile || error "failed to remove released file"
15769 }
15770 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15771
15772 test_230a() {
15773         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15774         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15775         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15776                 skip "Need MDS version at least 2.11.52"
15777
15778         local MDTIDX=1
15779
15780         test_mkdir $DIR/$tdir
15781         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15782         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15783         [ $mdt_idx -ne 0 ] &&
15784                 error "create local directory on wrong MDT $mdt_idx"
15785
15786         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15787                         error "create remote directory failed"
15788         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15789         [ $mdt_idx -ne $MDTIDX ] &&
15790                 error "create remote directory on wrong MDT $mdt_idx"
15791
15792         createmany -o $DIR/$tdir/test_230/t- 10 ||
15793                 error "create files on remote directory failed"
15794         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15795         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15796         rm -r $DIR/$tdir || error "unlink remote directory failed"
15797 }
15798 run_test 230a "Create remote directory and files under the remote directory"
15799
15800 test_230b() {
15801         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15802         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15803         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15804                 skip "Need MDS version at least 2.11.52"
15805
15806         local MDTIDX=1
15807         local mdt_index
15808         local i
15809         local file
15810         local pid
15811         local stripe_count
15812         local migrate_dir=$DIR/$tdir/migrate_dir
15813         local other_dir=$DIR/$tdir/other_dir
15814
15815         test_mkdir $DIR/$tdir
15816         test_mkdir -i0 -c1 $migrate_dir
15817         test_mkdir -i0 -c1 $other_dir
15818         for ((i=0; i<10; i++)); do
15819                 mkdir -p $migrate_dir/dir_${i}
15820                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15821                         error "create files under remote dir failed $i"
15822         done
15823
15824         cp /etc/passwd $migrate_dir/$tfile
15825         cp /etc/passwd $other_dir/$tfile
15826         chattr +SAD $migrate_dir
15827         chattr +SAD $migrate_dir/$tfile
15828
15829         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15830         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15831         local old_dir_mode=$(stat -c%f $migrate_dir)
15832         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15833
15834         mkdir -p $migrate_dir/dir_default_stripe2
15835         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
15836         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
15837
15838         mkdir -p $other_dir
15839         ln $migrate_dir/$tfile $other_dir/luna
15840         ln $migrate_dir/$tfile $migrate_dir/sofia
15841         ln $other_dir/$tfile $migrate_dir/david
15842         ln -s $migrate_dir/$tfile $other_dir/zachary
15843         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15844         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15845
15846         $LFS migrate -m $MDTIDX $migrate_dir ||
15847                 error "fails on migrating remote dir to MDT1"
15848
15849         echo "migratate to MDT1, then checking.."
15850         for ((i = 0; i < 10; i++)); do
15851                 for file in $(find $migrate_dir/dir_${i}); do
15852                         mdt_index=$($LFS getstripe -m $file)
15853                         [ $mdt_index == $MDTIDX ] ||
15854                                 error "$file is not on MDT${MDTIDX}"
15855                 done
15856         done
15857
15858         # the multiple link file should still in MDT0
15859         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15860         [ $mdt_index == 0 ] ||
15861                 error "$file is not on MDT${MDTIDX}"
15862
15863         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15864         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15865                 error " expect $old_dir_flag get $new_dir_flag"
15866
15867         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15868         [ "$old_file_flag" = "$new_file_flag" ] ||
15869                 error " expect $old_file_flag get $new_file_flag"
15870
15871         local new_dir_mode=$(stat -c%f $migrate_dir)
15872         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15873                 error "expect mode $old_dir_mode get $new_dir_mode"
15874
15875         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15876         [ "$old_file_mode" = "$new_file_mode" ] ||
15877                 error "expect mode $old_file_mode get $new_file_mode"
15878
15879         diff /etc/passwd $migrate_dir/$tfile ||
15880                 error "$tfile different after migration"
15881
15882         diff /etc/passwd $other_dir/luna ||
15883                 error "luna different after migration"
15884
15885         diff /etc/passwd $migrate_dir/sofia ||
15886                 error "sofia different after migration"
15887
15888         diff /etc/passwd $migrate_dir/david ||
15889                 error "david different after migration"
15890
15891         diff /etc/passwd $other_dir/zachary ||
15892                 error "zachary different after migration"
15893
15894         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15895                 error "${tfile}_ln different after migration"
15896
15897         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15898                 error "${tfile}_ln_other different after migration"
15899
15900         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15901         [ $stripe_count = 2 ] ||
15902                 error "dir strpe_count $d != 2 after migration."
15903
15904         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15905         [ $stripe_count = 2 ] ||
15906                 error "file strpe_count $d != 2 after migration."
15907
15908         #migrate back to MDT0
15909         MDTIDX=0
15910
15911         $LFS migrate -m $MDTIDX $migrate_dir ||
15912                 error "fails on migrating remote dir to MDT0"
15913
15914         echo "migrate back to MDT0, checking.."
15915         for file in $(find $migrate_dir); do
15916                 mdt_index=$($LFS getstripe -m $file)
15917                 [ $mdt_index == $MDTIDX ] ||
15918                         error "$file is not on MDT${MDTIDX}"
15919         done
15920
15921         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15922         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15923                 error " expect $old_dir_flag get $new_dir_flag"
15924
15925         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15926         [ "$old_file_flag" = "$new_file_flag" ] ||
15927                 error " expect $old_file_flag get $new_file_flag"
15928
15929         local new_dir_mode=$(stat -c%f $migrate_dir)
15930         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15931                 error "expect mode $old_dir_mode get $new_dir_mode"
15932
15933         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15934         [ "$old_file_mode" = "$new_file_mode" ] ||
15935                 error "expect mode $old_file_mode get $new_file_mode"
15936
15937         diff /etc/passwd ${migrate_dir}/$tfile ||
15938                 error "$tfile different after migration"
15939
15940         diff /etc/passwd ${other_dir}/luna ||
15941                 error "luna different after migration"
15942
15943         diff /etc/passwd ${migrate_dir}/sofia ||
15944                 error "sofia different after migration"
15945
15946         diff /etc/passwd ${other_dir}/zachary ||
15947                 error "zachary different after migration"
15948
15949         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15950                 error "${tfile}_ln different after migration"
15951
15952         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15953                 error "${tfile}_ln_other different after migration"
15954
15955         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15956         [ $stripe_count = 2 ] ||
15957                 error "dir strpe_count $d != 2 after migration."
15958
15959         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15960         [ $stripe_count = 2 ] ||
15961                 error "file strpe_count $d != 2 after migration."
15962
15963         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15964 }
15965 run_test 230b "migrate directory"
15966
15967 test_230c() {
15968         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15969         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15970         remote_mds_nodsh && skip "remote MDS with nodsh"
15971         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15972                 skip "Need MDS version at least 2.11.52"
15973
15974         local MDTIDX=1
15975         local total=3
15976         local mdt_index
15977         local file
15978         local migrate_dir=$DIR/$tdir/migrate_dir
15979
15980         #If migrating directory fails in the middle, all entries of
15981         #the directory is still accessiable.
15982         test_mkdir $DIR/$tdir
15983         test_mkdir -i0 -c1 $migrate_dir
15984         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15985         stat $migrate_dir
15986         createmany -o $migrate_dir/f $total ||
15987                 error "create files under ${migrate_dir} failed"
15988
15989         # fail after migrating top dir, and this will fail only once, so the
15990         # first sub file migration will fail (currently f3), others succeed.
15991         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15992         do_facet mds1 lctl set_param fail_loc=0x1801
15993         local t=$(ls $migrate_dir | wc -l)
15994         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15995                 error "migrate should fail"
15996         local u=$(ls $migrate_dir | wc -l)
15997         [ "$u" == "$t" ] || error "$u != $t during migration"
15998
15999         # add new dir/file should succeed
16000         mkdir $migrate_dir/dir ||
16001                 error "mkdir failed under migrating directory"
16002         touch $migrate_dir/file ||
16003                 error "create file failed under migrating directory"
16004
16005         # add file with existing name should fail
16006         for file in $migrate_dir/f*; do
16007                 stat $file > /dev/null || error "stat $file failed"
16008                 $OPENFILE -f O_CREAT:O_EXCL $file &&
16009                         error "open(O_CREAT|O_EXCL) $file should fail"
16010                 $MULTIOP $file m && error "create $file should fail"
16011                 touch $DIR/$tdir/remote_dir/$tfile ||
16012                         error "touch $tfile failed"
16013                 ln $DIR/$tdir/remote_dir/$tfile $file &&
16014                         error "link $file should fail"
16015                 mdt_index=$($LFS getstripe -m $file)
16016                 if [ $mdt_index == 0 ]; then
16017                         # file failed to migrate is not allowed to rename to
16018                         mv $DIR/$tdir/remote_dir/$tfile $file &&
16019                                 error "rename to $file should fail"
16020                 else
16021                         mv $DIR/$tdir/remote_dir/$tfile $file ||
16022                                 error "rename to $file failed"
16023                 fi
16024                 echo hello >> $file || error "write $file failed"
16025         done
16026
16027         # resume migration with different options should fail
16028         $LFS migrate -m 0 $migrate_dir &&
16029                 error "migrate -m 0 $migrate_dir should fail"
16030
16031         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
16032                 error "migrate -c 2 $migrate_dir should fail"
16033
16034         # resume migration should succeed
16035         $LFS migrate -m $MDTIDX $migrate_dir ||
16036                 error "migrate $migrate_dir failed"
16037
16038         echo "Finish migration, then checking.."
16039         for file in $(find $migrate_dir); do
16040                 mdt_index=$($LFS getstripe -m $file)
16041                 [ $mdt_index == $MDTIDX ] ||
16042                         error "$file is not on MDT${MDTIDX}"
16043         done
16044
16045         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16046 }
16047 run_test 230c "check directory accessiblity if migration failed"
16048
16049 test_230d() {
16050         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16051         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16052         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16053                 skip "Need MDS version at least 2.11.52"
16054         # LU-11235
16055         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
16056
16057         local migrate_dir=$DIR/$tdir/migrate_dir
16058         local old_index
16059         local new_index
16060         local old_count
16061         local new_count
16062         local new_hash
16063         local mdt_index
16064         local i
16065         local j
16066
16067         old_index=$((RANDOM % MDSCOUNT))
16068         old_count=$((MDSCOUNT - old_index))
16069         new_index=$((RANDOM % MDSCOUNT))
16070         new_count=$((MDSCOUNT - new_index))
16071         new_hash="all_char"
16072
16073         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
16074         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
16075
16076         test_mkdir $DIR/$tdir
16077         test_mkdir -i $old_index -c $old_count $migrate_dir
16078
16079         for ((i=0; i<100; i++)); do
16080                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
16081                 createmany -o $migrate_dir/dir_${i}/f 100 ||
16082                         error "create files under remote dir failed $i"
16083         done
16084
16085         echo -n "Migrate from MDT$old_index "
16086         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
16087         echo -n "to MDT$new_index"
16088         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
16089         echo
16090
16091         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
16092         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
16093                 error "migrate remote dir error"
16094
16095         echo "Finish migration, then checking.."
16096         for file in $(find $migrate_dir); do
16097                 mdt_index=$($LFS getstripe -m $file)
16098                 if [ $mdt_index -lt $new_index ] ||
16099                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
16100                         error "$file is on MDT$mdt_index"
16101                 fi
16102         done
16103
16104         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16105 }
16106 run_test 230d "check migrate big directory"
16107
16108 test_230e() {
16109         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16110         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16111         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16112                 skip "Need MDS version at least 2.11.52"
16113
16114         local i
16115         local j
16116         local a_fid
16117         local b_fid
16118
16119         mkdir -p $DIR/$tdir
16120         mkdir $DIR/$tdir/migrate_dir
16121         mkdir $DIR/$tdir/other_dir
16122         touch $DIR/$tdir/migrate_dir/a
16123         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
16124         ls $DIR/$tdir/other_dir
16125
16126         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
16127                 error "migrate dir fails"
16128
16129         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
16130         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
16131
16132         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
16133         [ $mdt_index == 0 ] || error "a is not on MDT0"
16134
16135         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
16136                 error "migrate dir fails"
16137
16138         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
16139         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
16140
16141         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
16142         [ $mdt_index == 1 ] || error "a is not on MDT1"
16143
16144         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
16145         [ $mdt_index == 1 ] || error "b is not on MDT1"
16146
16147         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
16148         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
16149
16150         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
16151
16152         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16153 }
16154 run_test 230e "migrate mulitple local link files"
16155
16156 test_230f() {
16157         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16158         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16159         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16160                 skip "Need MDS version at least 2.11.52"
16161
16162         local a_fid
16163         local ln_fid
16164
16165         mkdir -p $DIR/$tdir
16166         mkdir $DIR/$tdir/migrate_dir
16167         $LFS mkdir -i1 $DIR/$tdir/other_dir
16168         touch $DIR/$tdir/migrate_dir/a
16169         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
16170         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
16171         ls $DIR/$tdir/other_dir
16172
16173         # a should be migrated to MDT1, since no other links on MDT0
16174         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
16175                 error "#1 migrate dir fails"
16176         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
16177         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
16178         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
16179         [ $mdt_index == 1 ] || error "a is not on MDT1"
16180
16181         # a should stay on MDT1, because it is a mulitple link file
16182         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
16183                 error "#2 migrate dir fails"
16184         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
16185         [ $mdt_index == 1 ] || error "a is not on MDT1"
16186
16187         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
16188                 error "#3 migrate dir fails"
16189
16190         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
16191         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
16192         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
16193
16194         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
16195         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
16196
16197         # a should be migrated to MDT0, since no other links on MDT1
16198         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
16199                 error "#4 migrate dir fails"
16200         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
16201         [ $mdt_index == 0 ] || error "a is not on MDT0"
16202
16203         rm -rf $DIR/$tdir || error "rm dir failed after migration"
16204 }
16205 run_test 230f "migrate mulitple remote link files"
16206
16207 test_230g() {
16208         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16209         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16210         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16211                 skip "Need MDS version at least 2.11.52"
16212
16213         mkdir -p $DIR/$tdir/migrate_dir
16214
16215         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
16216                 error "migrating dir to non-exist MDT succeeds"
16217         true
16218 }
16219 run_test 230g "migrate dir to non-exist MDT"
16220
16221 test_230h() {
16222         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16223         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16224         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16225                 skip "Need MDS version at least 2.11.52"
16226
16227         local mdt_index
16228
16229         mkdir -p $DIR/$tdir/migrate_dir
16230
16231         $LFS migrate -m1 $DIR &&
16232                 error "migrating mountpoint1 should fail"
16233
16234         $LFS migrate -m1 $DIR/$tdir/.. &&
16235                 error "migrating mountpoint2 should fail"
16236
16237         # same as mv
16238         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
16239                 error "migrating $tdir/migrate_dir/.. should fail"
16240
16241         true
16242 }
16243 run_test 230h "migrate .. and root"
16244
16245 test_230i() {
16246         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16247         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16248         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16249                 skip "Need MDS version at least 2.11.52"
16250
16251         mkdir -p $DIR/$tdir/migrate_dir
16252
16253         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
16254                 error "migration fails with a tailing slash"
16255
16256         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
16257                 error "migration fails with two tailing slashes"
16258 }
16259 run_test 230i "lfs migrate -m tolerates trailing slashes"
16260
16261 test_230j() {
16262         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
16263         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
16264                 skip "Need MDS version at least 2.11.52"
16265
16266         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
16267         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
16268                 error "create $tfile failed"
16269         cat /etc/passwd > $DIR/$tdir/$tfile
16270
16271         $LFS migrate -m 1 $DIR/$tdir
16272
16273         cmp /etc/passwd $DIR/$tdir/$tfile ||
16274                 error "DoM file mismatch after migration"
16275 }
16276 run_test 230j "DoM file data not changed after dir migration"
16277
16278 test_230k() {
16279         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
16280         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
16281                 skip "Need MDS version at least 2.11.56"
16282
16283         local total=20
16284         local files_on_starting_mdt=0
16285
16286         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
16287         $LFS getdirstripe $DIR/$tdir
16288         for i in $(seq $total); do
16289                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
16290                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
16291                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
16292         done
16293
16294         echo "$files_on_starting_mdt files on MDT0"
16295
16296         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
16297         $LFS getdirstripe $DIR/$tdir
16298
16299         files_on_starting_mdt=0
16300         for i in $(seq $total); do
16301                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
16302                         error "file $tfile.$i mismatch after migration"
16303                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
16304                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
16305         done
16306
16307         echo "$files_on_starting_mdt files on MDT1 after migration"
16308         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
16309
16310         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
16311         $LFS getdirstripe $DIR/$tdir
16312
16313         files_on_starting_mdt=0
16314         for i in $(seq $total); do
16315                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
16316                         error "file $tfile.$i mismatch after 2nd migration"
16317                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
16318                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
16319         done
16320
16321         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
16322         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
16323
16324         true
16325 }
16326 run_test 230k "file data not changed after dir migration"
16327
16328 test_230l() {
16329         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
16330         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
16331                 skip "Need MDS version at least 2.11.56"
16332
16333         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
16334         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
16335                 error "create files under remote dir failed $i"
16336         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
16337 }
16338 run_test 230l "readdir between MDTs won't crash"
16339
16340 test_230m() {
16341         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
16342         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
16343                 skip "Need MDS version at least 2.11.56"
16344
16345         local MDTIDX=1
16346         local mig_dir=$DIR/$tdir/migrate_dir
16347         local longstr="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
16348         local shortstr="b"
16349         local val
16350
16351         echo "Creating files and dirs with xattrs"
16352         test_mkdir $DIR/$tdir
16353         test_mkdir -i0 -c1 $mig_dir
16354         mkdir $mig_dir/dir
16355         setfattr -n user.attr1 -v $longstr $mig_dir/dir ||
16356                 error "cannot set xattr attr1 on dir"
16357         setfattr -n user.attr2 -v $shortstr $mig_dir/dir ||
16358                 error "cannot set xattr attr2 on dir"
16359         touch $mig_dir/dir/f0
16360         setfattr -n user.attr1 -v $longstr $mig_dir/dir/f0 ||
16361                 error "cannot set xattr attr1 on file"
16362         setfattr -n user.attr2 -v $shortstr $mig_dir/dir/f0 ||
16363                 error "cannot set xattr attr2 on file"
16364         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
16365         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
16366         [ "$val" = $longstr ] || error "xattr attr1 not set properly on dir"
16367         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
16368         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on dir"
16369         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
16370         [ "$val" = $longstr ] || error "xattr attr1 not set properly on file"
16371         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
16372         [ "$val" = $shortstr ] || error "xattr attr2 not set properly on file"
16373
16374         echo "Migrating to MDT1"
16375         $LFS migrate -m $MDTIDX $mig_dir ||
16376                 error "fails on migrating dir to MDT1"
16377
16378         sync ; sync ; echo 3 > /proc/sys/vm/drop_caches
16379         echo "Checking xattrs"
16380         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir 2>/dev/null)
16381         [ "$val" = $longstr ] ||
16382                 error "expecting xattr1 $longstr on dir, found $val"
16383         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir 2>/dev/null)
16384         [ "$val" = $shortstr ] ||
16385                 error "expecting xattr2 $shortstr on dir, found $val"
16386         val=$(getfattr --only-values -n user.attr1 $mig_dir/dir/f0 2>/dev/null)
16387         [ "$val" = $longstr ] ||
16388                 error "expecting xattr1 $longstr on file, found $val"
16389         val=$(getfattr --only-values -n user.attr2 $mig_dir/dir/f0 2>/dev/null)
16390         [ "$val" = $shortstr ] ||
16391                 error "expecting xattr2 $shortstr on file, found $val"
16392 }
16393 run_test 230m "xattrs not changed after dir migration"
16394
16395 test_231a()
16396 {
16397         # For simplicity this test assumes that max_pages_per_rpc
16398         # is the same across all OSCs
16399         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
16400         local bulk_size=$((max_pages * PAGE_SIZE))
16401         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
16402                                        head -n 1)
16403
16404         mkdir -p $DIR/$tdir
16405         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
16406                 error "failed to set stripe with -S ${brw_size}M option"
16407
16408         # clear the OSC stats
16409         $LCTL set_param osc.*.stats=0 &>/dev/null
16410         stop_writeback
16411
16412         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
16413         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
16414                 oflag=direct &>/dev/null || error "dd failed"
16415
16416         sync; sleep 1; sync # just to be safe
16417         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
16418         if [ x$nrpcs != "x1" ]; then
16419                 $LCTL get_param osc.*.stats
16420                 error "found $nrpcs ost_write RPCs, not 1 as expected"
16421         fi
16422
16423         start_writeback
16424         # Drop the OSC cache, otherwise we will read from it
16425         cancel_lru_locks osc
16426
16427         # clear the OSC stats
16428         $LCTL set_param osc.*.stats=0 &>/dev/null
16429
16430         # Client reads $bulk_size.
16431         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
16432                 iflag=direct &>/dev/null || error "dd failed"
16433
16434         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
16435         if [ x$nrpcs != "x1" ]; then
16436                 $LCTL get_param osc.*.stats
16437                 error "found $nrpcs ost_read RPCs, not 1 as expected"
16438         fi
16439 }
16440 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
16441
16442 test_231b() {
16443         mkdir -p $DIR/$tdir
16444         local i
16445         for i in {0..1023}; do
16446                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
16447                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
16448                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
16449         done
16450         sync
16451 }
16452 run_test 231b "must not assert on fully utilized OST request buffer"
16453
16454 test_232a() {
16455         mkdir -p $DIR/$tdir
16456         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
16457
16458         #define OBD_FAIL_LDLM_OST_LVB            0x31c
16459         do_facet ost1 $LCTL set_param fail_loc=0x31c
16460
16461         # ignore dd failure
16462         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
16463
16464         do_facet ost1 $LCTL set_param fail_loc=0
16465         umount_client $MOUNT || error "umount failed"
16466         mount_client $MOUNT || error "mount failed"
16467         stop ost1 || error "cannot stop ost1"
16468         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16469 }
16470 run_test 232a "failed lock should not block umount"
16471
16472 test_232b() {
16473         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
16474                 skip "Need MDS version at least 2.10.58"
16475
16476         mkdir -p $DIR/$tdir
16477         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
16478         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
16479         sync
16480         cancel_lru_locks osc
16481
16482         #define OBD_FAIL_LDLM_OST_LVB            0x31c
16483         do_facet ost1 $LCTL set_param fail_loc=0x31c
16484
16485         # ignore failure
16486         $LFS data_version $DIR/$tdir/$tfile || true
16487
16488         do_facet ost1 $LCTL set_param fail_loc=0
16489         umount_client $MOUNT || error "umount failed"
16490         mount_client $MOUNT || error "mount failed"
16491         stop ost1 || error "cannot stop ost1"
16492         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16493 }
16494 run_test 232b "failed data version lock should not block umount"
16495
16496 test_233a() {
16497         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
16498                 skip "Need MDS version at least 2.3.64"
16499         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
16500
16501         local fid=$($LFS path2fid $MOUNT)
16502
16503         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
16504                 error "cannot access $MOUNT using its FID '$fid'"
16505 }
16506 run_test 233a "checking that OBF of the FS root succeeds"
16507
16508 test_233b() {
16509         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
16510                 skip "Need MDS version at least 2.5.90"
16511         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
16512
16513         local fid=$($LFS path2fid $MOUNT/.lustre)
16514
16515         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
16516                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
16517
16518         fid=$($LFS path2fid $MOUNT/.lustre/fid)
16519         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
16520                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
16521 }
16522 run_test 233b "checking that OBF of the FS .lustre succeeds"
16523
16524 test_234() {
16525         local p="$TMP/sanityN-$TESTNAME.parameters"
16526         save_lustre_params client "llite.*.xattr_cache" > $p
16527         lctl set_param llite.*.xattr_cache 1 ||
16528                 skip_env "xattr cache is not supported"
16529
16530         mkdir -p $DIR/$tdir || error "mkdir failed"
16531         touch $DIR/$tdir/$tfile || error "touch failed"
16532         # OBD_FAIL_LLITE_XATTR_ENOMEM
16533         $LCTL set_param fail_loc=0x1405
16534         getfattr -n user.attr $DIR/$tdir/$tfile &&
16535                 error "getfattr should have failed with ENOMEM"
16536         $LCTL set_param fail_loc=0x0
16537         rm -rf $DIR/$tdir
16538
16539         restore_lustre_params < $p
16540         rm -f $p
16541 }
16542 run_test 234 "xattr cache should not crash on ENOMEM"
16543
16544 test_235() {
16545         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
16546                 skip "Need MDS version at least 2.4.52"
16547
16548         flock_deadlock $DIR/$tfile
16549         local RC=$?
16550         case $RC in
16551                 0)
16552                 ;;
16553                 124) error "process hangs on a deadlock"
16554                 ;;
16555                 *) error "error executing flock_deadlock $DIR/$tfile"
16556                 ;;
16557         esac
16558 }
16559 run_test 235 "LU-1715: flock deadlock detection does not work properly"
16560
16561 #LU-2935
16562 test_236() {
16563         check_swap_layouts_support
16564
16565         local ref1=/etc/passwd
16566         local ref2=/etc/group
16567         local file1=$DIR/$tdir/f1
16568         local file2=$DIR/$tdir/f2
16569
16570         test_mkdir -c1 $DIR/$tdir
16571         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
16572         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
16573         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
16574         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
16575         local fd=$(free_fd)
16576         local cmd="exec $fd<>$file2"
16577         eval $cmd
16578         rm $file2
16579         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
16580                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
16581         cmd="exec $fd>&-"
16582         eval $cmd
16583         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
16584
16585         #cleanup
16586         rm -rf $DIR/$tdir
16587 }
16588 run_test 236 "Layout swap on open unlinked file"
16589
16590 # LU-4659 linkea consistency
16591 test_238() {
16592         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
16593                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
16594                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
16595                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
16596
16597         touch $DIR/$tfile
16598         ln $DIR/$tfile $DIR/$tfile.lnk
16599         touch $DIR/$tfile.new
16600         mv $DIR/$tfile.new $DIR/$tfile
16601         local fid1=$($LFS path2fid $DIR/$tfile)
16602         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
16603         local path1=$($LFS fid2path $FSNAME "$fid1")
16604         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
16605         local path2=$($LFS fid2path $FSNAME "$fid2")
16606         [ $tfile.lnk == $path2 ] ||
16607                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
16608         rm -f $DIR/$tfile*
16609 }
16610 run_test 238 "Verify linkea consistency"
16611
16612 test_239A() { # was test_239
16613         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
16614                 skip "Need MDS version at least 2.5.60"
16615
16616         local list=$(comma_list $(mdts_nodes))
16617
16618         mkdir -p $DIR/$tdir
16619         createmany -o $DIR/$tdir/f- 5000
16620         unlinkmany $DIR/$tdir/f- 5000
16621         [ $MDS1_VERSION -gt $(version_code 2.10.4) ] &&
16622                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
16623         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
16624                         osp.*MDT*.sync_in_flight" | calc_sum)
16625         [ "$changes" -eq 0 ] || error "$changes not synced"
16626 }
16627 run_test 239A "osp_sync test"
16628
16629 test_239a() { #LU-5297
16630         remote_mds_nodsh && skip "remote MDS with nodsh"
16631
16632         touch $DIR/$tfile
16633         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
16634         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
16635         chgrp $RUNAS_GID $DIR/$tfile
16636         wait_delete_completed
16637 }
16638 run_test 239a "process invalid osp sync record correctly"
16639
16640 test_239b() { #LU-5297
16641         remote_mds_nodsh && skip "remote MDS with nodsh"
16642
16643         touch $DIR/$tfile1
16644         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
16645         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
16646         chgrp $RUNAS_GID $DIR/$tfile1
16647         wait_delete_completed
16648         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16649         touch $DIR/$tfile2
16650         chgrp $RUNAS_GID $DIR/$tfile2
16651         wait_delete_completed
16652 }
16653 run_test 239b "process osp sync record with ENOMEM error correctly"
16654
16655 test_240() {
16656         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
16657         remote_mds_nodsh && skip "remote MDS with nodsh"
16658
16659         mkdir -p $DIR/$tdir
16660
16661         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
16662                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
16663         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
16664                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
16665
16666         umount_client $MOUNT || error "umount failed"
16667         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
16668         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
16669         mount_client $MOUNT || error "failed to mount client"
16670
16671         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
16672         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
16673 }
16674 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
16675
16676 test_241_bio() {
16677         local count=$1
16678         local bsize=$2
16679
16680         for LOOP in $(seq $count); do
16681                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
16682                 cancel_lru_locks $OSC || true
16683         done
16684 }
16685
16686 test_241_dio() {
16687         local count=$1
16688         local bsize=$2
16689
16690         for LOOP in $(seq $1); do
16691                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
16692                         2>/dev/null
16693         done
16694 }
16695
16696 test_241a() { # was test_241
16697         local bsize=$PAGE_SIZE
16698
16699         (( bsize < 40960 )) && bsize=40960
16700         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
16701         ls -la $DIR/$tfile
16702         cancel_lru_locks $OSC
16703         test_241_bio 1000 $bsize &
16704         PID=$!
16705         test_241_dio 1000 $bsize
16706         wait $PID
16707 }
16708 run_test 241a "bio vs dio"
16709
16710 test_241b() {
16711         local bsize=$PAGE_SIZE
16712
16713         (( bsize < 40960 )) && bsize=40960
16714         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
16715         ls -la $DIR/$tfile
16716         test_241_dio 1000 $bsize &
16717         PID=$!
16718         test_241_dio 1000 $bsize
16719         wait $PID
16720 }
16721 run_test 241b "dio vs dio"
16722
16723 test_242() {
16724         remote_mds_nodsh && skip "remote MDS with nodsh"
16725
16726         mkdir -p $DIR/$tdir
16727         touch $DIR/$tdir/$tfile
16728
16729         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
16730         do_facet mds1 lctl set_param fail_loc=0x105
16731         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
16732
16733         do_facet mds1 lctl set_param fail_loc=0
16734         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
16735 }
16736 run_test 242 "mdt_readpage failure should not cause directory unreadable"
16737
16738 test_243()
16739 {
16740         test_mkdir $DIR/$tdir
16741         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
16742 }
16743 run_test 243 "various group lock tests"
16744
16745 test_244()
16746 {
16747         test_mkdir $DIR/$tdir
16748         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
16749         sendfile_grouplock $DIR/$tdir/$tfile || \
16750                 error "sendfile+grouplock failed"
16751         rm -rf $DIR/$tdir
16752 }
16753 run_test 244 "sendfile with group lock tests"
16754
16755 test_245() {
16756         local flagname="multi_mod_rpcs"
16757         local connect_data_name="max_mod_rpcs"
16758         local out
16759
16760         # check if multiple modify RPCs flag is set
16761         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
16762                 grep "connect_flags:")
16763         echo "$out"
16764
16765         echo "$out" | grep -qw $flagname
16766         if [ $? -ne 0 ]; then
16767                 echo "connect flag $flagname is not set"
16768                 return
16769         fi
16770
16771         # check if multiple modify RPCs data is set
16772         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
16773         echo "$out"
16774
16775         echo "$out" | grep -qw $connect_data_name ||
16776                 error "import should have connect data $connect_data_name"
16777 }
16778 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
16779
16780 test_246() { # LU-7371
16781         remote_ost_nodsh && skip "remote OST with nodsh"
16782         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
16783                 skip "Need OST version >= 2.7.62"
16784
16785         do_facet ost1 $LCTL set_param fail_val=4095
16786 #define OBD_FAIL_OST_READ_SIZE          0x234
16787         do_facet ost1 $LCTL set_param fail_loc=0x234
16788         $LFS setstripe $DIR/$tfile -i 0 -c 1
16789         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
16790         cancel_lru_locks $FSNAME-OST0000
16791         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
16792 }
16793 run_test 246 "Read file of size 4095 should return right length"
16794
16795 cleanup_247() {
16796         local submount=$1
16797
16798         trap 0
16799         umount_client $submount
16800         rmdir $submount
16801 }
16802
16803 test_247a() {
16804         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16805                 grep -q subtree ||
16806                 skip_env "Fileset feature is not supported"
16807
16808         local submount=${MOUNT}_$tdir
16809
16810         mkdir $MOUNT/$tdir
16811         mkdir -p $submount || error "mkdir $submount failed"
16812         FILESET="$FILESET/$tdir" mount_client $submount ||
16813                 error "mount $submount failed"
16814         trap "cleanup_247 $submount" EXIT
16815         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16816         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16817                 error "read $MOUNT/$tdir/$tfile failed"
16818         cleanup_247 $submount
16819 }
16820 run_test 247a "mount subdir as fileset"
16821
16822 test_247b() {
16823         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16824                 skip_env "Fileset feature is not supported"
16825
16826         local submount=${MOUNT}_$tdir
16827
16828         rm -rf $MOUNT/$tdir
16829         mkdir -p $submount || error "mkdir $submount failed"
16830         SKIP_FILESET=1
16831         FILESET="$FILESET/$tdir" mount_client $submount &&
16832                 error "mount $submount should fail"
16833         rmdir $submount
16834 }
16835 run_test 247b "mount subdir that dose not exist"
16836
16837 test_247c() {
16838         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16839                 skip_env "Fileset feature is not supported"
16840
16841         local submount=${MOUNT}_$tdir
16842
16843         mkdir -p $MOUNT/$tdir/dir1
16844         mkdir -p $submount || error "mkdir $submount failed"
16845         trap "cleanup_247 $submount" EXIT
16846         FILESET="$FILESET/$tdir" mount_client $submount ||
16847                 error "mount $submount failed"
16848         local fid=$($LFS path2fid $MOUNT/)
16849         $LFS fid2path $submount $fid && error "fid2path should fail"
16850         cleanup_247 $submount
16851 }
16852 run_test 247c "running fid2path outside root"
16853
16854 test_247d() {
16855         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16856                 skip "Fileset feature is not supported"
16857
16858         local submount=${MOUNT}_$tdir
16859
16860         mkdir -p $MOUNT/$tdir/dir1
16861         mkdir -p $submount || error "mkdir $submount failed"
16862         FILESET="$FILESET/$tdir" mount_client $submount ||
16863                 error "mount $submount failed"
16864         trap "cleanup_247 $submount" EXIT
16865         local fid=$($LFS path2fid $submount/dir1)
16866         $LFS fid2path $submount $fid || error "fid2path should succeed"
16867         cleanup_247 $submount
16868 }
16869 run_test 247d "running fid2path inside root"
16870
16871 # LU-8037
16872 test_247e() {
16873         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16874                 grep -q subtree ||
16875                 skip "Fileset feature is not supported"
16876
16877         local submount=${MOUNT}_$tdir
16878
16879         mkdir $MOUNT/$tdir
16880         mkdir -p $submount || error "mkdir $submount failed"
16881         FILESET="$FILESET/.." mount_client $submount &&
16882                 error "mount $submount should fail"
16883         rmdir $submount
16884 }
16885 run_test 247e "mount .. as fileset"
16886
16887 test_248() {
16888         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16889         [ -z "$fast_read_sav" ] && skip "no fast read support"
16890
16891         # create a large file for fast read verification
16892         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16893
16894         # make sure the file is created correctly
16895         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16896                 { rm -f $DIR/$tfile; skip "file creation error"; }
16897
16898         echo "Test 1: verify that fast read is 4 times faster on cache read"
16899
16900         # small read with fast read enabled
16901         $LCTL set_param -n llite.*.fast_read=1
16902         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16903                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16904                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16905         # small read with fast read disabled
16906         $LCTL set_param -n llite.*.fast_read=0
16907         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16908                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16909                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16910
16911         # verify that fast read is 4 times faster for cache read
16912         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16913                 error_not_in_vm "fast read was not 4 times faster: " \
16914                            "$t_fast vs $t_slow"
16915
16916         echo "Test 2: verify the performance between big and small read"
16917         $LCTL set_param -n llite.*.fast_read=1
16918
16919         # 1k non-cache read
16920         cancel_lru_locks osc
16921         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16922                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16923                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16924
16925         # 1M non-cache read
16926         cancel_lru_locks osc
16927         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16928                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16929                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16930
16931         # verify that big IO is not 4 times faster than small IO
16932         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16933                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16934
16935         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16936         rm -f $DIR/$tfile
16937 }
16938 run_test 248 "fast read verification"
16939
16940 test_249() { # LU-7890
16941         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16942                 skip "Need at least version 2.8.54"
16943
16944         rm -f $DIR/$tfile
16945         $SETSTRIPE -c 1 $DIR/$tfile
16946         # Offset 2T == 4k * 512M
16947         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16948                 error "dd to 2T offset failed"
16949 }
16950 run_test 249 "Write above 2T file size"
16951
16952 test_250() {
16953         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
16954          && skip "no 16TB file size limit on ZFS"
16955
16956         $SETSTRIPE -c 1 $DIR/$tfile
16957         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16958         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16959         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16960         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16961                 conv=notrunc,fsync && error "append succeeded"
16962         return 0
16963 }
16964 run_test 250 "Write above 16T limit"
16965
16966 test_251() {
16967         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
16968
16969         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16970         #Skip once - writing the first stripe will succeed
16971         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16972         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16973                 error "short write happened"
16974
16975         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16976         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16977                 error "short read happened"
16978
16979         rm -f $DIR/$tfile
16980 }
16981 run_test 251 "Handling short read and write correctly"
16982
16983 test_252() {
16984         remote_mds_nodsh && skip "remote MDS with nodsh"
16985         remote_ost_nodsh && skip "remote OST with nodsh"
16986         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16987                 skip_env "ldiskfs only test"
16988         fi
16989
16990         local tgt
16991         local dev
16992         local out
16993         local uuid
16994         local num
16995         local gen
16996
16997         # check lr_reader on OST0000
16998         tgt=ost1
16999         dev=$(facet_device $tgt)
17000         out=$(do_facet $tgt $LR_READER $dev)
17001         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
17002         echo "$out"
17003         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
17004         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
17005                 error "Invalid uuid returned by $LR_READER on target $tgt"
17006         echo -e "uuid returned by $LR_READER is '$uuid'\n"
17007
17008         # check lr_reader -c on MDT0000
17009         tgt=mds1
17010         dev=$(facet_device $tgt)
17011         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
17012                 skip "$LR_READER does not support additional options"
17013         fi
17014         out=$(do_facet $tgt $LR_READER -c $dev)
17015         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
17016         echo "$out"
17017         num=$(echo "$out" | grep -c "mdtlov")
17018         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
17019                 error "Invalid number of mdtlov clients returned by $LR_READER"
17020         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
17021
17022         # check lr_reader -cr on MDT0000
17023         out=$(do_facet $tgt $LR_READER -cr $dev)
17024         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
17025         echo "$out"
17026         echo "$out" | grep -q "^reply_data:$" ||
17027                 error "$LR_READER should have returned 'reply_data' section"
17028         num=$(echo "$out" | grep -c "client_generation")
17029         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
17030 }
17031 run_test 252 "check lr_reader tool"
17032
17033 test_253_fill_ost() {
17034         local size_mb #how many MB should we write to pass watermark
17035         local lwm=$3  #low watermark
17036         local free_10mb #10% of free space
17037
17038         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
17039         size_mb=$((free_kb / 1024 - lwm))
17040         free_10mb=$((free_kb / 10240))
17041         #If 10% of free space cross low watermark use it
17042         if (( free_10mb > size_mb )); then
17043                 size_mb=$free_10mb
17044         else
17045                 #At least we need to store 1.1 of difference between
17046                 #free space and low watermark
17047                 size_mb=$((size_mb + size_mb / 10))
17048         fi
17049         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
17050                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
17051                          oflag=append conv=notrunc
17052         fi
17053
17054         sleep_maxage
17055
17056         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
17057         echo "OST still has $((free_kb / 1024)) mbytes free"
17058 }
17059
17060 test_253() {
17061         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17062         remote_mds_nodsh && skip "remote MDS with nodsh"
17063         remote_mgs_nodsh && skip "remote MGS with nodsh"
17064
17065         local ostidx=0
17066         local rc=0
17067
17068         local ost_name=$($LFS osts |
17069                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
17070         # on the mdt's osc
17071         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
17072         do_facet $SINGLEMDS $LCTL get_param -n \
17073                 osp.$mdtosc_proc1.reserved_mb_high ||
17074                 skip  "remote MDS does not support reserved_mb_high"
17075
17076         rm -rf $DIR/$tdir
17077         wait_mds_ost_sync
17078         wait_delete_completed
17079         mkdir $DIR/$tdir
17080
17081         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
17082                         osp.$mdtosc_proc1.reserved_mb_high)
17083         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
17084                         osp.$mdtosc_proc1.reserved_mb_low)
17085         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
17086
17087         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
17088         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
17089                 error "Adding $ost_name to pool failed"
17090
17091         # Wait for client to see a OST at pool
17092         wait_update $HOSTNAME "$LCTL get_param -n
17093                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
17094                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
17095                 error "Client can not see the pool"
17096         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
17097                 error "Setstripe failed"
17098
17099         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
17100         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
17101         echo "OST still has $((blocks/1024)) mbytes free"
17102
17103         local new_lwm=$((blocks/1024-10))
17104         do_facet $SINGLEMDS $LCTL set_param \
17105                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
17106         do_facet $SINGLEMDS $LCTL set_param \
17107                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
17108
17109         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
17110
17111         #First enospc could execute orphan deletion so repeat.
17112         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
17113
17114         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
17115                         osp.$mdtosc_proc1.prealloc_status)
17116         echo "prealloc_status $oa_status"
17117
17118         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
17119                 error "File creation should fail"
17120         #object allocation was stopped, but we still able to append files
17121         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
17122                 error "Append failed"
17123         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
17124
17125         wait_delete_completed
17126
17127         sleep_maxage
17128
17129         for i in $(seq 10 12); do
17130                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
17131                         error "File creation failed after rm";
17132         done
17133
17134         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
17135                         osp.$mdtosc_proc1.prealloc_status)
17136         echo "prealloc_status $oa_status"
17137
17138         if (( oa_status != 0 )); then
17139                 error "Object allocation still disable after rm"
17140         fi
17141         do_facet $SINGLEMDS $LCTL set_param \
17142                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
17143         do_facet $SINGLEMDS $LCTL set_param \
17144                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
17145
17146
17147         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
17148                 error "Remove $ost_name from pool failed"
17149         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
17150                 error "Pool destroy fialed"
17151 }
17152 run_test 253 "Check object allocation limit"
17153
17154 test_254() {
17155         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17156         remote_mds_nodsh && skip "remote MDS with nodsh"
17157         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
17158                 skip "MDS does not support changelog_size"
17159
17160         local cl_user
17161         local MDT0=$(facet_svc $SINGLEMDS)
17162
17163         changelog_register || error "changelog_register failed"
17164
17165         changelog_clear 0 || error "changelog_clear failed"
17166
17167         local size1=$(do_facet $SINGLEMDS \
17168                       $LCTL get_param -n mdd.$MDT0.changelog_size)
17169         echo "Changelog size $size1"
17170
17171         rm -rf $DIR/$tdir
17172         $LFS mkdir -i 0 $DIR/$tdir
17173         # change something
17174         mkdir -p $DIR/$tdir/pics/2008/zachy
17175         touch $DIR/$tdir/pics/2008/zachy/timestamp
17176         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
17177         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
17178         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
17179         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
17180         rm $DIR/$tdir/pics/desktop.jpg
17181
17182         local size2=$(do_facet $SINGLEMDS \
17183                       $LCTL get_param -n mdd.$MDT0.changelog_size)
17184         echo "Changelog size after work $size2"
17185
17186         (( $size2 > $size1 )) ||
17187                 error "new Changelog size=$size2 less than old size=$size1"
17188 }
17189 run_test 254 "Check changelog size"
17190
17191 ladvise_no_type()
17192 {
17193         local type=$1
17194         local file=$2
17195
17196         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
17197                 awk -F: '{print $2}' | grep $type > /dev/null
17198         if [ $? -ne 0 ]; then
17199                 return 0
17200         fi
17201         return 1
17202 }
17203
17204 ladvise_no_ioctl()
17205 {
17206         local file=$1
17207
17208         lfs ladvise -a willread $file > /dev/null 2>&1
17209         if [ $? -eq 0 ]; then
17210                 return 1
17211         fi
17212
17213         lfs ladvise -a willread $file 2>&1 |
17214                 grep "Inappropriate ioctl for device" > /dev/null
17215         if [ $? -eq 0 ]; then
17216                 return 0
17217         fi
17218         return 1
17219 }
17220
17221 percent() {
17222         bc <<<"scale=2; ($1 - $2) * 100 / $2"
17223 }
17224
17225 # run a random read IO workload
17226 # usage: random_read_iops <filename> <filesize> <iosize>
17227 random_read_iops() {
17228         local file=$1
17229         local fsize=$2
17230         local iosize=${3:-4096}
17231
17232         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
17233                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
17234 }
17235
17236 drop_file_oss_cache() {
17237         local file="$1"
17238         local nodes="$2"
17239
17240         $LFS ladvise -a dontneed $file 2>/dev/null ||
17241                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
17242 }
17243
17244 ladvise_willread_performance()
17245 {
17246         local repeat=10
17247         local average_origin=0
17248         local average_cache=0
17249         local average_ladvise=0
17250
17251         for ((i = 1; i <= $repeat; i++)); do
17252                 echo "Iter $i/$repeat: reading without willread hint"
17253                 cancel_lru_locks osc
17254                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
17255                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
17256                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
17257                 average_origin=$(bc <<<"$average_origin + $speed_origin")
17258
17259                 cancel_lru_locks osc
17260                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
17261                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
17262                 average_cache=$(bc <<<"$average_cache + $speed_cache")
17263
17264                 cancel_lru_locks osc
17265                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
17266                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
17267                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
17268                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
17269                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
17270         done
17271         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
17272         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
17273         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
17274
17275         speedup_cache=$(percent $average_cache $average_origin)
17276         speedup_ladvise=$(percent $average_ladvise $average_origin)
17277
17278         echo "Average uncached read: $average_origin"
17279         echo "Average speedup with OSS cached read: " \
17280                 "$average_cache = +$speedup_cache%"
17281         echo "Average speedup with ladvise willread: " \
17282                 "$average_ladvise = +$speedup_ladvise%"
17283
17284         local lowest_speedup=20
17285         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
17286                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
17287                         "got $average_cache%. Skipping ladvise willread check."
17288                 return 0
17289         fi
17290
17291         # the test won't work on ZFS until it supports 'ladvise dontneed', but
17292         # it is still good to run until then to exercise 'ladvise willread'
17293         ! $LFS ladvise -a dontneed $DIR/$tfile &&
17294                 [ "$ost1_FSTYPE" = "zfs" ] &&
17295                 echo "osd-zfs does not support dontneed or drop_caches" &&
17296                 return 0
17297
17298         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
17299         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
17300                 error_not_in_vm "Speedup with willread is less than " \
17301                         "$lowest_speedup%, got $average_ladvise%"
17302 }
17303
17304 test_255a() {
17305         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
17306                 skip "lustre < 2.8.54 does not support ladvise "
17307         remote_ost_nodsh && skip "remote OST with nodsh"
17308
17309         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
17310
17311         ladvise_no_type willread $DIR/$tfile &&
17312                 skip "willread ladvise is not supported"
17313
17314         ladvise_no_ioctl $DIR/$tfile &&
17315                 skip "ladvise ioctl is not supported"
17316
17317         local size_mb=100
17318         local size=$((size_mb * 1048576))
17319         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
17320                 error "dd to $DIR/$tfile failed"
17321
17322         lfs ladvise -a willread $DIR/$tfile ||
17323                 error "Ladvise failed with no range argument"
17324
17325         lfs ladvise -a willread -s 0 $DIR/$tfile ||
17326                 error "Ladvise failed with no -l or -e argument"
17327
17328         lfs ladvise -a willread -e 1 $DIR/$tfile ||
17329                 error "Ladvise failed with only -e argument"
17330
17331         lfs ladvise -a willread -l 1 $DIR/$tfile ||
17332                 error "Ladvise failed with only -l argument"
17333
17334         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
17335                 error "End offset should not be smaller than start offset"
17336
17337         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
17338                 error "End offset should not be equal to start offset"
17339
17340         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
17341                 error "Ladvise failed with overflowing -s argument"
17342
17343         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
17344                 error "Ladvise failed with overflowing -e argument"
17345
17346         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
17347                 error "Ladvise failed with overflowing -l argument"
17348
17349         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
17350                 error "Ladvise succeeded with conflicting -l and -e arguments"
17351
17352         echo "Synchronous ladvise should wait"
17353         local delay=4
17354 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
17355         do_nodes $(comma_list $(osts_nodes)) \
17356                 $LCTL set_param fail_val=$delay fail_loc=0x237
17357
17358         local start_ts=$SECONDS
17359         lfs ladvise -a willread $DIR/$tfile ||
17360                 error "Ladvise failed with no range argument"
17361         local end_ts=$SECONDS
17362         local inteval_ts=$((end_ts - start_ts))
17363
17364         if [ $inteval_ts -lt $(($delay - 1)) ]; then
17365                 error "Synchronous advice didn't wait reply"
17366         fi
17367
17368         echo "Asynchronous ladvise shouldn't wait"
17369         local start_ts=$SECONDS
17370         lfs ladvise -a willread -b $DIR/$tfile ||
17371                 error "Ladvise failed with no range argument"
17372         local end_ts=$SECONDS
17373         local inteval_ts=$((end_ts - start_ts))
17374
17375         if [ $inteval_ts -gt $(($delay / 2)) ]; then
17376                 error "Asynchronous advice blocked"
17377         fi
17378
17379         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
17380         ladvise_willread_performance
17381 }
17382 run_test 255a "check 'lfs ladvise -a willread'"
17383
17384 facet_meminfo() {
17385         local facet=$1
17386         local info=$2
17387
17388         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
17389 }
17390
17391 test_255b() {
17392         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
17393                 skip "lustre < 2.8.54 does not support ladvise "
17394         remote_ost_nodsh && skip "remote OST with nodsh"
17395
17396         lfs setstripe -c 1 -i 0 $DIR/$tfile
17397
17398         ladvise_no_type dontneed $DIR/$tfile &&
17399                 skip "dontneed ladvise is not supported"
17400
17401         ladvise_no_ioctl $DIR/$tfile &&
17402                 skip "ladvise ioctl is not supported"
17403
17404         ! $LFS ladvise -a dontneed $DIR/$tfile &&
17405                 [ "$ost1_FSTYPE" = "zfs" ] &&
17406                 skip "zfs-osd does not support 'ladvise dontneed'"
17407
17408         local size_mb=100
17409         local size=$((size_mb * 1048576))
17410         # In order to prevent disturbance of other processes, only check 3/4
17411         # of the memory usage
17412         local kibibytes=$((size_mb * 1024 * 3 / 4))
17413
17414         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
17415                 error "dd to $DIR/$tfile failed"
17416
17417         #force write to complete before dropping OST cache & checking memory
17418         sync
17419
17420         local total=$(facet_meminfo ost1 MemTotal)
17421         echo "Total memory: $total KiB"
17422
17423         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
17424         local before_read=$(facet_meminfo ost1 Cached)
17425         echo "Cache used before read: $before_read KiB"
17426
17427         lfs ladvise -a willread $DIR/$tfile ||
17428                 error "Ladvise willread failed"
17429         local after_read=$(facet_meminfo ost1 Cached)
17430         echo "Cache used after read: $after_read KiB"
17431
17432         lfs ladvise -a dontneed $DIR/$tfile ||
17433                 error "Ladvise dontneed again failed"
17434         local no_read=$(facet_meminfo ost1 Cached)
17435         echo "Cache used after dontneed ladvise: $no_read KiB"
17436
17437         if [ $total -lt $((before_read + kibibytes)) ]; then
17438                 echo "Memory is too small, abort checking"
17439                 return 0
17440         fi
17441
17442         if [ $((before_read + kibibytes)) -gt $after_read ]; then
17443                 error "Ladvise willread should use more memory" \
17444                         "than $kibibytes KiB"
17445         fi
17446
17447         if [ $((no_read + kibibytes)) -gt $after_read ]; then
17448                 error "Ladvise dontneed should release more memory" \
17449                         "than $kibibytes KiB"
17450         fi
17451 }
17452 run_test 255b "check 'lfs ladvise -a dontneed'"
17453
17454 test_255c() {
17455         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
17456                 skip "lustre < 2.10.50 does not support lockahead"
17457
17458         local count
17459         local new_count
17460         local difference
17461         local i
17462         local rc
17463
17464         test_mkdir -p $DIR/$tdir
17465         $SETSTRIPE -i 0 $DIR/$tdir
17466
17467         #test 10 returns only success/failure
17468         i=10
17469         lockahead_test -d $DIR/$tdir -t $i -f $tfile
17470         rc=$?
17471         if [ $rc -eq 255 ]; then
17472                 error "Ladvise test${i} failed, ${rc}"
17473         fi
17474
17475         #test 11 counts lock enqueue requests, all others count new locks
17476         i=11
17477         count=$(do_facet ost1 \
17478                 $LCTL get_param -n ost.OSS.ost.stats)
17479         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
17480
17481         lockahead_test -d $DIR/$tdir -t $i -f $tfile
17482         rc=$?
17483         if [ $rc -eq 255 ]; then
17484                 error "Ladvise test${i} failed, ${rc}"
17485         fi
17486
17487         new_count=$(do_facet ost1 \
17488                 $LCTL get_param -n ost.OSS.ost.stats)
17489         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
17490                    awk '{ print $2 }')
17491
17492         difference="$((new_count - count))"
17493         if [ $difference -ne $rc ]; then
17494                 error "Ladvise test${i}, bad enqueue count, returned " \
17495                       "${rc}, actual ${difference}"
17496         fi
17497
17498         for i in $(seq 12 21); do
17499                 # If we do not do this, we run the risk of having too many
17500                 # locks and starting lock cancellation while we are checking
17501                 # lock counts.
17502                 cancel_lru_locks osc
17503
17504                 count=$($LCTL get_param -n \
17505                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
17506
17507                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
17508                 rc=$?
17509                 if [ $rc -eq 255 ]; then
17510                         error "Ladvise test ${i} failed, ${rc}"
17511                 fi
17512
17513                 new_count=$($LCTL get_param -n \
17514                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
17515                 difference="$((new_count - count))"
17516
17517                 # Test 15 output is divided by 100 to map down to valid return
17518                 if [ $i -eq 15 ]; then
17519                         rc="$((rc * 100))"
17520                 fi
17521
17522                 if [ $difference -ne $rc ]; then
17523                         error "Ladvise test ${i}, bad lock count, returned " \
17524                               "${rc}, actual ${difference}"
17525                 fi
17526         done
17527
17528         #test 22 returns only success/failure
17529         i=22
17530         lockahead_test -d $DIR/$tdir -t $i -f $tfile
17531         rc=$?
17532         if [ $rc -eq 255 ]; then
17533                 error "Ladvise test${i} failed, ${rc}"
17534         fi
17535 }
17536 run_test 255c "suite of ladvise lockahead tests"
17537
17538 test_256() {
17539         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17540         remote_mds_nodsh && skip "remote MDS with nodsh"
17541         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
17542         changelog_users $SINGLEMDS | grep "^cl" &&
17543                 skip "active changelog user"
17544
17545         local cl_user
17546         local cat_sl
17547         local mdt_dev
17548
17549         mdt_dev=$(mdsdevname 1)
17550         echo $mdt_dev
17551
17552         changelog_register || error "changelog_register failed"
17553
17554         rm -rf $DIR/$tdir
17555         mkdir -p $DIR/$tdir
17556
17557         changelog_clear 0 || error "changelog_clear failed"
17558
17559         # change something
17560         touch $DIR/$tdir/{1..10}
17561
17562         # stop the MDT
17563         stop $SINGLEMDS || error "Fail to stop MDT"
17564
17565         # remount the MDT
17566
17567         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
17568
17569         #after mount new plainllog is used
17570         touch $DIR/$tdir/{11..19}
17571         local tmpfile=$(mktemp -u $tfile.XXXXXX)
17572         cat_sl=$(do_facet $SINGLEMDS "sync; \
17573                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
17574                  llog_reader $tmpfile | grep -c type=1064553b")
17575         do_facet $SINGLEMDS llog_reader $tmpfile
17576
17577         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
17578
17579         changelog_clear 0 || error "changelog_clear failed"
17580
17581         cat_sl=$(do_facet $SINGLEMDS "sync; \
17582                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
17583                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
17584
17585         if (( cat_sl == 2 )); then
17586                 error "Empty plain llog was not deleted from changelog catalog"
17587         elif (( cat_sl != 1 )); then
17588                 error "Active plain llog shouldn't be deleted from catalog"
17589         fi
17590 }
17591 run_test 256 "Check llog delete for empty and not full state"
17592
17593 test_257() {
17594         remote_mds_nodsh && skip "remote MDS with nodsh"
17595         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
17596                 skip "Need MDS version at least 2.8.55"
17597
17598         test_mkdir $DIR/$tdir
17599
17600         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
17601                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
17602         stat $DIR/$tdir
17603
17604 #define OBD_FAIL_MDS_XATTR_REP                  0x161
17605         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17606         local facet=mds$((mdtidx + 1))
17607         set_nodes_failloc $(facet_active_host $facet) 0x80000161
17608         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
17609
17610         stop $facet || error "stop MDS failed"
17611         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
17612                 error "start MDS fail"
17613 }
17614 run_test 257 "xattr locks are not lost"
17615
17616 # Verify we take the i_mutex when security requires it
17617 test_258a() {
17618 #define OBD_FAIL_IMUTEX_SEC 0x141c
17619         $LCTL set_param fail_loc=0x141c
17620         touch $DIR/$tfile
17621         chmod u+s $DIR/$tfile
17622         chmod a+rwx $DIR/$tfile
17623         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
17624         RC=$?
17625         if [ $RC -ne 0 ]; then
17626                 error "error, failed to take i_mutex, rc=$?"
17627         fi
17628         rm -f $DIR/$tfile
17629 }
17630 run_test 258a "verify i_mutex security behavior when suid attributes is set"
17631
17632 # Verify we do NOT take the i_mutex in the normal case
17633 test_258b() {
17634 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
17635         $LCTL set_param fail_loc=0x141d
17636         touch $DIR/$tfile
17637         chmod a+rwx $DIR
17638         chmod a+rw $DIR/$tfile
17639         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
17640         RC=$?
17641         if [ $RC -ne 0 ]; then
17642                 error "error, took i_mutex unnecessarily, rc=$?"
17643         fi
17644         rm -f $DIR/$tfile
17645
17646 }
17647 run_test 258b "verify i_mutex security behavior"
17648
17649 test_259() {
17650         local file=$DIR/$tfile
17651         local before
17652         local after
17653
17654         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
17655
17656         stack_trap "rm -f $file" EXIT
17657
17658         wait_delete_completed
17659         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
17660         echo "before: $before"
17661
17662         $LFS setstripe -i 0 -c 1 $file
17663         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
17664         sync_all_data
17665         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
17666         echo "after write: $after"
17667
17668 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
17669         do_facet ost1 $LCTL set_param fail_loc=0x2301
17670         $TRUNCATE $file 0
17671         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
17672         echo "after truncate: $after"
17673
17674         stop ost1
17675         do_facet ost1 $LCTL set_param fail_loc=0
17676         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
17677         sleep 2
17678         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
17679         echo "after restart: $after"
17680         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
17681                 error "missing truncate?"
17682
17683         return 0
17684 }
17685 run_test 259 "crash at delayed truncate"
17686
17687 test_260() {
17688 #define OBD_FAIL_MDC_CLOSE               0x806
17689         $LCTL set_param fail_loc=0x80000806
17690         touch $DIR/$tfile
17691
17692 }
17693 run_test 260 "Check mdc_close fail"
17694
17695 ### Data-on-MDT sanity tests ###
17696 test_270a() {
17697         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17698                 skip "Need MDS version at least 2.10.55 for DoM"
17699
17700         # create DoM file
17701         local dom=$DIR/$tdir/dom_file
17702         local tmp=$DIR/$tdir/tmp_file
17703
17704         mkdir -p $DIR/$tdir
17705
17706         # basic checks for DoM component creation
17707         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
17708                 error "Can set MDT layout to non-first entry"
17709
17710         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
17711                 error "Can define multiple entries as MDT layout"
17712
17713         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
17714
17715         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
17716         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
17717         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
17718
17719         local mdtidx=$($LFS getstripe -m $dom)
17720         local mdtname=MDT$(printf %04x $mdtidx)
17721         local facet=mds$((mdtidx + 1))
17722         local space_check=1
17723
17724         # Skip free space checks with ZFS
17725         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
17726
17727         # write
17728         sync
17729         local size_tmp=$((65536 * 3))
17730         local mdtfree1=$(do_facet $facet \
17731                          lctl get_param -n osd*.*$mdtname.kbytesfree)
17732
17733         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17734         # check also direct IO along write
17735         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
17736         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17737         sync
17738         cmp $tmp $dom || error "file data is different"
17739         [ $(stat -c%s $dom) == $size_tmp ] ||
17740                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17741         if [ $space_check == 1 ]; then
17742                 local mdtfree2=$(do_facet $facet \
17743                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
17744
17745                 # increase in usage from by $size_tmp
17746                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17747                         error "MDT free space wrong after write: " \
17748                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17749         fi
17750
17751         # truncate
17752         local size_dom=10000
17753
17754         $TRUNCATE $dom $size_dom
17755         [ $(stat -c%s $dom) == $size_dom ] ||
17756                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
17757         if [ $space_check == 1 ]; then
17758                 mdtfree1=$(do_facet $facet \
17759                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17760                 # decrease in usage from $size_tmp to new $size_dom
17761                 [ $(($mdtfree1 - $mdtfree2)) -ge \
17762                   $(((size_tmp - size_dom) / 1024)) ] ||
17763                         error "MDT free space is wrong after truncate: " \
17764                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
17765         fi
17766
17767         # append
17768         cat $tmp >> $dom
17769         sync
17770         size_dom=$((size_dom + size_tmp))
17771         [ $(stat -c%s $dom) == $size_dom ] ||
17772                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
17773         if [ $space_check == 1 ]; then
17774                 mdtfree2=$(do_facet $facet \
17775                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17776                 # increase in usage by $size_tmp from previous
17777                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17778                         error "MDT free space is wrong after append: " \
17779                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17780         fi
17781
17782         # delete
17783         rm $dom
17784         if [ $space_check == 1 ]; then
17785                 mdtfree1=$(do_facet $facet \
17786                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17787                 # decrease in usage by $size_dom from previous
17788                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
17789                         error "MDT free space is wrong after removal: " \
17790                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
17791         fi
17792
17793         # combined striping
17794         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
17795                 error "Can't create DoM + OST striping"
17796
17797         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
17798         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17799         # check also direct IO along write
17800         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17801         sync
17802         cmp $tmp $dom || error "file data is different"
17803         [ $(stat -c%s $dom) == $size_tmp ] ||
17804                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17805         rm $dom $tmp
17806
17807         return 0
17808 }
17809 run_test 270a "DoM: basic functionality tests"
17810
17811 test_270b() {
17812         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17813                 skip "Need MDS version at least 2.10.55"
17814
17815         local dom=$DIR/$tdir/dom_file
17816         local max_size=1048576
17817
17818         mkdir -p $DIR/$tdir
17819         $LFS setstripe -E $max_size -L mdt $dom
17820
17821         # truncate over the limit
17822         $TRUNCATE $dom $(($max_size + 1)) &&
17823                 error "successful truncate over the maximum size"
17824         # write over the limit
17825         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17826                 error "successful write over the maximum size"
17827         # append over the limit
17828         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17829         echo "12345" >> $dom && error "successful append over the maximum size"
17830         rm $dom
17831
17832         return 0
17833 }
17834 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17835
17836 test_270c() {
17837         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17838                 skip "Need MDS version at least 2.10.55"
17839
17840         mkdir -p $DIR/$tdir
17841         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17842
17843         # check files inherit DoM EA
17844         touch $DIR/$tdir/first
17845         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
17846                 error "bad pattern"
17847         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17848                 error "bad stripe count"
17849         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17850                 error "bad stripe size"
17851
17852         # check directory inherits DoM EA and uses it as default
17853         mkdir $DIR/$tdir/subdir
17854         touch $DIR/$tdir/subdir/second
17855         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17856                 error "bad pattern in sub-directory"
17857         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17858                 error "bad stripe count in sub-directory"
17859         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17860                 error "bad stripe size in sub-directory"
17861         return 0
17862 }
17863 run_test 270c "DoM: DoM EA inheritance tests"
17864
17865 test_270d() {
17866         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17867                 skip "Need MDS version at least 2.10.55"
17868
17869         mkdir -p $DIR/$tdir
17870         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17871
17872         # inherit default DoM striping
17873         mkdir $DIR/$tdir/subdir
17874         touch $DIR/$tdir/subdir/f1
17875
17876         # change default directory striping
17877         $LFS setstripe -c 1 $DIR/$tdir/subdir
17878         touch $DIR/$tdir/subdir/f2
17879         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17880                 error "wrong default striping in file 2"
17881         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17882                 error "bad pattern in file 2"
17883         return 0
17884 }
17885 run_test 270d "DoM: change striping from DoM to RAID0"
17886
17887 test_270e() {
17888         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17889                 skip "Need MDS version at least 2.10.55"
17890
17891         mkdir -p $DIR/$tdir/dom
17892         mkdir -p $DIR/$tdir/norm
17893         DOMFILES=20
17894         NORMFILES=10
17895         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17896         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17897
17898         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17899         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17900
17901         # find DoM files by layout
17902         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17903         [ $NUM -eq  $DOMFILES ] ||
17904                 error "lfs find -L: found $NUM, expected $DOMFILES"
17905         echo "Test 1: lfs find 20 DOM files by layout: OK"
17906
17907         # there should be 1 dir with default DOM striping
17908         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17909         [ $NUM -eq  1 ] ||
17910                 error "lfs find -L: found $NUM, expected 1 dir"
17911         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17912
17913         # find DoM files by stripe size
17914         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17915         [ $NUM -eq  $DOMFILES ] ||
17916                 error "lfs find -S: found $NUM, expected $DOMFILES"
17917         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17918
17919         # find files by stripe offset except DoM files
17920         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17921         [ $NUM -eq  $NORMFILES ] ||
17922                 error "lfs find -i: found $NUM, expected $NORMFILES"
17923         echo "Test 5: lfs find no DOM files by stripe index: OK"
17924         return 0
17925 }
17926 run_test 270e "DoM: lfs find with DoM files test"
17927
17928 test_270f() {
17929         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17930                 skip "Need MDS version at least 2.10.55"
17931
17932         local mdtname=${FSNAME}-MDT0000-mdtlov
17933         local dom=$DIR/$tdir/dom_file
17934         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17935                                                 lod.$mdtname.dom_stripesize)
17936         local dom_limit=131072
17937
17938         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17939         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17940                                                 lod.$mdtname.dom_stripesize)
17941         [ ${dom_limit} -eq ${dom_current} ] ||
17942                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17943
17944         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17945         $LFS setstripe -d $DIR/$tdir
17946         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17947                 error "Can't set directory default striping"
17948
17949         # exceed maximum stripe size
17950         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17951                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17952         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17953                 error "Able to create DoM component size more than LOD limit"
17954
17955         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17956         dom_current=$(do_facet mds1 $LCTL get_param -n \
17957                                                 lod.$mdtname.dom_stripesize)
17958         [ 0 -eq ${dom_current} ] ||
17959                 error "Can't set zero DoM stripe limit"
17960         rm $dom
17961
17962         # attempt to create DoM file on server with disabled DoM should
17963         # remove DoM entry from layout and be succeed
17964         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17965                 error "Can't create DoM file (DoM is disabled)"
17966         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17967                 error "File has DoM component while DoM is disabled"
17968         rm $dom
17969
17970         # attempt to create DoM file with only DoM stripe should return error
17971         $LFS setstripe -E $dom_limit -L mdt $dom &&
17972                 error "Able to create DoM-only file while DoM is disabled"
17973
17974         # too low values to be aligned with smallest stripe size 64K
17975         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17976         dom_current=$(do_facet mds1 $LCTL get_param -n \
17977                                                 lod.$mdtname.dom_stripesize)
17978         [ 30000 -eq ${dom_current} ] &&
17979                 error "Can set too small DoM stripe limit"
17980
17981         # 64K is a minimal stripe size in Lustre, expect limit of that size
17982         [ 65536 -eq ${dom_current} ] ||
17983                 error "Limit is not set to 64K but ${dom_current}"
17984
17985         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17986         dom_current=$(do_facet mds1 $LCTL get_param -n \
17987                                                 lod.$mdtname.dom_stripesize)
17988         echo $dom_current
17989         [ 2147483648 -eq ${dom_current} ] &&
17990                 error "Can set too large DoM stripe limit"
17991
17992         do_facet mds1 $LCTL set_param -n \
17993                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17994         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17995                 error "Can't create DoM component size after limit change"
17996         do_facet mds1 $LCTL set_param -n \
17997                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17998         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17999                 error "Can't create DoM file after limit decrease"
18000         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
18001                 error "Can create big DoM component after limit decrease"
18002         touch ${dom}_def ||
18003                 error "Can't create file with old default layout"
18004
18005         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
18006         return 0
18007 }
18008 run_test 270f "DoM: maximum DoM stripe size checks"
18009
18010 test_271a() {
18011         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18012                 skip "Need MDS version at least 2.10.55"
18013
18014         local dom=$DIR/$tdir/dom
18015
18016         mkdir -p $DIR/$tdir
18017
18018         $LFS setstripe -E 1024K -L mdt $dom
18019
18020         lctl set_param -n mdc.*.stats=clear
18021         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
18022         cat $dom > /dev/null
18023         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
18024         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
18025         ls $dom
18026         rm -f $dom
18027 }
18028 run_test 271a "DoM: data is cached for read after write"
18029
18030 test_271b() {
18031         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18032                 skip "Need MDS version at least 2.10.55"
18033
18034         local dom=$DIR/$tdir/dom
18035
18036         mkdir -p $DIR/$tdir
18037
18038         $LFS setstripe -E 1024K -L mdt -E EOF $dom
18039
18040         lctl set_param -n mdc.*.stats=clear
18041         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
18042         cancel_lru_locks mdc
18043         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
18044         # second stat to check size is cached on client
18045         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
18046         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
18047         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
18048         rm -f $dom
18049 }
18050 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
18051
18052 test_271ba() {
18053         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18054                 skip "Need MDS version at least 2.10.55"
18055
18056         local dom=$DIR/$tdir/dom
18057
18058         mkdir -p $DIR/$tdir
18059
18060         $LFS setstripe -E 1024K -L mdt -E EOF $dom
18061
18062         lctl set_param -n mdc.*.stats=clear
18063         lctl set_param -n osc.*.stats=clear
18064         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
18065         cancel_lru_locks mdc
18066         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
18067         # second stat to check size is cached on client
18068         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
18069         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
18070         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
18071         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
18072         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
18073         rm -f $dom
18074 }
18075 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
18076
18077
18078 get_mdc_stats() {
18079         local mdtidx=$1
18080         local param=$2
18081         local mdt=MDT$(printf %04x $mdtidx)
18082
18083         if [ -z $param ]; then
18084                 lctl get_param -n mdc.*$mdt*.stats
18085         else
18086                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
18087         fi
18088 }
18089
18090 test_271c() {
18091         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
18092                 skip "Need MDS version at least 2.10.55"
18093
18094         local dom=$DIR/$tdir/dom
18095
18096         mkdir -p $DIR/$tdir
18097
18098         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
18099
18100         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
18101         local facet=mds$((mdtidx + 1))
18102
18103         cancel_lru_locks mdc
18104         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
18105         createmany -o $dom 1000
18106         lctl set_param -n mdc.*.stats=clear
18107         smalliomany -w $dom 1000 200
18108         get_mdc_stats $mdtidx
18109         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
18110         # Each file has 1 open, 1 IO enqueues, total 2000
18111         # but now we have also +1 getxattr for security.capability, total 3000
18112         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
18113         unlinkmany $dom 1000
18114
18115         cancel_lru_locks mdc
18116         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
18117         createmany -o $dom 1000
18118         lctl set_param -n mdc.*.stats=clear
18119         smalliomany -w $dom 1000 200
18120         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
18121         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
18122         # for OPEN and IO lock.
18123         [ $((enq - enq_2)) -ge 1000 ] ||
18124                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
18125         unlinkmany $dom 1000
18126         return 0
18127 }
18128 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
18129
18130 cleanup_271def_tests() {
18131         trap 0
18132         rm -f $1
18133 }
18134
18135 test_271d() {
18136         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
18137                 skip "Need MDS version at least 2.10.57"
18138
18139         local dom=$DIR/$tdir/dom
18140         local tmp=$TMP/$tfile
18141         trap "cleanup_271def_tests $tmp" EXIT
18142
18143         mkdir -p $DIR/$tdir
18144
18145         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
18146
18147         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
18148
18149         cancel_lru_locks mdc
18150         dd if=/dev/urandom of=$tmp bs=1000 count=1
18151         dd if=$tmp of=$dom bs=1000 count=1
18152         cancel_lru_locks mdc
18153
18154         cat /etc/hosts >> $tmp
18155         lctl set_param -n mdc.*.stats=clear
18156
18157         # append data to the same file it should update local page
18158         echo "Append to the same page"
18159         cat /etc/hosts >> $dom
18160         local num=$(get_mdc_stats $mdtidx ost_read)
18161         local ra=$(get_mdc_stats $mdtidx req_active)
18162         local rw=$(get_mdc_stats $mdtidx req_waittime)
18163
18164         [ -z $num ] || error "$num READ RPC occured"
18165         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
18166         echo "... DONE"
18167
18168         # compare content
18169         cmp $tmp $dom || error "file miscompare"
18170
18171         cancel_lru_locks mdc
18172         lctl set_param -n mdc.*.stats=clear
18173
18174         echo "Open and read file"
18175         cat $dom > /dev/null
18176         local num=$(get_mdc_stats $mdtidx ost_read)
18177         local ra=$(get_mdc_stats $mdtidx req_active)
18178         local rw=$(get_mdc_stats $mdtidx req_waittime)
18179
18180         [ -z $num ] || error "$num READ RPC occured"
18181         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
18182         echo "... DONE"
18183
18184         # compare content
18185         cmp $tmp $dom || error "file miscompare"
18186
18187         return 0
18188 }
18189 run_test 271d "DoM: read on open (1K file in reply buffer)"
18190
18191 test_271f() {
18192         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
18193                 skip "Need MDS version at least 2.10.57"
18194
18195         local dom=$DIR/$tdir/dom
18196         local tmp=$TMP/$tfile
18197         trap "cleanup_271def_tests $tmp" EXIT
18198
18199         mkdir -p $DIR/$tdir
18200
18201         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
18202
18203         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
18204
18205         cancel_lru_locks mdc
18206         dd if=/dev/urandom of=$tmp bs=200000 count=1
18207         dd if=$tmp of=$dom bs=200000 count=1
18208         cancel_lru_locks mdc
18209         cat /etc/hosts >> $tmp
18210         lctl set_param -n mdc.*.stats=clear
18211
18212         echo "Append to the same page"
18213         cat /etc/hosts >> $dom
18214         local num=$(get_mdc_stats $mdtidx ost_read)
18215         local ra=$(get_mdc_stats $mdtidx req_active)
18216         local rw=$(get_mdc_stats $mdtidx req_waittime)
18217
18218         [ -z $num ] || error "$num READ RPC occured"
18219         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
18220         echo "... DONE"
18221
18222         # compare content
18223         cmp $tmp $dom || error "file miscompare"
18224
18225         cancel_lru_locks mdc
18226         lctl set_param -n mdc.*.stats=clear
18227
18228         echo "Open and read file"
18229         cat $dom > /dev/null
18230         local num=$(get_mdc_stats $mdtidx ost_read)
18231         local ra=$(get_mdc_stats $mdtidx req_active)
18232         local rw=$(get_mdc_stats $mdtidx req_waittime)
18233
18234         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
18235         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
18236         echo "... DONE"
18237
18238         # compare content
18239         cmp $tmp $dom || error "file miscompare"
18240
18241         return 0
18242 }
18243 run_test 271f "DoM: read on open (200K file and read tail)"
18244
18245 test_271g() {
18246         [[ $($LCTL get_param mdc.*.import) =~ async_discard ]] ||
18247                 skip "Skipping due to old client or server version"
18248
18249         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
18250         # to get layout
18251         $CHECKSTAT -t file $DIR1/$tfile
18252
18253         $MULTIOP $DIR1/$tfile Ow40960_w4096c &
18254         MULTIOP_PID=$!
18255         sleep 1
18256         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE
18257         $LCTL set_param fail_loc=0x80000314
18258         rm $DIR1/$tfile || error "Unlink fails"
18259         RC=$?
18260         kill -USR1 $MULTIOP_PID && wait $MULTIOP_PID || error "multiop failure"
18261         [ $RC -eq 0 ] || error "Failed write to stale object"
18262 }
18263 run_test 271g "Discard DoM data vs client flush race"
18264
18265 test_272a() {
18266         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
18267                 skip "Need MDS version at least 2.11.50"
18268
18269         local dom=$DIR/$tdir/dom
18270         mkdir -p $DIR/$tdir
18271
18272         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
18273         dd if=/dev/urandom of=$dom bs=512K count=1 ||
18274                 error "failed to write data into $dom"
18275         local old_md5=$(md5sum $dom)
18276
18277         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
18278                 error "failed to migrate to the same DoM component"
18279
18280         [ $($LFS getstripe -c $dom) -eq 2 ] ||
18281                 error "layout was not changed silently"
18282
18283         local new_md5=$(md5sum $dom)
18284
18285         [ "$old_md5" != "$new_md5" ] &&
18286                 error "md5sum differ: $old_md5, $new_md5"
18287         return 0
18288 }
18289 run_test 272a "DoM migration: new layout with the same DOM component"
18290
18291 test_272b() {
18292         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
18293                 skip "Need MDS version at least 2.11.50"
18294
18295         local dom=$DIR/$tdir/dom
18296         mkdir -p $DIR/$tdir
18297         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
18298
18299         local mdtidx=$($LFS getstripe -m $dom)
18300         local mdtname=MDT$(printf %04x $mdtidx)
18301         local facet=mds$((mdtidx + 1))
18302
18303         local mdtfree1=$(do_facet $facet \
18304                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18305         dd if=/dev/urandom of=$dom bs=2M count=1 ||
18306                 error "failed to write data into $dom"
18307         local old_md5=$(md5sum $dom)
18308         cancel_lru_locks mdc
18309         local mdtfree1=$(do_facet $facet \
18310                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18311
18312         $LFS migrate -c2 $dom ||
18313                 error "failed to migrate to the new composite layout"
18314         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
18315                 error "MDT stripe was not removed"
18316
18317         cancel_lru_locks mdc
18318         local new_md5=$(md5sum $dom)
18319         [ "$old_md5" != "$new_md5" ] &&
18320                 error "$old_md5 != $new_md5"
18321
18322         # Skip free space checks with ZFS
18323         if [ "$(facet_fstype $facet)" != "zfs" ]; then
18324                 local mdtfree2=$(do_facet $facet \
18325                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18326                 [ $mdtfree2 -gt $mdtfree1 ] ||
18327                         error "MDT space is not freed after migration"
18328         fi
18329         return 0
18330 }
18331 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
18332
18333 test_272c() {
18334         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
18335                 skip "Need MDS version at least 2.11.50"
18336
18337         local dom=$DIR/$tdir/$tfile
18338         mkdir -p $DIR/$tdir
18339         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
18340
18341         local mdtidx=$($LFS getstripe -m $dom)
18342         local mdtname=MDT$(printf %04x $mdtidx)
18343         local facet=mds$((mdtidx + 1))
18344
18345         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
18346                 error "failed to write data into $dom"
18347         local old_md5=$(md5sum $dom)
18348         cancel_lru_locks mdc
18349         local mdtfree1=$(do_facet $facet \
18350                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18351
18352         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
18353                 error "failed to migrate to the new composite layout"
18354         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
18355                 error "MDT stripe was not removed"
18356
18357         cancel_lru_locks mdc
18358         local new_md5=$(md5sum $dom)
18359         [ "$old_md5" != "$new_md5" ] &&
18360                 error "$old_md5 != $new_md5"
18361
18362         # Skip free space checks with ZFS
18363         if [ "$(facet_fstype $facet)" != "zfs" ]; then
18364                 local mdtfree2=$(do_facet $facet \
18365                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
18366                 [ $mdtfree2 -gt $mdtfree1 ] ||
18367                         error "MDS space is not freed after migration"
18368         fi
18369         return 0
18370 }
18371 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
18372
18373 test_273a() {
18374         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
18375                 skip "Need MDS version at least 2.11.50"
18376
18377         # Layout swap cannot be done if either file has DOM component,
18378         # this will never be supported, migration should be used instead
18379
18380         local dom=$DIR/$tdir/$tfile
18381         mkdir -p $DIR/$tdir
18382
18383         $LFS setstripe -c2 ${dom}_plain
18384         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
18385         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
18386                 error "can swap layout with DoM component"
18387         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
18388                 error "can swap layout with DoM component"
18389
18390         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
18391         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
18392                 error "can swap layout with DoM component"
18393         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
18394                 error "can swap layout with DoM component"
18395         return 0
18396 }
18397 run_test 273a "DoM: layout swapping should fail with DOM"
18398
18399 test_275() {
18400         remote_ost_nodsh && skip "remote OST with nodsh"
18401         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
18402                 skip "Need OST version >= 2.10.57"
18403
18404         local file=$DIR/$tfile
18405         local oss
18406
18407         oss=$(comma_list $(osts_nodes))
18408
18409         dd if=/dev/urandom of=$file bs=1M count=2 ||
18410                 error "failed to create a file"
18411         cancel_lru_locks osc
18412
18413         #lock 1
18414         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
18415                 error "failed to read a file"
18416
18417 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
18418         $LCTL set_param fail_loc=0x8000031f
18419
18420         cancel_lru_locks osc &
18421         sleep 1
18422
18423 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
18424         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
18425         #IO takes another lock, but matches the PENDING one
18426         #and places it to the IO RPC
18427         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
18428                 error "failed to read a file with PENDING lock"
18429 }
18430 run_test 275 "Read on a canceled duplicate lock"
18431
18432 test_276() {
18433         remote_ost_nodsh && skip "remote OST with nodsh"
18434         local pid
18435
18436         do_facet ost1 "(while true; do \
18437                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
18438                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
18439         pid=$!
18440
18441         for LOOP in $(seq 20); do
18442                 stop ost1
18443                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
18444         done
18445         kill -9 $pid
18446         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
18447                 rm $TMP/sanity_276_pid"
18448 }
18449 run_test 276 "Race between mount and obd_statfs"
18450
18451 cleanup_test_300() {
18452         trap 0
18453         umask $SAVE_UMASK
18454 }
18455 test_striped_dir() {
18456         local mdt_index=$1
18457         local stripe_count
18458         local stripe_index
18459
18460         mkdir -p $DIR/$tdir
18461
18462         SAVE_UMASK=$(umask)
18463         trap cleanup_test_300 RETURN EXIT
18464
18465         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
18466                                                 $DIR/$tdir/striped_dir ||
18467                 error "set striped dir error"
18468
18469         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
18470         [ "$mode" = "755" ] || error "expect 755 got $mode"
18471
18472         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
18473                 error "getdirstripe failed"
18474         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
18475         if [ "$stripe_count" != "2" ]; then
18476                 error "1:stripe_count is $stripe_count, expect 2"
18477         fi
18478         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
18479         if [ "$stripe_count" != "2" ]; then
18480                 error "2:stripe_count is $stripe_count, expect 2"
18481         fi
18482
18483         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
18484         if [ "$stripe_index" != "$mdt_index" ]; then
18485                 error "stripe_index is $stripe_index, expect $mdt_index"
18486         fi
18487
18488         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
18489                 error "nlink error after create striped dir"
18490
18491         mkdir $DIR/$tdir/striped_dir/a
18492         mkdir $DIR/$tdir/striped_dir/b
18493
18494         stat $DIR/$tdir/striped_dir/a ||
18495                 error "create dir under striped dir failed"
18496         stat $DIR/$tdir/striped_dir/b ||
18497                 error "create dir under striped dir failed"
18498
18499         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
18500                 error "nlink error after mkdir"
18501
18502         rmdir $DIR/$tdir/striped_dir/a
18503         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
18504                 error "nlink error after rmdir"
18505
18506         rmdir $DIR/$tdir/striped_dir/b
18507         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
18508                 error "nlink error after rmdir"
18509
18510         chattr +i $DIR/$tdir/striped_dir
18511         createmany -o $DIR/$tdir/striped_dir/f 10 &&
18512                 error "immutable flags not working under striped dir!"
18513         chattr -i $DIR/$tdir/striped_dir
18514
18515         rmdir $DIR/$tdir/striped_dir ||
18516                 error "rmdir striped dir error"
18517
18518         cleanup_test_300
18519
18520         true
18521 }
18522
18523 test_300a() {
18524         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
18525                 skip "skipped for lustre < 2.7.0"
18526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18527         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18528
18529         test_striped_dir 0 || error "failed on striped dir on MDT0"
18530         test_striped_dir 1 || error "failed on striped dir on MDT0"
18531 }
18532 run_test 300a "basic striped dir sanity test"
18533
18534 test_300b() {
18535         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
18536                 skip "skipped for lustre < 2.7.0"
18537         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18538         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18539
18540         local i
18541         local mtime1
18542         local mtime2
18543         local mtime3
18544
18545         test_mkdir $DIR/$tdir || error "mkdir fail"
18546         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
18547                 error "set striped dir error"
18548         for i in {0..9}; do
18549                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
18550                 sleep 1
18551                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
18552                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
18553                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
18554                 sleep 1
18555                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
18556                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
18557                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
18558         done
18559         true
18560 }
18561 run_test 300b "check ctime/mtime for striped dir"
18562
18563 test_300c() {
18564         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
18565                 skip "skipped for lustre < 2.7.0"
18566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18567         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18568
18569         local file_count
18570
18571         mkdir -p $DIR/$tdir
18572         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
18573                 error "set striped dir error"
18574
18575         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
18576                 error "chown striped dir failed"
18577
18578         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
18579                 error "create 5k files failed"
18580
18581         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
18582
18583         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
18584
18585         rm -rf $DIR/$tdir
18586 }
18587 run_test 300c "chown && check ls under striped directory"
18588
18589 test_300d() {
18590         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
18591                 skip "skipped for lustre < 2.7.0"
18592         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18593         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18594
18595         local stripe_count
18596         local file
18597
18598         mkdir -p $DIR/$tdir
18599         $SETSTRIPE -c 2 $DIR/$tdir
18600
18601         #local striped directory
18602         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
18603                 error "set striped dir error"
18604         createmany -o $DIR/$tdir/striped_dir/f 10 ||
18605                 error "create 10 files failed"
18606
18607         #remote striped directory
18608         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
18609                 error "set striped dir error"
18610         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
18611                 error "create 10 files failed"
18612
18613         for file in $(find $DIR/$tdir); do
18614                 stripe_count=$($LFS getstripe -c $file)
18615                 [ $stripe_count -eq 2 ] ||
18616                         error "wrong stripe $stripe_count for $file"
18617         done
18618
18619         rm -rf $DIR/$tdir
18620 }
18621 run_test 300d "check default stripe under striped directory"
18622
18623 test_300e() {
18624         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18625                 skip "Need MDS version at least 2.7.55"
18626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18627         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18628
18629         local stripe_count
18630         local file
18631
18632         mkdir -p $DIR/$tdir
18633
18634         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
18635                 error "set striped dir error"
18636
18637         touch $DIR/$tdir/striped_dir/a
18638         touch $DIR/$tdir/striped_dir/b
18639         touch $DIR/$tdir/striped_dir/c
18640
18641         mkdir $DIR/$tdir/striped_dir/dir_a
18642         mkdir $DIR/$tdir/striped_dir/dir_b
18643         mkdir $DIR/$tdir/striped_dir/dir_c
18644
18645         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
18646                 error "set striped adir under striped dir error"
18647
18648         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
18649                 error "set striped bdir under striped dir error"
18650
18651         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
18652                 error "set striped cdir under striped dir error"
18653
18654         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
18655                 error "rename dir under striped dir fails"
18656
18657         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
18658                 error "rename dir under different stripes fails"
18659
18660         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
18661                 error "rename file under striped dir should succeed"
18662
18663         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
18664                 error "rename dir under striped dir should succeed"
18665
18666         rm -rf $DIR/$tdir
18667 }
18668 run_test 300e "check rename under striped directory"
18669
18670 test_300f() {
18671         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18672         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18673         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18674                 skip "Need MDS version at least 2.7.55"
18675
18676         local stripe_count
18677         local file
18678
18679         rm -rf $DIR/$tdir
18680         mkdir -p $DIR/$tdir
18681
18682         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
18683                 error "set striped dir error"
18684
18685         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
18686                 error "set striped dir error"
18687
18688         touch $DIR/$tdir/striped_dir/a
18689         mkdir $DIR/$tdir/striped_dir/dir_a
18690         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
18691                 error "create striped dir under striped dir fails"
18692
18693         touch $DIR/$tdir/striped_dir1/b
18694         mkdir $DIR/$tdir/striped_dir1/dir_b
18695         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
18696                 error "create striped dir under striped dir fails"
18697
18698         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
18699                 error "rename dir under different striped dir should fail"
18700
18701         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
18702                 error "rename striped dir under diff striped dir should fail"
18703
18704         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
18705                 error "rename file under diff striped dirs fails"
18706
18707         rm -rf $DIR/$tdir
18708 }
18709 run_test 300f "check rename cross striped directory"
18710
18711 test_300_check_default_striped_dir()
18712 {
18713         local dirname=$1
18714         local default_count=$2
18715         local default_index=$3
18716         local stripe_count
18717         local stripe_index
18718         local dir_stripe_index
18719         local dir
18720
18721         echo "checking $dirname $default_count $default_index"
18722         $LFS setdirstripe -D -c $default_count -i $default_index \
18723                                 -t all_char $DIR/$tdir/$dirname ||
18724                 error "set default stripe on striped dir error"
18725         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
18726         [ $stripe_count -eq $default_count ] ||
18727                 error "expect $default_count get $stripe_count for $dirname"
18728
18729         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
18730         [ $stripe_index -eq $default_index ] ||
18731                 error "expect $default_index get $stripe_index for $dirname"
18732
18733         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
18734                                                 error "create dirs failed"
18735
18736         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
18737         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
18738         for dir in $(find $DIR/$tdir/$dirname/*); do
18739                 stripe_count=$($LFS getdirstripe -c $dir)
18740                 [ $stripe_count -eq $default_count ] ||
18741                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
18742                 error "stripe count $default_count != $stripe_count for $dir"
18743
18744                 stripe_index=$($LFS getdirstripe -i $dir)
18745                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
18746                         error "$stripe_index != $default_index for $dir"
18747
18748                 #check default stripe
18749                 stripe_count=$($LFS getdirstripe -D -c $dir)
18750                 [ $stripe_count -eq $default_count ] ||
18751                 error "default count $default_count != $stripe_count for $dir"
18752
18753                 stripe_index=$($LFS getdirstripe -D -i $dir)
18754                 [ $stripe_index -eq $default_index ] ||
18755                 error "default index $default_index != $stripe_index for $dir"
18756         done
18757         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
18758 }
18759
18760 test_300g() {
18761         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18762         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18763                 skip "Need MDS version at least 2.7.55"
18764
18765         local dir
18766         local stripe_count
18767         local stripe_index
18768
18769         mkdir $DIR/$tdir
18770         mkdir $DIR/$tdir/normal_dir
18771
18772         #Checking when client cache stripe index
18773         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18774         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18775                 error "create striped_dir failed"
18776
18777         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18778                 error "create dir0 fails"
18779         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18780         [ $stripe_index -eq 0 ] ||
18781                 error "dir0 expect index 0 got $stripe_index"
18782
18783         mkdir $DIR/$tdir/striped_dir/dir1 ||
18784                 error "create dir1 fails"
18785         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18786         [ $stripe_index -eq 1 ] ||
18787                 error "dir1 expect index 1 got $stripe_index"
18788
18789         #check default stripe count/stripe index
18790         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18791         test_300_check_default_striped_dir normal_dir 1 0
18792         test_300_check_default_striped_dir normal_dir 2 1
18793         test_300_check_default_striped_dir normal_dir 2 -1
18794
18795         #delete default stripe information
18796         echo "delete default stripeEA"
18797         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18798                 error "set default stripe on striped dir error"
18799
18800         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18801         for dir in $(find $DIR/$tdir/normal_dir/*); do
18802                 stripe_count=$($LFS getdirstripe -c $dir)
18803                 [ $stripe_count -eq 0 ] ||
18804                         error "expect 1 get $stripe_count for $dir"
18805                 stripe_index=$($LFS getdirstripe -i $dir)
18806                 [ $stripe_index -eq 0 ] ||
18807                         error "expect 0 get $stripe_index for $dir"
18808         done
18809 }
18810 run_test 300g "check default striped directory for normal directory"
18811
18812 test_300h() {
18813         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18814         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18815                 skip "Need MDS version at least 2.7.55"
18816
18817         local dir
18818         local stripe_count
18819
18820         mkdir $DIR/$tdir
18821         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18822                 error "set striped dir error"
18823
18824         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18825         test_300_check_default_striped_dir striped_dir 1 0
18826         test_300_check_default_striped_dir striped_dir 2 1
18827         test_300_check_default_striped_dir striped_dir 2 -1
18828
18829         #delete default stripe information
18830         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18831                 error "set default stripe on striped dir error"
18832
18833         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18834         for dir in $(find $DIR/$tdir/striped_dir/*); do
18835                 stripe_count=$($LFS getdirstripe -c $dir)
18836                 [ $stripe_count -eq 0 ] ||
18837                         error "expect 1 get $stripe_count for $dir"
18838         done
18839 }
18840 run_test 300h "check default striped directory for striped directory"
18841
18842 test_300i() {
18843         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18844         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18845         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18846                 skip "Need MDS version at least 2.7.55"
18847
18848         local stripe_count
18849         local file
18850
18851         mkdir $DIR/$tdir
18852
18853         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18854                 error "set striped dir error"
18855
18856         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18857                 error "create files under striped dir failed"
18858
18859         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18860                 error "set striped hashdir error"
18861
18862         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18863                 error "create dir0 under hash dir failed"
18864         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18865                 error "create dir1 under hash dir failed"
18866
18867         # unfortunately, we need to umount to clear dir layout cache for now
18868         # once we fully implement dir layout, we can drop this
18869         umount_client $MOUNT || error "umount failed"
18870         mount_client $MOUNT || error "mount failed"
18871
18872         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18873         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18874         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18875
18876         #set the stripe to be unknown hash type
18877         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18878         $LCTL set_param fail_loc=0x1901
18879         for ((i = 0; i < 10; i++)); do
18880                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18881                         error "stat f-$i failed"
18882                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18883         done
18884
18885         touch $DIR/$tdir/striped_dir/f0 &&
18886                 error "create under striped dir with unknown hash should fail"
18887
18888         $LCTL set_param fail_loc=0
18889
18890         umount_client $MOUNT || error "umount failed"
18891         mount_client $MOUNT || error "mount failed"
18892
18893         return 0
18894 }
18895 run_test 300i "client handle unknown hash type striped directory"
18896
18897 test_300j() {
18898         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18899         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18900         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18901                 skip "Need MDS version at least 2.7.55"
18902
18903         local stripe_count
18904         local file
18905
18906         mkdir $DIR/$tdir
18907
18908         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18909         $LCTL set_param fail_loc=0x1702
18910         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18911                 error "set striped dir error"
18912
18913         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18914                 error "create files under striped dir failed"
18915
18916         $LCTL set_param fail_loc=0
18917
18918         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18919
18920         return 0
18921 }
18922 run_test 300j "test large update record"
18923
18924 test_300k() {
18925         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18926         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18927         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18928                 skip "Need MDS version at least 2.7.55"
18929
18930         local stripe_count
18931         local file
18932
18933         mkdir $DIR/$tdir
18934
18935         #define OBD_FAIL_LARGE_STRIPE   0x1703
18936         $LCTL set_param fail_loc=0x1703
18937         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18938                 error "set striped dir error"
18939         $LCTL set_param fail_loc=0
18940
18941         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18942                 error "getstripeddir fails"
18943         rm -rf $DIR/$tdir/striped_dir ||
18944                 error "unlink striped dir fails"
18945
18946         return 0
18947 }
18948 run_test 300k "test large striped directory"
18949
18950 test_300l() {
18951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18952         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18953         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18954                 skip "Need MDS version at least 2.7.55"
18955
18956         local stripe_index
18957
18958         test_mkdir -p $DIR/$tdir/striped_dir
18959         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18960                         error "chown $RUNAS_ID failed"
18961         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18962                 error "set default striped dir failed"
18963
18964         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18965         $LCTL set_param fail_loc=0x80000158
18966         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18967
18968         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18969         [ $stripe_index -eq 1 ] ||
18970                 error "expect 1 get $stripe_index for $dir"
18971 }
18972 run_test 300l "non-root user to create dir under striped dir with stale layout"
18973
18974 test_300m() {
18975         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18976         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18977         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18978                 skip "Need MDS version at least 2.7.55"
18979
18980         mkdir -p $DIR/$tdir/striped_dir
18981         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18982                 error "set default stripes dir error"
18983
18984         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18985
18986         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18987         [ $stripe_count -eq 0 ] ||
18988                         error "expect 0 get $stripe_count for a"
18989
18990         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18991                 error "set default stripes dir error"
18992
18993         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18994
18995         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18996         [ $stripe_count -eq 0 ] ||
18997                         error "expect 0 get $stripe_count for b"
18998
18999         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
19000                 error "set default stripes dir error"
19001
19002         mkdir $DIR/$tdir/striped_dir/c &&
19003                 error "default stripe_index is invalid, mkdir c should fails"
19004
19005         rm -rf $DIR/$tdir || error "rmdir fails"
19006 }
19007 run_test 300m "setstriped directory on single MDT FS"
19008
19009 cleanup_300n() {
19010         local list=$(comma_list $(mdts_nodes))
19011
19012         trap 0
19013         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
19014 }
19015
19016 test_300n() {
19017         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19018         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19019         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19020                 skip "Need MDS version at least 2.7.55"
19021         remote_mds_nodsh && skip "remote MDS with nodsh"
19022
19023         local stripe_index
19024         local list=$(comma_list $(mdts_nodes))
19025
19026         trap cleanup_300n RETURN EXIT
19027         mkdir -p $DIR/$tdir
19028         chmod 777 $DIR/$tdir
19029         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
19030                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
19031                 error "create striped dir succeeds with gid=0"
19032
19033         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
19034         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
19035                 error "create striped dir fails with gid=-1"
19036
19037         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
19038         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
19039                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
19040                 error "set default striped dir succeeds with gid=0"
19041
19042
19043         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
19044         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
19045                 error "set default striped dir fails with gid=-1"
19046
19047
19048         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
19049         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
19050                                         error "create test_dir fails"
19051         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
19052                                         error "create test_dir1 fails"
19053         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
19054                                         error "create test_dir2 fails"
19055         cleanup_300n
19056 }
19057 run_test 300n "non-root user to create dir under striped dir with default EA"
19058
19059 test_300o() {
19060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19061         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19062         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
19063                 skip "Need MDS version at least 2.7.55"
19064
19065         local numfree1
19066         local numfree2
19067
19068         mkdir -p $DIR/$tdir
19069
19070         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
19071         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
19072         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
19073                 skip "not enough free inodes $numfree1 $numfree2"
19074         fi
19075
19076         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
19077         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
19078         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
19079                 skip "not enough free space $numfree1 $numfree2"
19080         fi
19081
19082         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
19083                 error "setdirstripe fails"
19084
19085         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
19086                 error "create dirs fails"
19087
19088         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
19089         ls $DIR/$tdir/striped_dir > /dev/null ||
19090                 error "ls striped dir fails"
19091         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
19092                 error "unlink big striped dir fails"
19093 }
19094 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
19095
19096 test_300p() {
19097         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19098         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19099         remote_mds_nodsh && skip "remote MDS with nodsh"
19100
19101         mkdir -p $DIR/$tdir
19102
19103         #define OBD_FAIL_OUT_ENOSPC     0x1704
19104         do_facet mds2 lctl set_param fail_loc=0x80001704
19105         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
19106                  && error "create striped directory should fail"
19107
19108         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
19109
19110         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
19111         true
19112 }
19113 run_test 300p "create striped directory without space"
19114
19115 test_300q() {
19116         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19117         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19118
19119         local fd=$(free_fd)
19120         local cmd="exec $fd<$tdir"
19121         cd $DIR
19122         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
19123         eval $cmd
19124         cmd="exec $fd<&-"
19125         trap "eval $cmd" EXIT
19126         cd $tdir || error "cd $tdir fails"
19127         rmdir  ../$tdir || error "rmdir $tdir fails"
19128         mkdir local_dir && error "create dir succeeds"
19129         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
19130         eval $cmd
19131         return 0
19132 }
19133 run_test 300q "create remote directory under orphan directory"
19134
19135 test_300r() {
19136         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
19137                 skip "Need MDS version at least 2.7.55" && return
19138         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
19139
19140         mkdir $DIR/$tdir
19141
19142         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
19143                 error "set striped dir error"
19144
19145         $LFS getdirstripe $DIR/$tdir/striped_dir ||
19146                 error "getstripeddir fails"
19147
19148         local stripe_count
19149         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
19150                       awk '/lmv_stripe_count:/ { print $2 }')
19151
19152         [ $MDSCOUNT -ne $stripe_count ] &&
19153                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
19154
19155         rm -rf $DIR/$tdir/striped_dir ||
19156                 error "unlink striped dir fails"
19157 }
19158 run_test 300r "test -1 striped directory"
19159
19160 prepare_remote_file() {
19161         mkdir $DIR/$tdir/src_dir ||
19162                 error "create remote source failed"
19163
19164         cp /etc/hosts $DIR/$tdir/src_dir/a ||
19165                  error "cp to remote source failed"
19166         touch $DIR/$tdir/src_dir/a
19167
19168         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
19169                 error "create remote target dir failed"
19170
19171         touch $DIR/$tdir/tgt_dir/b
19172
19173         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
19174                 error "rename dir cross MDT failed!"
19175
19176         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
19177                 error "src_child still exists after rename"
19178
19179         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
19180                 error "missing file(a) after rename"
19181
19182         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
19183                 error "diff after rename"
19184 }
19185
19186 test_310a() {
19187         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
19188         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19189
19190         local remote_file=$DIR/$tdir/tgt_dir/b
19191
19192         mkdir -p $DIR/$tdir
19193
19194         prepare_remote_file || error "prepare remote file failed"
19195
19196         #open-unlink file
19197         $OPENUNLINK $remote_file $remote_file ||
19198                 error "openunlink $remote_file failed"
19199         $CHECKSTAT -a $remote_file || error "$remote_file exists"
19200 }
19201 run_test 310a "open unlink remote file"
19202
19203 test_310b() {
19204         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
19205         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19206
19207         local remote_file=$DIR/$tdir/tgt_dir/b
19208
19209         mkdir -p $DIR/$tdir
19210
19211         prepare_remote_file || error "prepare remote file failed"
19212
19213         ln $remote_file $DIR/$tfile || error "link failed for remote file"
19214         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
19215         $CHECKSTAT -t file $remote_file || error "check file failed"
19216 }
19217 run_test 310b "unlink remote file with multiple links while open"
19218
19219 test_310c() {
19220         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19221         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
19222
19223         local remote_file=$DIR/$tdir/tgt_dir/b
19224
19225         mkdir -p $DIR/$tdir
19226
19227         prepare_remote_file || error "prepare remote file failed"
19228
19229         ln $remote_file $DIR/$tfile || error "link failed for remote file"
19230         multiop_bg_pause $remote_file O_uc ||
19231                         error "mulitop failed for remote file"
19232         MULTIPID=$!
19233         $MULTIOP $DIR/$tfile Ouc
19234         kill -USR1 $MULTIPID
19235         wait $MULTIPID
19236 }
19237 run_test 310c "open-unlink remote file with multiple links"
19238
19239 #LU-4825
19240 test_311() {
19241         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19242         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
19243         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
19244                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
19245         remote_mds_nodsh && skip "remote MDS with nodsh"
19246
19247         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
19248         local mdts=$(comma_list $(mdts_nodes))
19249
19250         mkdir -p $DIR/$tdir
19251         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
19252         createmany -o $DIR/$tdir/$tfile. 1000
19253
19254         # statfs data is not real time, let's just calculate it
19255         old_iused=$((old_iused + 1000))
19256
19257         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
19258                         osp.*OST0000*MDT0000.create_count")
19259         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
19260                                 osp.*OST0000*MDT0000.max_create_count")
19261         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
19262
19263         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
19264         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
19265         [ $index -ne 0 ] || error "$tfile stripe index is 0"
19266
19267         unlinkmany $DIR/$tdir/$tfile. 1000
19268
19269         do_nodes $mdts "$LCTL set_param -n \
19270                         osp.*OST0000*.max_create_count=$max_count"
19271         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
19272                 do_nodes $mdts "$LCTL set_param -n \
19273                                 osp.*OST0000*.create_count=$count"
19274         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
19275                         grep "=0" && error "create_count is zero"
19276
19277         local new_iused
19278         for i in $(seq 120); do
19279                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
19280                 # system may be too busy to destroy all objs in time, use
19281                 # a somewhat small value to not fail autotest
19282                 [ $((old_iused - new_iused)) -gt 400 ] && break
19283                 sleep 1
19284         done
19285
19286         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
19287         [ $((old_iused - new_iused)) -gt 400 ] ||
19288                 error "objs not destroyed after unlink"
19289 }
19290 run_test 311 "disable OSP precreate, and unlink should destroy objs"
19291
19292 zfs_oid_to_objid()
19293 {
19294         local ost=$1
19295         local objid=$2
19296
19297         local vdevdir=$(dirname $(facet_vdevice $ost))
19298         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
19299         local zfs_zapid=$(do_facet $ost $cmd |
19300                           grep -w "/O/0/d$((objid%32))" -C 5 |
19301                           awk '/Object/{getline; print $1}')
19302         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
19303                           awk "/$objid = /"'{printf $3}')
19304
19305         echo $zfs_objid
19306 }
19307
19308 zfs_object_blksz() {
19309         local ost=$1
19310         local objid=$2
19311
19312         local vdevdir=$(dirname $(facet_vdevice $ost))
19313         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
19314         local blksz=$(do_facet $ost $cmd $objid |
19315                       awk '/dblk/{getline; printf $4}')
19316
19317         case "${blksz: -1}" in
19318                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
19319                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
19320                 *) ;;
19321         esac
19322
19323         echo $blksz
19324 }
19325
19326 test_312() { # LU-4856
19327         remote_ost_nodsh && skip "remote OST with nodsh"
19328         [ "$ost1_FSTYPE" = "zfs" ] ||
19329                 skip_env "the test only applies to zfs"
19330
19331         local max_blksz=$(do_facet ost1 \
19332                           $ZFS get -p recordsize $(facet_device ost1) |
19333                           awk '!/VALUE/{print $3}')
19334
19335         # to make life a little bit easier
19336         $LFS mkdir -c 1 -i 0 $DIR/$tdir
19337         $LFS setstripe -c 1 -i 0 $DIR/$tdir
19338
19339         local tf=$DIR/$tdir/$tfile
19340         touch $tf
19341         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
19342
19343         # Get ZFS object id
19344         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
19345         # block size change by sequential overwrite
19346         local bs
19347
19348         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
19349                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
19350
19351                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
19352                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
19353         done
19354         rm -f $tf
19355
19356         # block size change by sequential append write
19357         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
19358         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
19359         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
19360         local count
19361
19362         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
19363                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
19364                         oflag=sync conv=notrunc
19365
19366                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
19367                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
19368                         error "blksz error, actual $blksz, " \
19369                                 "expected: 2 * $count * $PAGE_SIZE"
19370         done
19371         rm -f $tf
19372
19373         # random write
19374         touch $tf
19375         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
19376         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
19377
19378         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
19379         blksz=$(zfs_object_blksz ost1 $zfs_objid)
19380         [ $blksz -eq $PAGE_SIZE ] ||
19381                 error "blksz error: $blksz, expected: $PAGE_SIZE"
19382
19383         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
19384         blksz=$(zfs_object_blksz ost1 $zfs_objid)
19385         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
19386
19387         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
19388         blksz=$(zfs_object_blksz ost1 $zfs_objid)
19389         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
19390 }
19391 run_test 312 "make sure ZFS adjusts its block size by write pattern"
19392
19393 test_313() {
19394         remote_ost_nodsh && skip "remote OST with nodsh"
19395
19396         local file=$DIR/$tfile
19397
19398         rm -f $file
19399         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
19400
19401         # define OBD_FAIL_TGT_RCVD_EIO           0x720
19402         do_facet ost1 "$LCTL set_param fail_loc=0x720"
19403         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
19404                 error "write should failed"
19405         do_facet ost1 "$LCTL set_param fail_loc=0"
19406         rm -f $file
19407 }
19408 run_test 313 "io should fail after last_rcvd update fail"
19409
19410 test_314() {
19411         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
19412
19413         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
19414         do_facet ost1 "$LCTL set_param fail_loc=0x720"
19415         rm -f $DIR/$tfile
19416         wait_delete_completed
19417         do_facet ost1 "$LCTL set_param fail_loc=0"
19418 }
19419 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
19420
19421 test_315() { # LU-618
19422         local file=$DIR/$tfile
19423         rm -f $file
19424
19425         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
19426                 error "multiop file write failed"
19427         $MULTIOP $file oO_RDONLY:r4063232_c &
19428         PID=$!
19429
19430         sleep 2
19431
19432         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
19433         kill -USR1 $PID
19434
19435         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
19436         rm -f $file
19437 }
19438 run_test 315 "read should be accounted"
19439
19440 test_316() {
19441         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19442         large_xattr_enabled || skip_env "ea_inode feature disabled"
19443
19444         rm -rf $DIR/$tdir/d
19445         mkdir -p $DIR/$tdir/d
19446         chown nobody $DIR/$tdir/d
19447         touch $DIR/$tdir/d/file
19448
19449         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
19450 }
19451 run_test 316 "lfs mv"
19452
19453 test_317() {
19454         [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
19455                 skip "Need MDS version at least 2.11.53"
19456         if [ "$ost1_FSTYPE" == "zfs" ]; then
19457                 skip "LU-10370: no implementation for ZFS"
19458         fi
19459
19460         local trunc_sz
19461         local grant_blk_size
19462
19463         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
19464                         awk '/grant_block_size:/ { print $2; exit; }')
19465         #
19466         # Create File of size 5M. Truncate it to below size's and verify
19467         # blocks count.
19468         #
19469         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
19470                 error "Create file $DIR/$tfile failed"
19471         stack_trap "rm -f $DIR/$tfile" EXIT
19472
19473         for trunc_sz in 2097152 4097 4000 509 0; do
19474                 $TRUNCATE $DIR/$tfile $trunc_sz ||
19475                         error "truncate $tfile to $trunc_sz failed"
19476                 local sz=$(stat --format=%s $DIR/$tfile)
19477                 local blk=$(stat --format=%b $DIR/$tfile)
19478                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
19479                                      grant_blk_size) * 8))
19480
19481                 if [[ $blk -ne $trunc_blk ]]; then
19482                         $(which stat) $DIR/$tfile
19483                         error "Expected Block $trunc_blk got $blk for $tfile"
19484                 fi
19485
19486                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
19487                         error "Expected Size $trunc_sz got $sz for $tfile"
19488         done
19489
19490         #
19491         # sparse file test
19492         # Create file with a hole and write actual two blocks. Block count
19493         # must be 16.
19494         #
19495         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
19496                 conv=fsync || error "Create file : $DIR/$tfile"
19497
19498         # Calculate the final truncate size.
19499         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
19500
19501         #
19502         # truncate to size $trunc_sz bytes. Strip the last block
19503         # The block count must drop to 8
19504         #
19505         $TRUNCATE $DIR/$tfile $trunc_sz ||
19506                 error "truncate $tfile to $trunc_sz failed"
19507
19508         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
19509         sz=$(stat --format=%s $DIR/$tfile)
19510         blk=$(stat --format=%b $DIR/$tfile)
19511
19512         if [[ $blk -ne $trunc_bsz ]]; then
19513                 $(which stat) $DIR/$tfile
19514                 error "Expected Block $trunc_bsz got $blk for $tfile"
19515         fi
19516
19517         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
19518                 error "Expected Size $trunc_sz got $sz for $tfile"
19519 }
19520 run_test 317 "Verify blocks get correctly update after truncate"
19521
19522 test_fake_rw() {
19523         local read_write=$1
19524         if [ "$read_write" = "write" ]; then
19525                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
19526         elif [ "$read_write" = "read" ]; then
19527                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
19528         else
19529                 error "argument error"
19530         fi
19531
19532         # turn off debug for performance testing
19533         local saved_debug=$($LCTL get_param -n debug)
19534         $LCTL set_param debug=0
19535
19536         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
19537
19538         # get ost1 size - lustre-OST0000
19539         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
19540         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
19541         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
19542
19543         if [ "$read_write" = "read" ]; then
19544                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
19545         fi
19546
19547         local start_time=$(date +%s.%N)
19548         $dd_cmd bs=1M count=$blocks oflag=sync ||
19549                 error "real dd $read_write error"
19550         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
19551
19552         if [ "$read_write" = "write" ]; then
19553                 rm -f $DIR/$tfile
19554         fi
19555
19556         # define OBD_FAIL_OST_FAKE_RW           0x238
19557         do_facet ost1 $LCTL set_param fail_loc=0x238
19558
19559         local start_time=$(date +%s.%N)
19560         $dd_cmd bs=1M count=$blocks oflag=sync ||
19561                 error "fake dd $read_write error"
19562         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
19563
19564         if [ "$read_write" = "write" ]; then
19565                 # verify file size
19566                 cancel_lru_locks osc
19567                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
19568                         error "$tfile size not $blocks MB"
19569         fi
19570         do_facet ost1 $LCTL set_param fail_loc=0
19571
19572         echo "fake $read_write $duration_fake vs. normal $read_write" \
19573                 "$duration in seconds"
19574         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
19575                 error_not_in_vm "fake write is slower"
19576
19577         $LCTL set_param -n debug="$saved_debug"
19578         rm -f $DIR/$tfile
19579 }
19580 test_399a() { # LU-7655 for OST fake write
19581         remote_ost_nodsh && skip "remote OST with nodsh"
19582
19583         test_fake_rw write
19584 }
19585 run_test 399a "fake write should not be slower than normal write"
19586
19587 test_399b() { # LU-8726 for OST fake read
19588         remote_ost_nodsh && skip "remote OST with nodsh"
19589         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
19590                 skip_env "ldiskfs only test"
19591         fi
19592
19593         test_fake_rw read
19594 }
19595 run_test 399b "fake read should not be slower than normal read"
19596
19597 test_400a() { # LU-1606, was conf-sanity test_74
19598         if ! which $CC > /dev/null 2>&1; then
19599                 skip_env "$CC is not installed"
19600         fi
19601
19602         local extra_flags=''
19603         local out=$TMP/$tfile
19604         local prefix=/usr/include/lustre
19605         local prog
19606
19607         # Oleg removes c files in his test rig so test if any c files exist
19608         [ -z "$(ls -A $LUSTRE_TESTS_API_DIR)" ] && \
19609                 skip_env "Needed c test files are missing"
19610
19611         if ! [[ -d $prefix ]]; then
19612                 # Assume we're running in tree and fixup the include path.
19613                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
19614                 extra_flags+=" -L$LUSTRE/utils/.lib"
19615         fi
19616
19617         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
19618                 $CC -Wall -Werror -std=c99 $extra_flags -o $out $prog -llustreapi ||
19619                         error "client api broken"
19620         done
19621         rm -f $out
19622 }
19623 run_test 400a "Lustre client api program can compile and link"
19624
19625 test_400b() { # LU-1606, LU-5011
19626         local header
19627         local out=$TMP/$tfile
19628         local prefix=/usr/include/linux/lustre
19629
19630         # We use a hard coded prefix so that this test will not fail
19631         # when run in tree. There are headers in lustre/include/lustre/
19632         # that are not packaged (like lustre_idl.h) and have more
19633         # complicated include dependencies (like config.h and lnet/types.h).
19634         # Since this test about correct packaging we just skip them when
19635         # they don't exist (see below) rather than try to fixup cppflags.
19636
19637         if ! which $CC > /dev/null 2>&1; then
19638                 skip_env "$CC is not installed"
19639         fi
19640
19641         for header in $prefix/*.h; do
19642                 if ! [[ -f "$header" ]]; then
19643                         continue
19644                 fi
19645
19646                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
19647                         continue # lustre_ioctl.h is internal header
19648                 fi
19649
19650                 $CC -Wall -Werror -std=c99 -include $header -c -x c /dev/null -o $out ||
19651                         error "cannot compile '$header'"
19652         done
19653         rm -f $out
19654 }
19655 run_test 400b "packaged headers can be compiled"
19656
19657 test_401a() { #LU-7437
19658         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
19659         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
19660
19661         #count the number of parameters by "list_param -R"
19662         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
19663         #count the number of parameters by listing proc files
19664         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
19665         echo "proc_dirs='$proc_dirs'"
19666         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
19667         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
19668                       sort -u | wc -l)
19669
19670         [ $params -eq $procs ] ||
19671                 error "found $params parameters vs. $procs proc files"
19672
19673         # test the list_param -D option only returns directories
19674         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
19675         #count the number of parameters by listing proc directories
19676         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
19677                 sort -u | wc -l)
19678
19679         [ $params -eq $procs ] ||
19680                 error "found $params parameters vs. $procs proc files"
19681 }
19682 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
19683
19684 test_401b() {
19685         local save=$($LCTL get_param -n jobid_var)
19686         local tmp=testing
19687
19688         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
19689                 error "no error returned when setting bad parameters"
19690
19691         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
19692         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
19693
19694         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
19695         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
19696         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
19697 }
19698 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
19699
19700 test_401c() {
19701         local jobid_var_old=$($LCTL get_param -n jobid_var)
19702         local jobid_var_new
19703
19704         $LCTL set_param jobid_var= &&
19705                 error "no error returned for 'set_param a='"
19706
19707         jobid_var_new=$($LCTL get_param -n jobid_var)
19708         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
19709                 error "jobid_var was changed by setting without value"
19710
19711         $LCTL set_param jobid_var &&
19712                 error "no error returned for 'set_param a'"
19713
19714         jobid_var_new=$($LCTL get_param -n jobid_var)
19715         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
19716                 error "jobid_var was changed by setting without value"
19717 }
19718 run_test 401c "Verify 'lctl set_param' without value fails in either format."
19719
19720 test_401d() {
19721         local jobid_var_old=$($LCTL get_param -n jobid_var)
19722         local jobid_var_new
19723         local new_value="foo=bar"
19724
19725         $LCTL set_param jobid_var=$new_value ||
19726                 error "'set_param a=b' did not accept a value containing '='"
19727
19728         jobid_var_new=$($LCTL get_param -n jobid_var)
19729         [[ "$jobid_var_new" == "$new_value" ]] ||
19730                 error "'set_param a=b' failed on a value containing '='"
19731
19732         # Reset the jobid_var to test the other format
19733         $LCTL set_param jobid_var=$jobid_var_old
19734         jobid_var_new=$($LCTL get_param -n jobid_var)
19735         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19736                 error "failed to reset jobid_var"
19737
19738         $LCTL set_param jobid_var $new_value ||
19739                 error "'set_param a b' did not accept a value containing '='"
19740
19741         jobid_var_new=$($LCTL get_param -n jobid_var)
19742         [[ "$jobid_var_new" == "$new_value" ]] ||
19743                 error "'set_param a b' failed on a value containing '='"
19744
19745         $LCTL set_param jobid_var $jobid_var_old
19746         jobid_var_new=$($LCTL get_param -n jobid_var)
19747         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19748                 error "failed to reset jobid_var"
19749 }
19750 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
19751
19752 test_402() {
19753         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
19754         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
19755                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
19756         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
19757                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
19758                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
19759         remote_mds_nodsh && skip "remote MDS with nodsh"
19760
19761         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
19762 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
19763         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
19764         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
19765                 echo "Touch failed - OK"
19766 }
19767 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
19768
19769 test_403() {
19770         local file1=$DIR/$tfile.1
19771         local file2=$DIR/$tfile.2
19772         local tfile=$TMP/$tfile
19773
19774         rm -f $file1 $file2 $tfile
19775
19776         touch $file1
19777         ln $file1 $file2
19778
19779         # 30 sec OBD_TIMEOUT in ll_getattr()
19780         # right before populating st_nlink
19781         $LCTL set_param fail_loc=0x80001409
19782         stat -c %h $file1 > $tfile &
19783
19784         # create an alias, drop all locks and reclaim the dentry
19785         < $file2
19786         cancel_lru_locks mdc
19787         cancel_lru_locks osc
19788         sysctl -w vm.drop_caches=2
19789
19790         wait
19791
19792         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19793
19794         rm -f $tfile $file1 $file2
19795 }
19796 run_test 403 "i_nlink should not drop to zero due to aliasing"
19797
19798 test_404() { # LU-6601
19799         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
19800                 skip "Need server version newer than 2.8.52"
19801         remote_mds_nodsh && skip "remote MDS with nodsh"
19802
19803         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19804                 awk '/osp .*-osc-MDT/ { print $4}')
19805
19806         local osp
19807         for osp in $mosps; do
19808                 echo "Deactivate: " $osp
19809                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19810                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19811                         awk -vp=$osp '$4 == p { print $2 }')
19812                 [ $stat = IN ] || {
19813                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19814                         error "deactivate error"
19815                 }
19816                 echo "Activate: " $osp
19817                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19818                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19819                         awk -vp=$osp '$4 == p { print $2 }')
19820                 [ $stat = UP ] || {
19821                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19822                         error "activate error"
19823                 }
19824         done
19825 }
19826 run_test 404 "validate manual {de}activated works properly for OSPs"
19827
19828 test_405() {
19829         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] ||
19830                 [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
19831                         skip "Layout swap lock is not supported"
19832
19833         check_swap_layouts_support
19834
19835         test_mkdir $DIR/$tdir
19836         swap_lock_test -d $DIR/$tdir ||
19837                 error "One layout swap locked test failed"
19838 }
19839 run_test 405 "Various layout swap lock tests"
19840
19841 test_406() {
19842         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19843         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19844         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19845         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19846         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
19847                 skip "Need MDS version at least 2.8.50"
19848
19849         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19850         local test_pool=$TESTNAME
19851
19852         pool_add $test_pool || error "pool_add failed"
19853         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19854                 error "pool_add_targets failed"
19855
19856         save_layout_restore_at_exit $MOUNT
19857
19858         # parent set default stripe count only, child will stripe from both
19859         # parent and fs default
19860         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19861                 error "setstripe $MOUNT failed"
19862         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19863         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19864         for i in $(seq 10); do
19865                 local f=$DIR/$tdir/$tfile.$i
19866                 touch $f || error "touch failed"
19867                 local count=$($LFS getstripe -c $f)
19868                 [ $count -eq $OSTCOUNT ] ||
19869                         error "$f stripe count $count != $OSTCOUNT"
19870                 local offset=$($LFS getstripe -i $f)
19871                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19872                 local size=$($LFS getstripe -S $f)
19873                 [ $size -eq $((def_stripe_size * 2)) ] ||
19874                         error "$f stripe size $size != $((def_stripe_size * 2))"
19875                 local pool=$($LFS getstripe -p $f)
19876                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19877         done
19878
19879         # change fs default striping, delete parent default striping, now child
19880         # will stripe from new fs default striping only
19881         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19882                 error "change $MOUNT default stripe failed"
19883         $LFS setstripe -c 0 $DIR/$tdir ||
19884                 error "delete $tdir default stripe failed"
19885         for i in $(seq 11 20); do
19886                 local f=$DIR/$tdir/$tfile.$i
19887                 touch $f || error "touch $f failed"
19888                 local count=$($LFS getstripe -c $f)
19889                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19890                 local offset=$($LFS getstripe -i $f)
19891                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19892                 local size=$($LFS getstripe -S $f)
19893                 [ $size -eq $def_stripe_size ] ||
19894                         error "$f stripe size $size != $def_stripe_size"
19895                 local pool=$($LFS getstripe -p $f)
19896                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19897         done
19898
19899         unlinkmany $DIR/$tdir/$tfile. 1 20
19900
19901         local f=$DIR/$tdir/$tfile
19902         pool_remove_all_targets $test_pool $f
19903         pool_remove $test_pool $f
19904 }
19905 run_test 406 "DNE support fs default striping"
19906
19907 test_407() {
19908         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19909         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19910                 skip "Need MDS version at least 2.8.55"
19911         remote_mds_nodsh && skip "remote MDS with nodsh"
19912
19913         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19914                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19915         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19916                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19917         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19918
19919         #define OBD_FAIL_DT_TXN_STOP    0x2019
19920         for idx in $(seq $MDSCOUNT); do
19921                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19922         done
19923         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19924         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19925                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19926         true
19927 }
19928 run_test 407 "transaction fail should cause operation fail"
19929
19930 test_408() {
19931         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19932
19933         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19934         lctl set_param fail_loc=0x8000040a
19935         # let ll_prepare_partial_page() fail
19936         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19937
19938         rm -f $DIR/$tfile
19939
19940         # create at least 100 unused inodes so that
19941         # shrink_icache_memory(0) should not return 0
19942         touch $DIR/$tfile-{0..100}
19943         rm -f $DIR/$tfile-{0..100}
19944         sync
19945
19946         echo 2 > /proc/sys/vm/drop_caches
19947 }
19948 run_test 408 "drop_caches should not hang due to page leaks"
19949
19950 test_409()
19951 {
19952         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19953         check_mount_and_prep
19954
19955         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19956         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19957         touch $DIR/$tdir/guard || error "(2) Fail to create"
19958
19959         local PREFIX=$(str_repeat 'A' 128)
19960         echo "Create 1K hard links start at $(date)"
19961         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19962                 error "(3) Fail to hard link"
19963
19964         echo "Links count should be right although linkEA overflow"
19965         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19966         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19967         [ $linkcount -eq 1001 ] ||
19968                 error "(5) Unexpected hard links count: $linkcount"
19969
19970         echo "List all links start at $(date)"
19971         ls -l $DIR/$tdir/foo > /dev/null ||
19972                 error "(6) Fail to list $DIR/$tdir/foo"
19973
19974         echo "Unlink hard links start at $(date)"
19975         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19976                 error "(7) Fail to unlink"
19977 }
19978 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19979
19980 test_410()
19981 {
19982         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19983                 skip "Need client version at least 2.9.59"
19984
19985         # Create a file, and stat it from the kernel
19986         local testfile=$DIR/$tfile
19987         touch $testfile
19988
19989         local run_id=$RANDOM
19990         local my_ino=$(stat --format "%i" $testfile)
19991
19992         # Try to insert the module. This will always fail as the
19993         # module is designed to not be inserted.
19994         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19995             &> /dev/null
19996
19997         # Anything but success is a test failure
19998         dmesg | grep -q \
19999             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
20000             error "no inode match"
20001 }
20002 run_test 410 "Test inode number returned from kernel thread"
20003
20004 cleanup_test411_cgroup() {
20005         trap 0
20006         rmdir "$1"
20007 }
20008
20009 test_411() {
20010         local cg_basedir=/sys/fs/cgroup/memory
20011         # LU-9966
20012         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
20013                 skip "no setup for cgroup"
20014
20015         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
20016                 error "test file creation failed"
20017         cancel_lru_locks osc
20018
20019         # Create a very small memory cgroup to force a slab allocation error
20020         local cgdir=$cg_basedir/osc_slab_alloc
20021         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
20022         trap "cleanup_test411_cgroup $cgdir" EXIT
20023         echo 2M > $cgdir/memory.kmem.limit_in_bytes
20024         echo 1M > $cgdir/memory.limit_in_bytes
20025
20026         # Should not LBUG, just be killed by oom-killer
20027         # dd will return 0 even allocation failure in some environment.
20028         # So don't check return value
20029         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
20030         cleanup_test411_cgroup $cgdir
20031
20032         return 0
20033 }
20034 run_test 411 "Slab allocation error with cgroup does not LBUG"
20035
20036 test_412() {
20037         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
20038         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
20039                 skip "Need server version at least 2.10.55"
20040         fi
20041
20042         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
20043                 error "mkdir failed"
20044         $LFS getdirstripe $DIR/$tdir
20045         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
20046         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
20047                 error "expect $((MDSCOUT - 1)) get $stripe_index"
20048         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
20049         [ $stripe_count -eq 2 ] ||
20050                 error "expect 2 get $stripe_count"
20051 }
20052 run_test 412 "mkdir on specific MDTs"
20053
20054 test_413() {
20055         [ $MDSCOUNT -lt 2 ] &&
20056                 skip "We need at least 2 MDTs for this test"
20057
20058         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
20059                 skip "Need server version at least 2.10.55"
20060         fi
20061
20062         mkdir $DIR/$tdir || error "mkdir failed"
20063
20064         # find MDT that is the most full
20065         local max=$($LFS df | grep MDT |
20066                 awk 'BEGIN { a=0 }
20067                         { sub("%", "", $5)
20068                           if (0+$5 >= a)
20069                           {
20070                                 a = $5
20071                                 b = $6
20072                           }
20073                         }
20074                      END { split(b, c, ":")
20075                            sub("]", "", c[2])
20076                            print c[2]
20077                          }')
20078
20079         for i in $(seq $((MDSCOUNT - 1))); do
20080                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
20081                         error "mkdir d$i failed"
20082                 $LFS getdirstripe $DIR/$tdir/d$i
20083                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
20084                 [ $stripe_index -ne $max ] ||
20085                         error "don't expect $max"
20086         done
20087 }
20088 run_test 413 "mkdir on less full MDTs"
20089
20090 test_414() {
20091 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
20092         $LCTL set_param fail_loc=0x80000521
20093         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
20094         rm -f $DIR/$tfile
20095 }
20096 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
20097
20098 test_415() {
20099         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20100         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
20101                 skip "Need server version at least 2.11.52"
20102
20103         # LU-11102
20104         local total
20105         local setattr_pid
20106         local start_time
20107         local end_time
20108         local duration
20109
20110         total=500
20111         # this test may be slow on ZFS
20112         [ "$mds1_FSTYPE" == "zfs" ] && total=100
20113
20114         # though this test is designed for striped directory, let's test normal
20115         # directory too since lock is always saved as CoS lock.
20116         test_mkdir $DIR/$tdir || error "mkdir $tdir"
20117         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
20118
20119         (
20120                 while true; do
20121                         touch $DIR/$tdir
20122                 done
20123         ) &
20124         setattr_pid=$!
20125
20126         start_time=$(date +%s)
20127         for i in $(seq $total); do
20128                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
20129                         > /dev/null
20130         done
20131         end_time=$(date +%s)
20132         duration=$((end_time - start_time))
20133
20134         kill -9 $setattr_pid
20135
20136         echo "rename $total files took $duration sec"
20137         [ $duration -lt 100 ] || error "rename took $duration sec"
20138 }
20139 run_test 415 "lock revoke is not missing"
20140
20141 test_416() {
20142         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
20143                 skip "Need server version at least 2.11.55"
20144
20145         # define OBD_FAIL_OSD_TXN_START    0x19a
20146         do_facet mds1 lctl set_param fail_loc=0x19a
20147
20148         lfs mkdir -c $MDSCOUNT $DIR/$tdir
20149
20150         true
20151 }
20152 run_test 416 "transaction start failure won't cause system hung"
20153
20154 cleanup_417() {
20155         trap 0
20156         do_nodes $(comma_list $(mdts_nodes)) \
20157                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
20158         do_nodes $(comma_list $(mdts_nodes)) \
20159                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
20160         do_nodes $(comma_list $(mdts_nodes)) \
20161                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
20162 }
20163
20164 test_417() {
20165         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20166         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
20167                 skip "Need MDS version at least 2.11.56"
20168
20169         trap cleanup_417 RETURN EXIT
20170
20171         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
20172         do_nodes $(comma_list $(mdts_nodes)) \
20173                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
20174         $LFS migrate -m 0 $DIR/$tdir.1 &&
20175                 error "migrate dir $tdir.1 should fail"
20176
20177         do_nodes $(comma_list $(mdts_nodes)) \
20178                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
20179         $LFS mkdir -i 1 $DIR/$tdir.2 &&
20180                 error "create remote dir $tdir.2 should fail"
20181
20182         do_nodes $(comma_list $(mdts_nodes)) \
20183                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
20184         $LFS mkdir -c 2 $DIR/$tdir.3 &&
20185                 error "create striped dir $tdir.3 should fail"
20186         true
20187 }
20188 run_test 417 "disable remote dir, striped dir and dir migration"
20189
20190 # Checks that the outputs of df [-i] and lfs df [-i] match
20191 #
20192 # usage: check_lfs_df <blocks | inodes> <mountpoint>
20193 check_lfs_df() {
20194         local dir=$2
20195         local inodes
20196         local df_out
20197         local lfs_df_out
20198         local count
20199         local passed=false
20200
20201         # blocks or inodes
20202         [ "$1" == "blocks" ] && inodes= || inodes="-i"
20203
20204         for count in {1..100}; do
20205                 cancel_lru_locks
20206                 sync; sleep 2
20207
20208                 # read the lines of interest
20209                 df_out=($(df -P $inodes $dir | tail -n +2)) ||
20210                         error "df $inodes $dir | tail -n +2 failed"
20211                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
20212                         error "lfs df $inodes $dir | grep summary: failed"
20213
20214                 # skip first substrings of each output as they are different
20215                 # "<NID>:/<fsname>" for df, "filesystem_summary:" for lfs df
20216                 # compare the remaining fields of the two outputs
20217                 passed=true
20218                 for i in {1..5}; do
20219                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
20220                 done
20221                 $passed && break
20222         done
20223
20224         if ! $passed; then
20225                 df -P $inodes $dir
20226                 echo
20227                 lfs df $inodes $dir
20228                 error "df and lfs df $1 output mismatch: "      \
20229                       "df ${inodes}: ${df_out[*]}, "            \
20230                       "lfs df ${inodes}: ${lfs_df_out[*]}"
20231         fi
20232 }
20233
20234 test_418() {
20235         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20236
20237         local dir=$DIR/$tdir
20238         local numfiles=$((RANDOM % 4096 + 2))
20239         local numblocks=$((RANDOM % 256 + 1))
20240
20241         wait_delete_completed
20242         test_mkdir $dir
20243
20244         # check block output
20245         check_lfs_df blocks $dir
20246         # check inode output
20247         check_lfs_df inodes $dir
20248
20249         # create a single file and retest
20250         echo "Creating a single file and testing"
20251         createmany -o $dir/$tfile- 1 &>/dev/null ||
20252                 error "creating 1 file in $dir failed"
20253         check_lfs_df blocks $dir
20254         check_lfs_df inodes $dir
20255
20256         # create a random number of files
20257         echo "Creating $((numfiles - 1)) files and testing"
20258         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
20259                 error "creating $((numfiles - 1)) files in $dir failed"
20260
20261         # write a random number of blocks to the first test file
20262         echo "Writing $numblocks 4K blocks and testing"
20263         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
20264                 count=$numblocks &>/dev/null ||
20265                 error "dd to $dir/${tfile}-0 failed"
20266
20267         # retest
20268         check_lfs_df blocks $dir
20269         check_lfs_df inodes $dir
20270
20271         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
20272                 error "unlinking $numfiles files in $dir failed"
20273 }
20274 run_test 418 "df and lfs df outputs match"
20275
20276 test_419()
20277 {
20278         local dir=$DIR/$tdir
20279
20280         mkdir -p $dir
20281         touch $dir/file
20282
20283         cancel_lru_locks mdc
20284
20285         #OBD_FAIL_LLITE_OPEN_BY_NAME    0x1410
20286         $LCTL set_param fail_loc=0x1410
20287         cat $dir/file
20288         $LCTL set_param fail_loc=0
20289         rm -rf $dir
20290 }
20291 run_test 419 "Verify open file by name doesn't crash kernel"
20292
20293 test_420()
20294 {
20295         [[ $MDS1_VERSION -ge $(version_code 2.12.1) ]] ||
20296                 skip "Need MDS version at least 2.12.1"
20297
20298         local SAVE_UMASK=$(umask)
20299         local dir=$DIR/$tdir
20300         local uname=$(getent passwd $RUNAS_ID | cut -d: -f1)
20301
20302         mkdir -p $dir
20303         umask 0000
20304         mkdir -m03777 $dir/testdir
20305         ls -dn $dir/testdir
20306         # Need to remove trailing '.' when SELinux is enabled
20307         local dirperms=$(ls -dn $dir/testdir |
20308                          awk '{ sub(/\.$/, "", $1); print $1}')
20309         [ $dirperms == "drwxrwsrwt" ] ||
20310                 error "incorrect perms on $dir/testdir"
20311
20312         su - $uname -c "PATH=$LUSTRE/tests:\$PATH; \
20313                 openfile -f O_RDONLY:O_CREAT -m 02755 $dir/testdir/testfile"
20314         ls -n $dir/testdir/testfile
20315         local fileperms=$(ls -n $dir/testdir/testfile |
20316                           awk '{ sub(/\.$/, "", $1); print $1}')
20317         [ $fileperms == "-rwxr-xr-x" ] ||
20318                 error "incorrect perms on $dir/testdir/testfile"
20319
20320         umask $SAVE_UMASK
20321 }
20322 run_test 420 "clear SGID bit on non-directories for non-members"
20323
20324 test_421a() {
20325         local cnt
20326         local fid1
20327         local fid2
20328
20329         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20330                 skip "Need MDS version at least 2.12.2"
20331
20332         test_mkdir $DIR/$tdir
20333         createmany -o $DIR/$tdir/f 3
20334         cnt=$(ls -1 $DIR/$tdir | wc -l)
20335         [ $cnt != 3 ] && error "unexpected #files: $cnt"
20336
20337         fid1=$(lfs path2fid $DIR/$tdir/f1)
20338         fid2=$(lfs path2fid $DIR/$tdir/f2)
20339         $LFS rmfid $DIR $fid1 $fid2 || error "rmfid failed"
20340
20341         stat $DIR/$tdir/f1 && error "f1 still visible on the client"
20342         stat $DIR/$tdir/f2 && error "f2 still visible on the client"
20343
20344         cnt=$(ls -1 $DIR/$tdir | wc -l)
20345         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
20346
20347         rm -f $DIR/$tdir/f3 || error "can't remove f3"
20348         createmany -o $DIR/$tdir/f 3
20349         cnt=$(ls -1 $DIR/$tdir | wc -l)
20350         [ $cnt != 3 ] && error "unexpected #files: $cnt"
20351
20352         fid1=$(lfs path2fid $DIR/$tdir/f1)
20353         fid2=$(lfs path2fid $DIR/$tdir/f2)
20354         echo "remove using fsname $FSNAME"
20355         $LFS rmfid $FSNAME $fid1 $fid2 || error "rmfid with fsname failed"
20356
20357         cnt=$(ls -1 $DIR/$tdir | wc -l)
20358         [ $cnt == 1 ] || error "unexpected #files after: $cnt"
20359 }
20360 run_test 421a "simple rm by fid"
20361
20362 test_421b() {
20363         local cnt
20364         local FID1
20365         local FID2
20366
20367         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20368                 skip "Need MDS version at least 2.12.2"
20369
20370         test_mkdir $DIR/$tdir
20371         createmany -o $DIR/$tdir/f 3
20372         multiop_bg_pause $DIR/$tdir/f1 o_c || error "multiop failed to start"
20373         MULTIPID=$!
20374
20375         FID1=$(lfs path2fid $DIR/$tdir/f1)
20376         FID2=$(lfs path2fid $DIR/$tdir/f2)
20377         $LFS rmfid $DIR $FID1 $FID2 && error "rmfid didn't fail"
20378
20379         kill -USR1 $MULTIPID
20380         wait
20381
20382         cnt=$(ls $DIR/$tdir | wc -l)
20383         [ $cnt == 2 ] || error "unexpected #files after: $cnt"
20384 }
20385 run_test 421b "rm by fid on open file"
20386
20387 test_421c() {
20388         local cnt
20389         local FIDS
20390
20391         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20392                 skip "Need MDS version at least 2.12.2"
20393
20394         test_mkdir $DIR/$tdir
20395         createmany -o $DIR/$tdir/f 3
20396         touch $DIR/$tdir/$tfile
20397         createmany -l$DIR/$tdir/$tfile $DIR/$tdir/h 180
20398         cnt=$(ls -1 $DIR/$tdir | wc -l)
20399         [ $cnt != 184 ] && error "unexpected #files: $cnt"
20400
20401         FID1=$(lfs path2fid $DIR/$tdir/$tfile)
20402         $LFS rmfid $DIR $FID1 || error "rmfid failed"
20403
20404         cnt=$(ls $DIR/$tdir | wc -l)
20405         [ $cnt == 3 ] || error "unexpected #files after: $cnt"
20406 }
20407 run_test 421c "rm by fid against hardlinked files"
20408
20409 test_421d() {
20410         local cnt
20411         local FIDS
20412
20413         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20414                 skip "Need MDS version at least 2.12.2"
20415
20416         test_mkdir $DIR/$tdir
20417         createmany -o $DIR/$tdir/f 4097
20418         cnt=$(ls -1 $DIR/$tdir | wc -l)
20419         [ $cnt != 4097 ] && error "unexpected #files: $cnt"
20420
20421         FIDS=$(lfs path2fid $DIR/$tdir/f* | sed "s/[/][^:]*://g")
20422         $LFS rmfid $DIR $FIDS || error "rmfid failed"
20423
20424         cnt=$(ls $DIR/$tdir | wc -l)
20425         rm -rf $DIR/$tdir
20426         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
20427 }
20428 run_test 421d "rmfid en masse"
20429
20430 test_421e() {
20431         local cnt
20432         local FID
20433
20434         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20435         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20436                 skip "Need MDS version at least 2.12.2"
20437
20438         mkdir -p $DIR/$tdir
20439         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
20440         createmany -o $DIR/$tdir/striped_dir/f 512
20441         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
20442         [ $cnt != 512 ] && error "unexpected #files: $cnt"
20443
20444         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
20445                 sed "s/[/][^:]*://g")
20446         $LFS rmfid $DIR $FIDS || error "rmfid failed"
20447
20448         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
20449         rm -rf $DIR/$tdir
20450         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
20451 }
20452 run_test 421e "rmfid in DNE"
20453
20454 test_421f() {
20455         local cnt
20456         local FID
20457
20458         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20459                 skip "Need MDS version at least 2.12.2"
20460
20461         test_mkdir $DIR/$tdir
20462         touch $DIR/$tdir/f
20463         cnt=$(ls -1 $DIR/$tdir | wc -l)
20464         [ $cnt != 1 ] && error "unexpected #files: $cnt"
20465
20466         FID=$(lfs path2fid $DIR/$tdir/f)
20467         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (1)"
20468         # rmfid should fail
20469         cnt=$(ls -1 $DIR/$tdir | wc -l)
20470         [ $cnt != 1 ] && error "unexpected #files after (2): $cnt"
20471
20472         chmod a+rw $DIR/$tdir
20473         ls -la $DIR/$tdir
20474         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (2)"
20475         # rmfid should fail
20476         cnt=$(ls -1 $DIR/$tdir | wc -l)
20477         [ $cnt != 1 ] && error "unexpected #files after (3): $cnt"
20478
20479         rm -f $DIR/$tdir/f
20480         $RUNAS touch $DIR/$tdir/f
20481         FID=$(lfs path2fid $DIR/$tdir/f)
20482         echo "rmfid as root"
20483         $LFS rmfid $DIR $FID || error "rmfid as root failed"
20484         cnt=$(ls -1 $DIR/$tdir | wc -l)
20485         [ $cnt == 0 ] || error "unexpected #files after (4): $cnt"
20486
20487         rm -f $DIR/$tdir/f
20488         $RUNAS touch $DIR/$tdir/f
20489         cnt=$(ls -1 $DIR/$tdir | wc -l)
20490         [ $cnt != 1 ] && error "unexpected #files (4): $cnt"
20491         FID=$(lfs path2fid $DIR/$tdir/f)
20492         # rmfid w/o user_fid2path mount option should fail
20493         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail(3)"
20494         cnt=$(ls -1 $DIR/$tdir | wc -l)
20495         [ $cnt == 1 ] || error "unexpected #files after (5): $cnt"
20496
20497         umount_client $MOUNT || "failed to umount client"
20498         mount_client $MOUNT "$MOUNT_OPTS,user_fid2path" ||
20499                 "failed to mount client'"
20500
20501         $RUNAS $LFS rmfid $DIR $FID || error "rmfid failed"
20502         # rmfid should succeed
20503         cnt=$(ls -1 $DIR/$tdir | wc -l)
20504         [ $cnt == 0 ] || error "unexpected #files after (6): $cnt"
20505
20506         # rmfid shouldn't allow to remove files due to dir's permission
20507         chmod a+rwx $DIR/$tdir
20508         touch $DIR/$tdir/f
20509         ls -la $DIR/$tdir
20510         FID=$(lfs path2fid $DIR/$tdir/f)
20511         $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail"
20512
20513         umount_client $MOUNT || "failed to umount client"
20514         mount_client $MOUNT "$MOUNT_OPTS" ||
20515                 "failed to mount client'"
20516
20517 }
20518 run_test 421f "rmfid checks permissions"
20519
20520 test_421g() {
20521         local cnt
20522         local FIDS
20523
20524         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
20525         [ $MDS1_VERSION -lt $(version_code 2.12.2) ] &&
20526                 skip "Need MDS version at least 2.12.2"
20527
20528         mkdir -p $DIR/$tdir
20529         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
20530         createmany -o $DIR/$tdir/striped_dir/f 512
20531         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
20532         [ $cnt != 512 ] && error "unexpected #files: $cnt"
20533
20534         FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
20535                 sed "s/[/][^:]*://g")
20536
20537         rm -f $DIR/$tdir/striped_dir/f1*
20538         cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
20539         removed=$((512 - cnt))
20540
20541         # few files have been just removed, so we expect
20542         # rmfid to fail on their fids
20543         errors=$($LFS rmfid $DIR $FIDS 2>&1 | wc -l)
20544         [ $removed != $errors ] && error "$errors != $removed"
20545
20546         cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
20547         rm -rf $DIR/$tdir
20548         [ $cnt == 0 ] || error "unexpected #files after: $cnt"
20549 }
20550 run_test 421g "rmfid to return errors properly"
20551
20552 stat_test() {
20553     df -h $MOUNT &
20554     df -h $MOUNT &
20555     df -h $MOUNT &
20556     df -h $MOUNT &
20557     df -h $MOUNT &
20558     df -h $MOUNT &
20559 }
20560
20561 test_423() {
20562     local _stats
20563     # ensure statfs cache is expired
20564     sleep 2;
20565
20566     _stats=$(stat_test | grep $MOUNT | sort -u | wc -l)
20567     [[ ${_stats} -ne 1 ]] && error "statfs wrong"
20568
20569     return 0
20570 }
20571 run_test 423 "statfs should return a right data"
20572
20573 prep_801() {
20574         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
20575         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
20576                 skip "Need server version at least 2.9.55"
20577
20578         start_full_debug_logging
20579 }
20580
20581 post_801() {
20582         stop_full_debug_logging
20583 }
20584
20585 barrier_stat() {
20586         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
20587                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
20588                            awk '/The barrier for/ { print $7 }')
20589                 echo $st
20590         else
20591                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
20592                 echo \'$st\'
20593         fi
20594 }
20595
20596 barrier_expired() {
20597         local expired
20598
20599         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
20600                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
20601                           awk '/will be expired/ { print $7 }')
20602         else
20603                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
20604         fi
20605
20606         echo $expired
20607 }
20608
20609 test_801a() {
20610         prep_801
20611
20612         echo "Start barrier_freeze at: $(date)"
20613         #define OBD_FAIL_BARRIER_DELAY          0x2202
20614         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
20615         # Do not reduce barrier time - See LU-11873
20616         do_facet mgs $LCTL barrier_freeze $FSNAME 20 &
20617
20618         sleep 2
20619         local b_status=$(barrier_stat)
20620         echo "Got barrier status at: $(date)"
20621         [ "$b_status" = "'freezing_p1'" ] ||
20622                 error "(1) unexpected barrier status $b_status"
20623
20624         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
20625         wait
20626         b_status=$(barrier_stat)
20627         [ "$b_status" = "'frozen'" ] ||
20628                 error "(2) unexpected barrier status $b_status"
20629
20630         local expired=$(barrier_expired)
20631         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
20632         sleep $((expired + 3))
20633
20634         b_status=$(barrier_stat)
20635         [ "$b_status" = "'expired'" ] ||
20636                 error "(3) unexpected barrier status $b_status"
20637
20638         # Do not reduce barrier time - See LU-11873
20639         do_facet mgs $LCTL barrier_freeze $FSNAME 20 ||
20640                 error "(4) fail to freeze barrier"
20641
20642         b_status=$(barrier_stat)
20643         [ "$b_status" = "'frozen'" ] ||
20644                 error "(5) unexpected barrier status $b_status"
20645
20646         echo "Start barrier_thaw at: $(date)"
20647         #define OBD_FAIL_BARRIER_DELAY          0x2202
20648         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
20649         do_facet mgs $LCTL barrier_thaw $FSNAME &
20650
20651         sleep 2
20652         b_status=$(barrier_stat)
20653         echo "Got barrier status at: $(date)"
20654         [ "$b_status" = "'thawing'" ] ||
20655                 error "(6) unexpected barrier status $b_status"
20656
20657         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
20658         wait
20659         b_status=$(barrier_stat)
20660         [ "$b_status" = "'thawed'" ] ||
20661                 error "(7) unexpected barrier status $b_status"
20662
20663         #define OBD_FAIL_BARRIER_FAILURE        0x2203
20664         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
20665         do_facet mgs $LCTL barrier_freeze $FSNAME
20666
20667         b_status=$(barrier_stat)
20668         [ "$b_status" = "'failed'" ] ||
20669                 error "(8) unexpected barrier status $b_status"
20670
20671         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
20672         do_facet mgs $LCTL barrier_thaw $FSNAME
20673
20674         post_801
20675 }
20676 run_test 801a "write barrier user interfaces and stat machine"
20677
20678 test_801b() {
20679         prep_801
20680
20681         mkdir $DIR/$tdir || error "(1) fail to mkdir"
20682         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
20683         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
20684         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
20685         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
20686
20687         cancel_lru_locks mdc
20688
20689         # 180 seconds should be long enough
20690         do_facet mgs $LCTL barrier_freeze $FSNAME 180
20691
20692         local b_status=$(barrier_stat)
20693         [ "$b_status" = "'frozen'" ] ||
20694                 error "(6) unexpected barrier status $b_status"
20695
20696         mkdir $DIR/$tdir/d0/d10 &
20697         mkdir_pid=$!
20698
20699         touch $DIR/$tdir/d1/f13 &
20700         touch_pid=$!
20701
20702         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
20703         ln_pid=$!
20704
20705         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
20706         mv_pid=$!
20707
20708         rm -f $DIR/$tdir/d4/f12 &
20709         rm_pid=$!
20710
20711         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
20712
20713         # To guarantee taht the 'stat' is not blocked
20714         b_status=$(barrier_stat)
20715         [ "$b_status" = "'frozen'" ] ||
20716                 error "(8) unexpected barrier status $b_status"
20717
20718         # let above commands to run at background
20719         sleep 5
20720
20721         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
20722         ps -p $touch_pid || error "(10) touch should be blocked"
20723         ps -p $ln_pid || error "(11) link should be blocked"
20724         ps -p $mv_pid || error "(12) rename should be blocked"
20725         ps -p $rm_pid || error "(13) unlink should be blocked"
20726
20727         b_status=$(barrier_stat)
20728         [ "$b_status" = "'frozen'" ] ||
20729                 error "(14) unexpected barrier status $b_status"
20730
20731         do_facet mgs $LCTL barrier_thaw $FSNAME
20732         b_status=$(barrier_stat)
20733         [ "$b_status" = "'thawed'" ] ||
20734                 error "(15) unexpected barrier status $b_status"
20735
20736         wait $mkdir_pid || error "(16) mkdir should succeed"
20737         wait $touch_pid || error "(17) touch should succeed"
20738         wait $ln_pid || error "(18) link should succeed"
20739         wait $mv_pid || error "(19) rename should succeed"
20740         wait $rm_pid || error "(20) unlink should succeed"
20741
20742         post_801
20743 }
20744 run_test 801b "modification will be blocked by write barrier"
20745
20746 test_801c() {
20747         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
20748
20749         prep_801
20750
20751         stop mds2 || error "(1) Fail to stop mds2"
20752
20753         do_facet mgs $LCTL barrier_freeze $FSNAME 30
20754
20755         local b_status=$(barrier_stat)
20756         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
20757                 do_facet mgs $LCTL barrier_thaw $FSNAME
20758                 error "(2) unexpected barrier status $b_status"
20759         }
20760
20761         do_facet mgs $LCTL barrier_rescan $FSNAME ||
20762                 error "(3) Fail to rescan barrier bitmap"
20763
20764         # Do not reduce barrier time - See LU-11873
20765         do_facet mgs $LCTL barrier_freeze $FSNAME 20
20766
20767         b_status=$(barrier_stat)
20768         [ "$b_status" = "'frozen'" ] ||
20769                 error "(4) unexpected barrier status $b_status"
20770
20771         do_facet mgs $LCTL barrier_thaw $FSNAME
20772         b_status=$(barrier_stat)
20773         [ "$b_status" = "'thawed'" ] ||
20774                 error "(5) unexpected barrier status $b_status"
20775
20776         local devname=$(mdsdevname 2)
20777
20778         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
20779
20780         do_facet mgs $LCTL barrier_rescan $FSNAME ||
20781                 error "(7) Fail to rescan barrier bitmap"
20782
20783         post_801
20784 }
20785 run_test 801c "rescan barrier bitmap"
20786
20787 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
20788 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
20789 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
20790 saved_MOUNT_OPTS=$MOUNT_OPTS
20791
20792 cleanup_802() {
20793         trap 0
20794
20795         stopall
20796         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
20797         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
20798         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
20799         MOUNT_OPTS=$saved_MOUNT_OPTS
20800         setupall
20801 }
20802
20803 test_802() {
20804
20805         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
20806         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
20807                 skip "Need server version at least 2.9.55"
20808
20809         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
20810
20811         mkdir $DIR/$tdir || error "(1) fail to mkdir"
20812
20813         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
20814                 error "(2) Fail to copy"
20815
20816         trap cleanup_802 EXIT
20817
20818         # sync by force before remount as readonly
20819         sync; sync_all_data; sleep 3; sync_all_data
20820
20821         stopall
20822
20823         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
20824         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
20825         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
20826
20827         echo "Mount the server as read only"
20828         setupall server_only || error "(3) Fail to start servers"
20829
20830         echo "Mount client without ro should fail"
20831         mount_client $MOUNT &&
20832                 error "(4) Mount client without 'ro' should fail"
20833
20834         echo "Mount client with ro should succeed"
20835         MOUNT_OPTS=$(csa_add "$MOUNT_OPTS" -o ro)
20836         mount_client $MOUNT ||
20837                 error "(5) Mount client with 'ro' should succeed"
20838
20839         echo "Modify should be refused"
20840         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
20841
20842         echo "Read should be allowed"
20843         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
20844                 error "(7) Read should succeed under ro mode"
20845
20846         cleanup_802
20847 }
20848 run_test 802 "simulate readonly device"
20849
20850 test_803() {
20851         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
20852         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
20853                 skip "MDS needs to be newer than 2.10.54"
20854
20855         mkdir -p $DIR/$tdir
20856         # Create some objects on all MDTs to trigger related logs objects
20857         for idx in $(seq $MDSCOUNT); do
20858                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
20859                         $DIR/$tdir/dir${idx} ||
20860                         error "Fail to create $DIR/$tdir/dir${idx}"
20861         done
20862
20863         sync; sleep 3
20864         wait_delete_completed # ensure old test cleanups are finished
20865         echo "before create:"
20866         $LFS df -i $MOUNT
20867         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
20868
20869         for i in {1..10}; do
20870                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
20871                         error "Fail to create $DIR/$tdir/foo$i"
20872         done
20873
20874         sync; sleep 3
20875         echo "after create:"
20876         $LFS df -i $MOUNT
20877         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
20878
20879         # allow for an llog to be cleaned up during the test
20880         [ $after_used -ge $((before_used + 10 - 1)) ] ||
20881                 error "before ($before_used) + 10 > after ($after_used)"
20882
20883         for i in {1..10}; do
20884                 rm -rf $DIR/$tdir/foo$i ||
20885                         error "Fail to remove $DIR/$tdir/foo$i"
20886         done
20887
20888         sleep 3 # avoid MDT return cached statfs
20889         wait_delete_completed
20890         echo "after unlink:"
20891         $LFS df -i $MOUNT
20892         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
20893
20894         # allow for an llog to be created during the test
20895         [ $after_used -le $((before_used + 1)) ] ||
20896                 error "after ($after_used) > before ($before_used) + 1"
20897 }
20898 run_test 803 "verify agent object for remote object"
20899
20900 test_804() {
20901         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
20902         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
20903                 skip "MDS needs to be newer than 2.10.54"
20904         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
20905
20906         mkdir -p $DIR/$tdir
20907         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
20908                 error "Fail to create $DIR/$tdir/dir0"
20909
20910         local fid=$($LFS path2fid $DIR/$tdir/dir0)
20911         local dev=$(mdsdevname 2)
20912
20913         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20914                 grep ${fid} || error "NOT found agent entry for dir0"
20915
20916         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
20917                 error "Fail to create $DIR/$tdir/dir1"
20918
20919         touch $DIR/$tdir/dir1/foo0 ||
20920                 error "Fail to create $DIR/$tdir/dir1/foo0"
20921         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
20922         local rc=0
20923
20924         for idx in $(seq $MDSCOUNT); do
20925                 dev=$(mdsdevname $idx)
20926                 do_facet mds${idx} \
20927                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20928                         grep ${fid} && rc=$idx
20929         done
20930
20931         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
20932                 error "Fail to rename foo0 to foo1"
20933         if [ $rc -eq 0 ]; then
20934                 for idx in $(seq $MDSCOUNT); do
20935                         dev=$(mdsdevname $idx)
20936                         do_facet mds${idx} \
20937                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20938                         grep ${fid} && rc=$idx
20939                 done
20940         fi
20941
20942         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
20943                 error "Fail to rename foo1 to foo2"
20944         if [ $rc -eq 0 ]; then
20945                 for idx in $(seq $MDSCOUNT); do
20946                         dev=$(mdsdevname $idx)
20947                         do_facet mds${idx} \
20948                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20949                         grep ${fid} && rc=$idx
20950                 done
20951         fi
20952
20953         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
20954
20955         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
20956                 error "Fail to link to $DIR/$tdir/dir1/foo2"
20957         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
20958                 error "Fail to rename foo2 to foo0"
20959         unlink $DIR/$tdir/dir1/foo0 ||
20960                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
20961         rm -rf $DIR/$tdir/dir0 ||
20962                 error "Fail to rm $DIR/$tdir/dir0"
20963
20964         for idx in $(seq $MDSCOUNT); do
20965                 dev=$(mdsdevname $idx)
20966                 rc=0
20967
20968                 stop mds${idx}
20969                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
20970                         rc=$?
20971                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
20972                         error "mount mds$idx failed"
20973                 df $MOUNT > /dev/null 2>&1
20974
20975                 # e2fsck should not return error
20976                 [ $rc -eq 0 ] ||
20977                         error "e2fsck detected error on MDT${idx}: rc=$rc"
20978         done
20979 }
20980 run_test 804 "verify agent entry for remote entry"
20981
20982 cleanup_805() {
20983         do_facet $SINGLEMDS zfs set quota=$old $fsset
20984         unlinkmany $DIR/$tdir/f- 1000000
20985         trap 0
20986 }
20987
20988 test_805() {
20989         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
20990         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
20991         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
20992                 skip "netfree not implemented before 0.7"
20993         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
20994                 skip "Need MDS version at least 2.10.57"
20995
20996         local fsset
20997         local freekb
20998         local usedkb
20999         local old
21000         local quota
21001         local pref="osd-zfs.lustre-MDT0000."
21002
21003         # limit available space on MDS dataset to meet nospace issue
21004         # quickly. then ZFS 0.7.2 can use reserved space if asked
21005         # properly (using netfree flag in osd_declare_destroy()
21006         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
21007         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
21008                 gawk '{print $3}')
21009         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
21010         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
21011         let "usedkb=usedkb-freekb"
21012         let "freekb=freekb/2"
21013         if let "freekb > 5000"; then
21014                 let "freekb=5000"
21015         fi
21016         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
21017         trap cleanup_805 EXIT
21018         mkdir $DIR/$tdir
21019         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
21020         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
21021         rm -rf $DIR/$tdir || error "not able to remove"
21022         do_facet $SINGLEMDS zfs set quota=$old $fsset
21023         trap 0
21024 }
21025 run_test 805 "ZFS can remove from full fs"
21026
21027 # Size-on-MDS test
21028 check_lsom_data()
21029 {
21030         local file=$1
21031         local size=$($LFS getsom -s $file)
21032         local expect=$(stat -c %s $file)
21033
21034         [[ $size == $expect ]] ||
21035                 error "$file expected size: $expect, got: $size"
21036
21037         local blocks=$($LFS getsom -b $file)
21038         expect=$(stat -c %b $file)
21039         [[ $blocks == $expect ]] ||
21040                 error "$file expected blocks: $expect, got: $blocks"
21041 }
21042
21043 check_lsom_size()
21044 {
21045         local size=$($LFS getsom -s $1)
21046         local expect=$2
21047
21048         [[ $size == $expect ]] ||
21049                 error "$file expected size: $expect, got: $size"
21050 }
21051
21052 test_806() {
21053         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
21054                 skip "Need MDS version at least 2.11.52"
21055
21056         local bs=1048576
21057
21058         touch $DIR/$tfile || error "touch $tfile failed"
21059
21060         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
21061         save_lustre_params client "llite.*.xattr_cache" > $save
21062         lctl set_param llite.*.xattr_cache=0
21063         stack_trap "restore_lustre_params < $save" EXIT
21064
21065         # single-threaded write
21066         echo "Test SOM for single-threaded write"
21067         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
21068                 error "write $tfile failed"
21069         check_lsom_size $DIR/$tfile $bs
21070
21071         local num=32
21072         local size=$(($num * $bs))
21073         local offset=0
21074         local i
21075
21076         echo "Test SOM for single client multi-threaded($num) write"
21077         $TRUNCATE $DIR/$tfile 0
21078         for ((i = 0; i < $num; i++)); do
21079                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
21080                 local pids[$i]=$!
21081                 offset=$((offset + $bs))
21082         done
21083         for (( i=0; i < $num; i++ )); do
21084                 wait ${pids[$i]}
21085         done
21086         check_lsom_size $DIR/$tfile $size
21087
21088         $TRUNCATE $DIR/$tfile 0
21089         for ((i = 0; i < $num; i++)); do
21090                 offset=$((offset - $bs))
21091                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
21092                 local pids[$i]=$!
21093         done
21094         for (( i=0; i < $num; i++ )); do
21095                 wait ${pids[$i]}
21096         done
21097         check_lsom_size $DIR/$tfile $size
21098
21099         # multi-client writes
21100         num=$(get_node_count ${CLIENTS//,/ })
21101         size=$(($num * $bs))
21102         offset=0
21103         i=0
21104
21105         echo "Test SOM for multi-client ($num) writes"
21106         $TRUNCATE $DIR/$tfile 0
21107         for client in ${CLIENTS//,/ }; do
21108                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
21109                 local pids[$i]=$!
21110                 i=$((i + 1))
21111                 offset=$((offset + $bs))
21112         done
21113         for (( i=0; i < $num; i++ )); do
21114                 wait ${pids[$i]}
21115         done
21116         check_lsom_size $DIR/$tfile $offset
21117
21118         i=0
21119         $TRUNCATE $DIR/$tfile 0
21120         for client in ${CLIENTS//,/ }; do
21121                 offset=$((offset - $bs))
21122                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
21123                 local pids[$i]=$!
21124                 i=$((i + 1))
21125         done
21126         for (( i=0; i < $num; i++ )); do
21127                 wait ${pids[$i]}
21128         done
21129         check_lsom_size $DIR/$tfile $size
21130
21131         # verify truncate
21132         echo "Test SOM for truncate"
21133         $TRUNCATE $DIR/$tfile 1048576
21134         check_lsom_size $DIR/$tfile 1048576
21135         $TRUNCATE $DIR/$tfile 1234
21136         check_lsom_size $DIR/$tfile 1234
21137
21138         # verify SOM blocks count
21139         echo "Verify SOM block count"
21140         $TRUNCATE $DIR/$tfile 0
21141         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
21142                 error "failed to write file $tfile"
21143         check_lsom_data $DIR/$tfile
21144 }
21145 run_test 806 "Verify Lazy Size on MDS"
21146
21147 test_807() {
21148         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
21149                 skip "Need MDS version at least 2.11.52"
21150
21151         # Registration step
21152         changelog_register || error "changelog_register failed"
21153         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
21154         changelog_users $SINGLEMDS | grep -q $cl_user ||
21155                 error "User $cl_user not found in changelog_users"
21156
21157         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
21158         save_lustre_params client "llite.*.xattr_cache" > $save
21159         lctl set_param llite.*.xattr_cache=0
21160         stack_trap "restore_lustre_params < $save" EXIT
21161
21162         rm -rf $DIR/$tdir || error "rm $tdir failed"
21163         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
21164         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
21165         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
21166         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
21167                 error "truncate $tdir/trunc failed"
21168
21169         local bs=1048576
21170         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
21171                 error "write $tfile failed"
21172
21173         # multi-client wirtes
21174         local num=$(get_node_count ${CLIENTS//,/ })
21175         local offset=0
21176         local i=0
21177
21178         echo "Test SOM for multi-client ($num) writes"
21179         touch $DIR/$tfile || error "touch $tfile failed"
21180         $TRUNCATE $DIR/$tfile 0
21181         for client in ${CLIENTS//,/ }; do
21182                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
21183                 local pids[$i]=$!
21184                 i=$((i + 1))
21185                 offset=$((offset + $bs))
21186         done
21187         for (( i=0; i < $num; i++ )); do
21188                 wait ${pids[$i]}
21189         done
21190
21191         sleep 5
21192         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
21193         check_lsom_data $DIR/$tdir/trunc
21194         check_lsom_data $DIR/$tdir/single_dd
21195         check_lsom_data $DIR/$tfile
21196
21197         rm -rf $DIR/$tdir
21198         # Deregistration step
21199         changelog_deregister || error "changelog_deregister failed"
21200 }
21201 run_test 807 "verify LSOM syncing tool"
21202
21203 check_som_nologged()
21204 {
21205         local lines=$($LFS changelog $FSNAME-MDT0000 |
21206                 grep 'x=trusted.som' | wc -l)
21207         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
21208 }
21209
21210 test_808() {
21211         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
21212                 skip "Need MDS version at least 2.11.55"
21213
21214         # Registration step
21215         changelog_register || error "changelog_register failed"
21216
21217         touch $DIR/$tfile || error "touch $tfile failed"
21218         check_som_nologged
21219
21220         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
21221                 error "write $tfile failed"
21222         check_som_nologged
21223
21224         $TRUNCATE $DIR/$tfile 1234
21225         check_som_nologged
21226
21227         $TRUNCATE $DIR/$tfile 1048576
21228         check_som_nologged
21229
21230         # Deregistration step
21231         changelog_deregister || error "changelog_deregister failed"
21232 }
21233 run_test 808 "Check trusted.som xattr not logged in Changelogs"
21234
21235 check_som_nodata()
21236 {
21237         $LFS getsom $1
21238         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
21239 }
21240
21241 test_809() {
21242         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
21243                 skip "Need MDS version at least 2.11.56"
21244
21245         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
21246                 error "failed to create DoM-only file $DIR/$tfile"
21247         touch $DIR/$tfile || error "touch $tfile failed"
21248         check_som_nodata $DIR/$tfile
21249
21250         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
21251                 error "write $tfile failed"
21252         check_som_nodata $DIR/$tfile
21253
21254         $TRUNCATE $DIR/$tfile 1234
21255         check_som_nodata $DIR/$tfile
21256
21257         $TRUNCATE $DIR/$tfile 4097
21258         check_som_nodata $DIR/$file
21259 }
21260 run_test 809 "Verify no SOM xattr store for DoM-only files"
21261
21262 test_810() {
21263         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21264         $GSS && skip_env "could not run with gss"
21265
21266         set_checksums 1
21267         stack_trap "set_checksums $ORIG_CSUM" EXIT
21268         stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
21269
21270         local csum
21271         local before
21272         local after
21273         for csum in $CKSUM_TYPES; do
21274                 #define OBD_FAIL_OSC_NO_GRANT   0x411
21275                 $LCTL set_param osc.*.checksum_type=$csum fail_loc=0x411
21276                 for i in "10240 0" "10000 0" "4000 1" "500 1"; do
21277                         eval set -- $i
21278                         dd if=/dev/urandom of=$DIR/$tfile bs=$1 count=2 seek=$2
21279                         before=$(md5sum $DIR/$tfile)
21280                         $LCTL set_param ldlm.namespaces.*osc*.lru_size=clear
21281                         after=$(md5sum $DIR/$tfile)
21282                         [ "$before" == "$after" ] ||
21283                                 error "$csum: $before != $after bs=$1 seek=$2"
21284                 done
21285         done
21286 }
21287 run_test 810 "partial page writes on ZFS (LU-11663)"
21288
21289 test_811() {
21290         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
21291                 skip "Need MDS version at least 2.11.56"
21292
21293         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
21294         do_facet mds1 $LCTL set_param fail_loc=0x165
21295         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
21296
21297         stop mds1
21298         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
21299
21300         sleep 5
21301         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
21302                 error "MDD orphan cleanup thread not quit"
21303 }
21304 run_test 811 "orphan name stub can be cleaned up in startup"
21305
21306 test_812() {
21307         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
21308                 skip "OST < 2.12.51 doesn't support this fail_loc"
21309         [ "$SHARED_KEY" = true ] &&
21310                 skip "OSC connections never go IDLE with Shared-Keys enabled"
21311
21312         $LFS setstripe -c 1 -i 0 $DIR/$tfile
21313         # ensure ost1 is connected
21314         stat $DIR/$tfile >/dev/null || error "can't stat"
21315         wait_osc_import_state client ost1 FULL
21316         # no locks, no reqs to let the connection idle
21317         cancel_lru_locks osc
21318
21319         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
21320 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
21321         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
21322         wait_osc_import_state client ost1 CONNECTING
21323         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
21324
21325         stat $DIR/$tfile >/dev/null || error "can't stat file"
21326 }
21327 run_test 812 "do not drop reqs generated when imp is going to idle (LU-11951)"
21328
21329 test_814()
21330 {
21331         dd of=$DIR/$tfile seek=128 bs=1k < /dev/null
21332         echo -n y >> $DIR/$tfile
21333         cp --sparse=always $DIR/$tfile $DIR/${tfile}.cp || error "copy failed"
21334         diff $DIR/$tfile $DIR/${tfile}.cp || error "files should be same"
21335 }
21336 run_test 814 "sparse cp works as expected (LU-12361)"
21337
21338 test_815()
21339 {
21340         writeme -b 100 $DIR/$tfile || error "write 100 bytes failed"
21341         writeme -b 0 $DIR/$tfile || error "write 0 byte failed"
21342 }
21343 run_test 815 "zero byte tiny write doesn't hang (LU-12382)"
21344
21345 test_816() {
21346         [ "$SHARED_KEY" = true ] &&
21347                 skip "OSC connections never go IDLE with Shared-Keys enabled"
21348
21349         $LFS setstripe -c 1 -i 0 $DIR/$tfile
21350         # ensure ost1 is connected
21351         stat $DIR/$tfile >/dev/null || error "can't stat"
21352         wait_osc_import_state client ost1 FULL
21353         # no locks, no reqs to let the connection idle
21354         cancel_lru_locks osc
21355         lru_resize_disable osc
21356         local before
21357         local now
21358         before=$($LCTL get_param -n \
21359                  ldlm.namespaces.$FSNAME-OST0000-osc-[^M]*.lru_size)
21360
21361         wait_osc_import_state client ost1 IDLE
21362         dd if=/dev/null of=$DIR/$tfile bs=1k count=1 conv=sync
21363         now=$($LCTL get_param -n \
21364               ldlm.namespaces.$FSNAME-OST0000-osc-[^M]*.lru_size)
21365         [ $before == $now ] || error "lru_size changed $before != $now"
21366 }
21367 run_test 816 "do not reset lru_resize on idle reconnect"
21368
21369 cleanup_817() {
21370         umount $tmpdir
21371         exportfs -u localhost:$DIR/nfsexp
21372         rm -rf $DIR/nfsexp
21373 }
21374
21375 test_817() {
21376         systemctl restart nfs-server.service || skip "failed to restart nfsd"
21377
21378         mkdir -p $DIR/nfsexp
21379         exportfs -orw,no_root_squash localhost:$DIR/nfsexp ||
21380                 error "failed to export nfs"
21381
21382         tmpdir=$(mktemp -d /tmp/nfs-XXXXXX)
21383         stack_trap cleanup_817 EXIT
21384
21385         mount -t nfs -orw localhost:$DIR/nfsexp $tmpdir ||
21386                 error "failed to mount nfs to $tmpdir"
21387
21388         cp /bin/true $tmpdir
21389         $DIR/nfsexp/true || error "failed to execute 'true' command"
21390 }
21391 run_test 817 "nfsd won't cache write lock for exec file"
21392
21393 test_819a() {
21394         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
21395         cancel_lru_locks osc
21396         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
21397         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
21398         dd if=$DIR/$tfile of=/dev/null bs=1M count=1
21399         rm -f $TDIR/$tfile
21400 }
21401 run_test 819a "too big niobuf in read"
21402
21403 test_819b() {
21404         #define OBD_FAIL_OST_2BIG_NIOBUF                0x248
21405         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000248
21406         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
21407         cancel_lru_locks osc
21408         sleep 1
21409         rm -f $TDIR/$tfile
21410 }
21411 run_test 819b "too big niobuf in write"
21412
21413 test_818() {
21414         mkdir $DIR/$tdir
21415         $LFS setstripe -c1 -i0 $DIR/$tfile
21416         $LFS setstripe -c1 -i1 $DIR/$tfile
21417         stop $SINGLEMDS
21418         #define OBD_FAIL_OSP_CANT_PROCESS_LLOG          0x2105
21419         do_facet $SINGLEMDS lctl set_param fail_loc=0x80002105
21420         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
21421                 error "start $SINGLEMDS failed"
21422         rm -rf $DIR/$tdir
21423 }
21424 run_test 818 "unlink with failed llog"
21425
21426 #
21427 # tests that do cleanup/setup should be run at the end
21428 #
21429
21430 test_900() {
21431         [ $PARALLEL == "yes" ] && skip "skip parallel run"
21432         local ls
21433
21434         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
21435         $LCTL set_param fail_loc=0x903
21436
21437         cancel_lru_locks MGC
21438
21439         FAIL_ON_ERROR=true cleanup
21440         FAIL_ON_ERROR=true setup
21441 }
21442 run_test 900 "umount should not race with any mgc requeue thread"
21443
21444 complete $SECONDS
21445 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
21446 check_and_cleanup_lustre
21447 if [ "$I_MOUNTED" != "yes" ]; then
21448         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
21449 fi
21450 exit_status