Whamcloud - gitweb
LU-11418 mdd: delete name if orphan doesn't exist
[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: LU-1957
79         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
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_24A() { # LU-3182
1286         local NFILES=5000
1287
1288         rm -rf $DIR/$tdir
1289         test_mkdir $DIR/$tdir
1290         trap simple_cleanup_common EXIT
1291         createmany -m $DIR/$tdir/$tfile $NFILES
1292         local t=$(ls $DIR/$tdir | wc -l)
1293         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1294         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1295         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1296                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1297         fi
1298
1299         simple_cleanup_common || error "Can not delete directories"
1300 }
1301 run_test 24A "readdir() returns correct number of entries."
1302
1303 test_24B() { # LU-4805
1304         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1305
1306         local count
1307
1308         test_mkdir $DIR/$tdir
1309         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1310                 error "create striped dir failed"
1311
1312         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1313         [ $count -eq 2 ] || error "Expected 2, got $count"
1314
1315         touch $DIR/$tdir/striped_dir/a
1316
1317         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1318         [ $count -eq 3 ] || error "Expected 3, got $count"
1319
1320         touch $DIR/$tdir/striped_dir/.f
1321
1322         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1323         [ $count -eq 4 ] || error "Expected 4, got $count"
1324
1325         rm -rf $DIR/$tdir || error "Can not delete directories"
1326 }
1327 run_test 24B "readdir for striped dir return correct number of entries"
1328
1329 test_24C() {
1330         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
1331
1332         mkdir $DIR/$tdir
1333         mkdir $DIR/$tdir/d0
1334         mkdir $DIR/$tdir/d1
1335
1336         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1337                 error "create striped dir failed"
1338
1339         cd $DIR/$tdir/d0/striped_dir
1340
1341         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1342         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1343         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1344
1345         [ "$d0_ino" = "$parent_ino" ] ||
1346                 error ".. wrong, expect $d0_ino, get $parent_ino"
1347
1348         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1349                 error "mv striped dir failed"
1350
1351         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1352
1353         [ "$d1_ino" = "$parent_ino" ] ||
1354                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1355 }
1356 run_test 24C "check .. in striped dir"
1357
1358 test_24E() {
1359         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
1360         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1361
1362         mkdir -p $DIR/$tdir
1363         mkdir $DIR/$tdir/src_dir
1364         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1365                 error "create remote source failed"
1366
1367         touch $DIR/$tdir/src_dir/src_child/a
1368
1369         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1370                 error "create remote target dir failed"
1371
1372         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1373                 error "create remote target child failed"
1374
1375         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1376                 error "rename dir cross MDT failed!"
1377
1378         find $DIR/$tdir
1379
1380         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1381                 error "src_child still exists after rename"
1382
1383         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1384                 error "missing file(a) after rename"
1385
1386         rm -rf $DIR/$tdir || error "Can not delete directories"
1387 }
1388 run_test 24E "cross MDT rename/link"
1389
1390 test_24F () {
1391         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1392
1393         local repeats=1000
1394         [ "$SLOW" = "no" ] && repeats=100
1395
1396         mkdir -p $DIR/$tdir
1397
1398         echo "$repeats repeats"
1399         for ((i = 0; i < repeats; i++)); do
1400                 $LFS mkdir -i0 -c2 $DIR/$tdir/test || error "mkdir fails"
1401                 touch $DIR/$tdir/test/a || error "touch fails"
1402                 mkdir $DIR/$tdir/test/b || error "mkdir fails"
1403                 rm -rf $DIR/$tdir/test || error "rmdir fails"
1404         done
1405
1406         true
1407 }
1408 run_test 24F "hash order vs readdir (LU-11330)"
1409
1410 test_25a() {
1411         echo '== symlink sanity ============================================='
1412
1413         test_mkdir $DIR/d25
1414         ln -s d25 $DIR/s25
1415         touch $DIR/s25/foo ||
1416                 error "File creation in symlinked directory failed"
1417 }
1418 run_test 25a "create file in symlinked directory ==============="
1419
1420 test_25b() {
1421         [ ! -d $DIR/d25 ] && test_25a
1422         $CHECKSTAT -t file $DIR/s25/foo || error "$DIR/s25/foo not file type"
1423 }
1424 run_test 25b "lookup file in symlinked directory ==============="
1425
1426 test_26a() {
1427         test_mkdir $DIR/d26
1428         test_mkdir $DIR/d26/d26-2
1429         ln -s d26/d26-2 $DIR/s26
1430         touch $DIR/s26/foo || error "File creation failed"
1431 }
1432 run_test 26a "multiple component symlink ======================="
1433
1434 test_26b() {
1435         test_mkdir -p $DIR/$tdir/d26-2
1436         ln -s $tdir/d26-2/foo $DIR/s26-2
1437         touch $DIR/s26-2 || error "File creation failed"
1438 }
1439 run_test 26b "multiple component symlink at end of lookup ======"
1440
1441 test_26c() {
1442         test_mkdir $DIR/d26.2
1443         touch $DIR/d26.2/foo
1444         ln -s d26.2 $DIR/s26.2-1
1445         ln -s s26.2-1 $DIR/s26.2-2
1446         ln -s s26.2-2 $DIR/s26.2-3
1447         chmod 0666 $DIR/s26.2-3/foo
1448 }
1449 run_test 26c "chain of symlinks"
1450
1451 # recursive symlinks (bug 439)
1452 test_26d() {
1453         ln -s d26-3/foo $DIR/d26-3
1454 }
1455 run_test 26d "create multiple component recursive symlink"
1456
1457 test_26e() {
1458         [ ! -h $DIR/d26-3 ] && test_26d
1459         rm $DIR/d26-3
1460 }
1461 run_test 26e "unlink multiple component recursive symlink"
1462
1463 # recursive symlinks (bug 7022)
1464 test_26f() {
1465         test_mkdir $DIR/$tdir
1466         test_mkdir $DIR/$tdir/$tfile
1467         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1468         test_mkdir -p lndir/bar1
1469         test_mkdir $DIR/$tdir/$tfile/$tfile
1470         cd $tfile                || error "cd $tfile failed"
1471         ln -s .. dotdot          || error "ln dotdot failed"
1472         ln -s dotdot/lndir lndir || error "ln lndir failed"
1473         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1474         output=`ls $tfile/$tfile/lndir/bar1`
1475         [ "$output" = bar1 ] && error "unexpected output"
1476         rm -r $tfile             || error "rm $tfile failed"
1477         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1478 }
1479 run_test 26f "rm -r of a directory which has recursive symlink"
1480
1481 test_27a() {
1482         test_mkdir $DIR/$tdir
1483         $LFS getstripe $DIR/$tdir
1484         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1485         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1486         cp /etc/hosts $DIR/$tdir/$tfile || error "Can't copy to one stripe file"
1487 }
1488 run_test 27a "one stripe file"
1489
1490 test_27b() {
1491         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1492
1493         test_mkdir $DIR/$tdir
1494         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1495         $LFS getstripe -c $DIR/$tdir/$tfile
1496         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1497                 error "two-stripe file doesn't have two stripes"
1498
1499         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1500 }
1501 run_test 27b "create and write to two stripe file"
1502
1503 test_27d() {
1504         test_mkdir $DIR/$tdir
1505         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1506                 error "setstripe failed"
1507         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1508         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1509 }
1510 run_test 27d "create file with default settings"
1511
1512 test_27e() {
1513         # LU-5839 adds check for existed layout before setting it
1514         [[ $MDS1_VERSION -lt $(version_code 2.7.56) ]] &&
1515                 skip "Need MDS version at least 2.7.56"
1516
1517         test_mkdir $DIR/$tdir
1518         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1519         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1520         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1521 }
1522 run_test 27e "setstripe existing file (should return error)"
1523
1524 test_27f() {
1525         test_mkdir $DIR/$tdir
1526         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1527                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1528         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1529                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1530         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1531         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1532 }
1533 run_test 27f "setstripe with bad stripe size (should return error)"
1534
1535 test_27g() {
1536         test_mkdir $DIR/$tdir
1537         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1538         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1539                 error "$DIR/$tdir/$tfile has object"
1540 }
1541 run_test 27g "$LFS getstripe with no objects"
1542
1543 test_27i() {
1544         test_mkdir $DIR/$tdir
1545         touch $DIR/$tdir/$tfile || error "touch failed"
1546         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1547                 error "missing objects"
1548 }
1549 run_test 27i "$LFS getstripe with some objects"
1550
1551 test_27j() {
1552         test_mkdir $DIR/$tdir
1553         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1554                 error "setstripe failed" || true
1555 }
1556 run_test 27j "setstripe with bad stripe offset (should return error)"
1557
1558 test_27k() { # bug 2844
1559         test_mkdir $DIR/$tdir
1560         local file=$DIR/$tdir/$tfile
1561         local ll_max_blksize=$((4 * 1024 * 1024))
1562         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1563         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1564         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1565         dd if=/dev/zero of=$file bs=4k count=1
1566         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1567         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1568 }
1569 run_test 27k "limit i_blksize for broken user apps"
1570
1571 test_27l() {
1572         mcreate $DIR/$tfile || error "creating file"
1573         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1574                 error "setstripe should have failed" || true
1575 }
1576 run_test 27l "check setstripe permissions (should return error)"
1577
1578 test_27m() {
1579         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1580
1581         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1582                    head -n1)
1583         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1584                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1585         fi
1586         trap simple_cleanup_common EXIT
1587         test_mkdir $DIR/$tdir
1588         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1589         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1590                 error "dd should fill OST0"
1591         i=2
1592         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1593                 i=$((i + 1))
1594                 [ $i -gt 256 ] && break
1595         done
1596         i=$((i + 1))
1597         touch $DIR/$tdir/$tfile.$i
1598         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1599             awk '{print $1}'| grep -w "0") ] &&
1600                 error "OST0 was full but new created file still use it"
1601         i=$((i + 1))
1602         touch $DIR/$tdir/$tfile.$i
1603         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1604             awk '{print $1}'| grep -w "0") ] &&
1605                 error "OST0 was full but new created file still use it"
1606         simple_cleanup_common
1607 }
1608 run_test 27m "create file while OST0 was full"
1609
1610 sleep_maxage() {
1611         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1612                       awk '{ print $1 * 2; exit; }')
1613         sleep $delay
1614 }
1615
1616 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1617 # if the OST isn't full anymore.
1618 reset_enospc() {
1619         local OSTIDX=${1:-""}
1620
1621         local list=$(comma_list $(osts_nodes))
1622         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1623
1624         do_nodes $list lctl set_param fail_loc=0
1625         sync    # initiate all OST_DESTROYs from MDS to OST
1626         sleep_maxage
1627 }
1628
1629 exhaust_precreations() {
1630         local OSTIDX=$1
1631         local FAILLOC=$2
1632         local FAILIDX=${3:-$OSTIDX}
1633         local ofacet=ost$((OSTIDX + 1))
1634
1635         test_mkdir -p -c1 $DIR/$tdir
1636         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
1637         local mfacet=mds$((mdtidx + 1))
1638         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1639
1640         local OST=$(ostname_from_index $OSTIDX)
1641
1642         # on the mdt's osc
1643         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1644         local last_id=$(do_facet $mfacet lctl get_param -n \
1645                         osc.$mdtosc_proc1.prealloc_last_id)
1646         local next_id=$(do_facet $mfacet lctl get_param -n \
1647                         osc.$mdtosc_proc1.prealloc_next_id)
1648
1649         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1650         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1651
1652         test_mkdir -p $DIR/$tdir/${OST}
1653         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1654 #define OBD_FAIL_OST_ENOSPC              0x215
1655         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1656         echo "Creating to objid $last_id on ost $OST..."
1657         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1658         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1659         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1660         sleep_maxage
1661 }
1662
1663 exhaust_all_precreations() {
1664         local i
1665         for (( i=0; i < OSTCOUNT; i++ )) ; do
1666                 exhaust_precreations $i $1 -1
1667         done
1668 }
1669
1670 test_27n() {
1671         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1672         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1673         remote_mds_nodsh && skip "remote MDS with nodsh"
1674         remote_ost_nodsh && skip "remote OST with nodsh"
1675
1676         reset_enospc
1677         rm -f $DIR/$tdir/$tfile
1678         exhaust_precreations 0 0x80000215
1679         $LFS setstripe -c -1 $DIR/$tdir || error "setstripe failed"
1680         touch $DIR/$tdir/$tfile || error "touch failed"
1681         $LFS getstripe $DIR/$tdir/$tfile
1682         reset_enospc
1683 }
1684 run_test 27n "create file with some full OSTs"
1685
1686 test_27o() {
1687         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1688         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1689         remote_mds_nodsh && skip "remote MDS with nodsh"
1690         remote_ost_nodsh && skip "remote OST with nodsh"
1691
1692         reset_enospc
1693         rm -f $DIR/$tdir/$tfile
1694         exhaust_all_precreations 0x215
1695
1696         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1697
1698         reset_enospc
1699         rm -rf $DIR/$tdir/*
1700 }
1701 run_test 27o "create file with all full OSTs (should error)"
1702
1703 test_27p() {
1704         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1705         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1706         remote_mds_nodsh && skip "remote MDS with nodsh"
1707         remote_ost_nodsh && skip "remote OST with nodsh"
1708
1709         reset_enospc
1710         rm -f $DIR/$tdir/$tfile
1711         test_mkdir $DIR/$tdir
1712
1713         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1714         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1715         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1716
1717         exhaust_precreations 0 0x80000215
1718         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1719         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1720         $LFS getstripe $DIR/$tdir/$tfile
1721
1722         reset_enospc
1723 }
1724 run_test 27p "append to a truncated file with some full OSTs"
1725
1726 test_27q() {
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
1735         test_mkdir $DIR/$tdir
1736         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1737         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1738                 error "truncate $DIR/$tdir/$tfile failed"
1739         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1740
1741         exhaust_all_precreations 0x215
1742
1743         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1744         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1745
1746         reset_enospc
1747 }
1748 run_test 27q "append to truncated file with all OSTs full (should error)"
1749
1750 test_27r() {
1751         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1752         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1753         remote_mds_nodsh && skip "remote MDS with nodsh"
1754         remote_ost_nodsh && skip "remote OST with nodsh"
1755
1756         reset_enospc
1757         rm -f $DIR/$tdir/$tfile
1758         exhaust_precreations 0 0x80000215
1759
1760         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1761
1762         reset_enospc
1763 }
1764 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1765
1766 test_27s() { # bug 10725
1767         test_mkdir $DIR/$tdir
1768         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1769         local stripe_count=0
1770         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1771         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1772                 error "stripe width >= 2^32 succeeded" || true
1773
1774 }
1775 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1776
1777 test_27t() { # bug 10864
1778         WDIR=$(pwd)
1779         WLFS=$(which lfs)
1780         cd $DIR
1781         touch $tfile
1782         $WLFS getstripe $tfile
1783         cd $WDIR
1784 }
1785 run_test 27t "check that utils parse path correctly"
1786
1787 test_27u() { # bug 4900
1788         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1789         remote_mds_nodsh && skip "remote MDS with nodsh"
1790
1791         local index
1792         local list=$(comma_list $(mdts_nodes))
1793
1794 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1795         do_nodes $list $LCTL set_param fail_loc=0x139
1796         test_mkdir -p $DIR/$tdir
1797         trap simple_cleanup_common EXIT
1798         createmany -o $DIR/$tdir/t- 1000
1799         do_nodes $list $LCTL set_param fail_loc=0
1800
1801         TLOG=$TMP/$tfile.getstripe
1802         $LFS getstripe $DIR/$tdir > $TLOG
1803         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1804         unlinkmany $DIR/$tdir/t- 1000
1805         trap 0
1806         [[ $OBJS -gt 0 ]] &&
1807                 error "$OBJS objects created on OST-0. See $TLOG" ||
1808                 rm -f $TLOG
1809 }
1810 run_test 27u "skip object creation on OSC w/o objects"
1811
1812 test_27v() { # bug 4900
1813         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1814         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1815         remote_mds_nodsh && skip "remote MDS with nodsh"
1816         remote_ost_nodsh && skip "remote OST with nodsh"
1817
1818         exhaust_all_precreations 0x215
1819         reset_enospc
1820
1821         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1822
1823         touch $DIR/$tdir/$tfile
1824         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1825         # all except ost1
1826         for (( i=1; i < OSTCOUNT; i++ )); do
1827                 do_facet ost$i lctl set_param fail_loc=0x705
1828         done
1829         local START=`date +%s`
1830         createmany -o $DIR/$tdir/$tfile 32
1831
1832         local FINISH=`date +%s`
1833         local TIMEOUT=`lctl get_param -n timeout`
1834         local PROCESS=$((FINISH - START))
1835         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1836                error "$FINISH - $START >= $TIMEOUT / 2"
1837         sleep $((TIMEOUT / 2 - PROCESS))
1838         reset_enospc
1839 }
1840 run_test 27v "skip object creation on slow OST"
1841
1842 test_27w() { # bug 10997
1843         test_mkdir $DIR/$tdir
1844         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1845         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1846                 error "stripe size $size != 65536" || true
1847         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1848                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1849 }
1850 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1851
1852 test_27wa() {
1853         [[ $OSTCOUNT -lt 2 ]] &&
1854                 skip_env "skipping multiple stripe count/offset test"
1855
1856         test_mkdir $DIR/$tdir
1857         for i in $(seq 1 $OSTCOUNT); do
1858                 offset=$((i - 1))
1859                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1860                         error "setstripe -c $i -i $offset failed"
1861                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1862                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1863                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1864                 [ $index -ne $offset ] &&
1865                         error "stripe offset $index != $offset" || true
1866         done
1867 }
1868 run_test 27wa "check $LFS setstripe -c -i options"
1869
1870 test_27x() {
1871         remote_ost_nodsh && skip "remote OST with nodsh"
1872         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1873         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1874
1875         OFFSET=$(($OSTCOUNT - 1))
1876         OSTIDX=0
1877         local OST=$(ostname_from_index $OSTIDX)
1878
1879         test_mkdir $DIR/$tdir
1880         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1881         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1882         sleep_maxage
1883         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1884         for i in $(seq 0 $OFFSET); do
1885                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1886                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1887                 error "OST0 was degraded but new created file still use it"
1888         done
1889         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1890 }
1891 run_test 27x "create files while OST0 is degraded"
1892
1893 test_27y() {
1894         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
1895         remote_mds_nodsh && skip "remote MDS with nodsh"
1896         remote_ost_nodsh && skip "remote OST with nodsh"
1897         [ $PARALLEL == "yes" ] && skip "skip parallel run"
1898
1899         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1900         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1901                 osc.$mdtosc.prealloc_last_id)
1902         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1903                 osc.$mdtosc.prealloc_next_id)
1904         local fcount=$((last_id - next_id))
1905         [[ $fcount -eq 0 ]] && skip "not enough space on OST0"
1906         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1907
1908         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1909                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1910         local OST_DEACTIVE_IDX=-1
1911         local OSC
1912         local OSTIDX
1913         local OST
1914
1915         for OSC in $MDS_OSCS; do
1916                 OST=$(osc_to_ost $OSC)
1917                 OSTIDX=$(index_from_ostuuid $OST)
1918                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1919                         OST_DEACTIVE_IDX=$OSTIDX
1920                 fi
1921                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1922                         echo $OSC "is Deactivated:"
1923                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1924                 fi
1925         done
1926
1927         OSTIDX=$(index_from_ostuuid $OST)
1928         test_mkdir $DIR/$tdir
1929         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1930
1931         for OSC in $MDS_OSCS; do
1932                 OST=$(osc_to_ost $OSC)
1933                 OSTIDX=$(index_from_ostuuid $OST)
1934                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1935                         echo $OST "is degraded:"
1936                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1937                                                 obdfilter.$OST.degraded=1
1938                 fi
1939         done
1940
1941         sleep_maxage
1942         createmany -o $DIR/$tdir/$tfile $fcount
1943
1944         for OSC in $MDS_OSCS; do
1945                 OST=$(osc_to_ost $OSC)
1946                 OSTIDX=$(index_from_ostuuid $OST)
1947                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1948                         echo $OST "is recovered from degraded:"
1949                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1950                                                 obdfilter.$OST.degraded=0
1951                 else
1952                         do_facet $SINGLEMDS lctl --device %$OSC activate
1953                 fi
1954         done
1955
1956         # all osp devices get activated, hence -1 stripe count restored
1957         local stripe_count=0
1958
1959         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1960         # devices get activated.
1961         sleep_maxage
1962         $LFS setstripe -c -1 $DIR/$tfile
1963         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1964         rm -f $DIR/$tfile
1965         [ $stripe_count -ne $OSTCOUNT ] &&
1966                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1967         return 0
1968 }
1969 run_test 27y "create files while OST0 is degraded and the rest inactive"
1970
1971 check_seq_oid()
1972 {
1973         log "check file $1"
1974
1975         lmm_count=$($GETSTRIPE -c $1)
1976         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1977         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1978
1979         local old_ifs="$IFS"
1980         IFS=$'[:]'
1981         fid=($($LFS path2fid $1))
1982         IFS="$old_ifs"
1983
1984         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1985         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1986
1987         # compare lmm_seq and lu_fid->f_seq
1988         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1989         # compare lmm_object_id and lu_fid->oid
1990         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1991
1992         # check the trusted.fid attribute of the OST objects of the file
1993         local have_obdidx=false
1994         local stripe_nr=0
1995         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1996                 # skip lines up to and including "obdidx"
1997                 [ -z "$obdidx" ] && break
1998                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1999                 $have_obdidx || continue
2000
2001                 local ost=$((obdidx + 1))
2002                 local dev=$(ostdevname $ost)
2003                 local oid_hex
2004
2005                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
2006
2007                 seq=$(echo $seq | sed -e "s/^0x//g")
2008                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
2009                         oid_hex=$(echo $oid)
2010                 else
2011                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
2012                 fi
2013                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
2014
2015                 local ff=""
2016                 #
2017                 # Don't unmount/remount the OSTs if we don't need to do that.
2018                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
2019                 # update too, until that use mount/ll_decode_filter_fid/mount.
2020                 # Re-enable when debugfs will understand new filter_fid.
2021                 #
2022                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
2023                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
2024                                 $dev 2>/dev/null" | grep "parent=")
2025                 fi
2026                 if [ -z "$ff" ]; then
2027                         stop ost$ost
2028                         mount_fstype ost$ost
2029                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
2030                                 $(facet_mntpt ost$ost)/$obj_file)
2031                         unmount_fstype ost$ost
2032                         start ost$ost $dev $OST_MOUNT_OPTS
2033                         clients_up
2034                 fi
2035
2036                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
2037
2038                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
2039
2040                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
2041                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
2042                 #
2043                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
2044                 #       stripe_size=1048576 component_id=1 component_start=0 \
2045                 #       component_end=33554432
2046                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
2047                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
2048                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
2049                 local ff_pstripe
2050                 if grep -q 'stripe=' <<<$ff; then
2051                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
2052                 else
2053                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
2054                         # into f_ver in this case.  See comment on ff_parent.
2055                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
2056                 fi
2057
2058                 # compare lmm_seq and filter_fid->ff_parent.f_seq
2059                 [ $ff_pseq = $lmm_seq ] ||
2060                         error "FF parent SEQ $ff_pseq != $lmm_seq"
2061                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
2062                 [ $ff_poid = $lmm_oid ] ||
2063                         error "FF parent OID $ff_poid != $lmm_oid"
2064                 (($ff_pstripe == $stripe_nr)) ||
2065                         error "FF stripe $ff_pstripe != $stripe_nr"
2066
2067                 stripe_nr=$((stripe_nr + 1))
2068                 [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2069                         continue
2070                 if grep -q 'stripe_count=' <<<$ff; then
2071                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
2072                                             -e 's/ .*//' <<<$ff)
2073                         [ $lmm_count = $ff_scnt ] ||
2074                                 error "FF stripe count $lmm_count != $ff_scnt"
2075                 fi
2076         done
2077 }
2078
2079 test_27z() {
2080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2081         remote_ost_nodsh && skip "remote OST with nodsh"
2082
2083         test_mkdir $DIR/$tdir
2084         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
2085                 { error "setstripe -c -1 failed"; return 1; }
2086         # We need to send a write to every object to get parent FID info set.
2087         # This _should_ also work for setattr, but does not currently.
2088         # touch $DIR/$tdir/$tfile-1 ||
2089         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
2090                 { error "dd $tfile-1 failed"; return 2; }
2091         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
2092                 { error "setstripe -c -1 failed"; return 3; }
2093         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
2094                 { error "dd $tfile-2 failed"; return 4; }
2095
2096         # make sure write RPCs have been sent to OSTs
2097         sync; sleep 5; sync
2098
2099         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
2100         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
2101 }
2102 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
2103
2104 test_27A() { # b=19102
2105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2106
2107         save_layout_restore_at_exit $MOUNT
2108         $LFS setstripe -c 0 -i -1 -S 0 $MOUNT
2109         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2110                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
2111         local default_size=$($GETSTRIPE -S $MOUNT)
2112         local default_offset=$($GETSTRIPE -i $MOUNT)
2113         local dsize=$(do_facet $SINGLEMDS \
2114                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
2115         [ $default_size -eq $dsize ] ||
2116                 error "stripe size $default_size != $dsize"
2117         [ $default_offset -eq -1 ] ||
2118                 error "stripe offset $default_offset != -1"
2119 }
2120 run_test 27A "check filesystem-wide default LOV EA values"
2121
2122 test_27B() { # LU-2523
2123         test_mkdir $DIR/$tdir
2124         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
2125         touch $DIR/$tdir/f0
2126         # open f1 with O_LOV_DELAY_CREATE
2127         # rename f0 onto f1
2128         # call setstripe ioctl on open file descriptor for f1
2129         # close
2130         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2131                 $DIR/$tdir/f0
2132
2133         rm -f $DIR/$tdir/f1
2134         # open f1 with O_LOV_DELAY_CREATE
2135         # unlink f1
2136         # call setstripe ioctl on open file descriptor for f1
2137         # close
2138         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2139
2140         # Allow multiop to fail in imitation of NFS's busted semantics.
2141         true
2142 }
2143 run_test 27B "call setstripe on open unlinked file/rename victim"
2144
2145 test_27C() { #LU-2871
2146         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
2147
2148         declare -a ost_idx
2149         local index
2150         local found
2151         local i
2152         local j
2153
2154         test_mkdir $DIR/$tdir
2155         cd $DIR/$tdir
2156         for i in $(seq 0 $((OSTCOUNT - 1))); do
2157                 # set stripe across all OSTs starting from OST$i
2158                 $SETSTRIPE -i $i -c -1 $tfile$i
2159                 # get striping information
2160                 ost_idx=($($GETSTRIPE $tfile$i |
2161                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2162                 echo ${ost_idx[@]}
2163
2164                 # check the layout
2165                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2166                         error "${#ost_idx[@]} != $OSTCOUNT"
2167
2168                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2169                         found=0
2170                         for j in $(echo ${ost_idx[@]}); do
2171                                 if [ $index -eq $j ]; then
2172                                         found=1
2173                                         break
2174                                 fi
2175                         done
2176                         [ $found = 1 ] ||
2177                                 error "Can not find $index in ${ost_idx[@]}"
2178                 done
2179         done
2180 }
2181 run_test 27C "check full striping across all OSTs"
2182
2183 test_27D() {
2184         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2185         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2186         remote_mds_nodsh && skip "remote MDS with nodsh"
2187
2188         local POOL=${POOL:-testpool}
2189         local first_ost=0
2190         local last_ost=$(($OSTCOUNT - 1))
2191         local ost_step=1
2192         local ost_list=$(seq $first_ost $ost_step $last_ost)
2193         local ost_range="$first_ost $last_ost $ost_step"
2194
2195         if ! combined_mgs_mds ; then
2196                 mount_mgs_client
2197         fi
2198
2199         test_mkdir $DIR/$tdir
2200         pool_add $POOL || error "pool_add failed"
2201         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2202
2203         local skip27D
2204         [ $MDS1_VERSION -lt $(version_code 2.8.55) ] &&
2205                 skip27D+="-s 29"
2206         [ $MDS1_VERSION -lt $(version_code 2.9.55) -o \
2207           $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
2208                 skip27D+=" -s 30,31"
2209         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2210                 error "llapi_layout_test failed"
2211
2212         destroy_test_pools || error "destroy test pools failed"
2213
2214         if ! combined_mgs_mds ; then
2215                 umount_mgs_client
2216         fi
2217 }
2218 run_test 27D "validate llapi_layout API"
2219
2220 # Verify that default_easize is increased from its initial value after
2221 # accessing a widely striped file.
2222 test_27E() {
2223         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
2224         [ $CLIENT_VERSION -lt $(version_code 2.5.57) ] &&
2225                 skip "client does not have LU-3338 fix"
2226
2227         # 72 bytes is the minimum space required to store striping
2228         # information for a file striped across one OST:
2229         # (sizeof(struct lov_user_md_v3) +
2230         #  sizeof(struct lov_user_ost_data_v1))
2231         local min_easize=72
2232         $LCTL set_param -n llite.*.default_easize $min_easize ||
2233                 error "lctl set_param failed"
2234         local easize=$($LCTL get_param -n llite.*.default_easize)
2235
2236         [ $easize -eq $min_easize ] ||
2237                 error "failed to set default_easize"
2238
2239         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2240                 error "setstripe failed"
2241         cat $DIR/$tfile
2242         rm $DIR/$tfile
2243
2244         easize=$($LCTL get_param -n llite.*.default_easize)
2245
2246         [ $easize -gt $min_easize ] ||
2247                 error "default_easize not updated"
2248 }
2249 run_test 27E "check that default extended attribute size properly increases"
2250
2251 test_27F() { # LU-5346/LU-7975
2252         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2253         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs"
2254         [[ $MDS1_VERSION -lt $(version_code 2.8.51) ]] &&
2255                 skip "Need MDS version at least 2.8.51"
2256         remote_ost_nodsh && skip "remote OST with nodsh"
2257
2258         test_mkdir $DIR/$tdir
2259         rm -f $DIR/$tdir/f0
2260         $SETSTRIPE -c 2 $DIR/$tdir
2261
2262         # stop all OSTs to reproduce situation for LU-7975 ticket
2263         for num in $(seq $OSTCOUNT); do
2264                 stop ost$num
2265         done
2266
2267         # open/create f0 with O_LOV_DELAY_CREATE
2268         # truncate f0 to a non-0 size
2269         # close
2270         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2271
2272         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2273         # open/write it again to force delayed layout creation
2274         cat /etc/hosts > $DIR/$tdir/f0 &
2275         catpid=$!
2276
2277         # restart OSTs
2278         for num in $(seq $OSTCOUNT); do
2279                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2280                         error "ost$num failed to start"
2281         done
2282
2283         wait $catpid || error "cat failed"
2284
2285         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2286         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2287
2288 }
2289 run_test 27F "Client resend delayed layout creation with non-zero size"
2290
2291 test_27G() { #LU-10629
2292         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2293         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2294         local POOL=${POOL:-testpool}
2295         local ostrange="0 0 1"
2296
2297         test_mkdir $DIR/$tdir
2298         pool_add $POOL || error "pool_add failed"
2299         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2300         $LFS setstripe -p $POOL $DIR/$tdir
2301
2302         local pool=$($LFS getstripe -p $DIR/$tdir)
2303
2304         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2305
2306         $LFS setstripe -d $DIR/$tdir
2307
2308         pool=$($LFS getstripe -p $DIR/$tdir)
2309
2310         rmdir $DIR/$tdir
2311
2312         [ -z "$pool" ] || error "'$pool' is not empty"
2313 }
2314 run_test 27G "Clear OST pool from stripe"
2315
2316 test_27H() {
2317         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2318                 skip "Need MDS version newer than 2.11.54"
2319         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2320         test_mkdir $DIR/$tdir
2321         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2322         touch $DIR/$tdir/$tfile
2323         $LFS getstripe -c $DIR/$tdir/$tfile
2324         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2325                 error "two-stripe file doesn't have two stripes"
2326
2327         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2328         $LFS getstripe -y $DIR/$tdir/$tfile
2329         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2330              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2331                 error "expected l_ost_idx: [02]$ not matched"
2332
2333         # make sure ost list have been cleared
2334         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
2335         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2336                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2337         touch $DIR/$tdir/f3
2338         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2339 }
2340 run_test 27H "Set specific OSTs stripe"
2341
2342 # createtest also checks that device nodes are created and
2343 # then visible correctly (#2091)
2344 test_28() { # bug 2091
2345         test_mkdir $DIR/d28
2346         $CREATETEST $DIR/d28/ct || error "createtest failed"
2347 }
2348 run_test 28 "create/mknod/mkdir with bad file types ============"
2349
2350 test_29() {
2351         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2352
2353         sync; sleep 1; sync # flush out any dirty pages from previous tests
2354         cancel_lru_locks
2355         test_mkdir $DIR/d29
2356         touch $DIR/d29/foo
2357         log 'first d29'
2358         ls -l $DIR/d29
2359
2360         declare -i LOCKCOUNTORIG=0
2361         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2362                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2363         done
2364         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2365
2366         declare -i LOCKUNUSEDCOUNTORIG=0
2367         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2368                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2369         done
2370
2371         log 'second d29'
2372         ls -l $DIR/d29
2373         log 'done'
2374
2375         declare -i LOCKCOUNTCURRENT=0
2376         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2377                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2378         done
2379
2380         declare -i LOCKUNUSEDCOUNTCURRENT=0
2381         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2382                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2383         done
2384
2385         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2386                 $LCTL set_param -n ldlm.dump_namespaces ""
2387                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2388                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2389                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2390                 return 2
2391         fi
2392         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2393                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2394                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2395                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2396                 return 3
2397         fi
2398 }
2399 run_test 29 "IT_GETATTR regression  ============================"
2400
2401 test_30a() { # was test_30
2402         cp $(which ls) $DIR || cp /bin/ls $DIR
2403         $DIR/ls / || error "Can't execute binary from lustre"
2404         rm $DIR/ls
2405 }
2406 run_test 30a "execute binary from Lustre (execve) =============="
2407
2408 test_30b() {
2409         cp `which ls` $DIR || cp /bin/ls $DIR
2410         chmod go+rx $DIR/ls
2411         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2412         rm $DIR/ls
2413 }
2414 run_test 30b "execute binary from Lustre as non-root ==========="
2415
2416 test_30c() { # b=22376
2417         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2418
2419         cp `which ls` $DIR || cp /bin/ls $DIR
2420         chmod a-rw $DIR/ls
2421         cancel_lru_locks mdc
2422         cancel_lru_locks osc
2423         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2424         rm -f $DIR/ls
2425 }
2426 run_test 30c "execute binary from Lustre without read perms ===="
2427
2428 test_31a() {
2429         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2430         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2431 }
2432 run_test 31a "open-unlink file =================================="
2433
2434 test_31b() {
2435         touch $DIR/f31 || error "touch $DIR/f31 failed"
2436         ln $DIR/f31 $DIR/f31b || error "ln failed"
2437         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2438         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2439 }
2440 run_test 31b "unlink file with multiple links while open ======="
2441
2442 test_31c() {
2443         touch $DIR/f31 || error "touch $DIR/f31 failed"
2444         ln $DIR/f31 $DIR/f31c || error "ln failed"
2445         multiop_bg_pause $DIR/f31 O_uc ||
2446                 error "multiop_bg_pause for $DIR/f31 failed"
2447         MULTIPID=$!
2448         $MULTIOP $DIR/f31c Ouc
2449         kill -USR1 $MULTIPID
2450         wait $MULTIPID
2451 }
2452 run_test 31c "open-unlink file with multiple links ============="
2453
2454 test_31d() {
2455         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2456         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2457 }
2458 run_test 31d "remove of open directory ========================="
2459
2460 test_31e() { # bug 2904
2461         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2462 }
2463 run_test 31e "remove of open non-empty directory ==============="
2464
2465 test_31f() { # bug 4554
2466         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2467
2468         set -vx
2469         test_mkdir $DIR/d31f
2470         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2471         cp /etc/hosts $DIR/d31f
2472         ls -l $DIR/d31f
2473         $GETSTRIPE $DIR/d31f/hosts
2474         multiop_bg_pause $DIR/d31f D_c || return 1
2475         MULTIPID=$!
2476
2477         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2478         test_mkdir $DIR/d31f
2479         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2480         cp /etc/hosts $DIR/d31f
2481         ls -l $DIR/d31f
2482         $GETSTRIPE $DIR/d31f/hosts
2483         multiop_bg_pause $DIR/d31f D_c || return 1
2484         MULTIPID2=$!
2485
2486         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2487         wait $MULTIPID || error "first opendir $MULTIPID failed"
2488
2489         sleep 6
2490
2491         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2492         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2493         set +vx
2494 }
2495 run_test 31f "remove of open directory with open-unlink file ==="
2496
2497 test_31g() {
2498         echo "-- cross directory link --"
2499         test_mkdir -c1 $DIR/${tdir}ga
2500         test_mkdir -c1 $DIR/${tdir}gb
2501         touch $DIR/${tdir}ga/f
2502         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2503         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2504         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2505         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2506         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2507 }
2508 run_test 31g "cross directory link==============="
2509
2510 test_31h() {
2511         echo "-- cross directory link --"
2512         test_mkdir -c1 $DIR/${tdir}
2513         test_mkdir -c1 $DIR/${tdir}/dir
2514         touch $DIR/${tdir}/f
2515         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2516         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2517         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2518         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2519         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2520 }
2521 run_test 31h "cross directory link under child==============="
2522
2523 test_31i() {
2524         echo "-- cross directory link --"
2525         test_mkdir -c1 $DIR/$tdir
2526         test_mkdir -c1 $DIR/$tdir/dir
2527         touch $DIR/$tdir/dir/f
2528         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2529         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2530         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2531         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2532         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2533 }
2534 run_test 31i "cross directory link under parent==============="
2535
2536 test_31j() {
2537         test_mkdir -c1 -p $DIR/$tdir
2538         test_mkdir -c1 -p $DIR/$tdir/dir1
2539         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2540         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2541         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2542         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2543         return 0
2544 }
2545 run_test 31j "link for directory==============="
2546
2547 test_31k() {
2548         test_mkdir -c1 -p $DIR/$tdir
2549         touch $DIR/$tdir/s
2550         touch $DIR/$tdir/exist
2551         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2552         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2553         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2554         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2555         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2556         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2557         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2558         return 0
2559 }
2560 run_test 31k "link to file: the same, non-existing, dir==============="
2561
2562 test_31m() {
2563         mkdir $DIR/d31m
2564         touch $DIR/d31m/s
2565         mkdir $DIR/d31m2
2566         touch $DIR/d31m2/exist
2567         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2568         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2569         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2570         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2571         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2572         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2573         return 0
2574 }
2575 run_test 31m "link to file: the same, non-existing, dir==============="
2576
2577 test_31n() {
2578         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2579         nlink=$(stat --format=%h $DIR/$tfile)
2580         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2581         local fd=$(free_fd)
2582         local cmd="exec $fd<$DIR/$tfile"
2583         eval $cmd
2584         cmd="exec $fd<&-"
2585         trap "eval $cmd" EXIT
2586         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2587         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2588         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2589         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2590         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2591         eval $cmd
2592 }
2593 run_test 31n "check link count of unlinked file"
2594
2595 link_one() {
2596         local TEMPNAME=$(mktemp $1_XXXXXX)
2597         mlink $TEMPNAME $1 2> /dev/null &&
2598                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2599         munlink $TEMPNAME
2600 }
2601
2602 test_31o() { # LU-2901
2603         test_mkdir $DIR/$tdir
2604         for LOOP in $(seq 100); do
2605                 rm -f $DIR/$tdir/$tfile*
2606                 for THREAD in $(seq 8); do
2607                         link_one $DIR/$tdir/$tfile.$LOOP &
2608                 done
2609                 wait
2610                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2611                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2612                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2613                         break || true
2614         done
2615 }
2616 run_test 31o "duplicate hard links with same filename"
2617
2618 test_31p() {
2619         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2620
2621         test_mkdir $DIR/$tdir
2622         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2623         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2624
2625         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2626                 error "open unlink test1 failed"
2627         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2628                 error "open unlink test2 failed"
2629
2630         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2631                 error "test1 still exists"
2632         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2633                 error "test2 still exists"
2634 }
2635 run_test 31p "remove of open striped directory"
2636
2637 cleanup_test32_mount() {
2638         local rc=0
2639         trap 0
2640         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2641         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2642         losetup -d $loopdev || true
2643         rm -rf $DIR/$tdir
2644         return $rc
2645 }
2646
2647 test_32a() {
2648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2649
2650         echo "== more mountpoints and symlinks ================="
2651         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2652         trap cleanup_test32_mount EXIT
2653         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2654         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2655                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2656         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2657                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2658         cleanup_test32_mount
2659 }
2660 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2661
2662 test_32b() {
2663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2664
2665         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2666         trap cleanup_test32_mount EXIT
2667         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2668         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2669                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2670         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2671                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2672         cleanup_test32_mount
2673 }
2674 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2675
2676 test_32c() {
2677         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2678
2679         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2680         trap cleanup_test32_mount EXIT
2681         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2682         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2683                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2684         test_mkdir -p $DIR/$tdir/d2/test_dir
2685         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2686                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2687         cleanup_test32_mount
2688 }
2689 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2690
2691 test_32d() {
2692         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2693
2694         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2695         trap cleanup_test32_mount EXIT
2696         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2697         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2698                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2699         test_mkdir -p $DIR/$tdir/d2/test_dir
2700         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2701                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2702         cleanup_test32_mount
2703 }
2704 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2705
2706 test_32e() {
2707         rm -fr $DIR/$tdir
2708         test_mkdir -p $DIR/$tdir/tmp
2709         local tmp_dir=$DIR/$tdir/tmp
2710         ln -s $DIR/$tdir $tmp_dir/symlink11
2711         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2712         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2713         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2714 }
2715 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2716
2717 test_32f() {
2718         rm -fr $DIR/$tdir
2719         test_mkdir -p $DIR/$tdir/tmp
2720         local tmp_dir=$DIR/$tdir/tmp
2721         ln -s $DIR/$tdir $tmp_dir/symlink11
2722         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2723         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2724         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2725 }
2726 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2727
2728 test_32g() {
2729         local tmp_dir=$DIR/$tdir/tmp
2730         test_mkdir -p $tmp_dir
2731         test_mkdir $DIR/${tdir}2
2732         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2733         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2734         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2735         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2736         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2737         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2738 }
2739 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2740
2741 test_32h() {
2742         rm -fr $DIR/$tdir $DIR/${tdir}2
2743         tmp_dir=$DIR/$tdir/tmp
2744         test_mkdir -p $tmp_dir
2745         test_mkdir $DIR/${tdir}2
2746         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2747         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2748         ls $tmp_dir/symlink12 || error "listing symlink12"
2749         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2750 }
2751 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2752
2753 test_32i() {
2754         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2755
2756         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2757         trap cleanup_test32_mount EXIT
2758         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2759         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2760                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2761         touch $DIR/$tdir/test_file
2762         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2763                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2764         cleanup_test32_mount
2765 }
2766 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2767
2768 test_32j() {
2769         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2770
2771         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2772         trap cleanup_test32_mount EXIT
2773         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2774         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2775                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2776         touch $DIR/$tdir/test_file
2777         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2778                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2779         cleanup_test32_mount
2780 }
2781 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2782
2783 test_32k() {
2784         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2785
2786         rm -fr $DIR/$tdir
2787         trap cleanup_test32_mount EXIT
2788         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2789         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2790                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2791         test_mkdir -p $DIR/$tdir/d2
2792         touch $DIR/$tdir/d2/test_file || error "touch failed"
2793         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2794                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2795         cleanup_test32_mount
2796 }
2797 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2798
2799 test_32l() {
2800         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2801
2802         rm -fr $DIR/$tdir
2803         trap cleanup_test32_mount EXIT
2804         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2805         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2806                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2807         test_mkdir -p $DIR/$tdir/d2
2808         touch $DIR/$tdir/d2/test_file || error "touch failed"
2809         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2810                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2811         cleanup_test32_mount
2812 }
2813 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2814
2815 test_32m() {
2816         rm -fr $DIR/d32m
2817         test_mkdir -p $DIR/d32m/tmp
2818         TMP_DIR=$DIR/d32m/tmp
2819         ln -s $DIR $TMP_DIR/symlink11
2820         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2821         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2822                 error "symlink11 not a link"
2823         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2824                 error "symlink01 not a link"
2825 }
2826 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2827
2828 test_32n() {
2829         rm -fr $DIR/d32n
2830         test_mkdir -p $DIR/d32n/tmp
2831         TMP_DIR=$DIR/d32n/tmp
2832         ln -s $DIR $TMP_DIR/symlink11
2833         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2834         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2835         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2836 }
2837 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2838
2839 test_32o() {
2840         touch $DIR/$tfile
2841         test_mkdir -p $DIR/d32o/tmp
2842         TMP_DIR=$DIR/d32o/tmp
2843         ln -s $DIR/$tfile $TMP_DIR/symlink12
2844         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2845         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2846                 error "symlink12 not a link"
2847         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2848         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2849                 error "$DIR/d32o/tmp/symlink12 not file type"
2850         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2851                 error "$DIR/d32o/symlink02 not file type"
2852 }
2853 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2854
2855 test_32p() {
2856         log 32p_1
2857         rm -fr $DIR/d32p
2858         log 32p_2
2859         rm -f $DIR/$tfile
2860         log 32p_3
2861         touch $DIR/$tfile
2862         log 32p_4
2863         test_mkdir -p $DIR/d32p/tmp
2864         log 32p_5
2865         TMP_DIR=$DIR/d32p/tmp
2866         log 32p_6
2867         ln -s $DIR/$tfile $TMP_DIR/symlink12
2868         log 32p_7
2869         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2870         log 32p_8
2871         cat $DIR/d32p/tmp/symlink12 ||
2872                 error "Can't open $DIR/d32p/tmp/symlink12"
2873         log 32p_9
2874         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2875         log 32p_10
2876 }
2877 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2878
2879 test_32q() {
2880         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2881
2882         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2883         trap cleanup_test32_mount EXIT
2884         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2885         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2886         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2887                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2888         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2889         cleanup_test32_mount
2890 }
2891 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2892
2893 test_32r() {
2894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2895
2896         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2897         trap cleanup_test32_mount EXIT
2898         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2899         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2900         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2901                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2902         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2903         cleanup_test32_mount
2904 }
2905 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2906
2907 test_33aa() {
2908         rm -f $DIR/$tfile
2909         touch $DIR/$tfile
2910         chmod 444 $DIR/$tfile
2911         chown $RUNAS_ID $DIR/$tfile
2912         log 33_1
2913         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2914         log 33_2
2915 }
2916 run_test 33aa "write file with mode 444 (should return error)"
2917
2918 test_33a() {
2919         rm -fr $DIR/$tdir
2920         test_mkdir $DIR/$tdir
2921         chown $RUNAS_ID $DIR/$tdir
2922         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2923                 error "$RUNAS create $tdir/$tfile failed"
2924         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2925                 error "open RDWR" || true
2926 }
2927 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2928
2929 test_33b() {
2930         rm -fr $DIR/$tdir
2931         test_mkdir $DIR/$tdir
2932         chown $RUNAS_ID $DIR/$tdir
2933         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2934 }
2935 run_test 33b "test open file with malformed flags (No panic)"
2936
2937 test_33c() {
2938         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2939         remote_ost_nodsh && skip "remote OST with nodsh"
2940
2941         local ostnum
2942         local ostname
2943         local write_bytes
2944         local all_zeros
2945
2946         all_zeros=:
2947         rm -fr $DIR/$tdir
2948         test_mkdir $DIR/$tdir
2949         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2950
2951         sync
2952         for ostnum in $(seq $OSTCOUNT); do
2953                 # test-framework's OST numbering is one-based, while Lustre's
2954                 # is zero-based
2955                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2956                 # Parsing llobdstat's output sucks; we could grep the /proc
2957                 # path, but that's likely to not be as portable as using the
2958                 # llobdstat utility.  So we parse lctl output instead.
2959                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2960                         obdfilter/$ostname/stats |
2961                         awk '/^write_bytes/ {print $7}' )
2962                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2963                 if (( ${write_bytes:-0} > 0 ))
2964                 then
2965                         all_zeros=false
2966                         break;
2967                 fi
2968         done
2969
2970         $all_zeros || return 0
2971
2972         # Write four bytes
2973         echo foo > $DIR/$tdir/bar
2974         # Really write them
2975         sync
2976
2977         # Total up write_bytes after writing.  We'd better find non-zeros.
2978         for ostnum in $(seq $OSTCOUNT); do
2979                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2980                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2981                         obdfilter/$ostname/stats |
2982                         awk '/^write_bytes/ {print $7}' )
2983                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2984                 if (( ${write_bytes:-0} > 0 ))
2985                 then
2986                         all_zeros=false
2987                         break;
2988                 fi
2989         done
2990
2991         if $all_zeros
2992         then
2993                 for ostnum in $(seq $OSTCOUNT); do
2994                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2995                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2996                         do_facet ost$ostnum lctl get_param -n \
2997                                 obdfilter/$ostname/stats
2998                 done
2999                 error "OST not keeping write_bytes stats (b22312)"
3000         fi
3001 }
3002 run_test 33c "test llobdstat and write_bytes"
3003
3004 test_33d() {
3005         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3007
3008         local MDTIDX=1
3009         local remote_dir=$DIR/$tdir/remote_dir
3010
3011         test_mkdir $DIR/$tdir
3012         $LFS mkdir -i $MDTIDX $remote_dir ||
3013                 error "create remote directory failed"
3014
3015         touch $remote_dir/$tfile
3016         chmod 444 $remote_dir/$tfile
3017         chown $RUNAS_ID $remote_dir/$tfile
3018
3019         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3020
3021         chown $RUNAS_ID $remote_dir
3022         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3023                                         error "create" || true
3024         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3025                                     error "open RDWR" || true
3026         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3027 }
3028 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3029
3030 test_33e() {
3031         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3032
3033         mkdir $DIR/$tdir
3034
3035         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3036         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3037         mkdir $DIR/$tdir/local_dir
3038
3039         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3040         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3041         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3042
3043         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3044                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3045
3046         rmdir $DIR/$tdir/* || error "rmdir failed"
3047
3048         umask 777
3049         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3050         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3051         mkdir $DIR/$tdir/local_dir
3052
3053         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3054         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3055         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3056
3057         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3058                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3059
3060         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3061
3062         umask 000
3063         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3064         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3065         mkdir $DIR/$tdir/local_dir
3066
3067         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3068         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3069         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3070
3071         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3072                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3073 }
3074 run_test 33e "mkdir and striped directory should have same mode"
3075
3076 cleanup_33f() {
3077         trap 0
3078         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3079 }
3080
3081 test_33f() {
3082         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3083         remote_mds_nodsh && skip "remote MDS with nodsh"
3084
3085         mkdir $DIR/$tdir
3086         chmod go+rwx $DIR/$tdir
3087         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3088         trap cleanup_33f EXIT
3089
3090         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3091                 error "cannot create striped directory"
3092
3093         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3094                 error "cannot create files in striped directory"
3095
3096         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3097                 error "cannot remove files in striped directory"
3098
3099         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3100                 error "cannot remove striped directory"
3101
3102         cleanup_33f
3103 }
3104 run_test 33f "nonroot user can create, access, and remove a striped directory"
3105
3106 test_33g() {
3107         mkdir -p $DIR/$tdir/dir2
3108
3109         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3110         echo $err
3111         [[ $err =~ "exists" ]] || error "Not exists error"
3112 }
3113 run_test 33g "nonroot user create already existing root created file"
3114
3115 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3116 test_34a() {
3117         rm -f $DIR/f34
3118         $MCREATE $DIR/f34 || error "mcreate failed"
3119         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3120                 error "getstripe failed"
3121         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3122         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3123                 error "getstripe failed"
3124         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3125                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3126 }
3127 run_test 34a "truncate file that has not been opened ==========="
3128
3129 test_34b() {
3130         [ ! -f $DIR/f34 ] && test_34a
3131         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3132                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3133         $OPENFILE -f O_RDONLY $DIR/f34
3134         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" ||
3135                 error "getstripe failed"
3136         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3137                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3138 }
3139 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3140
3141 test_34c() {
3142         [ ! -f $DIR/f34 ] && test_34a
3143         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3144                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3145         $OPENFILE -f O_RDWR $DIR/f34
3146         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
3147         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3148                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3149 }
3150 run_test 34c "O_RDWR opening file-with-size works =============="
3151
3152 test_34d() {
3153         [ ! -f $DIR/f34 ] && test_34a
3154         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3155                 error "dd failed"
3156         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3157                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3158         rm $DIR/f34
3159 }
3160 run_test 34d "write to sparse file ============================="
3161
3162 test_34e() {
3163         rm -f $DIR/f34e
3164         $MCREATE $DIR/f34e || error "mcreate failed"
3165         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3166         $CHECKSTAT -s 1000 $DIR/f34e ||
3167                 error "Size of $DIR/f34e not equal to 1000 bytes"
3168         $OPENFILE -f O_RDWR $DIR/f34e
3169         $CHECKSTAT -s 1000 $DIR/f34e ||
3170                 error "Size of $DIR/f34e not equal to 1000 bytes"
3171 }
3172 run_test 34e "create objects, some with size and some without =="
3173
3174 test_34f() { # bug 6242, 6243
3175         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3176
3177         SIZE34F=48000
3178         rm -f $DIR/f34f
3179         $MCREATE $DIR/f34f || error "mcreate failed"
3180         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3181         dd if=$DIR/f34f of=$TMP/f34f
3182         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3183         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3184         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3185         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3186         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3187 }
3188 run_test 34f "read from a file with no objects until EOF ======="
3189
3190 test_34g() {
3191         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3192
3193         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3194                 error "dd failed"
3195         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3196         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3197                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3198         cancel_lru_locks osc
3199         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3200                 error "wrong size after lock cancel"
3201
3202         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3203         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3204                 error "expanding truncate failed"
3205         cancel_lru_locks osc
3206         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3207                 error "wrong expanded size after lock cancel"
3208 }
3209 run_test 34g "truncate long file ==============================="
3210
3211 test_34h() {
3212         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3213
3214         local gid=10
3215         local sz=1000
3216
3217         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3218         sync # Flush the cache so that multiop below does not block on cache
3219              # flush when getting the group lock
3220         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3221         MULTIPID=$!
3222
3223         # Since just timed wait is not good enough, let's do a sync write
3224         # that way we are sure enough time for a roundtrip + processing
3225         # passed + 2 seconds of extra margin.
3226         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3227         rm $DIR/${tfile}-1
3228         sleep 2
3229
3230         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3231                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3232                 kill -9 $MULTIPID
3233         fi
3234         wait $MULTIPID
3235         local nsz=`stat -c %s $DIR/$tfile`
3236         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3237 }
3238 run_test 34h "ftruncate file under grouplock should not block"
3239
3240 test_35a() {
3241         cp /bin/sh $DIR/f35a
3242         chmod 444 $DIR/f35a
3243         chown $RUNAS_ID $DIR/f35a
3244         $RUNAS $DIR/f35a && error || true
3245         rm $DIR/f35a
3246 }
3247 run_test 35a "exec file with mode 444 (should return and not leak)"
3248
3249 test_36a() {
3250         rm -f $DIR/f36
3251         utime $DIR/f36 || error "utime failed for MDS"
3252 }
3253 run_test 36a "MDS utime check (mknod, utime)"
3254
3255 test_36b() {
3256         echo "" > $DIR/f36
3257         utime $DIR/f36 || error "utime failed for OST"
3258 }
3259 run_test 36b "OST utime check (open, utime)"
3260
3261 test_36c() {
3262         rm -f $DIR/d36/f36
3263         test_mkdir $DIR/d36
3264         chown $RUNAS_ID $DIR/d36
3265         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3266 }
3267 run_test 36c "non-root MDS utime check (mknod, utime)"
3268
3269 test_36d() {
3270         [ ! -d $DIR/d36 ] && test_36c
3271         echo "" > $DIR/d36/f36
3272         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3273 }
3274 run_test 36d "non-root OST utime check (open, utime)"
3275
3276 test_36e() {
3277         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3278
3279         test_mkdir $DIR/$tdir
3280         touch $DIR/$tdir/$tfile
3281         $RUNAS utime $DIR/$tdir/$tfile &&
3282                 error "utime worked, expected failure" || true
3283 }
3284 run_test 36e "utime on non-owned file (should return error)"
3285
3286 subr_36fh() {
3287         local fl="$1"
3288         local LANG_SAVE=$LANG
3289         local LC_LANG_SAVE=$LC_LANG
3290         export LANG=C LC_LANG=C # for date language
3291
3292         DATESTR="Dec 20  2000"
3293         test_mkdir $DIR/$tdir
3294         lctl set_param fail_loc=$fl
3295         date; date +%s
3296         cp /etc/hosts $DIR/$tdir/$tfile
3297         sync & # write RPC generated with "current" inode timestamp, but delayed
3298         sleep 1
3299         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3300         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3301         cancel_lru_locks osc
3302         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3303         date; date +%s
3304         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3305                 echo "BEFORE: $LS_BEFORE" && \
3306                 echo "AFTER : $LS_AFTER" && \
3307                 echo "WANT  : $DATESTR" && \
3308                 error "$DIR/$tdir/$tfile timestamps changed" || true
3309
3310         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3311 }
3312
3313 test_36f() {
3314         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3315
3316         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3317         subr_36fh "0x80000214"
3318 }
3319 run_test 36f "utime on file racing with OST BRW write =========="
3320
3321 test_36g() {
3322         remote_ost_nodsh && skip "remote OST with nodsh"
3323         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3324
3325         local fmd_max_age
3326         local fmd_before
3327         local fmd_after
3328
3329         test_mkdir $DIR/$tdir
3330         fmd_max_age=$(do_facet ost1 \
3331                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3332                 head -n 1")
3333
3334         fmd_before=$(do_facet ost1 \
3335                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3336         touch $DIR/$tdir/$tfile
3337         sleep $((fmd_max_age + 12))
3338         fmd_after=$(do_facet ost1 \
3339                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3340
3341         echo "fmd_before: $fmd_before"
3342         echo "fmd_after: $fmd_after"
3343         [[ $fmd_after -gt $fmd_before ]] &&
3344                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3345                 error "fmd didn't expire after ping" || true
3346 }
3347 run_test 36g "filter mod data cache expiry ====================="
3348
3349 test_36h() {
3350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3351
3352         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3353         subr_36fh "0x80000227"
3354 }
3355 run_test 36h "utime on file racing with OST BRW write =========="
3356
3357 test_36i() {
3358         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3359
3360         test_mkdir $DIR/$tdir
3361         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3362
3363         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3364         local new_mtime=$((mtime + 200))
3365
3366         #change Modify time of striped dir
3367         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3368                         error "change mtime failed"
3369
3370         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3371
3372         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3373 }
3374 run_test 36i "change mtime on striped directory"
3375
3376 # test_37 - duplicate with tests 32q 32r
3377
3378 test_38() {
3379         local file=$DIR/$tfile
3380         touch $file
3381         openfile -f O_DIRECTORY $file
3382         local RC=$?
3383         local ENOTDIR=20
3384         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3385         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3386 }
3387 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3388
3389 test_39a() { # was test_39
3390         touch $DIR/$tfile
3391         touch $DIR/${tfile}2
3392 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3393 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3394 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3395         sleep 2
3396         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3397         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3398                 echo "mtime"
3399                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3400                 echo "atime"
3401                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3402                 echo "ctime"
3403                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3404                 error "O_TRUNC didn't change timestamps"
3405         fi
3406 }
3407 run_test 39a "mtime changed on create"
3408
3409 test_39b() {
3410         test_mkdir -c1 $DIR/$tdir
3411         cp -p /etc/passwd $DIR/$tdir/fopen
3412         cp -p /etc/passwd $DIR/$tdir/flink
3413         cp -p /etc/passwd $DIR/$tdir/funlink
3414         cp -p /etc/passwd $DIR/$tdir/frename
3415         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3416
3417         sleep 1
3418         echo "aaaaaa" >> $DIR/$tdir/fopen
3419         echo "aaaaaa" >> $DIR/$tdir/flink
3420         echo "aaaaaa" >> $DIR/$tdir/funlink
3421         echo "aaaaaa" >> $DIR/$tdir/frename
3422
3423         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3424         local link_new=`stat -c %Y $DIR/$tdir/flink`
3425         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3426         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3427
3428         cat $DIR/$tdir/fopen > /dev/null
3429         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3430         rm -f $DIR/$tdir/funlink2
3431         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3432
3433         for (( i=0; i < 2; i++ )) ; do
3434                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3435                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3436                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3437                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3438
3439                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3440                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3441                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3442                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3443
3444                 cancel_lru_locks osc
3445                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3446         done
3447 }
3448 run_test 39b "mtime change on open, link, unlink, rename  ======"
3449
3450 # this should be set to past
3451 TEST_39_MTIME=`date -d "1 year ago" +%s`
3452
3453 # bug 11063
3454 test_39c() {
3455         touch $DIR1/$tfile
3456         sleep 2
3457         local mtime0=`stat -c %Y $DIR1/$tfile`
3458
3459         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3460         local mtime1=`stat -c %Y $DIR1/$tfile`
3461         [ "$mtime1" = $TEST_39_MTIME ] || \
3462                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3463
3464         local d1=`date +%s`
3465         echo hello >> $DIR1/$tfile
3466         local d2=`date +%s`
3467         local mtime2=`stat -c %Y $DIR1/$tfile`
3468         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3469                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3470
3471         mv $DIR1/$tfile $DIR1/$tfile-1
3472
3473         for (( i=0; i < 2; i++ )) ; do
3474                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3475                 [ "$mtime2" = "$mtime3" ] || \
3476                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3477
3478                 cancel_lru_locks osc
3479                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3480         done
3481 }
3482 run_test 39c "mtime change on rename ==========================="
3483
3484 # bug 21114
3485 test_39d() {
3486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3487
3488         touch $DIR1/$tfile
3489         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3490
3491         for (( i=0; i < 2; i++ )) ; do
3492                 local mtime=`stat -c %Y $DIR1/$tfile`
3493                 [ $mtime = $TEST_39_MTIME ] || \
3494                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3495
3496                 cancel_lru_locks osc
3497                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3498         done
3499 }
3500 run_test 39d "create, utime, stat =============================="
3501
3502 # bug 21114
3503 test_39e() {
3504         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3505
3506         touch $DIR1/$tfile
3507         local mtime1=`stat -c %Y $DIR1/$tfile`
3508
3509         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3510
3511         for (( i=0; i < 2; i++ )) ; do
3512                 local mtime2=`stat -c %Y $DIR1/$tfile`
3513                 [ $mtime2 = $TEST_39_MTIME ] || \
3514                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3515
3516                 cancel_lru_locks osc
3517                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3518         done
3519 }
3520 run_test 39e "create, stat, utime, stat ========================"
3521
3522 # bug 21114
3523 test_39f() {
3524         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3525
3526         touch $DIR1/$tfile
3527         mtime1=`stat -c %Y $DIR1/$tfile`
3528
3529         sleep 2
3530         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3531
3532         for (( i=0; i < 2; i++ )) ; do
3533                 local mtime2=`stat -c %Y $DIR1/$tfile`
3534                 [ $mtime2 = $TEST_39_MTIME ] || \
3535                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3536
3537                 cancel_lru_locks osc
3538                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3539         done
3540 }
3541 run_test 39f "create, stat, sleep, utime, stat ================="
3542
3543 # bug 11063
3544 test_39g() {
3545         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3546
3547         echo hello >> $DIR1/$tfile
3548         local mtime1=`stat -c %Y $DIR1/$tfile`
3549
3550         sleep 2
3551         chmod o+r $DIR1/$tfile
3552
3553         for (( i=0; i < 2; i++ )) ; do
3554                 local mtime2=`stat -c %Y $DIR1/$tfile`
3555                 [ "$mtime1" = "$mtime2" ] || \
3556                         error "lost mtime: $mtime2, should be $mtime1"
3557
3558                 cancel_lru_locks osc
3559                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3560         done
3561 }
3562 run_test 39g "write, chmod, stat ==============================="
3563
3564 # bug 11063
3565 test_39h() {
3566         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3567
3568         touch $DIR1/$tfile
3569         sleep 1
3570
3571         local d1=`date`
3572         echo hello >> $DIR1/$tfile
3573         local mtime1=`stat -c %Y $DIR1/$tfile`
3574
3575         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3576         local d2=`date`
3577         if [ "$d1" != "$d2" ]; then
3578                 echo "write and touch not within one second"
3579         else
3580                 for (( i=0; i < 2; i++ )) ; do
3581                         local mtime2=`stat -c %Y $DIR1/$tfile`
3582                         [ "$mtime2" = $TEST_39_MTIME ] || \
3583                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3584
3585                         cancel_lru_locks osc
3586                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3587                 done
3588         fi
3589 }
3590 run_test 39h "write, utime within one second, stat ============="
3591
3592 test_39i() {
3593         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3594
3595         touch $DIR1/$tfile
3596         sleep 1
3597
3598         echo hello >> $DIR1/$tfile
3599         local mtime1=`stat -c %Y $DIR1/$tfile`
3600
3601         mv $DIR1/$tfile $DIR1/$tfile-1
3602
3603         for (( i=0; i < 2; i++ )) ; do
3604                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3605
3606                 [ "$mtime1" = "$mtime2" ] || \
3607                         error "lost mtime: $mtime2, should be $mtime1"
3608
3609                 cancel_lru_locks osc
3610                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3611         done
3612 }
3613 run_test 39i "write, rename, stat =============================="
3614
3615 test_39j() {
3616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3617
3618         start_full_debug_logging
3619         touch $DIR1/$tfile
3620         sleep 1
3621
3622         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3623         lctl set_param fail_loc=0x80000412
3624         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3625                 error "multiop failed"
3626         local multipid=$!
3627         local mtime1=`stat -c %Y $DIR1/$tfile`
3628
3629         mv $DIR1/$tfile $DIR1/$tfile-1
3630
3631         kill -USR1 $multipid
3632         wait $multipid || error "multiop close failed"
3633
3634         for (( i=0; i < 2; i++ )) ; do
3635                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3636                 [ "$mtime1" = "$mtime2" ] ||
3637                         error "mtime is lost on close: $mtime2, " \
3638                               "should be $mtime1"
3639
3640                 cancel_lru_locks osc
3641                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3642         done
3643         lctl set_param fail_loc=0
3644         stop_full_debug_logging
3645 }
3646 run_test 39j "write, rename, close, stat ======================="
3647
3648 test_39k() {
3649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3650
3651         touch $DIR1/$tfile
3652         sleep 1
3653
3654         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3655         local multipid=$!
3656         local mtime1=`stat -c %Y $DIR1/$tfile`
3657
3658         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3659
3660         kill -USR1 $multipid
3661         wait $multipid || error "multiop close failed"
3662
3663         for (( i=0; i < 2; i++ )) ; do
3664                 local mtime2=`stat -c %Y $DIR1/$tfile`
3665
3666                 [ "$mtime2" = $TEST_39_MTIME ] || \
3667                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3668
3669                 cancel_lru_locks osc
3670                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3671         done
3672 }
3673 run_test 39k "write, utime, close, stat ========================"
3674
3675 # this should be set to future
3676 TEST_39_ATIME=`date -d "1 year" +%s`
3677
3678 test_39l() {
3679         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3680         remote_mds_nodsh && skip "remote MDS with nodsh"
3681
3682         local atime_diff=$(do_facet $SINGLEMDS \
3683                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3684         rm -rf $DIR/$tdir
3685         mkdir -p $DIR/$tdir
3686
3687         # test setting directory atime to future
3688         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3689         local atime=$(stat -c %X $DIR/$tdir)
3690         [ "$atime" = $TEST_39_ATIME ] ||
3691                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3692
3693         # test setting directory atime from future to now
3694         local now=$(date +%s)
3695         touch -a -d @$now $DIR/$tdir
3696
3697         atime=$(stat -c %X $DIR/$tdir)
3698         [ "$atime" -eq "$now"  ] ||
3699                 error "atime is not updated from future: $atime, $now"
3700
3701         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3702         sleep 3
3703
3704         # test setting directory atime when now > dir atime + atime_diff
3705         local d1=$(date +%s)
3706         ls $DIR/$tdir
3707         local d2=$(date +%s)
3708         cancel_lru_locks mdc
3709         atime=$(stat -c %X $DIR/$tdir)
3710         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3711                 error "atime is not updated  : $atime, should be $d2"
3712
3713         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3714         sleep 3
3715
3716         # test not setting directory atime when now < dir atime + atime_diff
3717         ls $DIR/$tdir
3718         cancel_lru_locks mdc
3719         atime=$(stat -c %X $DIR/$tdir)
3720         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3721                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3722
3723         do_facet $SINGLEMDS \
3724                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3725 }
3726 run_test 39l "directory atime update ==========================="
3727
3728 test_39m() {
3729         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3730
3731         touch $DIR1/$tfile
3732         sleep 2
3733         local far_past_mtime=$(date -d "May 29 1953" +%s)
3734         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3735
3736         touch -m -d @$far_past_mtime $DIR1/$tfile
3737         touch -a -d @$far_past_atime $DIR1/$tfile
3738
3739         for (( i=0; i < 2; i++ )) ; do
3740                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3741                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3742                         error "atime or mtime set incorrectly"
3743
3744                 cancel_lru_locks osc
3745                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3746         done
3747 }
3748 run_test 39m "test atime and mtime before 1970"
3749
3750 test_39n() { # LU-3832
3751         remote_mds_nodsh && skip "remote MDS with nodsh"
3752
3753         local atime_diff=$(do_facet $SINGLEMDS \
3754                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3755         local atime0
3756         local atime1
3757         local atime2
3758
3759         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3760
3761         rm -rf $DIR/$tfile
3762         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3763         atime0=$(stat -c %X $DIR/$tfile)
3764
3765         sleep 5
3766         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3767         atime1=$(stat -c %X $DIR/$tfile)
3768
3769         sleep 5
3770         cancel_lru_locks mdc
3771         cancel_lru_locks osc
3772         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3773         atime2=$(stat -c %X $DIR/$tfile)
3774
3775         do_facet $SINGLEMDS \
3776                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3777
3778         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3779         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3780 }
3781 run_test 39n "check that O_NOATIME is honored"
3782
3783 test_39o() {
3784         TESTDIR=$DIR/$tdir/$tfile
3785         [ -e $TESTDIR ] && rm -rf $TESTDIR
3786         mkdir -p $TESTDIR
3787         cd $TESTDIR
3788         links1=2
3789         ls
3790         mkdir a b
3791         ls
3792         links2=$(stat -c %h .)
3793         [ $(($links1 + 2)) != $links2 ] &&
3794                 error "wrong links count $(($links1 + 2)) != $links2"
3795         rmdir b
3796         links3=$(stat -c %h .)
3797         [ $(($links1 + 1)) != $links3 ] &&
3798                 error "wrong links count $links1 != $links3"
3799         return 0
3800 }
3801 run_test 39o "directory cached attributes updated after create"
3802
3803 test_39p() {
3804         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3805
3806         local MDTIDX=1
3807         TESTDIR=$DIR/$tdir/$tdir
3808         [ -e $TESTDIR ] && rm -rf $TESTDIR
3809         test_mkdir -p $TESTDIR
3810         cd $TESTDIR
3811         links1=2
3812         ls
3813         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3814         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3815         ls
3816         links2=$(stat -c %h .)
3817         [ $(($links1 + 2)) != $links2 ] &&
3818                 error "wrong links count $(($links1 + 2)) != $links2"
3819         rmdir remote_dir2
3820         links3=$(stat -c %h .)
3821         [ $(($links1 + 1)) != $links3 ] &&
3822                 error "wrong links count $links1 != $links3"
3823         return 0
3824 }
3825 run_test 39p "remote directory cached attributes updated after create ========"
3826
3827
3828 test_39q() { # LU-8041
3829         local testdir=$DIR/$tdir
3830         mkdir -p $testdir
3831         multiop_bg_pause $testdir D_c || error "multiop failed"
3832         local multipid=$!
3833         cancel_lru_locks mdc
3834         kill -USR1 $multipid
3835         local atime=$(stat -c %X $testdir)
3836         [ "$atime" -ne 0 ] || error "atime is zero"
3837 }
3838 run_test 39q "close won't zero out atime"
3839
3840 test_40() {
3841         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3842         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3843                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3844         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3845                 error "$tfile is not 4096 bytes in size"
3846 }
3847 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3848
3849 test_41() {
3850         # bug 1553
3851         small_write $DIR/f41 18
3852 }
3853 run_test 41 "test small file write + fstat ====================="
3854
3855 count_ost_writes() {
3856         lctl get_param -n ${OSC}.*.stats |
3857                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3858                         END { printf("%0.0f", writes) }'
3859 }
3860
3861 # decent default
3862 WRITEBACK_SAVE=500
3863 DIRTY_RATIO_SAVE=40
3864 MAX_DIRTY_RATIO=50
3865 BG_DIRTY_RATIO_SAVE=10
3866 MAX_BG_DIRTY_RATIO=25
3867
3868 start_writeback() {
3869         trap 0
3870         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3871         # dirty_ratio, dirty_background_ratio
3872         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3873                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3874                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3875                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3876         else
3877                 # if file not here, we are a 2.4 kernel
3878                 kill -CONT `pidof kupdated`
3879         fi
3880 }
3881
3882 stop_writeback() {
3883         # setup the trap first, so someone cannot exit the test at the
3884         # exact wrong time and mess up a machine
3885         trap start_writeback EXIT
3886         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3887         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3888                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3889                 sysctl -w vm.dirty_writeback_centisecs=0
3890                 sysctl -w vm.dirty_writeback_centisecs=0
3891                 # save and increase /proc/sys/vm/dirty_ratio
3892                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3893                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3894                 # save and increase /proc/sys/vm/dirty_background_ratio
3895                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3896                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3897         else
3898                 # if file not here, we are a 2.4 kernel
3899                 kill -STOP `pidof kupdated`
3900         fi
3901 }
3902
3903 # ensure that all stripes have some grant before we test client-side cache
3904 setup_test42() {
3905         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3906                 dd if=/dev/zero of=$i bs=4k count=1
3907                 rm $i
3908         done
3909 }
3910
3911 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3912 # file truncation, and file removal.
3913 test_42a() {
3914         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3915
3916         setup_test42
3917         cancel_lru_locks $OSC
3918         stop_writeback
3919         sync; sleep 1; sync # just to be safe
3920         BEFOREWRITES=`count_ost_writes`
3921         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3922         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3923         AFTERWRITES=`count_ost_writes`
3924         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3925                 error "$BEFOREWRITES < $AFTERWRITES"
3926         start_writeback
3927 }
3928 run_test 42a "ensure that we don't flush on close"
3929
3930 test_42b() {
3931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3932
3933         setup_test42
3934         cancel_lru_locks $OSC
3935         stop_writeback
3936         sync
3937         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3938         BEFOREWRITES=$(count_ost_writes)
3939         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3940         AFTERWRITES=$(count_ost_writes)
3941         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3942                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3943         fi
3944         BEFOREWRITES=$(count_ost_writes)
3945         sync || error "sync: $?"
3946         AFTERWRITES=$(count_ost_writes)
3947         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3948                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3949         fi
3950         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3951         start_writeback
3952         return 0
3953 }
3954 run_test 42b "test destroy of file with cached dirty data ======"
3955
3956 # if these tests just want to test the effect of truncation,
3957 # they have to be very careful.  consider:
3958 # - the first open gets a {0,EOF}PR lock
3959 # - the first write conflicts and gets a {0, count-1}PW
3960 # - the rest of the writes are under {count,EOF}PW
3961 # - the open for truncate tries to match a {0,EOF}PR
3962 #   for the filesize and cancels the PWs.
3963 # any number of fixes (don't get {0,EOF} on open, match
3964 # composite locks, do smarter file size management) fix
3965 # this, but for now we want these tests to verify that
3966 # the cancellation with truncate intent works, so we
3967 # start the file with a full-file pw lock to match against
3968 # until the truncate.
3969 trunc_test() {
3970         test=$1
3971         file=$DIR/$test
3972         offset=$2
3973         cancel_lru_locks $OSC
3974         stop_writeback
3975         # prime the file with 0,EOF PW to match
3976         touch $file
3977         $TRUNCATE $file 0
3978         sync; sync
3979         # now the real test..
3980         dd if=/dev/zero of=$file bs=1024 count=100
3981         BEFOREWRITES=`count_ost_writes`
3982         $TRUNCATE $file $offset
3983         cancel_lru_locks $OSC
3984         AFTERWRITES=`count_ost_writes`
3985         start_writeback
3986 }
3987
3988 test_42c() {
3989         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3990
3991         trunc_test 42c 1024
3992         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
3993                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3994         rm $file
3995 }
3996 run_test 42c "test partial truncate of file with cached dirty data"
3997
3998 test_42d() {
3999         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4000
4001         trunc_test 42d 0
4002         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
4003                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
4004         rm $file
4005 }
4006 run_test 42d "test complete truncate of file with cached dirty data"
4007
4008 test_42e() { # bug22074
4009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4010
4011         local TDIR=$DIR/${tdir}e
4012         local pages=16 # hardcoded 16 pages, don't change it.
4013         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
4014         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
4015         local max_dirty_mb
4016         local warmup_files
4017
4018         test_mkdir $DIR/${tdir}e
4019         $SETSTRIPE -c 1 $TDIR
4020         createmany -o $TDIR/f $files
4021
4022         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4023
4024         # we assume that with $OSTCOUNT files, at least one of them will
4025         # be allocated on OST0.
4026         warmup_files=$((OSTCOUNT * max_dirty_mb))
4027         createmany -o $TDIR/w $warmup_files
4028
4029         # write a large amount of data into one file and sync, to get good
4030         # avail_grant number from OST.
4031         for ((i=0; i<$warmup_files; i++)); do
4032                 idx=$($GETSTRIPE -i $TDIR/w$i)
4033                 [ $idx -ne 0 ] && continue
4034                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4035                 break
4036         done
4037         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4038         sync
4039         $LCTL get_param $proc_osc0/cur_dirty_bytes
4040         $LCTL get_param $proc_osc0/cur_grant_bytes
4041
4042         # create as much dirty pages as we can while not to trigger the actual
4043         # RPCs directly. but depends on the env, VFS may trigger flush during this
4044         # period, hopefully we are good.
4045         for ((i=0; i<$warmup_files; i++)); do
4046                 idx=$($GETSTRIPE -i $TDIR/w$i)
4047                 [ $idx -ne 0 ] && continue
4048                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4049         done
4050         $LCTL get_param $proc_osc0/cur_dirty_bytes
4051         $LCTL get_param $proc_osc0/cur_grant_bytes
4052
4053         # perform the real test
4054         $LCTL set_param $proc_osc0/rpc_stats 0
4055         for ((;i<$files; i++)); do
4056                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
4057                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4058         done
4059         sync
4060         $LCTL get_param $proc_osc0/rpc_stats
4061
4062         local percent=0
4063         local have_ppr=false
4064         $LCTL get_param $proc_osc0/rpc_stats |
4065                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4066                         # skip lines until we are at the RPC histogram data
4067                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4068                         $have_ppr || continue
4069
4070                         # we only want the percent stat for < 16 pages
4071                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4072
4073                         percent=$((percent + WPCT))
4074                         if [[ $percent -gt 15 ]]; then
4075                                 error "less than 16-pages write RPCs" \
4076                                       "$percent% > 15%"
4077                                 break
4078                         fi
4079                 done
4080         rm -rf $TDIR
4081 }
4082 run_test 42e "verify sub-RPC writes are not done synchronously"
4083
4084 test_43A() { # was test_43
4085         test_mkdir $DIR/$tdir
4086         cp -p /bin/ls $DIR/$tdir/$tfile
4087         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4088         pid=$!
4089         # give multiop a chance to open
4090         sleep 1
4091
4092         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4093         kill -USR1 $pid
4094 }
4095 run_test 43A "execution of file opened for write should return -ETXTBSY"
4096
4097 test_43a() {
4098         test_mkdir $DIR/$tdir
4099         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4100                 cp -p multiop $DIR/$tdir/multiop
4101         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4102                 error "multiop open $TMP/$tfile.junk failed"
4103         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4104         MULTIOP_PID=$!
4105         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4106         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4107         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4108 }
4109 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4110
4111 test_43b() {
4112         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4113
4114         test_mkdir $DIR/$tdir
4115         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4116                 cp -p multiop $DIR/$tdir/multiop
4117         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4118                 error "multiop open $TMP/$tfile.junk failed"
4119         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4120         MULTIOP_PID=$!
4121         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4122         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4123         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4124 }
4125 run_test 43b "truncate of file being executed should return -ETXTBSY"
4126
4127 test_43c() {
4128         local testdir="$DIR/$tdir"
4129         test_mkdir $testdir
4130         cp $SHELL $testdir/
4131         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4132                 ( cd $testdir && md5sum -c )
4133 }
4134 run_test 43c "md5sum of copy into lustre"
4135
4136 test_44A() { # was test_44
4137         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4138
4139         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4140         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4141 }
4142 run_test 44A "zero length read from a sparse stripe"
4143
4144 test_44a() {
4145         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4146                 awk '{ print $2 }')
4147         [ -z "$nstripe" ] && skip "can't get stripe info"
4148         [[ $nstripe -gt $OSTCOUNT ]] &&
4149                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4150
4151         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4152                 awk '{ print $2 }')
4153         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4154                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4155                         awk '{ print $2 }')
4156         fi
4157
4158         OFFSETS="0 $((stride/2)) $((stride-1))"
4159         for offset in $OFFSETS; do
4160                 for i in $(seq 0 $((nstripe-1))); do
4161                         local GLOBALOFFSETS=""
4162                         # size in Bytes
4163                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4164                         local myfn=$DIR/d44a-$size
4165                         echo "--------writing $myfn at $size"
4166                         ll_sparseness_write $myfn $size ||
4167                                 error "ll_sparseness_write"
4168                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4169                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4170                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4171
4172                         for j in $(seq 0 $((nstripe-1))); do
4173                                 # size in Bytes
4174                                 size=$((((j + $nstripe )*$stride + $offset)))
4175                                 ll_sparseness_write $myfn $size ||
4176                                         error "ll_sparseness_write"
4177                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4178                         done
4179                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4180                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4181                         rm -f $myfn
4182                 done
4183         done
4184 }
4185 run_test 44a "test sparse pwrite ==============================="
4186
4187 dirty_osc_total() {
4188         tot=0
4189         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4190                 tot=$(($tot + $d))
4191         done
4192         echo $tot
4193 }
4194 do_dirty_record() {
4195         before=`dirty_osc_total`
4196         echo executing "\"$*\""
4197         eval $*
4198         after=`dirty_osc_total`
4199         echo before $before, after $after
4200 }
4201 test_45() {
4202         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4203
4204         f="$DIR/f45"
4205         # Obtain grants from OST if it supports it
4206         echo blah > ${f}_grant
4207         stop_writeback
4208         sync
4209         do_dirty_record "echo blah > $f"
4210         [[ $before -eq $after ]] && error "write wasn't cached"
4211         do_dirty_record "> $f"
4212         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4213         do_dirty_record "echo blah > $f"
4214         [[ $before -eq $after ]] && error "write wasn't cached"
4215         do_dirty_record "sync"
4216         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4217         do_dirty_record "echo blah > $f"
4218         [[ $before -eq $after ]] && error "write wasn't cached"
4219         do_dirty_record "cancel_lru_locks osc"
4220         [[ $before -gt $after ]] ||
4221                 error "lock cancellation didn't lower dirty count"
4222         start_writeback
4223 }
4224 run_test 45 "osc io page accounting ============================"
4225
4226 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4227 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4228 # objects offset and an assert hit when an rpc was built with 1023's mapped
4229 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4230 test_46() {
4231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4232
4233         f="$DIR/f46"
4234         stop_writeback
4235         sync
4236         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4237         sync
4238         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4239         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4240         sync
4241         start_writeback
4242 }
4243 run_test 46 "dirtying a previously written page ================"
4244
4245 # test_47 is removed "Device nodes check" is moved to test_28
4246
4247 test_48a() { # bug 2399
4248         [ "$mds1_FSTYPE" = "zfs" ] &&
4249         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4250                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4251
4252         test_mkdir $DIR/$tdir
4253         cd $DIR/$tdir
4254         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4255         test_mkdir $DIR/$tdir
4256         touch foo || error "'touch foo' failed after recreating cwd"
4257         test_mkdir bar
4258         touch .foo || error "'touch .foo' failed after recreating cwd"
4259         test_mkdir .bar
4260         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4261         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4262         cd . || error "'cd .' failed after recreating cwd"
4263         mkdir . && error "'mkdir .' worked after recreating cwd"
4264         rmdir . && error "'rmdir .' worked after recreating cwd"
4265         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4266         cd .. || error "'cd ..' failed after recreating cwd"
4267 }
4268 run_test 48a "Access renamed working dir (should return errors)="
4269
4270 test_48b() { # bug 2399
4271         rm -rf $DIR/$tdir
4272         test_mkdir $DIR/$tdir
4273         cd $DIR/$tdir
4274         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4275         touch foo && error "'touch foo' worked after removing cwd"
4276         mkdir foo && error "'mkdir foo' worked after removing cwd"
4277         touch .foo && error "'touch .foo' worked after removing cwd"
4278         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4279         ls . > /dev/null && error "'ls .' worked after removing cwd"
4280         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4281         mkdir . && error "'mkdir .' worked after removing cwd"
4282         rmdir . && error "'rmdir .' worked after removing cwd"
4283         ln -s . foo && error "'ln -s .' worked after removing cwd"
4284         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4285 }
4286 run_test 48b "Access removed working dir (should return errors)="
4287
4288 test_48c() { # bug 2350
4289         #lctl set_param debug=-1
4290         #set -vx
4291         rm -rf $DIR/$tdir
4292         test_mkdir -p $DIR/$tdir/dir
4293         cd $DIR/$tdir/dir
4294         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4295         $TRACE touch foo && error "touch foo worked after removing cwd"
4296         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4297         touch .foo && error "touch .foo worked after removing cwd"
4298         mkdir .foo && error "mkdir .foo worked after removing cwd"
4299         $TRACE ls . && error "'ls .' worked after removing cwd"
4300         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4301         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4302         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4303         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4304         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4305 }
4306 run_test 48c "Access removed working subdir (should return errors)"
4307
4308 test_48d() { # bug 2350
4309         #lctl set_param debug=-1
4310         #set -vx
4311         rm -rf $DIR/$tdir
4312         test_mkdir -p $DIR/$tdir/dir
4313         cd $DIR/$tdir/dir
4314         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4315         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4316         $TRACE touch foo && error "'touch foo' worked after removing parent"
4317         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4318         touch .foo && error "'touch .foo' worked after removing parent"
4319         mkdir .foo && error "mkdir .foo worked after removing parent"
4320         $TRACE ls . && error "'ls .' worked after removing parent"
4321         $TRACE ls .. && error "'ls ..' worked after removing parent"
4322         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4323         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4324         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4325         true
4326 }
4327 run_test 48d "Access removed parent subdir (should return errors)"
4328
4329 test_48e() { # bug 4134
4330         #lctl set_param debug=-1
4331         #set -vx
4332         rm -rf $DIR/$tdir
4333         test_mkdir -p $DIR/$tdir/dir
4334         cd $DIR/$tdir/dir
4335         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4336         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4337         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4338         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4339         # On a buggy kernel addition of "touch foo" after cd .. will
4340         # produce kernel oops in lookup_hash_it
4341         touch ../foo && error "'cd ..' worked after recreate parent"
4342         cd $DIR
4343         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4344 }
4345 run_test 48e "Access to recreated parent subdir (should return errors)"
4346
4347 test_49() { # LU-1030
4348         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4349         remote_ost_nodsh && skip "remote OST with nodsh"
4350
4351         # get ost1 size - lustre-OST0000
4352         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4353                 awk '{ print $4 }')
4354         # write 800M at maximum
4355         [[ $ost1_size -lt 2 ]] && ost1_size=2
4356         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4357
4358         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4359         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4360         local dd_pid=$!
4361
4362         # change max_pages_per_rpc while writing the file
4363         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4364         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4365         # loop until dd process exits
4366         while ps ax -opid | grep -wq $dd_pid; do
4367                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4368                 sleep $((RANDOM % 5 + 1))
4369         done
4370         # restore original max_pages_per_rpc
4371         $LCTL set_param $osc1_mppc=$orig_mppc
4372         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4373 }
4374 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4375
4376 test_50() {
4377         # bug 1485
4378         test_mkdir $DIR/$tdir
4379         cd $DIR/$tdir
4380         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4381 }
4382 run_test 50 "special situations: /proc symlinks  ==============="
4383
4384 test_51a() {    # was test_51
4385         # bug 1516 - create an empty entry right after ".." then split dir
4386         test_mkdir -c1 $DIR/$tdir
4387         touch $DIR/$tdir/foo
4388         $MCREATE $DIR/$tdir/bar
4389         rm $DIR/$tdir/foo
4390         createmany -m $DIR/$tdir/longfile 201
4391         FNUM=202
4392         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4393                 $MCREATE $DIR/$tdir/longfile$FNUM
4394                 FNUM=$(($FNUM + 1))
4395                 echo -n "+"
4396         done
4397         echo
4398         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4399 }
4400 run_test 51a "special situations: split htree with empty entry =="
4401
4402 cleanup_print_lfs_df () {
4403         trap 0
4404         $LFS df
4405         $LFS df -i
4406 }
4407
4408 test_51b() {
4409         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4410
4411         local dir=$DIR/$tdir
4412         local nrdirs=$((65536 + 100))
4413
4414         # cleanup the directory
4415         rm -fr $dir
4416
4417         test_mkdir -c1 $dir
4418
4419         $LFS df
4420         $LFS df -i
4421         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4422         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4423         [[ $numfree -lt $nrdirs ]] &&
4424                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4425
4426         # need to check free space for the directories as well
4427         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4428         numfree=$(( blkfree / $(fs_inode_ksize) ))
4429         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4430
4431         trap cleanup_print_lfs_df EXIT
4432
4433         # create files
4434         createmany -d $dir/d $nrdirs || {
4435                 unlinkmany $dir/d $nrdirs
4436                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4437         }
4438
4439         # really created :
4440         nrdirs=$(ls -U $dir | wc -l)
4441
4442         # unlink all but 100 subdirectories, then check it still works
4443         local left=100
4444         local delete=$((nrdirs - left))
4445
4446         $LFS df
4447         $LFS df -i
4448
4449         # for ldiskfs the nlink count should be 1, but this is OSD specific
4450         # and so this is listed for informational purposes only
4451         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4452         unlinkmany -d $dir/d $delete ||
4453                 error "unlink of first $delete subdirs failed"
4454
4455         echo "nlink between: $(stat -c %h $dir)"
4456         local found=$(ls -U $dir | wc -l)
4457         [ $found -ne $left ] &&
4458                 error "can't find subdirs: found only $found, expected $left"
4459
4460         unlinkmany -d $dir/d $delete $left ||
4461                 error "unlink of second $left subdirs failed"
4462         # regardless of whether the backing filesystem tracks nlink accurately
4463         # or not, the nlink count shouldn't be more than "." and ".." here
4464         local after=$(stat -c %h $dir)
4465         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4466                 echo "nlink after: $after"
4467
4468         cleanup_print_lfs_df
4469 }
4470 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4471
4472 test_51d() {
4473         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4474         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4475
4476         test_mkdir $DIR/$tdir
4477         createmany -o $DIR/$tdir/t- 1000
4478         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4479         for N in $(seq 0 $((OSTCOUNT - 1))); do
4480                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4481                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4482                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4483                         '($1 == '$N') { objs += 1 } \
4484                         END { printf("%0.0f", objs) }')
4485                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4486         done
4487         unlinkmany $DIR/$tdir/t- 1000
4488
4489         NLAST=0
4490         for N in $(seq 1 $((OSTCOUNT - 1))); do
4491                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4492                         error "OST $N has less objects vs OST $NLAST" \
4493                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4494                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4495                         error "OST $N has less objects vs OST $NLAST" \
4496                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4497
4498                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4499                         error "OST $N has less #0 objects vs OST $NLAST" \
4500                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4501                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4502                         error "OST $N has less #0 objects vs OST $NLAST" \
4503                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4504                 NLAST=$N
4505         done
4506         rm -f $TMP/$tfile
4507 }
4508 run_test 51d "check object distribution"
4509
4510 test_51e() {
4511         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4512                 skip_env "ldiskfs only test"
4513         fi
4514
4515         test_mkdir -c1 $DIR/$tdir
4516         test_mkdir -c1 $DIR/$tdir/d0
4517
4518         touch $DIR/$tdir/d0/foo
4519         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4520                 error "file exceed 65000 nlink limit!"
4521         unlinkmany $DIR/$tdir/d0/f- 65001
4522         return 0
4523 }
4524 run_test 51e "check file nlink limit"
4525
4526 test_51f() {
4527         test_mkdir $DIR/$tdir
4528
4529         local max=100000
4530         local ulimit_old=$(ulimit -n)
4531         local spare=20 # number of spare fd's for scripts/libraries, etc.
4532         local mdt=$($LFS getstripe -m $DIR/$tdir)
4533         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4534
4535         echo "MDT$mdt numfree=$numfree, max=$max"
4536         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4537         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4538                 while ! ulimit -n $((numfree + spare)); do
4539                         numfree=$((numfree * 3 / 4))
4540                 done
4541                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4542         else
4543                 echo "left ulimit at $ulimit_old"
4544         fi
4545
4546         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4547                 unlinkmany $DIR/$tdir/f $numfree
4548                 error "create+open $numfree files in $DIR/$tdir failed"
4549         }
4550         ulimit -n $ulimit_old
4551
4552         # if createmany exits at 120s there will be fewer than $numfree files
4553         unlinkmany $DIR/$tdir/f $numfree || true
4554 }
4555 run_test 51f "check many open files limit"
4556
4557 test_52a() {
4558         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4559         test_mkdir $DIR/$tdir
4560         touch $DIR/$tdir/foo
4561         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4562         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4563         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4564         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4565         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4566                                         error "link worked"
4567         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4568         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4569         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4570                                                      error "lsattr"
4571         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4572         cp -r $DIR/$tdir $TMP/
4573         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4574 }
4575 run_test 52a "append-only flag test (should return errors)"
4576
4577 test_52b() {
4578         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4579         test_mkdir $DIR/$tdir
4580         touch $DIR/$tdir/foo
4581         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4582         cat test > $DIR/$tdir/foo && error "cat test worked"
4583         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4584         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4585         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4586                                         error "link worked"
4587         echo foo >> $DIR/$tdir/foo && error "echo worked"
4588         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4589         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4590         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4591         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4592                                                         error "lsattr"
4593         chattr -i $DIR/$tdir/foo || error "chattr failed"
4594
4595         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4596 }
4597 run_test 52b "immutable flag test (should return errors) ======="
4598
4599 test_53() {
4600         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4601         remote_mds_nodsh && skip "remote MDS with nodsh"
4602         remote_ost_nodsh && skip "remote OST with nodsh"
4603
4604         local param
4605         local param_seq
4606         local ostname
4607         local mds_last
4608         local mds_last_seq
4609         local ost_last
4610         local ost_last_seq
4611         local ost_last_id
4612         local ostnum
4613         local node
4614         local found=false
4615         local support_last_seq=true
4616
4617         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4618                 support_last_seq=false
4619
4620         # only test MDT0000
4621         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4622         local value
4623         for value in $(do_facet $SINGLEMDS \
4624                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4625                 param=$(echo ${value[0]} | cut -d "=" -f1)
4626                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4627
4628                 if $support_last_seq; then
4629                         param_seq=$(echo $param |
4630                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4631                         mds_last_seq=$(do_facet $SINGLEMDS \
4632                                        $LCTL get_param -n $param_seq)
4633                 fi
4634                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4635
4636                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4637                 node=$(facet_active_host ost$((ostnum+1)))
4638                 param="obdfilter.$ostname.last_id"
4639                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4640                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4641                         ost_last_id=$ost_last
4642
4643                         if $support_last_seq; then
4644                                 ost_last_id=$(echo $ost_last |
4645                                               awk -F':' '{print $2}' |
4646                                               sed -e "s/^0x//g")
4647                                 ost_last_seq=$(echo $ost_last |
4648                                                awk -F':' '{print $1}')
4649                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4650                         fi
4651
4652                         if [[ $ost_last_id != $mds_last ]]; then
4653                                 error "$ost_last_id != $mds_last"
4654                         else
4655                                 found=true
4656                                 break
4657                         fi
4658                 done
4659         done
4660         $found || error "can not match last_seq/last_id for $mdtosc"
4661         return 0
4662 }
4663 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4664
4665 test_54a() {
4666         perl -MSocket -e ';' || skip "no Socket perl module installed"
4667
4668         $SOCKETSERVER $DIR/socket ||
4669                 error "$SOCKETSERVER $DIR/socket failed: $?"
4670         $SOCKETCLIENT $DIR/socket ||
4671                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4672         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4673 }
4674 run_test 54a "unix domain socket test =========================="
4675
4676 test_54b() {
4677         f="$DIR/f54b"
4678         mknod $f c 1 3
4679         chmod 0666 $f
4680         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4681 }
4682 run_test 54b "char device works in lustre ======================"
4683
4684 find_loop_dev() {
4685         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4686         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4687         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4688
4689         for i in $(seq 3 7); do
4690                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4691                 LOOPDEV=$LOOPBASE$i
4692                 LOOPNUM=$i
4693                 break
4694         done
4695 }
4696
4697 cleanup_54c() {
4698         local rc=0
4699         loopdev="$DIR/loop54c"
4700
4701         trap 0
4702         $UMOUNT $DIR/$tdir || rc=$?
4703         losetup -d $loopdev || true
4704         losetup -d $LOOPDEV || true
4705         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4706         return $rc
4707 }
4708
4709 test_54c() {
4710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4711
4712         loopdev="$DIR/loop54c"
4713
4714         find_loop_dev
4715         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4716         trap cleanup_54c EXIT
4717         mknod $loopdev b 7 $LOOPNUM
4718         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4719         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4720         losetup $loopdev $DIR/$tfile ||
4721                 error "can't set up $loopdev for $DIR/$tfile"
4722         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4723         test_mkdir $DIR/$tdir
4724         mount -t ext2 $loopdev $DIR/$tdir ||
4725                 error "error mounting $loopdev on $DIR/$tdir"
4726         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4727                 error "dd write"
4728         df $DIR/$tdir
4729         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4730                 error "dd read"
4731         cleanup_54c
4732 }
4733 run_test 54c "block device works in lustre ====================="
4734
4735 test_54d() {
4736         f="$DIR/f54d"
4737         string="aaaaaa"
4738         mknod $f p
4739         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4740 }
4741 run_test 54d "fifo device works in lustre ======================"
4742
4743 test_54e() {
4744         f="$DIR/f54e"
4745         string="aaaaaa"
4746         cp -aL /dev/console $f
4747         echo $string > $f || error "echo $string to $f failed"
4748 }
4749 run_test 54e "console/tty device works in lustre ======================"
4750
4751 test_56a() {
4752         local numfiles=3
4753         local dir=$DIR/$tdir
4754
4755         rm -rf $dir
4756         test_mkdir -p $dir/dir
4757         for i in $(seq $numfiles); do
4758                 touch $dir/file$i
4759                 touch $dir/dir/file$i
4760         done
4761
4762         local numcomp=$($LFS getstripe --component-count $dir)
4763
4764         [[ $numcomp == 0 ]] && numcomp=1
4765
4766         # test lfs getstripe with --recursive
4767         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4768
4769         [[ $filenum -eq $((numfiles * 2)) ]] ||
4770                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4771         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4772         [[ $filenum -eq $numfiles ]] ||
4773                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4774         echo "$LFS getstripe showed obdidx or l_ost_idx"
4775
4776         # test lfs getstripe with file instead of dir
4777         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4778         [[ $filenum -eq 1 ]] ||
4779                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4780         echo "$LFS getstripe file1 passed"
4781
4782         #test lfs getstripe with --verbose
4783         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4784         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4785                 error "$LFS getstripe --verbose $dir: "\
4786                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4787         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4788                 error "$LFS getstripe $dir: showed lmm_magic"
4789
4790         #test lfs getstripe with -v prints lmm_fid
4791         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4792         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4793                 error "$LFS getstripe -v $dir: "\
4794                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4795         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4796                 error "$LFS getstripe $dir: showed lmm_fid by default"
4797         echo "$LFS getstripe --verbose passed"
4798
4799         #check for FID information
4800         local fid1=$($LFS getstripe --fid $dir/file1)
4801         local fid2=$($LFS getstripe --verbose $dir/file1 |
4802                      awk '/lmm_fid: / { print $2; exit; }')
4803         local fid3=$($LFS path2fid $dir/file1)
4804
4805         [ "$fid1" != "$fid2" ] &&
4806                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4807         [ "$fid1" != "$fid3" ] &&
4808                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4809         echo "$LFS getstripe --fid passed"
4810
4811         #test lfs getstripe with --obd
4812         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4813                 error "$LFS getstripe --obd wrong_uuid: should return error"
4814
4815         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4816
4817         local ostidx=1
4818         local obduuid=$(ostuuid_from_index $ostidx)
4819         local found=$($LFS getstripe -r --obd $obduuid $dir |
4820                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4821
4822         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4823         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4824                 ((filenum--))
4825         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4826                 ((filenum--))
4827
4828         [[ $found -eq $filenum ]] ||
4829                 error "$LFS getstripe --obd: found $found expect $filenum"
4830         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4831                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4832                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4833                 error "$LFS getstripe --obd: should not show file on other obd"
4834         echo "$LFS getstripe --obd passed"
4835 }
4836 run_test 56a "check $LFS getstripe"
4837
4838 test_56b() {
4839         local dir=$DIR/$tdir
4840         local numdirs=3
4841
4842         test_mkdir $dir
4843         for i in $(seq $numdirs); do
4844                 test_mkdir $dir/dir$i
4845         done
4846
4847         # test lfs getdirstripe default mode is non-recursion, which is
4848         # different from lfs getstripe
4849         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4850
4851         [[ $dircnt -eq 1 ]] ||
4852                 error "$LFS getdirstripe: found $dircnt, not 1"
4853         dircnt=$($LFS getdirstripe --recursive $dir |
4854                 grep -c lmv_stripe_count)
4855         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4856                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4857 }
4858 run_test 56b "check $LFS getdirstripe"
4859
4860 test_56c() {
4861         remote_ost_nodsh && skip "remote OST with nodsh"
4862
4863         local ost_idx=0
4864         local ost_name=$(ostname_from_index $ost_idx)
4865         local old_status=$(ost_dev_status $ost_idx)
4866
4867         [[ -z "$old_status" ]] ||
4868                 skip_env "OST $ost_name is in $old_status status"
4869
4870         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4871         sleep_maxage
4872
4873         local new_status=$(ost_dev_status $ost_idx)
4874
4875         [[ "$new_status" = "D" ]] ||
4876                 error "OST $ost_name is in status of '$new_status', not 'D'"
4877
4878         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4879         sleep_maxage
4880
4881         new_status=$(ost_dev_status $ost_idx)
4882         [[ -z "$new_status" ]] ||
4883                 error "OST $ost_name is in status of '$new_status', not ''"
4884 }
4885 run_test 56c "check 'lfs df' showing device status"
4886
4887 NUMFILES=3
4888 NUMDIRS=3
4889 setup_56() {
4890         local local_tdir="$1"
4891         local local_numfiles="$2"
4892         local local_numdirs="$3"
4893         local dir_params="$4"
4894         local dir_stripe_params="$5"
4895
4896         if [ ! -d "$local_tdir" ] ; then
4897                 test_mkdir -p $dir_stripe_params $local_tdir
4898                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4899                 for i in $(seq $local_numfiles) ; do
4900                         touch $local_tdir/file$i
4901                 done
4902                 for i in $(seq $local_numdirs) ; do
4903                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4904                         for j in $(seq $local_numfiles) ; do
4905                                 touch $local_tdir/dir$i/file$j
4906                         done
4907                 done
4908         fi
4909 }
4910
4911 setup_56_special() {
4912         local local_tdir=$1
4913         local local_numfiles=$2
4914         local local_numdirs=$3
4915
4916         setup_56 $local_tdir $local_numfiles $local_numdirs
4917
4918         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4919                 for i in $(seq $local_numfiles) ; do
4920                         mknod $local_tdir/loop${i}b b 7 $i
4921                         mknod $local_tdir/null${i}c c 1 3
4922                         ln -s $local_tdir/file1 $local_tdir/link${i}
4923                 done
4924                 for i in $(seq $local_numdirs) ; do
4925                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4926                         mknod $local_tdir/dir$i/null${i}c c 1 3
4927                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4928                 done
4929         fi
4930 }
4931
4932 test_56g() {
4933         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4934         local expected=$(($NUMDIRS + 2))
4935
4936         setup_56 $dir $NUMFILES $NUMDIRS
4937
4938         # test lfs find with -name
4939         for i in $(seq $NUMFILES) ; do
4940                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4941
4942                 [ $nums -eq $expected ] ||
4943                         error "lfs find -name '*$i' $dir wrong: "\
4944                               "found $nums, expected $expected"
4945         done
4946 }
4947 run_test 56g "check lfs find -name"
4948
4949 test_56h() {
4950         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4951         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4952
4953         setup_56 $dir $NUMFILES $NUMDIRS
4954
4955         # test lfs find with ! -name
4956         for i in $(seq $NUMFILES) ; do
4957                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4958
4959                 [ $nums -eq $expected ] ||
4960                         error "lfs find ! -name '*$i' $dir wrong: "\
4961                               "found $nums, expected $expected"
4962         done
4963 }
4964 run_test 56h "check lfs find ! -name"
4965
4966 test_56i() {
4967         local dir=$DIR/$tdir
4968
4969         test_mkdir $dir
4970
4971         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4972         local out=$($cmd)
4973
4974         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4975 }
4976 run_test 56i "check 'lfs find -ost UUID' skips directories"
4977
4978 test_56j() {
4979         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4980
4981         setup_56_special $dir $NUMFILES $NUMDIRS
4982
4983         local expected=$((NUMDIRS + 1))
4984         local cmd="$LFS find -type d $dir"
4985         local nums=$($cmd | wc -l)
4986
4987         [ $nums -eq $expected ] ||
4988                 error "'$cmd' wrong: found $nums, expected $expected"
4989 }
4990 run_test 56j "check lfs find -type d"
4991
4992 test_56k() {
4993         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4994
4995         setup_56_special $dir $NUMFILES $NUMDIRS
4996
4997         local expected=$(((NUMDIRS + 1) * NUMFILES))
4998         local cmd="$LFS find -type f $dir"
4999         local nums=$($cmd | wc -l)
5000
5001         [ $nums -eq $expected ] ||
5002                 error "'$cmd' wrong: found $nums, expected $expected"
5003 }
5004 run_test 56k "check lfs find -type f"
5005
5006 test_56l() {
5007         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5008
5009         setup_56_special $dir $NUMFILES $NUMDIRS
5010
5011         local expected=$((NUMDIRS + NUMFILES))
5012         local cmd="$LFS find -type b $dir"
5013         local nums=$($cmd | wc -l)
5014
5015         [ $nums -eq $expected ] ||
5016                 error "'$cmd' wrong: found $nums, expected $expected"
5017 }
5018 run_test 56l "check lfs find -type b"
5019
5020 test_56m() {
5021         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5022
5023         setup_56_special $dir $NUMFILES $NUMDIRS
5024
5025         local expected=$((NUMDIRS + NUMFILES))
5026         local cmd="$LFS find -type c $dir"
5027         local nums=$($cmd | wc -l)
5028         [ $nums -eq $expected ] ||
5029                 error "'$cmd' wrong: found $nums, expected $expected"
5030 }
5031 run_test 56m "check lfs find -type c"
5032
5033 test_56n() {
5034         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5035         setup_56_special $dir $NUMFILES $NUMDIRS
5036
5037         local expected=$((NUMDIRS + NUMFILES))
5038         local cmd="$LFS find -type l $dir"
5039         local nums=$($cmd | wc -l)
5040
5041         [ $nums -eq $expected ] ||
5042                 error "'$cmd' wrong: found $nums, expected $expected"
5043 }
5044 run_test 56n "check lfs find -type l"
5045
5046 test_56o() {
5047         local dir=$DIR/$tdir
5048
5049         setup_56 $dir $NUMFILES $NUMDIRS
5050         utime $dir/file1 > /dev/null || error "utime (1)"
5051         utime $dir/file2 > /dev/null || error "utime (2)"
5052         utime $dir/dir1 > /dev/null || error "utime (3)"
5053         utime $dir/dir2 > /dev/null || error "utime (4)"
5054         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5055         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5056
5057         local expected=4
5058         local nums=$($LFS find -mtime +0 $dir | wc -l)
5059
5060         [ $nums -eq $expected ] ||
5061                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5062
5063         expected=12
5064         cmd="$LFS find -mtime 0 $dir"
5065         nums=$($cmd | wc -l)
5066         [ $nums -eq $expected ] ||
5067                 error "'$cmd' wrong: found $nums, expected $expected"
5068 }
5069 run_test 56o "check lfs find -mtime for old files"
5070
5071 test_56p() {
5072         [ $RUNAS_ID -eq $UID ] &&
5073                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5074
5075         local dir=$DIR/$tdir
5076
5077         setup_56 $dir $NUMFILES $NUMDIRS
5078         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5079
5080         local expected=$NUMFILES
5081         local cmd="$LFS find -uid $RUNAS_ID $dir"
5082         local nums=$($cmd | wc -l)
5083
5084         [ $nums -eq $expected ] ||
5085                 error "'$cmd' wrong: found $nums, expected $expected"
5086
5087         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5088         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5089         nums=$($cmd | wc -l)
5090         [ $nums -eq $expected ] ||
5091                 error "'$cmd' wrong: found $nums, expected $expected"
5092 }
5093 run_test 56p "check lfs find -uid and ! -uid"
5094
5095 test_56q() {
5096         [ $RUNAS_ID -eq $UID ] &&
5097                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5098
5099         local dir=$DIR/$tdir
5100
5101         setup_56 $dir $NUMFILES $NUMDIRS
5102         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5103
5104         local expected=$NUMFILES
5105         local cmd="$LFS find -gid $RUNAS_GID $dir"
5106         local nums=$($cmd | wc -l)
5107
5108         [ $nums -eq $expected ] ||
5109                 error "'$cmd' wrong: found $nums, expected $expected"
5110
5111         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5112         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5113         nums=$($cmd | wc -l)
5114         [ $nums -eq $expected ] ||
5115                 error "'$cmd' wrong: found $nums, expected $expected"
5116 }
5117 run_test 56q "check lfs find -gid and ! -gid"
5118
5119 test_56r() {
5120         local dir=$DIR/$tdir
5121
5122         setup_56 $dir $NUMFILES $NUMDIRS
5123
5124         local expected=12
5125         local cmd="$LFS find -size 0 -type f $dir"
5126         local nums=$($cmd | wc -l)
5127
5128         [ $nums -eq $expected ] ||
5129                 error "'$cmd' wrong: found $nums, expected $expected"
5130         expected=0
5131         cmd="$LFS find ! -size 0 -type f $dir"
5132         nums=$($cmd | wc -l)
5133         [ $nums -eq $expected ] ||
5134                 error "'$cmd' wrong: found $nums, expected $expected"
5135         echo "test" > $dir/$tfile
5136         echo "test2" > $dir/$tfile.2 && sync
5137         expected=1
5138         cmd="$LFS find -size 5 -type f $dir"
5139         nums=$($cmd | wc -l)
5140         [ $nums -eq $expected ] ||
5141                 error "'$cmd' wrong: found $nums, expected $expected"
5142         expected=1
5143         cmd="$LFS find -size +5 -type f $dir"
5144         nums=$($cmd | wc -l)
5145         [ $nums -eq $expected ] ||
5146                 error "'$cmd' wrong: found $nums, expected $expected"
5147         expected=2
5148         cmd="$LFS find -size +0 -type f $dir"
5149         nums=$($cmd | wc -l)
5150         [ $nums -eq $expected ] ||
5151                 error "'$cmd' wrong: found $nums, expected $expected"
5152         expected=2
5153         cmd="$LFS find ! -size -5 -type f $dir"
5154         nums=$($cmd | wc -l)
5155         [ $nums -eq $expected ] ||
5156                 error "'$cmd' wrong: found $nums, expected $expected"
5157         expected=12
5158         cmd="$LFS find -size -5 -type f $dir"
5159         nums=$($cmd | wc -l)
5160         [ $nums -eq $expected ] ||
5161                 error "'$cmd' wrong: found $nums, expected $expected"
5162 }
5163 run_test 56r "check lfs find -size works"
5164
5165 test_56s() { # LU-611 #LU-9369
5166         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5167
5168         local dir=$DIR/$tdir
5169         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5170
5171         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5172         for i in $(seq $NUMDIRS); do
5173                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5174         done
5175
5176         local expected=$NUMDIRS
5177         local cmd="$LFS find -c $OSTCOUNT $dir"
5178         local nums=$($cmd | wc -l)
5179
5180         [ $nums -eq $expected ] || {
5181                 $LFS getstripe -R $dir
5182                 error "'$cmd' wrong: found $nums, expected $expected"
5183         }
5184
5185         expected=$((NUMDIRS + onestripe))
5186         cmd="$LFS find -stripe-count +0 -type f $dir"
5187         nums=$($cmd | wc -l)
5188         [ $nums -eq $expected ] || {
5189                 $LFS getstripe -R $dir
5190                 error "'$cmd' wrong: found $nums, expected $expected"
5191         }
5192
5193         expected=$onestripe
5194         cmd="$LFS find -stripe-count 1 -type f $dir"
5195         nums=$($cmd | wc -l)
5196         [ $nums -eq $expected ] || {
5197                 $LFS getstripe -R $dir
5198                 error "'$cmd' wrong: found $nums, expected $expected"
5199         }
5200
5201         cmd="$LFS find -stripe-count -2 -type f $dir"
5202         nums=$($cmd | wc -l)
5203         [ $nums -eq $expected ] || {
5204                 $LFS getstripe -R $dir
5205                 error "'$cmd' wrong: found $nums, expected $expected"
5206         }
5207
5208         expected=0
5209         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5210         nums=$($cmd | wc -l)
5211         [ $nums -eq $expected ] || {
5212                 $LFS getstripe -R $dir
5213                 error "'$cmd' wrong: found $nums, expected $expected"
5214         }
5215 }
5216 run_test 56s "check lfs find -stripe-count works"
5217
5218 test_56t() { # LU-611 #LU-9369
5219         local dir=$DIR/$tdir
5220
5221         setup_56 $dir 0 $NUMDIRS
5222         for i in $(seq $NUMDIRS); do
5223                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5224         done
5225
5226         local expected=$NUMDIRS
5227         local cmd="$LFS find -S 8M $dir"
5228         local nums=$($cmd | wc -l)
5229
5230         [ $nums -eq $expected ] || {
5231                 $LFS getstripe -R $dir
5232                 error "'$cmd' wrong: found $nums, expected $expected"
5233         }
5234         rm -rf $dir
5235
5236         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5237
5238         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5239
5240         expected=$(((NUMDIRS + 1) * NUMFILES))
5241         cmd="$LFS find -stripe-size 512k -type f $dir"
5242         nums=$($cmd | wc -l)
5243         [ $nums -eq $expected ] ||
5244                 error "'$cmd' wrong: found $nums, expected $expected"
5245
5246         cmd="$LFS find -stripe-size +320k -type f $dir"
5247         nums=$($cmd | wc -l)
5248         [ $nums -eq $expected ] ||
5249                 error "'$cmd' wrong: found $nums, expected $expected"
5250
5251         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5252         cmd="$LFS find -stripe-size +200k -type f $dir"
5253         nums=$($cmd | wc -l)
5254         [ $nums -eq $expected ] ||
5255                 error "'$cmd' wrong: found $nums, expected $expected"
5256
5257         cmd="$LFS find -stripe-size -640k -type f $dir"
5258         nums=$($cmd | wc -l)
5259         [ $nums -eq $expected ] ||
5260                 error "'$cmd' wrong: found $nums, expected $expected"
5261
5262         expected=4
5263         cmd="$LFS find -stripe-size 256k -type f $dir"
5264         nums=$($cmd | wc -l)
5265         [ $nums -eq $expected ] ||
5266                 error "'$cmd' wrong: found $nums, expected $expected"
5267
5268         cmd="$LFS find -stripe-size -320k -type f $dir"
5269         nums=$($cmd | wc -l)
5270         [ $nums -eq $expected ] ||
5271                 error "'$cmd' wrong: found $nums, expected $expected"
5272
5273         expected=0
5274         cmd="$LFS find -stripe-size 1024k -type f $dir"
5275         nums=$($cmd | wc -l)
5276         [ $nums -eq $expected ] ||
5277                 error "'$cmd' wrong: found $nums, expected $expected"
5278 }
5279 run_test 56t "check lfs find -stripe-size works"
5280
5281 test_56u() { # LU-611
5282         local dir=$DIR/$tdir
5283
5284         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5285
5286         if [[ $OSTCOUNT -gt 1 ]]; then
5287                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5288                 onestripe=4
5289         else
5290                 onestripe=0
5291         fi
5292
5293         local expected=$(((NUMDIRS + 1) * NUMFILES))
5294         local cmd="$LFS find -stripe-index 0 -type f $dir"
5295         local nums=$($cmd | wc -l)
5296
5297         [ $nums -eq $expected ] ||
5298                 error "'$cmd' wrong: found $nums, expected $expected"
5299
5300         expected=$onestripe
5301         cmd="$LFS find -stripe-index 1 -type f $dir"
5302         nums=$($cmd | wc -l)
5303         [ $nums -eq $expected ] ||
5304                 error "'$cmd' wrong: found $nums, expected $expected"
5305
5306         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5307         nums=$($cmd | wc -l)
5308         [ $nums -eq $expected ] ||
5309                 error "'$cmd' wrong: found $nums, expected $expected"
5310
5311         expected=0
5312         # This should produce an error and not return any files
5313         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5314         nums=$($cmd 2>/dev/null | wc -l)
5315         [ $nums -eq $expected ] ||
5316                 error "'$cmd' wrong: found $nums, expected $expected"
5317
5318         if [[ $OSTCOUNT -gt 1 ]]; then
5319                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5320                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5321                 nums=$($cmd | wc -l)
5322                 [ $nums -eq $expected ] ||
5323                         error "'$cmd' wrong: found $nums, expected $expected"
5324         fi
5325 }
5326 run_test 56u "check lfs find -stripe-index works"
5327
5328 test_56v() {
5329         local mdt_idx=0
5330         local dir=$DIR/$tdir
5331
5332         setup_56 $dir $NUMFILES $NUMDIRS
5333
5334         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5335         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5336
5337         for file in $($LFS find -m $UUID $dir); do
5338                 file_midx=$($LFS getstripe -m $file)
5339                 [ $file_midx -eq $mdt_idx ] ||
5340                         error "lfs find -m $UUID != getstripe -m $file_midx"
5341         done
5342 }
5343 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5344
5345 test_56w() {
5346         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5347         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5348
5349         local dir=$DIR/$tdir
5350
5351         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5352
5353         local stripe_size=$($LFS getstripe -S -d $dir) ||
5354                 error "$LFS getstripe -S -d $dir failed"
5355         stripe_size=${stripe_size%% *}
5356
5357         local file_size=$((stripe_size * OSTCOUNT))
5358         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5359         local required_space=$((file_num * file_size))
5360         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5361                            head -n1)
5362         [[ $free_space -le $((required_space / 1024)) ]] &&
5363                 skip_env "need $required_space, have $free_space kbytes"
5364
5365         local dd_bs=65536
5366         local dd_count=$((file_size / dd_bs))
5367
5368         # write data into the files
5369         local i
5370         local j
5371         local file
5372
5373         for i in $(seq $NUMFILES); do
5374                 file=$dir/file$i
5375                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5376                         error "write data into $file failed"
5377         done
5378         for i in $(seq $NUMDIRS); do
5379                 for j in $(seq $NUMFILES); do
5380                         file=$dir/dir$i/file$j
5381                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5382                                 error "write data into $file failed"
5383                 done
5384         done
5385
5386         # $LFS_MIGRATE will fail if hard link migration is unsupported
5387         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5388                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5389                         error "creating links to $dir/dir1/file1 failed"
5390         fi
5391
5392         local expected=-1
5393
5394         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5395
5396         # lfs_migrate file
5397         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5398
5399         echo "$cmd"
5400         eval $cmd || error "$cmd failed"
5401
5402         check_stripe_count $dir/file1 $expected
5403
5404         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5405         then
5406                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5407                 # OST 1 if it is on OST 0. This file is small enough to
5408                 # be on only one stripe.
5409                 file=$dir/migr_1_ost
5410                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5411                         error "write data into $file failed"
5412                 local obdidx=$($LFS getstripe -i $file)
5413                 local oldmd5=$(md5sum $file)
5414                 local newobdidx=0
5415
5416                 [[ $obdidx -eq 0 ]] && newobdidx=1
5417                 cmd="$LFS migrate -i $newobdidx $file"
5418                 echo $cmd
5419                 eval $cmd || error "$cmd failed"
5420
5421                 local realobdix=$($LFS getstripe -i $file)
5422                 local newmd5=$(md5sum $file)
5423
5424                 [[ $newobdidx -ne $realobdix ]] &&
5425                         error "new OST is different (was=$obdidx, "\
5426                               "wanted=$newobdidx, got=$realobdix)"
5427                 [[ "$oldmd5" != "$newmd5" ]] &&
5428                         error "md5sum differ: $oldmd5, $newmd5"
5429         fi
5430
5431         # lfs_migrate dir
5432         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5433         echo "$cmd"
5434         eval $cmd || error "$cmd failed"
5435
5436         for j in $(seq $NUMFILES); do
5437                 check_stripe_count $dir/dir1/file$j $expected
5438         done
5439
5440         # lfs_migrate works with lfs find
5441         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5442              $LFS_MIGRATE -y -c $expected"
5443         echo "$cmd"
5444         eval $cmd || error "$cmd failed"
5445
5446         for i in $(seq 2 $NUMFILES); do
5447                 check_stripe_count $dir/file$i $expected
5448         done
5449         for i in $(seq 2 $NUMDIRS); do
5450                 for j in $(seq $NUMFILES); do
5451                 check_stripe_count $dir/dir$i/file$j $expected
5452                 done
5453         done
5454 }
5455 run_test 56w "check lfs_migrate -c stripe_count works"
5456
5457 test_56wb() {
5458         local file1=$DIR/$tdir/file1
5459         local create_pool=false
5460         local initial_pool=$($LFS getstripe -p $DIR)
5461         local pool_list=()
5462         local pool=""
5463
5464         echo -n "Creating test dir..."
5465         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5466         echo "done."
5467
5468         echo -n "Creating test file..."
5469         touch $file1 || error "cannot create file"
5470         echo "done."
5471
5472         echo -n "Detecting existing pools..."
5473         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5474
5475         if [ ${#pool_list[@]} -gt 0 ]; then
5476                 echo "${pool_list[@]}"
5477                 for thispool in "${pool_list[@]}"; do
5478                         if [[ -z "$initial_pool" ||
5479                               "$initial_pool" != "$thispool" ]]; then
5480                                 pool="$thispool"
5481                                 echo "Using existing pool '$pool'"
5482                                 break
5483                         fi
5484                 done
5485         else
5486                 echo "none detected."
5487         fi
5488         if [ -z "$pool" ]; then
5489                 pool=${POOL:-testpool}
5490                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5491                 echo -n "Creating pool '$pool'..."
5492                 create_pool=true
5493                 pool_add $pool &> /dev/null ||
5494                         error "pool_add failed"
5495                 echo "done."
5496
5497                 echo -n "Adding target to pool..."
5498                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5499                         error "pool_add_targets failed"
5500                 echo "done."
5501         fi
5502
5503         echo -n "Setting pool using -p option..."
5504         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5505                 error "migrate failed rc = $?"
5506         echo "done."
5507
5508         echo -n "Verifying test file is in pool after migrating..."
5509         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5510                 error "file was not migrated to pool $pool"
5511         echo "done."
5512
5513         echo -n "Removing test file from pool '$pool'..."
5514         $LFS migrate $file1 &> /dev/null ||
5515                 error "cannot remove from pool"
5516         [ "$($LFS getstripe -p $file1)" ] &&
5517                 error "pool still set"
5518         echo "done."
5519
5520         echo -n "Setting pool using --pool option..."
5521         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5522                 error "migrate failed rc = $?"
5523         echo "done."
5524
5525         # Clean up
5526         rm -f $file1
5527         if $create_pool; then
5528                 destroy_test_pools 2> /dev/null ||
5529                         error "destroy test pools failed"
5530         fi
5531 }
5532 run_test 56wb "check lfs_migrate pool support"
5533
5534 test_56wc() {
5535         local file1="$DIR/$tdir/file1"
5536
5537         echo -n "Creating test dir..."
5538         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5539         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5540         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5541                 error "cannot set stripe"
5542         echo "done"
5543
5544         echo -n "Setting initial stripe for test file..."
5545         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5546                 error "cannot set stripe"
5547         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5548                 error "stripe size not set"
5549         echo "done."
5550
5551         # File currently set to -S 512K -c 1
5552
5553         # Ensure -c and -S options are rejected when -R is set
5554         echo -n "Verifying incompatible options are detected..."
5555         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5556                 error "incompatible -c and -R options not detected"
5557         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5558                 error "incompatible -S and -R options not detected"
5559         echo "done."
5560
5561         # Ensure unrecognized options are passed through to 'lfs migrate'
5562         echo -n "Verifying -S option is passed through to lfs migrate..."
5563         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5564                 error "migration failed"
5565         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5566                 error "file was not restriped"
5567         echo "done."
5568
5569         # File currently set to -S 1M -c 1
5570
5571         # Ensure long options are supported
5572         echo -n "Verifying long options supported..."
5573         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5574                 error "long option without argument not supported"
5575         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5576                 error "long option with argument not supported"
5577         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5578                 error "file not restriped with --stripe-size option"
5579         echo "done."
5580
5581         # File currently set to -S 512K -c 1
5582
5583         if [ "$OSTCOUNT" -gt 1 ]; then
5584                 echo -n "Verifying explicit stripe count can be set..."
5585                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5586                         error "migrate failed"
5587                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5588                         error "file not restriped to explicit count"
5589                 echo "done."
5590         fi
5591
5592         # File currently set to -S 512K -c 1 or -S 512K -c 2
5593
5594         # Ensure parent striping is used if -R is set, and no stripe
5595         # count or size is specified
5596         echo -n "Setting stripe for parent directory..."
5597         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5598                 error "cannot set stripe"
5599         echo "done."
5600
5601         echo -n "Verifying restripe option uses parent stripe settings..."
5602         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5603                 error "migrate failed"
5604         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5605                 error "file not restriped to parent settings"
5606         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5607                 error "file not restriped to parent settings"
5608         echo "done."
5609
5610         # File currently set to -S 1M -c 1
5611
5612         # Ensure striping is preserved if -R is not set, and no stripe
5613         # count or size is specified
5614         echo -n "Verifying striping size preserved when not specified..."
5615         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5616         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5617                 error "cannot set stripe on parent directory"
5618         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5619                 error "migrate failed"
5620         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5621                 error "file was restriped"
5622         echo "done."
5623
5624         # Ensure file name properly detected when final option has no argument
5625         echo -n "Verifying file name properly detected..."
5626         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5627                 error "file name interpreted as option argument"
5628         echo "done."
5629
5630         # Clean up
5631         rm -f "$file1"
5632 }
5633 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5634
5635 test_56wd() {
5636         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5637
5638         local file1=$DIR/$tdir/file1
5639
5640         echo -n "Creating test dir..."
5641         test_mkdir $DIR/$tdir || error "cannot create dir"
5642         echo "done."
5643
5644         echo -n "Creating test file..."
5645         touch $file1
5646         echo "done."
5647
5648         # Ensure 'lfs migrate' will fail by using a non-existent option,
5649         # and make sure rsync is not called to recover
5650         echo -n "Make sure --no-rsync option works..."
5651         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5652                 grep -q 'refusing to fall back to rsync' ||
5653                 error "rsync was called with --no-rsync set"
5654         echo "done."
5655
5656         # Ensure rsync is called without trying 'lfs migrate' first
5657         echo -n "Make sure --rsync option works..."
5658         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5659                 grep -q 'falling back to rsync' &&
5660                 error "lfs migrate was called with --rsync set"
5661         echo "done."
5662
5663         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5664         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5665                 grep -q 'at the same time' ||
5666                 error "--rsync and --no-rsync accepted concurrently"
5667         echo "done."
5668
5669         # Clean up
5670         rm -f $file1
5671 }
5672 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5673
5674 test_56x() {
5675         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5676         check_swap_layouts_support
5677
5678         local dir=$DIR/$tdir
5679         local ref1=/etc/passwd
5680         local file1=$dir/file1
5681
5682         test_mkdir $dir || error "creating dir $dir"
5683         $LFS setstripe -c 2 $file1
5684         cp $ref1 $file1
5685         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5686         stripe=$($LFS getstripe -c $file1)
5687         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5688         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5689
5690         # clean up
5691         rm -f $file1
5692 }
5693 run_test 56x "lfs migration support"
5694
5695 test_56xa() {
5696         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5697         check_swap_layouts_support
5698
5699         local dir=$DIR/$tdir/$testnum
5700
5701         test_mkdir -p $dir
5702
5703         local ref1=/etc/passwd
5704         local file1=$dir/file1
5705
5706         $LFS setstripe -c 2 $file1
5707         cp $ref1 $file1
5708         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5709
5710         local stripe=$($LFS getstripe -c $file1)
5711
5712         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5713         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5714
5715         # clean up
5716         rm -f $file1
5717 }
5718 run_test 56xa "lfs migration --block support"
5719
5720 check_migrate_links() {
5721         local dir="$1"
5722         local file1="$dir/file1"
5723         local begin="$2"
5724         local count="$3"
5725         local total_count=$(($begin + $count - 1))
5726         local symlink_count=10
5727         local uniq_count=10
5728
5729         if [ ! -f "$file1" ]; then
5730                 echo -n "creating initial file..."
5731                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5732                         error "cannot setstripe initial file"
5733                 echo "done"
5734
5735                 echo -n "creating symlinks..."
5736                 for s in $(seq 1 $symlink_count); do
5737                         ln -s "$file1" "$dir/slink$s" ||
5738                                 error "cannot create symlinks"
5739                 done
5740                 echo "done"
5741
5742                 echo -n "creating nonlinked files..."
5743                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5744                         error "cannot create nonlinked files"
5745                 echo "done"
5746         fi
5747
5748         # create hard links
5749         if [ ! -f "$dir/file$total_count" ]; then
5750                 echo -n "creating hard links $begin:$total_count..."
5751                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5752                         /dev/null || error "cannot create hard links"
5753                 echo "done"
5754         fi
5755
5756         echo -n "checking number of hard links listed in xattrs..."
5757         local fid=$($LFS getstripe -F "$file1")
5758         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5759
5760         echo "${#paths[*]}"
5761         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5762                         skip "hard link list has unexpected size, skipping test"
5763         fi
5764         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5765                         error "link names should exceed xattrs size"
5766         fi
5767
5768         echo -n "migrating files..."
5769         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5770         local rc=$?
5771         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5772         echo "done"
5773
5774         # make sure all links have been properly migrated
5775         echo -n "verifying files..."
5776         fid=$($LFS getstripe -F "$file1") ||
5777                 error "cannot get fid for file $file1"
5778         for i in $(seq 2 $total_count); do
5779                 local fid2=$($LFS getstripe -F $dir/file$i)
5780
5781                 [ "$fid2" == "$fid" ] ||
5782                         error "migrated hard link has mismatched FID"
5783         done
5784
5785         # make sure hard links were properly detected, and migration was
5786         # performed only once for the entire link set; nonlinked files should
5787         # also be migrated
5788         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5789         local expected=$(($uniq_count + 1))
5790
5791         [ "$actual" -eq  "$expected" ] ||
5792                 error "hard links individually migrated ($actual != $expected)"
5793
5794         # make sure the correct number of hard links are present
5795         local hardlinks=$(stat -c '%h' "$file1")
5796
5797         [ $hardlinks -eq $total_count ] ||
5798                 error "num hard links $hardlinks != $total_count"
5799         echo "done"
5800
5801         return 0
5802 }
5803
5804 test_56xb() {
5805         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
5806                 skip "Need MDS version at least 2.10.55"
5807
5808         local dir="$DIR/$tdir"
5809
5810         test_mkdir "$dir" || error "cannot create dir $dir"
5811
5812         echo "testing lfs migrate mode when all links fit within xattrs"
5813         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 2 99
5814
5815         echo "testing rsync mode when all links fit within xattrs"
5816         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 2 99
5817
5818         echo "testing lfs migrate mode when all links do not fit within xattrs"
5819         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir" 101 100
5820
5821         echo "testing rsync mode when all links do not fit within xattrs"
5822         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir" 101 100
5823
5824         # clean up
5825         rm -rf $dir
5826 }
5827 run_test 56xb "lfs migration hard link support"
5828
5829 test_56y() {
5830         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
5831                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5832
5833         local res=""
5834         local dir=$DIR/$tdir
5835         local f1=$dir/file1
5836         local f2=$dir/file2
5837
5838         test_mkdir -p $dir || error "creating dir $dir"
5839         touch $f1 || error "creating std file $f1"
5840         $MULTIOP $f2 H2c || error "creating released file $f2"
5841
5842         # a directory can be raid0, so ask only for files
5843         res=$($LFS find $dir -L raid0 -type f | wc -l)
5844         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5845
5846         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5847         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5848
5849         # only files can be released, so no need to force file search
5850         res=$($LFS find $dir -L released)
5851         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5852
5853         res=$($LFS find $dir -type f \! -L released)
5854         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5855 }
5856 run_test 56y "lfs find -L raid0|released"
5857
5858 test_56z() { # LU-4824
5859         # This checks to make sure 'lfs find' continues after errors
5860         # There are two classes of errors that should be caught:
5861         # - If multiple paths are provided, all should be searched even if one
5862         #   errors out
5863         # - If errors are encountered during the search, it should not terminate
5864         #   early
5865         local dir=$DIR/$tdir
5866         local i
5867
5868         test_mkdir $dir
5869         for i in d{0..9}; do
5870                 test_mkdir $dir/$i
5871         done
5872         touch $dir/d{0..9}/$tfile
5873         $LFS find $DIR/non_existent_dir $dir &&
5874                 error "$LFS find did not return an error"
5875         # Make a directory unsearchable. This should NOT be the last entry in
5876         # directory order.  Arbitrarily pick the 6th entry
5877         chmod 700 $($LFS find $dir -type d | sed '6!d')
5878
5879         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5880
5881         # The user should be able to see 10 directories and 9 files
5882         [ $count == 19 ] || error "$LFS find did not continue after error"
5883 }
5884 run_test 56z "lfs find should continue after an error"
5885
5886 test_56aa() { # LU-5937
5887         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5888
5889         local dir=$DIR/$tdir
5890
5891         mkdir $dir
5892         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5893
5894         createmany -o $dir/striped_dir/${tfile}- 1024
5895         local dirs=$($LFS find --size +8k $dir/)
5896
5897         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5898 }
5899 run_test 56aa "lfs find --size under striped dir"
5900
5901 test_56ab() { # LU-10705
5902         test_mkdir $DIR/$tdir
5903         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5904         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5905         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5906         # Flush writes to ensure valid blocks.  Need to be more thorough for
5907         # ZFS, since blocks are not allocated/returned to client immediately.
5908         sync_all_data
5909         wait_zfs_commit ost1 2
5910         cancel_lru_locks osc
5911         ls -ls $DIR/$tdir
5912
5913         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5914
5915         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5916
5917         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5918         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
5919
5920         rm -f $DIR/$tdir/$tfile.[123]
5921 }
5922 run_test 56ab "lfs find --blocks"
5923
5924 test_56ba() {
5925         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
5926                 skip "Need MDS version at least 2.10.50"
5927
5928         # Create composite files with one component
5929         local dir=$DIR/$tdir
5930
5931         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
5932         # Create composite files with three components
5933         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
5934         # Create non-composite files
5935         createmany -o $dir/${tfile}- 10
5936
5937         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
5938
5939         [[ $nfiles == 10 ]] ||
5940                 error "lfs find -E 1M found $nfiles != 10 files"
5941
5942         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
5943         [[ $nfiles == 25 ]] ||
5944                 error "lfs find ! -E 1M found $nfiles != 25 files"
5945
5946         # All files have a component that starts at 0
5947         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
5948         [[ $nfiles == 35 ]] ||
5949                 error "lfs find --component-start 0 - $nfiles != 35 files"
5950
5951         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
5952         [[ $nfiles == 15 ]] ||
5953                 error "lfs find --component-start 2M - $nfiles != 15 files"
5954
5955         # All files created here have a componenet that does not starts at 2M
5956         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
5957         [[ $nfiles == 35 ]] ||
5958                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
5959
5960         # Find files with a specified number of components
5961         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
5962         [[ $nfiles == 15 ]] ||
5963                 error "lfs find --component-count 3 - $nfiles != 15 files"
5964
5965         # Remember non-composite files have a component count of zero
5966         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
5967         [[ $nfiles == 10 ]] ||
5968                 error "lfs find --component-count 0 - $nfiles != 10 files"
5969
5970         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
5971         [[ $nfiles == 20 ]] ||
5972                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
5973
5974         # All files have a flag called "init"
5975         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
5976         [[ $nfiles == 35 ]] ||
5977                 error "lfs find --component-flags init - $nfiles != 35 files"
5978
5979         # Multi-component files will have a component not initialized
5980         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
5981         [[ $nfiles == 15 ]] ||
5982                 error "lfs find !--component-flags init - $nfiles != 15 files"
5983
5984         rm -rf $dir
5985
5986 }
5987 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5988
5989 test_56ca() {
5990         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
5991                 skip "Need MDS version at least 2.10.57"
5992
5993         local td=$DIR/$tdir
5994         local tf=$td/$tfile
5995         local dir
5996         local nfiles
5997         local cmd
5998         local i
5999         local j
6000
6001         # create mirrored directories and mirrored files
6002         mkdir $td || error "mkdir $td failed"
6003         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
6004         createmany -o $tf- 10 || error "create $tf- failed"
6005
6006         for i in $(seq 2); do
6007                 dir=$td/dir$i
6008                 mkdir $dir || error "mkdir $dir failed"
6009                 $LFS mirror create -N$((3 + i)) $dir ||
6010                         error "create mirrored dir $dir failed"
6011                 createmany -o $dir/$tfile- 10 ||
6012                         error "create $dir/$tfile- failed"
6013         done
6014
6015         # change the states of some mirrored files
6016         echo foo > $tf-6
6017         for i in $(seq 2); do
6018                 dir=$td/dir$i
6019                 for j in $(seq 4 9); do
6020                         echo foo > $dir/$tfile-$j
6021                 done
6022         done
6023
6024         # find mirrored files with specific mirror count
6025         cmd="$LFS find --mirror-count 3 --type f $td"
6026         nfiles=$($cmd | wc -l)
6027         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6028
6029         cmd="$LFS find ! --mirror-count 3 --type f $td"
6030         nfiles=$($cmd | wc -l)
6031         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6032
6033         cmd="$LFS find --mirror-count +2 --type f $td"
6034         nfiles=$($cmd | wc -l)
6035         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6036
6037         cmd="$LFS find --mirror-count -6 --type f $td"
6038         nfiles=$($cmd | wc -l)
6039         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6040
6041         # find mirrored files with specific file state
6042         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6043         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6044
6045         cmd="$LFS find --mirror-state=ro --type f $td"
6046         nfiles=$($cmd | wc -l)
6047         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6048
6049         cmd="$LFS find ! --mirror-state=ro --type f $td"
6050         nfiles=$($cmd | wc -l)
6051         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6052
6053         cmd="$LFS find --mirror-state=wp --type f $td"
6054         nfiles=$($cmd | wc -l)
6055         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6056
6057         cmd="$LFS find ! --mirror-state=sp --type f $td"
6058         nfiles=$($cmd | wc -l)
6059         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6060 }
6061 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6062
6063 test_57a() {
6064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6065         # note test will not do anything if MDS is not local
6066         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6067                 skip_env "ldiskfs only test"
6068         fi
6069         remote_mds_nodsh && skip "remote MDS with nodsh"
6070
6071         local MNTDEV="osd*.*MDT*.mntdev"
6072         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6073         [ -z "$DEV" ] && error "can't access $MNTDEV"
6074         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6075                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6076                         error "can't access $DEV"
6077                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6078                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6079                 rm $TMP/t57a.dump
6080         done
6081 }
6082 run_test 57a "verify MDS filesystem created with large inodes =="
6083
6084 test_57b() {
6085         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6086         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6087                 skip_env "ldiskfs only test"
6088         fi
6089         remote_mds_nodsh && skip "remote MDS with nodsh"
6090
6091         local dir=$DIR/$tdir
6092         local filecount=100
6093         local file1=$dir/f1
6094         local fileN=$dir/f$filecount
6095
6096         rm -rf $dir || error "removing $dir"
6097         test_mkdir -c1 $dir
6098         local mdtidx=$($LFS getstripe -m $dir)
6099         local mdtname=MDT$(printf %04x $mdtidx)
6100         local facet=mds$((mdtidx + 1))
6101
6102         echo "mcreating $filecount files"
6103         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6104
6105         # verify that files do not have EAs yet
6106         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6107                 error "$file1 has an EA"
6108         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6109                 error "$fileN has an EA"
6110
6111         sync
6112         sleep 1
6113         df $dir  #make sure we get new statfs data
6114         local mdsfree=$(do_facet $facet \
6115                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6116         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6117         local file
6118
6119         echo "opening files to create objects/EAs"
6120         for file in $(seq -f $dir/f%g 1 $filecount); do
6121                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6122                         error "opening $file"
6123         done
6124
6125         # verify that files have EAs now
6126         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6127         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6128
6129         sleep 1  #make sure we get new statfs data
6130         df $dir
6131         local mdsfree2=$(do_facet $facet \
6132                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6133         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6134
6135         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6136                 if [ "$mdsfree" != "$mdsfree2" ]; then
6137                         error "MDC before $mdcfree != after $mdcfree2"
6138                 else
6139                         echo "MDC before $mdcfree != after $mdcfree2"
6140                         echo "unable to confirm if MDS has large inodes"
6141                 fi
6142         fi
6143         rm -rf $dir
6144 }
6145 run_test 57b "default LOV EAs are stored inside large inodes ==="
6146
6147 test_58() {
6148         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6149         [ -z "$(which wiretest 2>/dev/null)" ] &&
6150                         skip_env "could not find wiretest"
6151
6152         wiretest
6153 }
6154 run_test 58 "verify cross-platform wire constants =============="
6155
6156 test_59() {
6157         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6158
6159         echo "touch 130 files"
6160         createmany -o $DIR/f59- 130
6161         echo "rm 130 files"
6162         unlinkmany $DIR/f59- 130
6163         sync
6164         # wait for commitment of removal
6165         wait_delete_completed
6166 }
6167 run_test 59 "verify cancellation of llog records async ========="
6168
6169 TEST60_HEAD="test_60 run $RANDOM"
6170 test_60a() {
6171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6172         remote_mgs_nodsh && skip "remote MGS with nodsh"
6173         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6174                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6175                         skip_env "missing subtest run-llog.sh"
6176
6177         log "$TEST60_HEAD - from kernel mode"
6178         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
6179         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6180         do_facet mgs $LCTL dk > $TMP/$tfile
6181
6182         # LU-6388: test llog_reader
6183         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6184         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6185         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6186                         skip_env "missing llog_reader"
6187         local fstype=$(facet_fstype mgs)
6188         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6189                 skip_env "Only for ldiskfs or zfs type mgs"
6190
6191         local mntpt=$(facet_mntpt mgs)
6192         local mgsdev=$(mgsdevname 1)
6193         local fid_list
6194         local fid
6195         local rec_list
6196         local rec
6197         local rec_type
6198         local obj_file
6199         local path
6200         local seq
6201         local oid
6202         local pass=true
6203
6204         #get fid and record list
6205         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6206                 tail -n 4))
6207         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6208                 tail -n 4))
6209         #remount mgs as ldiskfs or zfs type
6210         stop mgs || error "stop mgs failed"
6211         mount_fstype mgs || error "remount mgs failed"
6212         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6213                 fid=${fid_list[i]}
6214                 rec=${rec_list[i]}
6215                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6216                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6217                 oid=$((16#$oid))
6218
6219                 case $fstype in
6220                         ldiskfs )
6221                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6222                         zfs )
6223                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6224                 esac
6225                 echo "obj_file is $obj_file"
6226                 do_facet mgs $llog_reader $obj_file
6227
6228                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6229                         awk '{ print $3 }' | sed -e "s/^type=//g")
6230                 if [ $rec_type != $rec ]; then
6231                         echo "FAILED test_60a wrong record type $rec_type," \
6232                               "should be $rec"
6233                         pass=false
6234                         break
6235                 fi
6236
6237                 #check obj path if record type is LLOG_LOGID_MAGIC
6238                 if [ "$rec" == "1064553b" ]; then
6239                         path=$(do_facet mgs $llog_reader $obj_file |
6240                                 grep "path=" | awk '{ print $NF }' |
6241                                 sed -e "s/^path=//g")
6242                         if [ $obj_file != $mntpt/$path ]; then
6243                                 echo "FAILED test_60a wrong obj path" \
6244                                       "$montpt/$path, should be $obj_file"
6245                                 pass=false
6246                                 break
6247                         fi
6248                 fi
6249         done
6250         rm -f $TMP/$tfile
6251         #restart mgs before "error", otherwise it will block the next test
6252         stop mgs || error "stop mgs failed"
6253         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6254         $pass || error "test failed, see FAILED test_60a messages for specifics"
6255 }
6256 run_test 60a "llog_test run from kernel module and test llog_reader"
6257
6258 test_60aa() {
6259         remote_mgs_nodsh && skip "remote MGS with nodsh"
6260
6261         # test old logid format
6262         if [ $MGS_VERSION -le $(version_code 3.1.53) ]; then
6263                 do_facet mgs $LCTL dl | grep MGS
6264                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
6265                         error "old llog_print failed"
6266         fi
6267
6268         # test new logid format
6269         if [ $MGS_VERSION -ge $(version_code 2.9.53) ]; then
6270                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
6271                         error "new llog_print failed"
6272         fi
6273 }
6274 run_test 60aa "llog_print works with FIDs and simple names"
6275
6276 test_60ab() {
6277         # test llog_print with params
6278
6279         [[ $MDS1_VERSION -gt $(version_code 2.11.51) ]] ||
6280                 skip "Need server version greater than 2.11.51"
6281
6282         local yaml
6283         local orig_val
6284
6285         orig_val=$(do_facet mgs $LCTL get_param jobid_name)
6286         do_facet mgs $LCTL set_param -P jobid_name="testname"
6287
6288         yaml=$(do_facet mgs $LCTL --device MGS llog_print params |
6289             grep jobid_name | tail -n 1)
6290
6291         local param=`awk '{ print $10 }' <<< "$yaml"`
6292         local val=`awk '{ print $12 }' <<< "$yaml"`
6293         #return to the default
6294         do_facet mgs $LCTL set_param -P jobid_name=$orig_val
6295         [ $val = "testname" ] || error "bad value: $val"
6296         [ $param = "jobid_name," ] || error "Bad param: $param"
6297 }
6298 run_test 60ab "llog_print params output values from set_param -P"
6299
6300 test_60b() { # bug 6411
6301         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6302
6303         dmesg > $DIR/$tfile
6304         LLOG_COUNT=$(do_facet mgs dmesg |
6305                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6306                           /llog_[a-z]*.c:[0-9]/ {
6307                                 if (marker)
6308                                         from_marker++
6309                                 from_begin++
6310                           }
6311                           END {
6312                                 if (marker)
6313                                         print from_marker
6314                                 else
6315                                         print from_begin
6316                           }")
6317
6318         [[ $LLOG_COUNT -gt 120 ]] &&
6319                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6320 }
6321 run_test 60b "limit repeated messages from CERROR/CWARN"
6322
6323 test_60c() {
6324         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6325
6326         echo "create 5000 files"
6327         createmany -o $DIR/f60c- 5000
6328 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6329         lctl set_param fail_loc=0x80000137
6330         unlinkmany $DIR/f60c- 5000
6331         lctl set_param fail_loc=0
6332 }
6333 run_test 60c "unlink file when mds full"
6334
6335 test_60d() {
6336         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6337
6338         SAVEPRINTK=$(lctl get_param -n printk)
6339         # verify "lctl mark" is even working"
6340         MESSAGE="test message ID $RANDOM $$"
6341         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6342         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6343
6344         lctl set_param printk=0 || error "set lnet.printk failed"
6345         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6346         MESSAGE="new test message ID $RANDOM $$"
6347         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6348         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6349         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6350
6351         lctl set_param -n printk="$SAVEPRINTK"
6352 }
6353 run_test 60d "test printk console message masking"
6354
6355 test_60e() {
6356         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6357         remote_mds_nodsh && skip "remote MDS with nodsh"
6358
6359         touch $DIR/$tfile
6360 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6361         do_facet mds1 lctl set_param fail_loc=0x15b
6362         rm $DIR/$tfile
6363 }
6364 run_test 60e "no space while new llog is being created"
6365
6366 test_60g() {
6367         local pid
6368
6369         test_mkdir -c $MDSCOUNT $DIR/$tdir
6370         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6371
6372         (
6373                 local index=0
6374                 while true; do
6375                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6376                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6377                         index=$((index + 1))
6378                 done
6379         ) &
6380
6381         pid=$!
6382
6383         for i in $(seq 100); do 
6384                 # define OBD_FAIL_OSD_TXN_START    0x19a
6385                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6386                 usleep 100
6387         done
6388
6389         kill -9 $pid
6390
6391         mkdir $DIR/$tdir/new || error "mkdir failed"
6392         rmdir $DIR/$tdir/new || error "rmdir failed"
6393 }
6394 run_test 60g "transaction abort won't cause MDT hung"
6395
6396 test_61() {
6397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6398
6399         f="$DIR/f61"
6400         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6401         cancel_lru_locks osc
6402         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6403         sync
6404 }
6405 run_test 61 "mmap() writes don't make sync hang ================"
6406
6407 # bug 2330 - insufficient obd_match error checking causes LBUG
6408 test_62() {
6409         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6410
6411         f="$DIR/f62"
6412         echo foo > $f
6413         cancel_lru_locks osc
6414         lctl set_param fail_loc=0x405
6415         cat $f && error "cat succeeded, expect -EIO"
6416         lctl set_param fail_loc=0
6417 }
6418 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6419 # match every page all of the time.
6420 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6421
6422 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6423 # Though this test is irrelevant anymore, it helped to reveal some
6424 # other grant bugs (LU-4482), let's keep it.
6425 test_63a() {   # was test_63
6426         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6427
6428         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6429
6430         for i in `seq 10` ; do
6431                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6432                 sleep 5
6433                 kill $!
6434                 sleep 1
6435         done
6436
6437         rm -f $DIR/f63 || true
6438 }
6439 run_test 63a "Verify oig_wait interruption does not crash ======="
6440
6441 # bug 2248 - async write errors didn't return to application on sync
6442 # bug 3677 - async write errors left page locked
6443 test_63b() {
6444         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6445
6446         debugsave
6447         lctl set_param debug=-1
6448
6449         # ensure we have a grant to do async writes
6450         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6451         rm $DIR/$tfile
6452
6453         sync    # sync lest earlier test intercept the fail_loc
6454
6455         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6456         lctl set_param fail_loc=0x80000406
6457         $MULTIOP $DIR/$tfile Owy && \
6458                 error "sync didn't return ENOMEM"
6459         sync; sleep 2; sync     # do a real sync this time to flush page
6460         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6461                 error "locked page left in cache after async error" || true
6462         debugrestore
6463 }
6464 run_test 63b "async write errors should be returned to fsync ==="
6465
6466 test_64a () {
6467         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6468
6469         df $DIR
6470         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6471 }
6472 run_test 64a "verify filter grant calculations (in kernel) ====="
6473
6474 test_64b () {
6475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6476
6477         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6478 }
6479 run_test 64b "check out-of-space detection on client"
6480
6481 test_64c() {
6482         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6483 }
6484 run_test 64c "verify grant shrink"
6485
6486 # this does exactly what osc_request.c:osc_announce_cached() does in
6487 # order to calculate max amount of grants to ask from server
6488 want_grant() {
6489         local tgt=$1
6490
6491         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6492         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6493
6494         ((rpc_in_flight ++));
6495         nrpages=$((nrpages * rpc_in_flight))
6496
6497         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6498
6499         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6500
6501         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6502         local undirty=$((nrpages * PAGE_SIZE))
6503
6504         local max_extent_pages
6505         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6506             grep grant_max_extent_size | awk '{print $2}')
6507         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6508         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6509         local grant_extent_tax
6510         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6511             grep grant_extent_tax | awk '{print $2}')
6512
6513         undirty=$((undirty + nrextents * grant_extent_tax))
6514
6515         echo $undirty
6516 }
6517
6518 # this is size of unit for grant allocation. It should be equal to
6519 # what tgt_grant.c:tgt_grant_chunk() calculates
6520 grant_chunk() {
6521         local tgt=$1
6522         local max_brw_size
6523         local grant_extent_tax
6524
6525         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6526             grep max_brw_size | awk '{print $2}')
6527
6528         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6529             grep grant_extent_tax | awk '{print $2}')
6530
6531         echo $(((max_brw_size + grant_extent_tax) * 2))
6532 }
6533
6534 test_64d() {
6535         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6536                 skip "OST < 2.10.55 doesn't limit grants enough"
6537
6538         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6539         local file=$DIR/$tfile
6540
6541         [[ $($LCTL get_param osc.${tgt}.import |
6542              grep "connect_flags:.*grant_param") ]] ||
6543                 skip "no grant_param connect flag"
6544
6545         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6546
6547         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6548
6549         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6550         stack_trap "rm -f $file" EXIT
6551
6552         $SETSTRIPE $file -i 0 -c 1
6553         dd if=/dev/zero of=$file bs=1M count=1000 &
6554         ddpid=$!
6555
6556         while true
6557         do
6558                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6559                 if [[ $cur_grant -gt $max_cur_granted ]]
6560                 then
6561                         kill $ddpid
6562                         error "cur_grant $cur_grant > $max_cur_granted"
6563                 fi
6564                 kill -0 $ddpid
6565                 [[ $? -ne 0 ]] && break;
6566                 sleep 2
6567         done
6568
6569         rm -f $DIR/$tfile
6570         wait_delete_completed
6571         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6572 }
6573 run_test 64d "check grant limit exceed"
6574
6575 # bug 1414 - set/get directories' stripe info
6576 test_65a() {
6577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6578
6579         test_mkdir $DIR/$tdir
6580         touch $DIR/$tdir/f1
6581         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6582 }
6583 run_test 65a "directory with no stripe info"
6584
6585 test_65b() {
6586         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6587
6588         test_mkdir $DIR/$tdir
6589         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6590
6591         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6592                                                 error "setstripe"
6593         touch $DIR/$tdir/f2
6594         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6595 }
6596 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6597
6598 test_65c() {
6599         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6600         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6601
6602         test_mkdir $DIR/$tdir
6603         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
6604
6605         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6606                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6607         touch $DIR/$tdir/f3
6608         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6609 }
6610 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6611
6612 test_65d() {
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6614
6615         test_mkdir $DIR/$tdir
6616         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
6617         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6618
6619         if [[ $STRIPECOUNT -le 0 ]]; then
6620                 sc=1
6621         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6622 #LOV_MAX_STRIPE_COUNT is 2000
6623                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6624         else
6625                 sc=$(($STRIPECOUNT - 1))
6626         fi
6627         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6628         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6629         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6630                 error "lverify failed"
6631 }
6632 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6633
6634 test_65e() {
6635         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6636
6637         test_mkdir $DIR/$tdir
6638
6639         $SETSTRIPE $DIR/$tdir || error "setstripe"
6640         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
6641                                         error "no stripe info failed"
6642         touch $DIR/$tdir/f6
6643         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6644 }
6645 run_test 65e "directory setstripe defaults"
6646
6647 test_65f() {
6648         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6649
6650         test_mkdir $DIR/${tdir}f
6651         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
6652 }
6653 run_test 65f "dir setstripe permission (should return error) ==="
6654
6655 test_65g() {
6656         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6657
6658         test_mkdir $DIR/$tdir
6659         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6660
6661         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6662                 error "setstripe -S failed"
6663         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6664         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6665                 error "delete default stripe failed"
6666 }
6667 run_test 65g "directory setstripe -d"
6668
6669 test_65h() {
6670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6671
6672         test_mkdir $DIR/$tdir
6673         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
6674
6675         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6676                 error "setstripe -S failed"
6677         test_mkdir $DIR/$tdir/dd1
6678         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
6679                 error "stripe info inherit failed"
6680 }
6681 run_test 65h "directory stripe info inherit ===================="
6682
6683 test_65i() {
6684         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6685
6686         save_layout_restore_at_exit $MOUNT
6687
6688         # bug6367: set non-default striping on root directory
6689         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6690
6691         # bug12836: getstripe on -1 default directory striping
6692         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6693
6694         # bug12836: getstripe -v on -1 default directory striping
6695         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6696
6697         # bug12836: new find on -1 default directory striping
6698         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6699 }
6700 run_test 65i "various tests to set root directory striping"
6701
6702 test_65j() { # bug6367
6703         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6704
6705         sync; sleep 1
6706
6707         # if we aren't already remounting for each test, do so for this test
6708         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6709                 cleanup || error "failed to unmount"
6710                 setup
6711         fi
6712
6713         save_layout_restore_at_exit $MOUNT
6714
6715         $SETSTRIPE -d $MOUNT || error "setstripe failed"
6716 }
6717 run_test 65j "set default striping on root directory (bug 6367)="
6718
6719 cleanup_65k() {
6720         rm -rf $DIR/$tdir
6721         wait_delete_completed
6722         do_facet $SINGLEMDS "lctl set_param -n \
6723                 osp.$ost*MDT0000.max_create_count=$max_count"
6724         do_facet $SINGLEMDS "lctl set_param -n \
6725                 osp.$ost*MDT0000.create_count=$count"
6726         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6727         echo $INACTIVE_OSC "is Activate"
6728
6729         wait_osc_import_state mds ost$ostnum FULL
6730 }
6731
6732 test_65k() { # bug11679
6733         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6734         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6735         remote_mds_nodsh && skip "remote MDS with nodsh"
6736
6737         local disable_precreate=true
6738         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
6739                 disable_precreate=false
6740
6741         echo "Check OST status: "
6742         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6743                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6744
6745         for OSC in $MDS_OSCS; do
6746                 echo $OSC "is active"
6747                 do_facet $SINGLEMDS lctl --device %$OSC activate
6748         done
6749
6750         for INACTIVE_OSC in $MDS_OSCS; do
6751                 local ost=$(osc_to_ost $INACTIVE_OSC)
6752                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6753                                lov.*md*.target_obd |
6754                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6755
6756                 mkdir -p $DIR/$tdir
6757                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
6758                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6759
6760                 echo "Deactivate: " $INACTIVE_OSC
6761                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6762
6763                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6764                               osp.$ost*MDT0000.create_count")
6765                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6766                                   osp.$ost*MDT0000.max_create_count")
6767                 $disable_precreate &&
6768                         do_facet $SINGLEMDS "lctl set_param -n \
6769                                 osp.$ost*MDT0000.max_create_count=0"
6770
6771                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6772                         [ -f $DIR/$tdir/$idx ] && continue
6773                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
6774                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
6775                                 { cleanup_65k;
6776                                   error "setstripe $idx should succeed"; }
6777                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6778                 done
6779                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6780                 rmdir $DIR/$tdir
6781
6782                 do_facet $SINGLEMDS "lctl set_param -n \
6783                         osp.$ost*MDT0000.max_create_count=$max_count"
6784                 do_facet $SINGLEMDS "lctl set_param -n \
6785                         osp.$ost*MDT0000.create_count=$count"
6786                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6787                 echo $INACTIVE_OSC "is Activate"
6788
6789                 wait_osc_import_state mds ost$ostnum FULL
6790         done
6791 }
6792 run_test 65k "validate manual striping works properly with deactivated OSCs"
6793
6794 test_65l() { # bug 12836
6795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6796
6797         test_mkdir -p $DIR/$tdir/test_dir
6798         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
6799         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6800 }
6801 run_test 65l "lfs find on -1 stripe dir ========================"
6802
6803 test_65m() {
6804         local layout=$(save_layout $MOUNT)
6805         $RUNAS $SETSTRIPE -c 2 $MOUNT && {
6806                 restore_layout $MOUNT $layout
6807                 error "setstripe should fail by non-root users"
6808         }
6809         true
6810 }
6811 run_test 65m "normal user can't set filesystem default stripe"
6812
6813 test_65n() {
6814         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.0) ]] ||
6815                 skip "Need MDS version at least 2.12.0"
6816         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
6817
6818         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
6819         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
6820         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
6821
6822         local root_layout=$(save_layout $MOUNT)
6823         stack_trap "restore_layout $MOUNT $root_layout" EXIT
6824
6825         # new subdirectory under root directory should not inherit
6826         # the default layout from root
6827         local dir1=$MOUNT/$tdir-1
6828         mkdir $dir1 || error "mkdir $dir1 failed"
6829         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
6830                 error "$dir1 shouldn't have LOV EA"
6831
6832         # delete the default layout on root directory
6833         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
6834
6835         local dir2=$MOUNT/$tdir-2
6836         mkdir $dir2 || error "mkdir $dir2 failed"
6837         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
6838                 error "$dir2 shouldn't have LOV EA"
6839
6840         # set a new striping pattern on root directory
6841         local def_stripe_size=$($LFS getstripe -S $MOUNT)
6842         local new_def_stripe_size=$((def_stripe_size * 2))
6843         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
6844                 error "set stripe size on $MOUNT failed"
6845
6846         # new file created in $dir2 should inherit the new stripe size from
6847         # the filesystem default
6848         local file2=$dir2/$tfile-2
6849         touch $file2 || error "touch $file2 failed"
6850
6851         local file2_stripe_size=$($LFS getstripe -S $file2)
6852         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
6853                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
6854
6855         local dir3=$MOUNT/$tdir-3
6856         mkdir $dir3 || error "mkdir $dir3 failed"
6857         ! getfattr -n trusted.lov $dir3 &> /dev/null ||
6858                 error "$dir3 shouldn't have LOV EA"
6859
6860         # set OST pool on root directory
6861         local pool=$TESTNAME
6862         pool_add $pool || error "add $pool failed"
6863         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
6864                 error "add targets to $pool failed"
6865
6866         $LFS setstripe -p $pool $MOUNT ||
6867                 error "set OST pool on $MOUNT failed"
6868
6869         # new file created in $dir3 should inherit the pool from
6870         # the filesystem default
6871         local file3=$dir3/$tfile-3
6872         touch $file3 || error "touch $file3 failed"
6873
6874         local file3_pool=$($LFS getstripe -p $file3)
6875         [[ "$file3_pool" = "$pool" ]] ||
6876                 error "$file3 didn't inherit OST pool $pool"
6877
6878         local dir4=$MOUNT/$tdir-4
6879         mkdir $dir4 || error "mkdir $dir4 failed"
6880         ! getfattr -n trusted.lov $dir4 &> /dev/null ||
6881                 error "$dir4 shouldn't have LOV EA"
6882
6883         # new file created in $dir4 should inherit the pool from
6884         # the filesystem default
6885         local file4=$dir4/$tfile-4
6886         touch $file4 || error "touch $file4 failed"
6887
6888         local file4_pool=$($LFS getstripe -p $file4)
6889         [[ "$file4_pool" = "$pool" ]] ||
6890                 error "$file4 didn't inherit OST pool $pool"
6891
6892         # new subdirectory under non-root directory should inherit
6893         # the default layout from its parent directory
6894         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
6895                 error "set directory layout on $dir4 failed"
6896
6897         local dir5=$dir4/$tdir-5
6898         mkdir $dir5 || error "mkdir $dir5 failed"
6899
6900         local dir4_layout=$(get_layout_param $dir4)
6901         local dir5_layout=$(get_layout_param $dir5)
6902         [[ "$dir4_layout" = "$dir5_layout" ]] ||
6903                 error "$dir5 should inherit the default layout from $dir4"
6904 }
6905 run_test 65n "don't inherit default layout from root for new subdirectories"
6906
6907 # bug 2543 - update blocks count on client
6908 test_66() {
6909         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6910
6911         COUNT=${COUNT:-8}
6912         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6913         sync; sync_all_data; sync; sync_all_data
6914         cancel_lru_locks osc
6915         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6916         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6917 }
6918 run_test 66 "update inode blocks count on client ==============="
6919
6920 meminfo() {
6921         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6922 }
6923
6924 swap_used() {
6925         swapon -s | awk '($1 == "'$1'") { print $4 }'
6926 }
6927
6928 # bug5265, obdfilter oa2dentry return -ENOENT
6929 # #define OBD_FAIL_SRV_ENOENT 0x217
6930 test_69() {
6931         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6932         remote_ost_nodsh && skip "remote OST with nodsh"
6933
6934         f="$DIR/$tfile"
6935         $SETSTRIPE -c 1 -i 0 $f
6936
6937         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6938
6939         do_facet ost1 lctl set_param fail_loc=0x217
6940         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6941         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6942
6943         do_facet ost1 lctl set_param fail_loc=0
6944         $DIRECTIO write $f 0 2 || error "write error"
6945
6946         cancel_lru_locks osc
6947         $DIRECTIO read $f 0 1 || error "read error"
6948
6949         do_facet ost1 lctl set_param fail_loc=0x217
6950         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6951
6952         do_facet ost1 lctl set_param fail_loc=0
6953         rm -f $f
6954 }
6955 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6956
6957 test_71() {
6958         test_mkdir $DIR/$tdir
6959         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6960         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6961 }
6962 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6963
6964 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6965         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6966         [ "$RUNAS_ID" = "$UID" ] &&
6967                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6968         # Check that testing environment is properly set up. Skip if not
6969         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
6970                 skip_env "User $RUNAS_ID does not exist - skipping"
6971
6972         touch $DIR/$tfile
6973         chmod 777 $DIR/$tfile
6974         chmod ug+s $DIR/$tfile
6975         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6976                 error "$RUNAS dd $DIR/$tfile failed"
6977         # See if we are still setuid/sgid
6978         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6979                 error "S/gid is not dropped on write"
6980         # Now test that MDS is updated too
6981         cancel_lru_locks mdc
6982         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6983                 error "S/gid is not dropped on MDS"
6984         rm -f $DIR/$tfile
6985 }
6986 run_test 72a "Test that remove suid works properly (bug5695) ===="
6987
6988 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6989         local perm
6990
6991         [ "$RUNAS_ID" = "$UID" ] &&
6992                 skip_env "RUNAS_ID = UID = $UID -- skipping"
6993         [ "$RUNAS_ID" -eq 0 ] &&
6994                 skip_env "RUNAS_ID = 0 -- skipping"
6995         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6996         # Check that testing environment is properly set up. Skip if not
6997         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
6998                 skip_env "User $RUNAS_ID does not exist - skipping"
6999
7000         touch $DIR/${tfile}-f{g,u}
7001         test_mkdir $DIR/${tfile}-dg
7002         test_mkdir $DIR/${tfile}-du
7003         chmod 770 $DIR/${tfile}-{f,d}{g,u}
7004         chmod g+s $DIR/${tfile}-{f,d}g
7005         chmod u+s $DIR/${tfile}-{f,d}u
7006         for perm in 777 2777 4777; do
7007                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
7008                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
7009                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
7010                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
7011         done
7012         true
7013 }
7014 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
7015
7016 # bug 3462 - multiple simultaneous MDC requests
7017 test_73() {
7018         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7019
7020         test_mkdir $DIR/d73-1
7021         test_mkdir $DIR/d73-2
7022         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
7023         pid1=$!
7024
7025         lctl set_param fail_loc=0x80000129
7026         $MULTIOP $DIR/d73-1/f73-2 Oc &
7027         sleep 1
7028         lctl set_param fail_loc=0
7029
7030         $MULTIOP $DIR/d73-2/f73-3 Oc &
7031         pid3=$!
7032
7033         kill -USR1 $pid1
7034         wait $pid1 || return 1
7035
7036         sleep 25
7037
7038         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
7039         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
7040         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
7041
7042         rm -rf $DIR/d73-*
7043 }
7044 run_test 73 "multiple MDC requests (should not deadlock)"
7045
7046 test_74a() { # bug 6149, 6184
7047         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7048
7049         touch $DIR/f74a
7050         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7051         #
7052         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7053         # will spin in a tight reconnection loop
7054         $LCTL set_param fail_loc=0x8000030e
7055         # get any lock that won't be difficult - lookup works.
7056         ls $DIR/f74a
7057         $LCTL set_param fail_loc=0
7058         rm -f $DIR/f74a
7059         true
7060 }
7061 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7062
7063 test_74b() { # bug 13310
7064         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7065
7066         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7067         #
7068         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7069         # will spin in a tight reconnection loop
7070         $LCTL set_param fail_loc=0x8000030e
7071         # get a "difficult" lock
7072         touch $DIR/f74b
7073         $LCTL set_param fail_loc=0
7074         rm -f $DIR/f74b
7075         true
7076 }
7077 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7078
7079 test_74c() {
7080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7081
7082         #define OBD_FAIL_LDLM_NEW_LOCK
7083         $LCTL set_param fail_loc=0x319
7084         touch $DIR/$tfile && error "touch successful"
7085         $LCTL set_param fail_loc=0
7086         true
7087 }
7088 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7089
7090 num_inodes() {
7091         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7092 }
7093
7094 test_76() { # Now for bug 20433, added originally in bug 1443
7095         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7096
7097         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7098
7099         cancel_lru_locks osc
7100         BEFORE_INODES=$(num_inodes)
7101         echo "before inodes: $BEFORE_INODES"
7102         local COUNT=1000
7103         [ "$SLOW" = "no" ] && COUNT=100
7104         for i in $(seq $COUNT); do
7105                 touch $DIR/$tfile
7106                 rm -f $DIR/$tfile
7107         done
7108         cancel_lru_locks osc
7109         AFTER_INODES=$(num_inodes)
7110         echo "after inodes: $AFTER_INODES"
7111         local wait=0
7112         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7113                 sleep 2
7114                 AFTER_INODES=$(num_inodes)
7115                 wait=$((wait+2))
7116                 echo "wait $wait seconds inodes: $AFTER_INODES"
7117                 if [ $wait -gt 30 ]; then
7118                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7119                 fi
7120         done
7121 }
7122 run_test 76 "confirm clients recycle inodes properly ===="
7123
7124
7125 export ORIG_CSUM=""
7126 set_checksums()
7127 {
7128         # Note: in sptlrpc modes which enable its own bulk checksum, the
7129         # original crc32_le bulk checksum will be automatically disabled,
7130         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7131         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7132         # In this case set_checksums() will not be no-op, because sptlrpc
7133         # bulk checksum will be enabled all through the test.
7134
7135         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7136         lctl set_param -n osc.*.checksums $1
7137         return 0
7138 }
7139
7140 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7141                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7142 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7143                              tr -d [] | head -n1)}
7144 set_checksum_type()
7145 {
7146         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7147         log "set checksum type to $1"
7148         return 0
7149 }
7150 F77_TMP=$TMP/f77-temp
7151 F77SZ=8
7152 setup_f77() {
7153         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7154                 error "error writing to $F77_TMP"
7155 }
7156
7157 test_77a() { # bug 10889
7158         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7159         $GSS && skip_env "could not run with gss"
7160
7161         [ ! -f $F77_TMP ] && setup_f77
7162         set_checksums 1
7163         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7164         set_checksums 0
7165         rm -f $DIR/$tfile
7166 }
7167 run_test 77a "normal checksum read/write operation"
7168
7169 test_77b() { # bug 10889
7170         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7171         $GSS && skip_env "could not run with gss"
7172
7173         [ ! -f $F77_TMP ] && setup_f77
7174         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7175         $LCTL set_param fail_loc=0x80000409
7176         set_checksums 1
7177
7178         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7179                 error "dd error: $?"
7180         $LCTL set_param fail_loc=0
7181
7182         for algo in $CKSUM_TYPES; do
7183                 cancel_lru_locks osc
7184                 set_checksum_type $algo
7185                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7186                 $LCTL set_param fail_loc=0x80000408
7187                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7188                 $LCTL set_param fail_loc=0
7189         done
7190         set_checksums 0
7191         set_checksum_type $ORIG_CSUM_TYPE
7192         rm -f $DIR/$tfile
7193 }
7194 run_test 77b "checksum error on client write, read"
7195
7196 cleanup_77c() {
7197         trap 0
7198         set_checksums 0
7199         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7200         $check_ost &&
7201                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7202         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7203         $check_ost && [ -n "$ost_file_prefix" ] &&
7204                 do_facet ost1 rm -f ${ost_file_prefix}\*
7205 }
7206
7207 test_77c() {
7208         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7209         $GSS && skip_env "could not run with gss"
7210         remote_ost_nodsh && skip "remote OST with nodsh"
7211
7212         local bad1
7213         local osc_file_prefix
7214         local osc_file
7215         local check_ost=false
7216         local ost_file_prefix
7217         local ost_file
7218         local orig_cksum
7219         local dump_cksum
7220         local fid
7221
7222         # ensure corruption will occur on first OSS/OST
7223         $LFS setstripe -i 0 $DIR/$tfile
7224
7225         [ ! -f $F77_TMP ] && setup_f77
7226         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7227                 error "dd write error: $?"
7228         fid=$($LFS path2fid $DIR/$tfile)
7229
7230         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7231         then
7232                 check_ost=true
7233                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7234                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7235         else
7236                 echo "OSS do not support bulk pages dump upon error"
7237         fi
7238
7239         osc_file_prefix=$($LCTL get_param -n debug_path)
7240         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7241
7242         trap cleanup_77c EXIT
7243
7244         set_checksums 1
7245         # enable bulk pages dump upon error on Client
7246         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7247         # enable bulk pages dump upon error on OSS
7248         $check_ost &&
7249                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7250
7251         # flush Client cache to allow next read to reach OSS
7252         cancel_lru_locks osc
7253
7254         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7255         $LCTL set_param fail_loc=0x80000408
7256         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7257         $LCTL set_param fail_loc=0
7258
7259         rm -f $DIR/$tfile
7260
7261         # check cksum dump on Client
7262         osc_file=$(ls ${osc_file_prefix}*)
7263         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7264         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7265         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7266         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7267         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7268                      cksum)
7269         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7270         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7271                 error "dump content does not match on Client"
7272
7273         $check_ost || skip "No need to check cksum dump on OSS"
7274
7275         # check cksum dump on OSS
7276         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7277         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7278         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7279         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7280         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7281                 error "dump content does not match on OSS"
7282
7283         cleanup_77c
7284 }
7285 run_test 77c "checksum error on client read with debug"
7286
7287 test_77d() { # bug 10889
7288         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7289         $GSS && skip_env "could not run with gss"
7290
7291         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7292         $LCTL set_param fail_loc=0x80000409
7293         set_checksums 1
7294         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7295                 error "direct write: rc=$?"
7296         $LCTL set_param fail_loc=0
7297         set_checksums 0
7298
7299         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7300         $LCTL set_param fail_loc=0x80000408
7301         set_checksums 1
7302         cancel_lru_locks osc
7303         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7304                 error "direct read: rc=$?"
7305         $LCTL set_param fail_loc=0
7306         set_checksums 0
7307 }
7308 run_test 77d "checksum error on OST direct write, read"
7309
7310 test_77f() { # bug 10889
7311         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7312         $GSS && skip_env "could not run with gss"
7313
7314         set_checksums 1
7315         for algo in $CKSUM_TYPES; do
7316                 cancel_lru_locks osc
7317                 set_checksum_type $algo
7318                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7319                 $LCTL set_param fail_loc=0x409
7320                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7321                         error "direct write succeeded"
7322                 $LCTL set_param fail_loc=0
7323         done
7324         set_checksum_type $ORIG_CSUM_TYPE
7325         set_checksums 0
7326 }
7327 run_test 77f "repeat checksum error on write (expect error)"
7328
7329 test_77g() { # bug 10889
7330         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7331         $GSS && skip_env "could not run with gss"
7332         remote_ost_nodsh && skip "remote OST with nodsh"
7333
7334         [ ! -f $F77_TMP ] && setup_f77
7335
7336         local file=$DIR/$tfile
7337         stack_trap "rm -f $file" EXIT
7338
7339         $SETSTRIPE -c 1 -i 0 $file
7340         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7341         do_facet ost1 lctl set_param fail_loc=0x8000021a
7342         set_checksums 1
7343         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7344                 error "write error: rc=$?"
7345         do_facet ost1 lctl set_param fail_loc=0
7346         set_checksums 0
7347
7348         cancel_lru_locks osc
7349         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7350         do_facet ost1 lctl set_param fail_loc=0x8000021b
7351         set_checksums 1
7352         cmp $F77_TMP $file || error "file compare failed"
7353         do_facet ost1 lctl set_param fail_loc=0
7354         set_checksums 0
7355 }
7356 run_test 77g "checksum error on OST write, read"
7357
7358 test_77k() { # LU-10906
7359         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7360         $GSS && skip_env "could not run with gss"
7361
7362         local cksum_param="osc.$FSNAME*.checksums"
7363         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7364         local checksum
7365         local i
7366
7367         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7368         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7369         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7370                 EXIT
7371
7372         for i in 0 1; do
7373                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7374                         error "failed to set checksum=$i on MGS"
7375                 wait_update $HOSTNAME "$get_checksum" $i
7376                 #remount
7377                 echo "remount client, checksum should be $i"
7378                 remount_client $MOUNT || "failed to remount client"
7379                 checksum=$(eval $get_checksum)
7380                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7381         done
7382
7383         for opt in "checksum" "nochecksum"; do
7384                 #remount with mount option
7385                 echo "remount client with option $opt, checksum should be $i"
7386                 umount_client $MOUNT || "failed to umount client"
7387                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7388                         "failed to mount client with option '$opt'"
7389                 checksum=$(eval $get_checksum)
7390                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7391                 i=$((i - 1))
7392         done
7393
7394         remount_client $MOUNT || "failed to remount client"
7395 }
7396 run_test 77k "enable/disable checksum correctly"
7397
7398 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7399 rm -f $F77_TMP
7400 unset F77_TMP
7401
7402 cleanup_test_78() {
7403         trap 0
7404         rm -f $DIR/$tfile
7405 }
7406
7407 test_78() { # bug 10901
7408         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7409         remote_ost || skip_env "local OST"
7410
7411         NSEQ=5
7412         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7413         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7414         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7415         echo "MemTotal: $MEMTOTAL"
7416
7417         # reserve 256MB of memory for the kernel and other running processes,
7418         # and then take 1/2 of the remaining memory for the read/write buffers.
7419         if [ $MEMTOTAL -gt 512 ] ;then
7420                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7421         else
7422                 # for those poor memory-starved high-end clusters...
7423                 MEMTOTAL=$((MEMTOTAL / 2))
7424         fi
7425         echo "Mem to use for directio: $MEMTOTAL"
7426
7427         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7428         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7429         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7430         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7431                 head -n1)
7432         echo "Smallest OST: $SMALLESTOST"
7433         [[ $SMALLESTOST -lt 10240 ]] &&
7434                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7435
7436         trap cleanup_test_78 EXIT
7437
7438         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7439                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7440
7441         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7442         echo "File size: $F78SIZE"
7443         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7444         for i in $(seq 1 $NSEQ); do
7445                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7446                 echo directIO rdwr round $i of $NSEQ
7447                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7448         done
7449
7450         cleanup_test_78
7451 }
7452 run_test 78 "handle large O_DIRECT writes correctly ============"
7453
7454 test_79() { # bug 12743
7455         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7456
7457         wait_delete_completed
7458
7459         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7460         BKFREE=$(calc_osc_kbytes kbytesfree)
7461         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7462
7463         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7464         DFTOTAL=`echo $STRING | cut -d, -f1`
7465         DFUSED=`echo $STRING  | cut -d, -f2`
7466         DFAVAIL=`echo $STRING | cut -d, -f3`
7467         DFFREE=$(($DFTOTAL - $DFUSED))
7468
7469         ALLOWANCE=$((64 * $OSTCOUNT))
7470
7471         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7472            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7473                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7474         fi
7475         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7476            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7477                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7478         fi
7479         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7480            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7481                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7482         fi
7483 }
7484 run_test 79 "df report consistency check ======================="
7485
7486 test_80() { # bug 10718
7487         remote_ost_nodsh && skip "remote OST with nodsh"
7488         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7489
7490         # relax strong synchronous semantics for slow backends like ZFS
7491         local soc="obdfilter.*.sync_on_lock_cancel"
7492         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7493         local hosts=
7494         if [ "$soc_old" != "never" ] &&
7495                 [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7496                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7497                                 facet_active_host $host; done | sort -u)
7498                         do_nodes $hosts lctl set_param $soc=never
7499         fi
7500
7501         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7502         sync; sleep 1; sync
7503         local BEFORE=`date +%s`
7504         cancel_lru_locks osc
7505         local AFTER=`date +%s`
7506         local DIFF=$((AFTER-BEFORE))
7507         if [ $DIFF -gt 1 ] ; then
7508                 error "elapsed for 1M@1T = $DIFF"
7509         fi
7510
7511         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7512
7513         rm -f $DIR/$tfile
7514 }
7515 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7516
7517 test_81a() { # LU-456
7518         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7519         remote_ost_nodsh && skip "remote OST with nodsh"
7520
7521         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7522         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7523         do_facet ost1 lctl set_param fail_loc=0x80000228
7524
7525         # write should trigger a retry and success
7526         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7527         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7528         RC=$?
7529         if [ $RC -ne 0 ] ; then
7530                 error "write should success, but failed for $RC"
7531         fi
7532 }
7533 run_test 81a "OST should retry write when get -ENOSPC ==============="
7534
7535 test_81b() { # LU-456
7536         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7537         remote_ost_nodsh && skip "remote OST with nodsh"
7538
7539         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7540         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7541         do_facet ost1 lctl set_param fail_loc=0x228
7542
7543         # write should retry several times and return -ENOSPC finally
7544         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
7545         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7546         RC=$?
7547         ENOSPC=28
7548         if [ $RC -ne $ENOSPC ] ; then
7549                 error "dd should fail for -ENOSPC, but succeed."
7550         fi
7551 }
7552 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7553
7554 test_82() { # LU-1031
7555         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7556         local gid1=14091995
7557         local gid2=16022000
7558
7559         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7560         local MULTIPID1=$!
7561         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7562         local MULTIPID2=$!
7563         kill -USR1 $MULTIPID2
7564         sleep 2
7565         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7566                 error "First grouplock does not block second one"
7567         else
7568                 echo "Second grouplock blocks first one"
7569         fi
7570         kill -USR1 $MULTIPID1
7571         wait $MULTIPID1
7572         wait $MULTIPID2
7573 }
7574 run_test 82 "Basic grouplock test"
7575
7576 test_83() {
7577         local sfile="/boot/System.map-$(uname -r)"
7578         [ ! -f $sfile ] && skip "No $sfile found"
7579         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
7580         $LCTL set_param fail_loc=0x140d
7581         cp $sfile $DIR/$tfile || error "write failed"
7582         diff -c $sfile $DIR/$tfile || error "files are different"
7583         $LCTL set_param fail_loc=0
7584         rm -f $DIR/$tfile
7585 }
7586 run_test 83 "Short write in ptask ==============================="
7587
7588 test_99() {
7589         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7590
7591         test_mkdir $DIR/$tdir.cvsroot
7592         chown $RUNAS_ID $DIR/$tdir.cvsroot
7593
7594         cd $TMP
7595         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7596
7597         cd /etc/init.d
7598         # some versions of cvs import exit(1) when asked to import links or
7599         # files they can't read.  ignore those files.
7600         local toignore=$(find . -type l -printf '-I %f\n' -o \
7601                          ! -perm /4 -printf '-I %f\n')
7602         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7603                 $tdir.reposname vtag rtag
7604
7605         cd $DIR
7606         test_mkdir $DIR/$tdir.reposname
7607         chown $RUNAS_ID $DIR/$tdir.reposname
7608         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7609
7610         cd $DIR/$tdir.reposname
7611         $RUNAS touch foo99
7612         $RUNAS cvs add -m 'addmsg' foo99
7613         $RUNAS cvs update
7614         $RUNAS cvs commit -m 'nomsg' foo99
7615         rm -fr $DIR/$tdir.cvsroot
7616 }
7617 run_test 99 "cvs strange file/directory operations"
7618
7619 test_100() {
7620         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7621         [[ "$NETTYPE" =~ tcp ]] ||
7622                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7623         remote_ost_nodsh && skip "remote OST with nodsh"
7624         remote_mds_nodsh && skip "remote MDS with nodsh"
7625         remote_servers ||
7626                 skip "useless for local single node setup"
7627
7628         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7629                 [ "$PROT" != "tcp" ] && continue
7630                 RPORT=$(echo $REMOTE | cut -d: -f2)
7631                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7632
7633                 rc=0
7634                 LPORT=`echo $LOCAL | cut -d: -f2`
7635                 if [ $LPORT -ge 1024 ]; then
7636                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7637                         netstat -tna
7638                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7639                 fi
7640         done
7641         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7642 }
7643 run_test 100 "check local port using privileged port ==========="
7644
7645 function get_named_value()
7646 {
7647     local tag
7648
7649     tag=$1
7650     while read ;do
7651         line=$REPLY
7652         case $line in
7653         $tag*)
7654             echo $line | sed "s/^$tag[ ]*//"
7655             break
7656             ;;
7657         esac
7658     done
7659 }
7660
7661 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7662                    awk '/^max_cached_mb/ { print $2 }')
7663
7664 cleanup_101a() {
7665         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7666         trap 0
7667 }
7668
7669 test_101a() {
7670         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7671         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7672
7673         local s
7674         local discard
7675         local nreads=10000
7676         local cache_limit=32
7677
7678         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7679         trap cleanup_101a EXIT
7680         $LCTL set_param -n llite.*.read_ahead_stats 0
7681         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7682
7683         #
7684         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7685         #
7686         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7687         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7688
7689         discard=0
7690         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7691                 get_named_value 'read but discarded' | cut -d" " -f1); do
7692                         discard=$(($discard + $s))
7693         done
7694         cleanup_101a
7695
7696         if [[ $(($discard * 10)) -gt $nreads ]]; then
7697                 $LCTL get_param osc.*-osc*.rpc_stats
7698                 $LCTL get_param llite.*.read_ahead_stats
7699                 error "too many ($discard) discarded pages"
7700         fi
7701         rm -f $DIR/$tfile || true
7702 }
7703 run_test 101a "check read-ahead for random reads"
7704
7705 setup_test101bc() {
7706         test_mkdir $DIR/$tdir
7707         local STRIPE_SIZE=$1
7708         local FILE_LENGTH=$2
7709         STRIPE_OFFSET=0
7710
7711         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
7712
7713         local list=$(comma_list $(osts_nodes))
7714         set_osd_param $list '' read_cache_enable 0
7715         set_osd_param $list '' writethrough_cache_enable 0
7716
7717         trap cleanup_test101bc EXIT
7718         # prepare the read-ahead file
7719         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7720
7721         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
7722                                 count=$FILE_SIZE_MB 2> /dev/null
7723
7724 }
7725
7726 cleanup_test101bc() {
7727         trap 0
7728         rm -rf $DIR/$tdir
7729         rm -f $DIR/$tfile
7730
7731         local list=$(comma_list $(osts_nodes))
7732         set_osd_param $list '' read_cache_enable 1
7733         set_osd_param $list '' writethrough_cache_enable 1
7734 }
7735
7736 calc_total() {
7737         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7738 }
7739
7740 ra_check_101() {
7741         local READ_SIZE=$1
7742         local STRIPE_SIZE=$2
7743         local FILE_LENGTH=$3
7744         local RA_INC=1048576
7745         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7746         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7747                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7748         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7749                         get_named_value 'read but discarded' |
7750                         cut -d" " -f1 | calc_total)
7751         if [[ $DISCARD -gt $discard_limit ]]; then
7752                 $LCTL get_param llite.*.read_ahead_stats
7753                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7754         else
7755                 echo "Read-ahead success for size ${READ_SIZE}"
7756         fi
7757 }
7758
7759 test_101b() {
7760         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7761         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7762
7763         local STRIPE_SIZE=1048576
7764         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7765
7766         if [ $SLOW == "yes" ]; then
7767                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7768         else
7769                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7770         fi
7771
7772         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7773
7774         # prepare the read-ahead file
7775         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7776         cancel_lru_locks osc
7777         for BIDX in 2 4 8 16 32 64 128 256
7778         do
7779                 local BSIZE=$((BIDX*4096))
7780                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7781                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7782                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7783                 $LCTL set_param -n llite.*.read_ahead_stats 0
7784                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7785                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7786                 cancel_lru_locks osc
7787                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7788         done
7789         cleanup_test101bc
7790         true
7791 }
7792 run_test 101b "check stride-io mode read-ahead ================="
7793
7794 test_101c() {
7795         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7796
7797         local STRIPE_SIZE=1048576
7798         local FILE_LENGTH=$((STRIPE_SIZE*100))
7799         local nreads=10000
7800         local osc_rpc_stats
7801
7802         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7803
7804         cancel_lru_locks osc
7805         $LCTL set_param osc.*.rpc_stats 0
7806         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
7807         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7808                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7809                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7810                 local size
7811
7812                 if [ $lines -le 20 ]; then
7813                         continue
7814                 fi
7815                 for size in 1 2 4 8; do
7816                         local rpc=$(echo "$stats" |
7817                                     awk '($1 == "'$size':") {print $2; exit; }')
7818                         [ $rpc != 0 ] &&
7819                                 error "Small $((size*4))k read IO $rpc !"
7820                 done
7821                 echo "$osc_rpc_stats check passed!"
7822         done
7823         cleanup_test101bc
7824         true
7825 }
7826 run_test 101c "check stripe_size aligned read-ahead ================="
7827
7828 set_read_ahead() {
7829         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7830         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7831 }
7832
7833 test_101d() {
7834         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7835
7836         local file=$DIR/$tfile
7837         local sz_MB=${FILESIZE_101d:-500}
7838         local ra_MB=${READAHEAD_MB:-40}
7839
7840         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7841         [ $free_MB -lt $sz_MB ] &&
7842                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7843
7844         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7845         $SETSTRIPE -c -1 $file || error "setstripe failed"
7846
7847         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7848         echo Cancel LRU locks on lustre client to flush the client cache
7849         cancel_lru_locks osc
7850
7851         echo Disable read-ahead
7852         local old_READAHEAD=$(set_read_ahead 0)
7853
7854         echo Reading the test file $file with read-ahead disabled
7855         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7856
7857         echo Cancel LRU locks on lustre client to flush the client cache
7858         cancel_lru_locks osc
7859         echo Enable read-ahead with ${ra_MB}MB
7860         set_read_ahead $ra_MB
7861
7862         echo Reading the test file $file with read-ahead enabled
7863         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7864
7865         echo "read-ahead disabled time read $raOFF"
7866         echo "read-ahead enabled  time read $raON"
7867
7868         set_read_ahead $old_READAHEAD
7869         rm -f $file
7870         wait_delete_completed
7871
7872         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7873                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7874 }
7875 run_test 101d "file read with and without read-ahead enabled"
7876
7877 test_101e() {
7878         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7879
7880         local file=$DIR/$tfile
7881         local size_KB=500  #KB
7882         local count=100
7883         local bsize=1024
7884
7885         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7886         local need_KB=$((count * size_KB))
7887         [[ $free_KB -le $need_KB ]] &&
7888                 skip_env "Need free space $need_KB, have $free_KB"
7889
7890         echo "Creating $count ${size_KB}K test files"
7891         for ((i = 0; i < $count; i++)); do
7892                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7893         done
7894
7895         echo "Cancel LRU locks on lustre client to flush the client cache"
7896         cancel_lru_locks $OSC
7897
7898         echo "Reset readahead stats"
7899         $LCTL set_param -n llite.*.read_ahead_stats 0
7900
7901         for ((i = 0; i < $count; i++)); do
7902                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7903         done
7904
7905         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7906                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7907
7908         for ((i = 0; i < $count; i++)); do
7909                 rm -rf $file.$i 2>/dev/null
7910         done
7911
7912         #10000 means 20% reads are missing in readahead
7913         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7914 }
7915 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7916
7917 test_101f() {
7918         which iozone || skip_env "no iozone installed"
7919
7920         local old_debug=$($LCTL get_param debug)
7921         old_debug=${old_debug#*=}
7922         $LCTL set_param debug="reada mmap"
7923
7924         # create a test file
7925         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7926
7927         echo Cancel LRU locks on lustre client to flush the client cache
7928         cancel_lru_locks osc
7929
7930         echo Reset readahead stats
7931         $LCTL set_param -n llite.*.read_ahead_stats 0
7932
7933         echo mmap read the file with small block size
7934         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7935                 > /dev/null 2>&1
7936
7937         echo checking missing pages
7938         $LCTL get_param llite.*.read_ahead_stats
7939         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7940                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7941
7942         $LCTL set_param debug="$old_debug"
7943         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7944         rm -f $DIR/$tfile
7945 }
7946 run_test 101f "check mmap read performance"
7947
7948 test_101g_brw_size_test() {
7949         local mb=$1
7950         local pages=$((mb * 1048576 / PAGE_SIZE))
7951         local file=$DIR/$tfile
7952
7953         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7954                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7955         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7956                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7957                         return 2
7958         done
7959
7960         stack_trap "rm -f $file" EXIT
7961         $LCTL set_param -n osc.*.rpc_stats=0
7962
7963         # 10 RPCs should be enough for the test
7964         local count=10
7965         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7966                 { error "dd write ${mb} MB blocks failed"; return 3; }
7967         cancel_lru_locks osc
7968         dd of=/dev/null if=$file bs=${mb}M count=$count ||
7969                 { error "dd write ${mb} MB blocks failed"; return 4; }
7970
7971         # calculate number of full-sized read and write RPCs
7972         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7973                 sed -n '/pages per rpc/,/^$/p' |
7974                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7975                 END { print reads,writes }'))
7976         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7977                 return 5
7978         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7979                 return 6
7980
7981         return 0
7982 }
7983
7984 test_101g() {
7985         remote_ost_nodsh && skip "remote OST with nodsh"
7986
7987         local rpcs
7988         local osts=$(get_facets OST)
7989         local list=$(comma_list $(osts_nodes))
7990         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7991         local brw_size="obdfilter.*.brw_size"
7992
7993         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7994
7995         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7996         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
7997              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
7998                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
7999            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
8000              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
8001                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
8002                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
8003                 if [[ $orig_mb -lt 16 ]]; then
8004                         save_lustre_params $osts "$brw_size" > $p
8005                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
8006                                 error "set 16MB RPC size failed"
8007
8008                         echo "remount client to enable new RPC size"
8009                         remount_client $MOUNT || error "remount_client failed"
8010                 fi
8011
8012                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
8013                 # should be able to set brw_size=12, but no rpc_stats for that
8014                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
8015         fi
8016
8017         test_101g_brw_size_test 4 || error "4MB RPC test failed"
8018
8019         if [[ $orig_mb -lt 16 ]]; then
8020                 restore_lustre_params < $p
8021                 remount_client $MOUNT || error "remount_client restore failed"
8022         fi
8023
8024         rm -f $p $DIR/$tfile
8025 }
8026 run_test 101g "Big bulk(4/16 MiB) readahead"
8027
8028 setup_test102() {
8029         test_mkdir $DIR/$tdir
8030         chown $RUNAS_ID $DIR/$tdir
8031         STRIPE_SIZE=65536
8032         STRIPE_OFFSET=1
8033         STRIPE_COUNT=$OSTCOUNT
8034         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
8035
8036         trap cleanup_test102 EXIT
8037         cd $DIR
8038         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
8039         cd $DIR/$tdir
8040         for num in 1 2 3 4; do
8041                 for count in $(seq 1 $STRIPE_COUNT); do
8042                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
8043                                 local size=`expr $STRIPE_SIZE \* $num`
8044                                 local file=file"$num-$idx-$count"
8045                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
8046                         done
8047                 done
8048         done
8049
8050         cd $DIR
8051         $1 tar cf $TMP/f102.tar $tdir --xattrs
8052 }
8053
8054 cleanup_test102() {
8055         trap 0
8056         rm -f $TMP/f102.tar
8057         rm -rf $DIR/d0.sanity/d102
8058 }
8059
8060 test_102a() {
8061         [ "$UID" != 0 ] && skip "must run as root"
8062         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
8063                 skip_env "must have user_xattr"
8064
8065         [ -z "$(which setfattr 2>/dev/null)" ] &&
8066                 skip_env "could not find setfattr"
8067
8068         local testfile=$DIR/$tfile
8069
8070         touch $testfile
8071         echo "set/get xattr..."
8072         setfattr -n trusted.name1 -v value1 $testfile ||
8073                 error "setfattr -n trusted.name1=value1 $testfile failed"
8074         getfattr -n trusted.name1 $testfile 2> /dev/null |
8075           grep "trusted.name1=.value1" ||
8076                 error "$testfile missing trusted.name1=value1"
8077
8078         setfattr -n user.author1 -v author1 $testfile ||
8079                 error "setfattr -n user.author1=author1 $testfile failed"
8080         getfattr -n user.author1 $testfile 2> /dev/null |
8081           grep "user.author1=.author1" ||
8082                 error "$testfile missing trusted.author1=author1"
8083
8084         echo "listxattr..."
8085         setfattr -n trusted.name2 -v value2 $testfile ||
8086                 error "$testfile unable to set trusted.name2"
8087         setfattr -n trusted.name3 -v value3 $testfile ||
8088                 error "$testfile unable to set trusted.name3"
8089         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8090             grep "trusted.name" | wc -l) -eq 3 ] ||
8091                 error "$testfile missing 3 trusted.name xattrs"
8092
8093         setfattr -n user.author2 -v author2 $testfile ||
8094                 error "$testfile unable to set user.author2"
8095         setfattr -n user.author3 -v author3 $testfile ||
8096                 error "$testfile unable to set user.author3"
8097         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8098             grep "user.author" | wc -l) -eq 3 ] ||
8099                 error "$testfile missing 3 user.author xattrs"
8100
8101         echo "remove xattr..."
8102         setfattr -x trusted.name1 $testfile ||
8103                 error "$testfile error deleting trusted.name1"
8104         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8105                 error "$testfile did not delete trusted.name1 xattr"
8106
8107         setfattr -x user.author1 $testfile ||
8108                 error "$testfile error deleting user.author1"
8109         echo "set lustre special xattr ..."
8110         $LFS setstripe -c1 $testfile
8111         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8112                 awk -F "=" '/trusted.lov/ { print $2 }' )
8113         setfattr -n "trusted.lov" -v $lovea $testfile ||
8114                 error "$testfile doesn't ignore setting trusted.lov again"
8115         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8116                 error "$testfile allow setting invalid trusted.lov"
8117         rm -f $testfile
8118 }
8119 run_test 102a "user xattr test =================================="
8120
8121 test_102b() {
8122         [ -z "$(which setfattr 2>/dev/null)" ] &&
8123                 skip_env "could not find setfattr"
8124         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8125
8126         # b10930: get/set/list trusted.lov xattr
8127         echo "get/set/list trusted.lov xattr ..."
8128         local testfile=$DIR/$tfile
8129         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8130                 error "setstripe failed"
8131         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
8132                 error "getstripe failed"
8133         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8134                 error "can't get trusted.lov from $testfile"
8135
8136         local testfile2=${testfile}2
8137         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8138                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8139
8140         $MCREATE $testfile2
8141         setfattr -n trusted.lov -v $value $testfile2
8142         local stripe_size=$($GETSTRIPE -S $testfile2)
8143         local stripe_count=$($GETSTRIPE -c $testfile2)
8144         [[ $stripe_size -eq 65536 ]] ||
8145                 error "stripe size $stripe_size != 65536"
8146         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8147                 error "stripe count $stripe_count != $STRIPECOUNT"
8148         rm -f $DIR/$tfile
8149 }
8150 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8151
8152 test_102c() {
8153         [ -z "$(which setfattr 2>/dev/null)" ] &&
8154                 skip_env "could not find setfattr"
8155         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8156
8157         # b10930: get/set/list lustre.lov xattr
8158         echo "get/set/list lustre.lov xattr ..."
8159         test_mkdir $DIR/$tdir
8160         chown $RUNAS_ID $DIR/$tdir
8161         local testfile=$DIR/$tdir/$tfile
8162         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8163                 error "setstripe failed"
8164         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
8165                 error "getstripe failed"
8166         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8167         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8168
8169         local testfile2=${testfile}2
8170         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8171                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8172
8173         $RUNAS $MCREATE $testfile2
8174         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8175         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
8176         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
8177         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8178         [ $stripe_count -eq $STRIPECOUNT ] ||
8179                 error "stripe count $stripe_count != $STRIPECOUNT"
8180 }
8181 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8182
8183 compare_stripe_info1() {
8184         local stripe_index_all_zero=true
8185
8186         for num in 1 2 3 4; do
8187                 for count in $(seq 1 $STRIPE_COUNT); do
8188                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8189                                 local size=$((STRIPE_SIZE * num))
8190                                 local file=file"$num-$offset-$count"
8191                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8192                                 [[ $stripe_size -ne $size ]] &&
8193                                     error "$file: size $stripe_size != $size"
8194                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8195                                 # allow fewer stripes to be created, ORI-601
8196                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8197                                     error "$file: count $stripe_count != $count"
8198                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8199                                 [[ $stripe_index -ne 0 ]] &&
8200                                         stripe_index_all_zero=false
8201                         done
8202                 done
8203         done
8204         $stripe_index_all_zero &&
8205                 error "all files are being extracted starting from OST index 0"
8206         return 0
8207 }
8208
8209 have_xattrs_include() {
8210         tar --help | grep -q xattrs-include &&
8211                 echo --xattrs-include="lustre.*"
8212 }
8213
8214 test_102d() {
8215         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8216         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8217
8218         XINC=$(have_xattrs_include)
8219         setup_test102
8220         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8221         cd $DIR/$tdir/$tdir
8222         compare_stripe_info1
8223 }
8224 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8225
8226 test_102f() {
8227         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8228         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8229
8230         XINC=$(have_xattrs_include)
8231         setup_test102
8232         test_mkdir $DIR/$tdir.restore
8233         cd $DIR
8234         tar cf - --xattrs $tdir | tar xf - \
8235                 -C $DIR/$tdir.restore --xattrs $XINC
8236         cd $DIR/$tdir.restore/$tdir
8237         compare_stripe_info1
8238 }
8239 run_test 102f "tar copy files, not keep osts"
8240
8241 grow_xattr() {
8242         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8243                 skip "must have user_xattr"
8244         [ -z "$(which setfattr 2>/dev/null)" ] &&
8245                 skip_env "could not find setfattr"
8246         [ -z "$(which getfattr 2>/dev/null)" ] &&
8247                 skip_env "could not find getfattr"
8248
8249         local xsize=${1:-1024}  # in bytes
8250         local file=$DIR/$tfile
8251         local value="$(generate_string $xsize)"
8252         local xbig=trusted.big
8253
8254         touch $file
8255         log "save $xbig on $file"
8256         setfattr -n $xbig -v $value $file ||
8257                 error "saving $xbig on $file failed"
8258
8259         local orig=$(get_xattr_value $xbig $file)
8260         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8261
8262         local xsml=trusted.sml
8263         log "save $xsml on $file"
8264         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8265
8266         local new=$(get_xattr_value $xbig $file)
8267         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8268
8269         log "grow $xsml on $file"
8270         setfattr -n $xsml -v "$value" $file ||
8271                 error "growing $xsml on $file failed"
8272
8273         new=$(get_xattr_value $xbig $file)
8274         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8275         log "$xbig still valid after growing $xsml"
8276
8277         rm -f $file
8278 }
8279
8280 test_102h() { # bug 15777
8281         grow_xattr 1024
8282 }
8283 run_test 102h "grow xattr from inside inode to external block"
8284
8285 test_102ha() {
8286         large_xattr_enabled || skip_env "ea_inode feature disabled"
8287
8288         grow_xattr $(max_xattr_size)
8289 }
8290 run_test 102ha "grow xattr from inside inode to external inode"
8291
8292 test_102i() { # bug 17038
8293         [ -z "$(which getfattr 2>/dev/null)" ] &&
8294                 skip "could not find getfattr"
8295
8296         touch $DIR/$tfile
8297         ln -s $DIR/$tfile $DIR/${tfile}link
8298         getfattr -n trusted.lov $DIR/$tfile ||
8299                 error "lgetxattr on $DIR/$tfile failed"
8300         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8301                 grep -i "no such attr" ||
8302                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8303         rm -f $DIR/$tfile $DIR/${tfile}link
8304 }
8305 run_test 102i "lgetxattr test on symbolic link ============"
8306
8307 test_102j() {
8308         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8309         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8310
8311         XINC=$(have_xattrs_include)
8312         setup_test102 "$RUNAS"
8313         chown $RUNAS_ID $DIR/$tdir
8314         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8315         cd $DIR/$tdir/$tdir
8316         compare_stripe_info1 "$RUNAS"
8317 }
8318 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8319
8320 test_102k() {
8321         [ -z "$(which setfattr 2>/dev/null)" ] &&
8322                 skip "could not find setfattr"
8323
8324         touch $DIR/$tfile
8325         # b22187 just check that does not crash for regular file.
8326         setfattr -n trusted.lov $DIR/$tfile
8327         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8328         local test_kdir=$DIR/$tdir
8329         test_mkdir $test_kdir
8330         local default_size=$($LFS getstripe -S $test_kdir)
8331         local default_count=$($LFS getstripe -c $test_kdir)
8332         local default_offset=$($LFS getstripe -i $test_kdir)
8333         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8334                 error 'dir setstripe failed'
8335         setfattr -n trusted.lov $test_kdir
8336         local stripe_size=$($LFS getstripe -S $test_kdir)
8337         local stripe_count=$($LFS getstripe -c $test_kdir)
8338         local stripe_offset=$($LFS getstripe -i $test_kdir)
8339         [ $stripe_size -eq $default_size ] ||
8340                 error "stripe size $stripe_size != $default_size"
8341         [ $stripe_count -eq $default_count ] ||
8342                 error "stripe count $stripe_count != $default_count"
8343         [ $stripe_offset -eq $default_offset ] ||
8344                 error "stripe offset $stripe_offset != $default_offset"
8345         rm -rf $DIR/$tfile $test_kdir
8346 }
8347 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8348
8349 test_102l() {
8350         [ -z "$(which getfattr 2>/dev/null)" ] &&
8351                 skip "could not find getfattr"
8352
8353         # LU-532 trusted. xattr is invisible to non-root
8354         local testfile=$DIR/$tfile
8355
8356         touch $testfile
8357
8358         echo "listxattr as user..."
8359         chown $RUNAS_ID $testfile
8360         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8361             grep -q "trusted" &&
8362                 error "$testfile trusted xattrs are user visible"
8363
8364         return 0;
8365 }
8366 run_test 102l "listxattr size test =================================="
8367
8368 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8369         local path=$DIR/$tfile
8370         touch $path
8371
8372         listxattr_size_check $path || error "listattr_size_check $path failed"
8373 }
8374 run_test 102m "Ensure listxattr fails on small bufffer ========"
8375
8376 cleanup_test102
8377
8378 getxattr() { # getxattr path name
8379         # Return the base64 encoding of the value of xattr name on path.
8380         local path=$1
8381         local name=$2
8382
8383         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8384         # file: $path
8385         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8386         #
8387         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8388
8389         getfattr --absolute-names --encoding=base64 --name=$name $path |
8390                 awk -F= -v name=$name '$1 == name {
8391                         print substr($0, index($0, "=") + 1);
8392         }'
8393 }
8394
8395 test_102n() { # LU-4101 mdt: protect internal xattrs
8396         [ -z "$(which setfattr 2>/dev/null)" ] &&
8397                 skip "could not find setfattr"
8398         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8399         then
8400                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8401         fi
8402
8403         local file0=$DIR/$tfile.0
8404         local file1=$DIR/$tfile.1
8405         local xattr0=$TMP/$tfile.0
8406         local xattr1=$TMP/$tfile.1
8407         local namelist="lov lma lmv link fid version som hsm"
8408         local name
8409         local value
8410
8411         rm -rf $file0 $file1 $xattr0 $xattr1
8412         touch $file0 $file1
8413
8414         # Get 'before' xattrs of $file1.
8415         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8416
8417         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8418                 namelist+=" lfsck_namespace"
8419         for name in $namelist; do
8420                 # Try to copy xattr from $file0 to $file1.
8421                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8422
8423                 setfattr --name=trusted.$name --value="$value" $file1 ||
8424                         error "setxattr 'trusted.$name' failed"
8425
8426                 # Try to set a garbage xattr.
8427                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8428
8429                 if [[ x$name == "xlov" ]]; then
8430                         setfattr --name=trusted.lov --value="$value" $file1 &&
8431                         error "setxattr invalid 'trusted.lov' success"
8432                 else
8433                         setfattr --name=trusted.$name --value="$value" $file1 ||
8434                                 error "setxattr invalid 'trusted.$name' failed"
8435                 fi
8436
8437                 # Try to remove the xattr from $file1. We don't care if this
8438                 # appears to succeed or fail, we just don't want there to be
8439                 # any changes or crashes.
8440                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8441         done
8442
8443         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8444         then
8445                 name="lfsck_ns"
8446                 # Try to copy xattr from $file0 to $file1.
8447                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8448
8449                 setfattr --name=trusted.$name --value="$value" $file1 ||
8450                         error "setxattr 'trusted.$name' failed"
8451
8452                 # Try to set a garbage xattr.
8453                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8454
8455                 setfattr --name=trusted.$name --value="$value" $file1 ||
8456                         error "setxattr 'trusted.$name' failed"
8457
8458                 # Try to remove the xattr from $file1. We don't care if this
8459                 # appears to succeed or fail, we just don't want there to be
8460                 # any changes or crashes.
8461                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8462         fi
8463
8464         # Get 'after' xattrs of file1.
8465         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8466
8467         if ! diff $xattr0 $xattr1; then
8468                 error "before and after xattrs of '$file1' differ"
8469         fi
8470
8471         rm -rf $file0 $file1 $xattr0 $xattr1
8472
8473         return 0
8474 }
8475 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8476
8477 test_102p() { # LU-4703 setxattr did not check ownership
8478         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8479                 skip "MDS needs to be at least 2.5.56"
8480
8481         local testfile=$DIR/$tfile
8482
8483         touch $testfile
8484
8485         echo "setfacl as user..."
8486         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8487         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8488
8489         echo "setfattr as user..."
8490         setfacl -m "u:$RUNAS_ID:---" $testfile
8491         $RUNAS setfattr -x system.posix_acl_access $testfile
8492         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8493 }
8494 run_test 102p "check setxattr(2) correctly fails without permission"
8495
8496 test_102q() {
8497         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8498                 skip "MDS needs to be at least 2.6.92"
8499
8500         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8501 }
8502 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8503
8504 test_102r() {
8505         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8506                 skip "MDS needs to be at least 2.6.93"
8507
8508         touch $DIR/$tfile || error "touch"
8509         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8510         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8511         rm $DIR/$tfile || error "rm"
8512
8513         #normal directory
8514         mkdir -p $DIR/$tdir || error "mkdir"
8515         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8516         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8517         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8518                 error "$testfile error deleting user.author1"
8519         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8520                 grep "user.$(basename $tdir)" &&
8521                 error "$tdir did not delete user.$(basename $tdir)"
8522         rmdir $DIR/$tdir || error "rmdir"
8523
8524         #striped directory
8525         test_mkdir $DIR/$tdir
8526         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8527         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8528         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8529                 error "$testfile error deleting user.author1"
8530         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8531                 grep "user.$(basename $tdir)" &&
8532                 error "$tdir did not delete user.$(basename $tdir)"
8533         rmdir $DIR/$tdir || error "rm striped dir"
8534 }
8535 run_test 102r "set EAs with empty values"
8536
8537 test_102s() {
8538         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8539                 skip "MDS needs to be at least 2.11.52"
8540
8541         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8542
8543         save_lustre_params client "llite.*.xattr_cache" > $save
8544
8545         for cache in 0 1; do
8546                 lctl set_param llite.*.xattr_cache=$cache
8547
8548                 rm -f $DIR/$tfile
8549                 touch $DIR/$tfile || error "touch"
8550                 for prefix in lustre security system trusted user; do
8551                         # Note getxattr() may fail with 'Operation not
8552                         # supported' or 'No such attribute' depending
8553                         # on prefix and cache.
8554                         getfattr -n $prefix.n102s $DIR/$tfile &&
8555                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8556                 done
8557         done
8558
8559         restore_lustre_params < $save
8560 }
8561 run_test 102s "getting nonexistent xattrs should fail"
8562
8563 test_102t() {
8564         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8565                 skip "MDS needs to be at least 2.11.52"
8566
8567         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8568
8569         save_lustre_params client "llite.*.xattr_cache" > $save
8570
8571         for cache in 0 1; do
8572                 lctl set_param llite.*.xattr_cache=$cache
8573
8574                 for buf_size in 0 256; do
8575                         rm -f $DIR/$tfile
8576                         touch $DIR/$tfile || error "touch"
8577                         setfattr -n user.multiop $DIR/$tfile
8578                         $MULTIOP $DIR/$tfile oa$buf_size ||
8579                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8580                 done
8581         done
8582
8583         restore_lustre_params < $save
8584 }
8585 run_test 102t "zero length xattr values handled correctly"
8586
8587 run_acl_subtest()
8588 {
8589     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8590     return $?
8591 }
8592
8593 test_103a() {
8594         [ "$UID" != 0 ] && skip "must run as root"
8595         $GSS && skip_env "could not run under gss"
8596         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8597                 skip_env "must have acl enabled"
8598         [ -z "$(which setfacl 2>/dev/null)" ] &&
8599                 skip_env "could not find setfacl"
8600         remote_mds_nodsh && skip "remote MDS with nodsh"
8601
8602         gpasswd -a daemon bin                           # LU-5641
8603         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8604
8605         declare -a identity_old
8606
8607         for num in $(seq $MDSCOUNT); do
8608                 switch_identity $num true || identity_old[$num]=$?
8609         done
8610
8611         SAVE_UMASK=$(umask)
8612         umask 0022
8613         mkdir -p $DIR/$tdir
8614         cd $DIR/$tdir
8615
8616         echo "performing cp ..."
8617         run_acl_subtest cp || error "run_acl_subtest cp failed"
8618         echo "performing getfacl-noacl..."
8619         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8620         echo "performing misc..."
8621         run_acl_subtest misc || error  "misc test failed"
8622         echo "performing permissions..."
8623         run_acl_subtest permissions || error "permissions failed"
8624         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8625         if [ $MDS1_VERSION -gt $(version_code 2.8.55) -o \
8626              \( $MDS1_VERSION -lt $(version_code 2.6) -a \
8627              $MDS1_VERSION -ge $(version_code 2.5.29) \) ]
8628         then
8629                 echo "performing permissions xattr..."
8630                 run_acl_subtest permissions_xattr ||
8631                         error "permissions_xattr failed"
8632         fi
8633         echo "performing setfacl..."
8634         run_acl_subtest setfacl || error  "setfacl test failed"
8635
8636         # inheritance test got from HP
8637         echo "performing inheritance..."
8638         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8639         chmod +x make-tree || error "chmod +x failed"
8640         run_acl_subtest inheritance || error "inheritance test failed"
8641         rm -f make-tree
8642
8643         echo "LU-974 ignore umask when acl is enabled..."
8644         run_acl_subtest 974 || error "LU-974 umask test failed"
8645         if [ $MDSCOUNT -ge 2 ]; then
8646                 run_acl_subtest 974_remote ||
8647                         error "LU-974 umask test failed under remote dir"
8648         fi
8649
8650         echo "LU-2561 newly created file is same size as directory..."
8651         if [ "$mds1_FSTYPE" != "zfs" ]; then
8652                 run_acl_subtest 2561 || error "LU-2561 test failed"
8653         else
8654                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8655         fi
8656
8657         run_acl_subtest 4924 || error "LU-4924 test failed"
8658
8659         cd $SAVE_PWD
8660         umask $SAVE_UMASK
8661
8662         for num in $(seq $MDSCOUNT); do
8663                 if [ "${identity_old[$num]}" = 1 ]; then
8664                         switch_identity $num false || identity_old[$num]=$?
8665                 fi
8666         done
8667 }
8668 run_test 103a "acl test"
8669
8670 test_103b() {
8671         declare -a pids
8672         local U
8673
8674         for U in {0..511}; do
8675                 {
8676                 local O=$(printf "%04o" $U)
8677
8678                 umask $(printf "%04o" $((511 ^ $O)))
8679                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8680                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8681
8682                 (( $S == ($O & 0666) )) ||
8683                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8684
8685                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8686                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8687                 (( $S == ($O & 0666) )) ||
8688                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8689
8690                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8691                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8692                 (( $S == ($O & 0666) )) ||
8693                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8694                 rm -f $DIR/$tfile.[smp]$0
8695                 } &
8696                 local pid=$!
8697
8698                 # limit the concurrently running threads to 64. LU-11878
8699                 local idx=$((U % 64))
8700                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
8701                 pids[idx]=$pid
8702         done
8703         wait
8704 }
8705 run_test 103b "umask lfs setstripe"
8706
8707 test_103c() {
8708         mkdir -p $DIR/$tdir
8709         cp -rp $DIR/$tdir $DIR/$tdir.bak
8710
8711         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8712                 error "$DIR/$tdir shouldn't contain default ACL"
8713         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8714                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8715         true
8716 }
8717 run_test 103c "'cp -rp' won't set empty acl"
8718
8719 test_104a() {
8720         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8721
8722         touch $DIR/$tfile
8723         lfs df || error "lfs df failed"
8724         lfs df -ih || error "lfs df -ih failed"
8725         lfs df -h $DIR || error "lfs df -h $DIR failed"
8726         lfs df -i $DIR || error "lfs df -i $DIR failed"
8727         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8728         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8729
8730         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8731         lctl --device %$OSC deactivate
8732         lfs df || error "lfs df with deactivated OSC failed"
8733         lctl --device %$OSC activate
8734         # wait the osc back to normal
8735         wait_osc_import_ready client ost
8736
8737         lfs df || error "lfs df with reactivated OSC failed"
8738         rm -f $DIR/$tfile
8739 }
8740 run_test 104a "lfs df [-ih] [path] test ========================="
8741
8742 test_104b() {
8743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8744         [ $RUNAS_ID -eq $UID ] &&
8745                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8746
8747         chmod 666 /dev/obd
8748         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8749                         grep "Permission denied" | wc -l)))
8750         if [ $denied_cnt -ne 0 ]; then
8751                 error "lfs check servers test failed"
8752         fi
8753 }
8754 run_test 104b "$RUNAS lfs check servers test ===================="
8755
8756 test_105a() {
8757         # doesn't work on 2.4 kernels
8758         touch $DIR/$tfile
8759         if $(flock_is_enabled); then
8760                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8761         else
8762                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8763         fi
8764         rm -f $DIR/$tfile
8765 }
8766 run_test 105a "flock when mounted without -o flock test ========"
8767
8768 test_105b() {
8769         touch $DIR/$tfile
8770         if $(flock_is_enabled); then
8771                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8772         else
8773                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8774         fi
8775         rm -f $DIR/$tfile
8776 }
8777 run_test 105b "fcntl when mounted without -o flock test ========"
8778
8779 test_105c() {
8780         touch $DIR/$tfile
8781         if $(flock_is_enabled); then
8782                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8783         else
8784                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8785         fi
8786         rm -f $DIR/$tfile
8787 }
8788 run_test 105c "lockf when mounted without -o flock test"
8789
8790 test_105d() { # bug 15924
8791         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8792
8793         test_mkdir $DIR/$tdir
8794         flock_is_enabled || skip_env "mount w/o flock enabled"
8795         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8796         $LCTL set_param fail_loc=0x80000315
8797         flocks_test 2 $DIR/$tdir
8798 }
8799 run_test 105d "flock race (should not freeze) ========"
8800
8801 test_105e() { # bug 22660 && 22040
8802         flock_is_enabled || skip_env "mount w/o flock enabled"
8803
8804         touch $DIR/$tfile
8805         flocks_test 3 $DIR/$tfile
8806 }
8807 run_test 105e "Two conflicting flocks from same process"
8808
8809 test_106() { #bug 10921
8810         test_mkdir $DIR/$tdir
8811         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8812         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8813 }
8814 run_test 106 "attempt exec of dir followed by chown of that dir"
8815
8816 test_107() {
8817         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8818
8819         CDIR=`pwd`
8820         local file=core
8821
8822         cd $DIR
8823         rm -f $file
8824
8825         local save_pattern=$(sysctl -n kernel.core_pattern)
8826         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8827         sysctl -w kernel.core_pattern=$file
8828         sysctl -w kernel.core_uses_pid=0
8829
8830         ulimit -c unlimited
8831         sleep 60 &
8832         SLEEPPID=$!
8833
8834         sleep 1
8835
8836         kill -s 11 $SLEEPPID
8837         wait $SLEEPPID
8838         if [ -e $file ]; then
8839                 size=`stat -c%s $file`
8840                 [ $size -eq 0 ] && error "Fail to create core file $file"
8841         else
8842                 error "Fail to create core file $file"
8843         fi
8844         rm -f $file
8845         sysctl -w kernel.core_pattern=$save_pattern
8846         sysctl -w kernel.core_uses_pid=$save_uses_pid
8847         cd $CDIR
8848 }
8849 run_test 107 "Coredump on SIG"
8850
8851 test_110() {
8852         test_mkdir $DIR/$tdir
8853         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8854         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8855                 error "mkdir with 256 char should fail, but did not"
8856         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8857                 error "create with 255 char failed"
8858         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8859                 error "create with 256 char should fail, but did not"
8860
8861         ls -l $DIR/$tdir
8862         rm -rf $DIR/$tdir
8863 }
8864 run_test 110 "filename length checking"
8865
8866 #
8867 # Purpose: To verify dynamic thread (OSS) creation.
8868 #
8869 test_115() {
8870         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8871         remote_ost_nodsh && skip "remote OST with nodsh"
8872
8873         # Lustre does not stop service threads once they are started.
8874         # Reset number of running threads to default.
8875         stopall
8876         setupall
8877
8878         local OSTIO_pre
8879         local save_params="$TMP/sanity-$TESTNAME.parameters"
8880
8881         # Get ll_ost_io count before I/O
8882         OSTIO_pre=$(do_facet ost1 \
8883                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8884         # Exit if lustre is not running (ll_ost_io not running).
8885         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8886
8887         echo "Starting with $OSTIO_pre threads"
8888         local thread_max=$((OSTIO_pre * 2))
8889         local rpc_in_flight=$((thread_max * 2))
8890         # Number of I/O Process proposed to be started.
8891         local nfiles
8892         local facets=$(get_facets OST)
8893
8894         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8895         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8896
8897         # Set in_flight to $rpc_in_flight
8898         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8899                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8900         nfiles=${rpc_in_flight}
8901         # Set ost thread_max to $thread_max
8902         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8903
8904         # 5 Minutes should be sufficient for max number of OSS
8905         # threads(thread_max) to be created.
8906         local timeout=300
8907
8908         # Start I/O.
8909         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8910         test_mkdir $DIR/$tdir
8911         for i in $(seq $nfiles); do
8912                 local file=$DIR/$tdir/${tfile}-$i
8913                 $LFS setstripe -c -1 -i 0 $file
8914                 ($WTL $file $timeout)&
8915         done
8916
8917         # I/O Started - Wait for thread_started to reach thread_max or report
8918         # error if thread_started is more than thread_max.
8919         echo "Waiting for thread_started to reach thread_max"
8920         local thread_started=0
8921         local end_time=$((SECONDS + timeout))
8922
8923         while [ $SECONDS -le $end_time ] ; do
8924                 echo -n "."
8925                 # Get ost i/o thread_started count.
8926                 thread_started=$(do_facet ost1 \
8927                         "$LCTL get_param \
8928                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8929                 # Break out if thread_started is equal/greater than thread_max
8930                 if [[ $thread_started -ge $thread_max ]]; then
8931                         echo ll_ost_io thread_started $thread_started, \
8932                                 equal/greater than thread_max $thread_max
8933                         break
8934                 fi
8935                 sleep 1
8936         done
8937
8938         # Cleanup - We have the numbers, Kill i/o jobs if running.
8939         jobcount=($(jobs -p))
8940         for i in $(seq 0 $((${#jobcount[@]}-1)))
8941         do
8942                 kill -9 ${jobcount[$i]}
8943                 if [ $? -ne 0 ] ; then
8944                         echo Warning: \
8945                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8946                 fi
8947         done
8948
8949         # Cleanup files left by WTL binary.
8950         for i in $(seq $nfiles); do
8951                 local file=$DIR/$tdir/${tfile}-$i
8952                 rm -rf $file
8953                 if [ $? -ne 0 ] ; then
8954                         echo "Warning: Failed to delete file $file"
8955                 fi
8956         done
8957
8958         restore_lustre_params <$save_params
8959         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8960
8961         # Error out if no new thread has started or Thread started is greater
8962         # than thread max.
8963         if [[ $thread_started -le $OSTIO_pre ||
8964                         $thread_started -gt $thread_max ]]; then
8965                 error "ll_ost_io: thread_started $thread_started" \
8966                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8967                       "No new thread started or thread started greater " \
8968                       "than thread_max."
8969         fi
8970 }
8971 run_test 115 "verify dynamic thread creation===================="
8972
8973 free_min_max () {
8974         wait_delete_completed
8975         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
8976         echo "OST kbytes available: ${AVAIL[@]}"
8977         MAXV=${AVAIL[0]}
8978         MAXI=0
8979         MINV=${AVAIL[0]}
8980         MINI=0
8981         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
8982                 #echo OST $i: ${AVAIL[i]}kb
8983                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
8984                         MAXV=${AVAIL[i]}
8985                         MAXI=$i
8986                 fi
8987                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
8988                         MINV=${AVAIL[i]}
8989                         MINI=$i
8990                 fi
8991         done
8992         echo "Min free space: OST $MINI: $MINV"
8993         echo "Max free space: OST $MAXI: $MAXV"
8994 }
8995
8996 test_116a() { # was previously test_116()
8997         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8998         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8999         remote_mds_nodsh && skip "remote MDS with nodsh"
9000
9001         echo -n "Free space priority "
9002         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
9003                 head -n1
9004         declare -a AVAIL
9005         free_min_max
9006
9007         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
9008         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
9009         trap simple_cleanup_common EXIT
9010
9011         # Check if we need to generate uneven OSTs
9012         test_mkdir -p $DIR/$tdir/OST${MINI}
9013         local FILL=$((MINV / 4))
9014         local DIFF=$((MAXV - MINV))
9015         local DIFF2=$((DIFF * 100 / MINV))
9016
9017         local threshold=$(do_facet $SINGLEMDS \
9018                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
9019         threshold=${threshold%%%}
9020         echo -n "Check for uneven OSTs: "
9021         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
9022
9023         if [[ $DIFF2 -gt $threshold ]]; then
9024                 echo "ok"
9025                 echo "Don't need to fill OST$MINI"
9026         else
9027                 # generate uneven OSTs. Write 2% over the QOS threshold value
9028                 echo "no"
9029                 DIFF=$((threshold - DIFF2 + 2))
9030                 DIFF2=$((MINV * DIFF / 100))
9031                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
9032                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
9033                         error "setstripe failed"
9034                 DIFF=$((DIFF2 / 2048))
9035                 i=0
9036                 while [ $i -lt $DIFF ]; do
9037                         i=$((i + 1))
9038                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
9039                                 bs=2M count=1 2>/dev/null
9040                         echo -n .
9041                 done
9042                 echo .
9043                 sync
9044                 sleep_maxage
9045                 free_min_max
9046         fi
9047
9048         DIFF=$((MAXV - MINV))
9049         DIFF2=$((DIFF * 100 / MINV))
9050         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
9051         if [ $DIFF2 -gt $threshold ]; then
9052                 echo "ok"
9053         else
9054                 echo "failed - QOS mode won't be used"
9055                 simple_cleanup_common
9056                 skip "QOS imbalance criteria not met"
9057         fi
9058
9059         MINI1=$MINI
9060         MINV1=$MINV
9061         MAXI1=$MAXI
9062         MAXV1=$MAXV
9063
9064         # now fill using QOS
9065         $SETSTRIPE -c 1 $DIR/$tdir
9066         FILL=$((FILL / 200))
9067         if [ $FILL -gt 600 ]; then
9068                 FILL=600
9069         fi
9070         echo "writing $FILL files to QOS-assigned OSTs"
9071         i=0
9072         while [ $i -lt $FILL ]; do
9073                 i=$((i + 1))
9074                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9075                         count=1 2>/dev/null
9076                 echo -n .
9077         done
9078         echo "wrote $i 200k files"
9079         sync
9080         sleep_maxage
9081
9082         echo "Note: free space may not be updated, so measurements might be off"
9083         free_min_max
9084         DIFF2=$((MAXV - MINV))
9085         echo "free space delta: orig $DIFF final $DIFF2"
9086         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9087         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9088         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9089         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9090         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9091         if [[ $DIFF -gt 0 ]]; then
9092                 FILL=$((DIFF2 * 100 / DIFF - 100))
9093                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9094         fi
9095
9096         # Figure out which files were written where
9097         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9098                awk '/'$MINI1': / {print $2; exit}')
9099         echo $UUID
9100         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9101         echo "$MINC files created on smaller OST $MINI1"
9102         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9103                awk '/'$MAXI1': / {print $2; exit}')
9104         echo $UUID
9105         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9106         echo "$MAXC files created on larger OST $MAXI1"
9107         if [[ $MINC -gt 0 ]]; then
9108                 FILL=$((MAXC * 100 / MINC - 100))
9109                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9110         fi
9111         [[ $MAXC -gt $MINC ]] ||
9112                 error_ignore LU-9 "stripe QOS didn't balance free space"
9113         simple_cleanup_common
9114 }
9115 run_test 116a "stripe QOS: free space balance ==================="
9116
9117 test_116b() { # LU-2093
9118         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9119         remote_mds_nodsh && skip "remote MDS with nodsh"
9120
9121 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9122         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9123                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9124         [ -z "$old_rr" ] && skip "no QOS"
9125         do_facet $SINGLEMDS lctl set_param \
9126                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9127         mkdir -p $DIR/$tdir
9128         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9129         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9130         do_facet $SINGLEMDS lctl set_param fail_loc=0
9131         rm -rf $DIR/$tdir
9132         do_facet $SINGLEMDS lctl set_param \
9133                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9134 }
9135 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9136
9137 test_117() # bug 10891
9138 {
9139         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9140
9141         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9142         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9143         lctl set_param fail_loc=0x21e
9144         > $DIR/$tfile || error "truncate failed"
9145         lctl set_param fail_loc=0
9146         echo "Truncate succeeded."
9147         rm -f $DIR/$tfile
9148 }
9149 run_test 117 "verify osd extend =========="
9150
9151 NO_SLOW_RESENDCOUNT=4
9152 export OLD_RESENDCOUNT=""
9153 set_resend_count () {
9154         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9155         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9156         lctl set_param -n $PROC_RESENDCOUNT $1
9157         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9158 }
9159
9160 # for reduce test_118* time (b=14842)
9161 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9162
9163 # Reset async IO behavior after error case
9164 reset_async() {
9165         FILE=$DIR/reset_async
9166
9167         # Ensure all OSCs are cleared
9168         $SETSTRIPE -c -1 $FILE
9169         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9170         sync
9171         rm $FILE
9172 }
9173
9174 test_118a() #bug 11710
9175 {
9176         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9177
9178         reset_async
9179
9180         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9181         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9182         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9183
9184         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9185                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9186                 return 1;
9187         fi
9188         rm -f $DIR/$tfile
9189 }
9190 run_test 118a "verify O_SYNC works =========="
9191
9192 test_118b()
9193 {
9194         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9195         remote_ost_nodsh && skip "remote OST with nodsh"
9196
9197         reset_async
9198
9199         #define OBD_FAIL_SRV_ENOENT 0x217
9200         set_nodes_failloc "$(osts_nodes)" 0x217
9201         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9202         RC=$?
9203         set_nodes_failloc "$(osts_nodes)" 0
9204         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9205         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9206                     grep -c writeback)
9207
9208         if [[ $RC -eq 0 ]]; then
9209                 error "Must return error due to dropped pages, rc=$RC"
9210                 return 1;
9211         fi
9212
9213         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9214                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9215                 return 1;
9216         fi
9217
9218         echo "Dirty pages not leaked on ENOENT"
9219
9220         # Due to the above error the OSC will issue all RPCs syncronously
9221         # until a subsequent RPC completes successfully without error.
9222         $MULTIOP $DIR/$tfile Ow4096yc
9223         rm -f $DIR/$tfile
9224
9225         return 0
9226 }
9227 run_test 118b "Reclaim dirty pages on fatal error =========="
9228
9229 test_118c()
9230 {
9231         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9232
9233         # for 118c, restore the original resend count, LU-1940
9234         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9235                                 set_resend_count $OLD_RESENDCOUNT
9236         remote_ost_nodsh && skip "remote OST with nodsh"
9237
9238         reset_async
9239
9240         #define OBD_FAIL_OST_EROFS               0x216
9241         set_nodes_failloc "$(osts_nodes)" 0x216
9242
9243         # multiop should block due to fsync until pages are written
9244         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9245         MULTIPID=$!
9246         sleep 1
9247
9248         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9249                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9250         fi
9251
9252         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9253                     grep -c writeback)
9254         if [[ $WRITEBACK -eq 0 ]]; then
9255                 error "No page in writeback, writeback=$WRITEBACK"
9256         fi
9257
9258         set_nodes_failloc "$(osts_nodes)" 0
9259         wait $MULTIPID
9260         RC=$?
9261         if [[ $RC -ne 0 ]]; then
9262                 error "Multiop fsync failed, rc=$RC"
9263         fi
9264
9265         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9266         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9267                     grep -c writeback)
9268         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9269                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9270         fi
9271
9272         rm -f $DIR/$tfile
9273         echo "Dirty pages flushed via fsync on EROFS"
9274         return 0
9275 }
9276 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9277
9278 # continue to use small resend count to reduce test_118* time (b=14842)
9279 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9280
9281 test_118d()
9282 {
9283         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9284         remote_ost_nodsh && skip "remote OST with nodsh"
9285
9286         reset_async
9287
9288         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9289         set_nodes_failloc "$(osts_nodes)" 0x214
9290         # multiop should block due to fsync until pages are written
9291         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9292         MULTIPID=$!
9293         sleep 1
9294
9295         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9296                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9297         fi
9298
9299         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9300                     grep -c writeback)
9301         if [[ $WRITEBACK -eq 0 ]]; then
9302                 error "No page in writeback, writeback=$WRITEBACK"
9303         fi
9304
9305         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9306         set_nodes_failloc "$(osts_nodes)" 0
9307
9308         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9309         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9310                     grep -c writeback)
9311         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9312                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9313         fi
9314
9315         rm -f $DIR/$tfile
9316         echo "Dirty pages gaurenteed flushed via fsync"
9317         return 0
9318 }
9319 run_test 118d "Fsync validation inject a delay of the bulk =========="
9320
9321 test_118f() {
9322         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9323
9324         reset_async
9325
9326         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9327         lctl set_param fail_loc=0x8000040a
9328
9329         # Should simulate EINVAL error which is fatal
9330         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9331         RC=$?
9332         if [[ $RC -eq 0 ]]; then
9333                 error "Must return error due to dropped pages, rc=$RC"
9334         fi
9335
9336         lctl set_param fail_loc=0x0
9337
9338         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9339         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9340         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9341                     grep -c writeback)
9342         if [[ $LOCKED -ne 0 ]]; then
9343                 error "Locked pages remain in cache, locked=$LOCKED"
9344         fi
9345
9346         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9347                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9348         fi
9349
9350         rm -f $DIR/$tfile
9351         echo "No pages locked after fsync"
9352
9353         reset_async
9354         return 0
9355 }
9356 run_test 118f "Simulate unrecoverable OSC side error =========="
9357
9358 test_118g() {
9359         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9360
9361         reset_async
9362
9363         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9364         lctl set_param fail_loc=0x406
9365
9366         # simulate local -ENOMEM
9367         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9368         RC=$?
9369
9370         lctl set_param fail_loc=0
9371         if [[ $RC -eq 0 ]]; then
9372                 error "Must return error due to dropped pages, rc=$RC"
9373         fi
9374
9375         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9376         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9377         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9378                         grep -c writeback)
9379         if [[ $LOCKED -ne 0 ]]; then
9380                 error "Locked pages remain in cache, locked=$LOCKED"
9381         fi
9382
9383         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9384                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9385         fi
9386
9387         rm -f $DIR/$tfile
9388         echo "No pages locked after fsync"
9389
9390         reset_async
9391         return 0
9392 }
9393 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9394
9395 test_118h() {
9396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9397         remote_ost_nodsh && skip "remote OST with nodsh"
9398
9399         reset_async
9400
9401         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9402         set_nodes_failloc "$(osts_nodes)" 0x20e
9403         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9404         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9405         RC=$?
9406
9407         set_nodes_failloc "$(osts_nodes)" 0
9408         if [[ $RC -eq 0 ]]; then
9409                 error "Must return error due to dropped pages, rc=$RC"
9410         fi
9411
9412         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9413         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9414         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9415                     grep -c writeback)
9416         if [[ $LOCKED -ne 0 ]]; then
9417                 error "Locked pages remain in cache, locked=$LOCKED"
9418         fi
9419
9420         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9421                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9422         fi
9423
9424         rm -f $DIR/$tfile
9425         echo "No pages locked after fsync"
9426
9427         return 0
9428 }
9429 run_test 118h "Verify timeout in handling recoverables errors  =========="
9430
9431 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9432
9433 test_118i() {
9434         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9435         remote_ost_nodsh && skip "remote OST with nodsh"
9436
9437         reset_async
9438
9439         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9440         set_nodes_failloc "$(osts_nodes)" 0x20e
9441
9442         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9443         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9444         PID=$!
9445         sleep 5
9446         set_nodes_failloc "$(osts_nodes)" 0
9447
9448         wait $PID
9449         RC=$?
9450         if [[ $RC -ne 0 ]]; then
9451                 error "got error, but should be not, rc=$RC"
9452         fi
9453
9454         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9455         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9456         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9457         if [[ $LOCKED -ne 0 ]]; then
9458                 error "Locked pages remain in cache, locked=$LOCKED"
9459         fi
9460
9461         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9462                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9463         fi
9464
9465         rm -f $DIR/$tfile
9466         echo "No pages locked after fsync"
9467
9468         return 0
9469 }
9470 run_test 118i "Fix error before timeout in recoverable error  =========="
9471
9472 [ "$SLOW" = "no" ] && set_resend_count 4
9473
9474 test_118j() {
9475         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9476         remote_ost_nodsh && skip "remote OST with nodsh"
9477
9478         reset_async
9479
9480         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9481         set_nodes_failloc "$(osts_nodes)" 0x220
9482
9483         # return -EIO from OST
9484         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9485         RC=$?
9486         set_nodes_failloc "$(osts_nodes)" 0x0
9487         if [[ $RC -eq 0 ]]; then
9488                 error "Must return error due to dropped pages, rc=$RC"
9489         fi
9490
9491         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9492         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9493         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9494         if [[ $LOCKED -ne 0 ]]; then
9495                 error "Locked pages remain in cache, locked=$LOCKED"
9496         fi
9497
9498         # in recoverable error on OST we want resend and stay until it finished
9499         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9500                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9501         fi
9502
9503         rm -f $DIR/$tfile
9504         echo "No pages locked after fsync"
9505
9506         return 0
9507 }
9508 run_test 118j "Simulate unrecoverable OST side error =========="
9509
9510 test_118k()
9511 {
9512         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9513         remote_ost_nodsh && skip "remote OSTs with nodsh"
9514
9515         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9516         set_nodes_failloc "$(osts_nodes)" 0x20e
9517         test_mkdir $DIR/$tdir
9518
9519         for ((i=0;i<10;i++)); do
9520                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9521                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9522                 SLEEPPID=$!
9523                 sleep 0.500s
9524                 kill $SLEEPPID
9525                 wait $SLEEPPID
9526         done
9527
9528         set_nodes_failloc "$(osts_nodes)" 0
9529         rm -rf $DIR/$tdir
9530 }
9531 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9532
9533 test_118l() # LU-646
9534 {
9535         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9536
9537         test_mkdir $DIR/$tdir
9538         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9539         rm -rf $DIR/$tdir
9540 }
9541 run_test 118l "fsync dir"
9542
9543 test_118m() # LU-3066
9544 {
9545         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9546
9547         test_mkdir $DIR/$tdir
9548         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9549         rm -rf $DIR/$tdir
9550 }
9551 run_test 118m "fdatasync dir ========="
9552
9553 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9554
9555 test_118n()
9556 {
9557         local begin
9558         local end
9559
9560         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9561         remote_ost_nodsh && skip "remote OSTs with nodsh"
9562
9563         # Sleep to avoid a cached response.
9564         #define OBD_STATFS_CACHE_SECONDS 1
9565         sleep 2
9566
9567         # Inject a 10 second delay in the OST_STATFS handler.
9568         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9569         set_nodes_failloc "$(osts_nodes)" 0x242
9570
9571         begin=$SECONDS
9572         stat --file-system $MOUNT > /dev/null
9573         end=$SECONDS
9574
9575         set_nodes_failloc "$(osts_nodes)" 0
9576
9577         if ((end - begin > 20)); then
9578             error "statfs took $((end - begin)) seconds, expected 10"
9579         fi
9580 }
9581 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9582
9583 test_119a() # bug 11737
9584 {
9585         BSIZE=$((512 * 1024))
9586         directio write $DIR/$tfile 0 1 $BSIZE
9587         # We ask to read two blocks, which is more than a file size.
9588         # directio will indicate an error when requested and actual
9589         # sizes aren't equeal (a normal situation in this case) and
9590         # print actual read amount.
9591         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9592         if [ "$NOB" != "$BSIZE" ]; then
9593                 error "read $NOB bytes instead of $BSIZE"
9594         fi
9595         rm -f $DIR/$tfile
9596 }
9597 run_test 119a "Short directIO read must return actual read amount"
9598
9599 test_119b() # bug 11737
9600 {
9601         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9602
9603         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
9604         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9605         sync
9606         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9607                 error "direct read failed"
9608         rm -f $DIR/$tfile
9609 }
9610 run_test 119b "Sparse directIO read must return actual read amount"
9611
9612 test_119c() # bug 13099
9613 {
9614         BSIZE=1048576
9615         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9616         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9617         rm -f $DIR/$tfile
9618 }
9619 run_test 119c "Testing for direct read hitting hole"
9620
9621 test_119d() # bug 15950
9622 {
9623         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9624
9625         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9626         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9627         BSIZE=1048576
9628         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9629         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9630         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9631         lctl set_param fail_loc=0x40d
9632         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9633         pid_dio=$!
9634         sleep 1
9635         cat $DIR/$tfile > /dev/null &
9636         lctl set_param fail_loc=0
9637         pid_reads=$!
9638         wait $pid_dio
9639         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9640         sleep 2
9641         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9642         error "the read rpcs have not completed in 2s"
9643         rm -f $DIR/$tfile
9644         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9645 }
9646 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9647
9648 test_120a() {
9649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9650         remote_mds_nodsh && skip "remote MDS with nodsh"
9651         test_mkdir $DIR/$tdir
9652         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9653                 skip_env "no early lock cancel on server"
9654
9655         lru_resize_disable mdc
9656         lru_resize_disable osc
9657         cancel_lru_locks mdc
9658         # asynchronous object destroy at MDT could cause bl ast to client
9659         cancel_lru_locks osc
9660
9661         stat $DIR/$tdir > /dev/null
9662         can1=$(do_facet $SINGLEMDS \
9663                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9664                awk '/ldlm_cancel/ {print $2}')
9665         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9666                awk '/ldlm_bl_callback/ {print $2}')
9667         test_mkdir -c1 $DIR/$tdir/d1
9668         can2=$(do_facet $SINGLEMDS \
9669                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9670                awk '/ldlm_cancel/ {print $2}')
9671         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9672                awk '/ldlm_bl_callback/ {print $2}')
9673         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9674         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9675         lru_resize_enable mdc
9676         lru_resize_enable osc
9677 }
9678 run_test 120a "Early Lock Cancel: mkdir test"
9679
9680 test_120b() {
9681         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9682         remote_mds_nodsh && skip "remote MDS with nodsh"
9683         test_mkdir $DIR/$tdir
9684         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9685                 skip_env "no early lock cancel on server"
9686
9687         lru_resize_disable mdc
9688         lru_resize_disable osc
9689         cancel_lru_locks mdc
9690         stat $DIR/$tdir > /dev/null
9691         can1=$(do_facet $SINGLEMDS \
9692                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9693                awk '/ldlm_cancel/ {print $2}')
9694         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9695                awk '/ldlm_bl_callback/ {print $2}')
9696         touch $DIR/$tdir/f1
9697         can2=$(do_facet $SINGLEMDS \
9698                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9699                awk '/ldlm_cancel/ {print $2}')
9700         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9701                awk '/ldlm_bl_callback/ {print $2}')
9702         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9703         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9704         lru_resize_enable mdc
9705         lru_resize_enable osc
9706 }
9707 run_test 120b "Early Lock Cancel: create test"
9708
9709 test_120c() {
9710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9711         remote_mds_nodsh && skip "remote MDS with nodsh"
9712         test_mkdir -c1 $DIR/$tdir
9713         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9714                 skip "no early lock cancel on server"
9715
9716         lru_resize_disable mdc
9717         lru_resize_disable osc
9718         test_mkdir -c1 $DIR/$tdir/d1
9719         test_mkdir -c1 $DIR/$tdir/d2
9720         touch $DIR/$tdir/d1/f1
9721         cancel_lru_locks mdc
9722         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9723         can1=$(do_facet $SINGLEMDS \
9724                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9725                awk '/ldlm_cancel/ {print $2}')
9726         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9727                awk '/ldlm_bl_callback/ {print $2}')
9728         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9729         can2=$(do_facet $SINGLEMDS \
9730                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9731                awk '/ldlm_cancel/ {print $2}')
9732         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9733                awk '/ldlm_bl_callback/ {print $2}')
9734         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9735         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9736         lru_resize_enable mdc
9737         lru_resize_enable osc
9738 }
9739 run_test 120c "Early Lock Cancel: link test"
9740
9741 test_120d() {
9742         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9743         remote_mds_nodsh && skip "remote MDS with nodsh"
9744         test_mkdir -c1 $DIR/$tdir
9745         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9746                 skip_env "no early lock cancel on server"
9747
9748         lru_resize_disable mdc
9749         lru_resize_disable osc
9750         touch $DIR/$tdir
9751         cancel_lru_locks mdc
9752         stat $DIR/$tdir > /dev/null
9753         can1=$(do_facet $SINGLEMDS \
9754                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9755                awk '/ldlm_cancel/ {print $2}')
9756         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9757                awk '/ldlm_bl_callback/ {print $2}')
9758         chmod a+x $DIR/$tdir
9759         can2=$(do_facet $SINGLEMDS \
9760                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9761                awk '/ldlm_cancel/ {print $2}')
9762         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9763                awk '/ldlm_bl_callback/ {print $2}')
9764         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9765         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9766         lru_resize_enable mdc
9767         lru_resize_enable osc
9768 }
9769 run_test 120d "Early Lock Cancel: setattr test"
9770
9771 test_120e() {
9772         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9773         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9774                 skip_env "no early lock cancel on server"
9775         remote_mds_nodsh && skip "remote MDS with nodsh"
9776
9777         local dlmtrace_set=false
9778
9779         test_mkdir -c1 $DIR/$tdir
9780         lru_resize_disable mdc
9781         lru_resize_disable osc
9782         ! $LCTL get_param debug | grep -q dlmtrace &&
9783                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9784         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9785         cancel_lru_locks mdc
9786         cancel_lru_locks osc
9787         dd if=$DIR/$tdir/f1 of=/dev/null
9788         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9789         # XXX client can not do early lock cancel of OST lock
9790         # during unlink (LU-4206), so cancel osc lock now.
9791         sleep 2
9792         cancel_lru_locks osc
9793         can1=$(do_facet $SINGLEMDS \
9794                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9795                awk '/ldlm_cancel/ {print $2}')
9796         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9797                awk '/ldlm_bl_callback/ {print $2}')
9798         unlink $DIR/$tdir/f1
9799         sleep 5
9800         can2=$(do_facet $SINGLEMDS \
9801                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9802                awk '/ldlm_cancel/ {print $2}')
9803         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9804                awk '/ldlm_bl_callback/ {print $2}')
9805         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9806                 $LCTL dk $TMP/cancel.debug.txt
9807         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9808                 $LCTL dk $TMP/blocking.debug.txt
9809         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9810         lru_resize_enable mdc
9811         lru_resize_enable osc
9812 }
9813 run_test 120e "Early Lock Cancel: unlink test"
9814
9815 test_120f() {
9816         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9817         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9818                 skip_env "no early lock cancel on server"
9819         remote_mds_nodsh && skip "remote MDS with nodsh"
9820
9821         test_mkdir -c1 $DIR/$tdir
9822         lru_resize_disable mdc
9823         lru_resize_disable osc
9824         test_mkdir -c1 $DIR/$tdir/d1
9825         test_mkdir -c1 $DIR/$tdir/d2
9826         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9827         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9828         cancel_lru_locks mdc
9829         cancel_lru_locks osc
9830         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9831         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9832         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9833         # XXX client can not do early lock cancel of OST lock
9834         # during rename (LU-4206), so cancel osc lock now.
9835         sleep 2
9836         cancel_lru_locks osc
9837         can1=$(do_facet $SINGLEMDS \
9838                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9839                awk '/ldlm_cancel/ {print $2}')
9840         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9841                awk '/ldlm_bl_callback/ {print $2}')
9842         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9843         sleep 5
9844         can2=$(do_facet $SINGLEMDS \
9845                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9846                awk '/ldlm_cancel/ {print $2}')
9847         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9848                awk '/ldlm_bl_callback/ {print $2}')
9849         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9850         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9851         lru_resize_enable mdc
9852         lru_resize_enable osc
9853 }
9854 run_test 120f "Early Lock Cancel: rename test"
9855
9856 test_120g() {
9857         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9858         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9859                 skip_env "no early lock cancel on server"
9860         remote_mds_nodsh && skip "remote MDS with nodsh"
9861
9862         lru_resize_disable mdc
9863         lru_resize_disable osc
9864         count=10000
9865         echo create $count files
9866         test_mkdir $DIR/$tdir
9867         cancel_lru_locks mdc
9868         cancel_lru_locks osc
9869         t0=$(date +%s)
9870
9871         can0=$(do_facet $SINGLEMDS \
9872                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9873                awk '/ldlm_cancel/ {print $2}')
9874         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9875                awk '/ldlm_bl_callback/ {print $2}')
9876         createmany -o $DIR/$tdir/f $count
9877         sync
9878         can1=$(do_facet $SINGLEMDS \
9879                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9880                awk '/ldlm_cancel/ {print $2}')
9881         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9882                awk '/ldlm_bl_callback/ {print $2}')
9883         t1=$(date +%s)
9884         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9885         echo rm $count files
9886         rm -r $DIR/$tdir
9887         sync
9888         can2=$(do_facet $SINGLEMDS \
9889                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9890                awk '/ldlm_cancel/ {print $2}')
9891         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9892                awk '/ldlm_bl_callback/ {print $2}')
9893         t2=$(date +%s)
9894         echo total: $count removes in $((t2-t1))
9895         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9896         sleep 2
9897         # wait for commitment of removal
9898         lru_resize_enable mdc
9899         lru_resize_enable osc
9900 }
9901 run_test 120g "Early Lock Cancel: performance test"
9902
9903 test_121() { #bug #10589
9904         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9905
9906         rm -rf $DIR/$tfile
9907         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9908 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9909         lctl set_param fail_loc=0x310
9910         cancel_lru_locks osc > /dev/null
9911         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9912         lctl set_param fail_loc=0
9913         [[ $reads -eq $writes ]] ||
9914                 error "read $reads blocks, must be $writes blocks"
9915 }
9916 run_test 121 "read cancel race ========="
9917
9918 test_123a() { # was test 123, statahead(bug 11401)
9919         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9920
9921         SLOWOK=0
9922         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9923                 log "testing UP system. Performance may be lower than expected."
9924                 SLOWOK=1
9925         fi
9926
9927         rm -rf $DIR/$tdir
9928         test_mkdir $DIR/$tdir
9929         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9930         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9931         MULT=10
9932         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9933                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9934
9935                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9936                 lctl set_param -n llite.*.statahead_max 0
9937                 lctl get_param llite.*.statahead_max
9938                 cancel_lru_locks mdc
9939                 cancel_lru_locks osc
9940                 stime=`date +%s`
9941                 time ls -l $DIR/$tdir | wc -l
9942                 etime=`date +%s`
9943                 delta=$((etime - stime))
9944                 log "ls $i files without statahead: $delta sec"
9945                 lctl set_param llite.*.statahead_max=$max
9946
9947                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9948                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9949                 cancel_lru_locks mdc
9950                 cancel_lru_locks osc
9951                 stime=`date +%s`
9952                 time ls -l $DIR/$tdir | wc -l
9953                 etime=`date +%s`
9954                 delta_sa=$((etime - stime))
9955                 log "ls $i files with statahead: $delta_sa sec"
9956                 lctl get_param -n llite.*.statahead_stats
9957                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9958
9959                 [[ $swrong -lt $ewrong ]] &&
9960                         log "statahead was stopped, maybe too many locks held!"
9961                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9962
9963                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9964                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9965                     lctl set_param -n llite.*.statahead_max 0
9966                     lctl get_param llite.*.statahead_max
9967                     cancel_lru_locks mdc
9968                     cancel_lru_locks osc
9969                     stime=`date +%s`
9970                     time ls -l $DIR/$tdir | wc -l
9971                     etime=`date +%s`
9972                     delta=$((etime - stime))
9973                     log "ls $i files again without statahead: $delta sec"
9974                     lctl set_param llite.*.statahead_max=$max
9975                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9976                         if [  $SLOWOK -eq 0 ]; then
9977                                 error "ls $i files is slower with statahead!"
9978                         else
9979                                 log "ls $i files is slower with statahead!"
9980                         fi
9981                         break
9982                     fi
9983                 fi
9984
9985                 [ $delta -gt 20 ] && break
9986                 [ $delta -gt 8 ] && MULT=$((50 / delta))
9987                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
9988         done
9989         log "ls done"
9990
9991         stime=`date +%s`
9992         rm -r $DIR/$tdir
9993         sync
9994         etime=`date +%s`
9995         delta=$((etime - stime))
9996         log "rm -r $DIR/$tdir/: $delta seconds"
9997         log "rm done"
9998         lctl get_param -n llite.*.statahead_stats
9999 }
10000 run_test 123a "verify statahead work"
10001
10002 test_123b () { # statahead(bug 15027)
10003         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10004
10005         test_mkdir $DIR/$tdir
10006         createmany -o $DIR/$tdir/$tfile-%d 1000
10007
10008         cancel_lru_locks mdc
10009         cancel_lru_locks osc
10010
10011 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
10012         lctl set_param fail_loc=0x80000803
10013         ls -lR $DIR/$tdir > /dev/null
10014         log "ls done"
10015         lctl set_param fail_loc=0x0
10016         lctl get_param -n llite.*.statahead_stats
10017         rm -r $DIR/$tdir
10018         sync
10019
10020 }
10021 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
10022
10023 test_124a() {
10024         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10025         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10026                 skip_env "no lru resize on server"
10027
10028         local NR=2000
10029
10030         test_mkdir $DIR/$tdir
10031
10032         log "create $NR files at $DIR/$tdir"
10033         createmany -o $DIR/$tdir/f $NR ||
10034                 error "failed to create $NR files in $DIR/$tdir"
10035
10036         cancel_lru_locks mdc
10037         ls -l $DIR/$tdir > /dev/null
10038
10039         local NSDIR=""
10040         local LRU_SIZE=0
10041         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
10042                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
10043                 LRU_SIZE=$($LCTL get_param -n $PARAM)
10044                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
10045                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
10046                         log "NSDIR=$NSDIR"
10047                         log "NS=$(basename $NSDIR)"
10048                         break
10049                 fi
10050         done
10051
10052         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
10053                 skip "Not enough cached locks created!"
10054         fi
10055         log "LRU=$LRU_SIZE"
10056
10057         local SLEEP=30
10058
10059         # We know that lru resize allows one client to hold $LIMIT locks
10060         # for 10h. After that locks begin to be killed by client.
10061         local MAX_HRS=10
10062         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
10063         log "LIMIT=$LIMIT"
10064         if [ $LIMIT -lt $LRU_SIZE ]; then
10065                 skip "Limit is too small $LIMIT"
10066         fi
10067
10068         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10069         # killing locks. Some time was spent for creating locks. This means
10070         # that up to the moment of sleep finish we must have killed some of
10071         # them (10-100 locks). This depends on how fast ther were created.
10072         # Many of them were touched in almost the same moment and thus will
10073         # be killed in groups.
10074         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10075
10076         # Use $LRU_SIZE_B here to take into account real number of locks
10077         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10078         local LRU_SIZE_B=$LRU_SIZE
10079         log "LVF=$LVF"
10080         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10081         log "OLD_LVF=$OLD_LVF"
10082         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10083
10084         # Let's make sure that we really have some margin. Client checks
10085         # cached locks every 10 sec.
10086         SLEEP=$((SLEEP+20))
10087         log "Sleep ${SLEEP} sec"
10088         local SEC=0
10089         while ((SEC<$SLEEP)); do
10090                 echo -n "..."
10091                 sleep 5
10092                 SEC=$((SEC+5))
10093                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10094                 echo -n "$LRU_SIZE"
10095         done
10096         echo ""
10097         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10098         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10099
10100         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10101                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10102                 unlinkmany $DIR/$tdir/f $NR
10103                 return
10104         }
10105
10106         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10107         log "unlink $NR files at $DIR/$tdir"
10108         unlinkmany $DIR/$tdir/f $NR
10109 }
10110 run_test 124a "lru resize ======================================="
10111
10112 get_max_pool_limit()
10113 {
10114         local limit=$($LCTL get_param \
10115                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10116         local max=0
10117         for l in $limit; do
10118                 if [[ $l -gt $max ]]; then
10119                         max=$l
10120                 fi
10121         done
10122         echo $max
10123 }
10124
10125 test_124b() {
10126         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10127         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10128                 skip_env "no lru resize on server"
10129
10130         LIMIT=$(get_max_pool_limit)
10131
10132         NR=$(($(default_lru_size)*20))
10133         if [[ $NR -gt $LIMIT ]]; then
10134                 log "Limit lock number by $LIMIT locks"
10135                 NR=$LIMIT
10136         fi
10137
10138         IFree=$(mdsrate_inodes_available)
10139         if [ $IFree -lt $NR ]; then
10140                 log "Limit lock number by $IFree inodes"
10141                 NR=$IFree
10142         fi
10143
10144         lru_resize_disable mdc
10145         test_mkdir -p $DIR/$tdir/disable_lru_resize
10146
10147         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10148         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10149         cancel_lru_locks mdc
10150         stime=`date +%s`
10151         PID=""
10152         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10153         PID="$PID $!"
10154         sleep 2
10155         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10156         PID="$PID $!"
10157         sleep 2
10158         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10159         PID="$PID $!"
10160         wait $PID
10161         etime=`date +%s`
10162         nolruresize_delta=$((etime-stime))
10163         log "ls -la time: $nolruresize_delta seconds"
10164         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10165         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10166
10167         lru_resize_enable mdc
10168         test_mkdir -p $DIR/$tdir/enable_lru_resize
10169
10170         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10171         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10172         cancel_lru_locks mdc
10173         stime=`date +%s`
10174         PID=""
10175         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10176         PID="$PID $!"
10177         sleep 2
10178         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10179         PID="$PID $!"
10180         sleep 2
10181         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10182         PID="$PID $!"
10183         wait $PID
10184         etime=`date +%s`
10185         lruresize_delta=$((etime-stime))
10186         log "ls -la time: $lruresize_delta seconds"
10187         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10188
10189         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10190                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10191         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10192                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10193         else
10194                 log "lru resize performs the same with no lru resize"
10195         fi
10196         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10197 }
10198 run_test 124b "lru resize (performance test) ======================="
10199
10200 test_124c() {
10201         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10202         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10203                 skip_env "no lru resize on server"
10204
10205         # cache ununsed locks on client
10206         local nr=100
10207         cancel_lru_locks mdc
10208         test_mkdir $DIR/$tdir
10209         createmany -o $DIR/$tdir/f $nr ||
10210                 error "failed to create $nr files in $DIR/$tdir"
10211         ls -l $DIR/$tdir > /dev/null
10212
10213         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10214         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10215         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10216         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10217         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10218
10219         # set lru_max_age to 1 sec
10220         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10221         echo "sleep $((recalc_p * 2)) seconds..."
10222         sleep $((recalc_p * 2))
10223
10224         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10225         # restore lru_max_age
10226         $LCTL set_param -n $nsdir.lru_max_age $max_age
10227         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10228         unlinkmany $DIR/$tdir/f $nr
10229 }
10230 run_test 124c "LRUR cancel very aged locks"
10231
10232 test_125() { # 13358
10233         $LCTL get_param -n llite.*.client_type | grep -q local ||
10234                 skip "must run as local client"
10235         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10236                 skip_env "must have acl enabled"
10237         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10238
10239         test_mkdir $DIR/$tdir
10240         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10241         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10242         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10243 }
10244 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10245
10246 test_126() { # bug 12829/13455
10247         $GSS && skip_env "must run as gss disabled"
10248         $LCTL get_param -n llite.*.client_type | grep -q local ||
10249                 skip "must run as local client"
10250         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10251
10252         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10253         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10254         rm -f $DIR/$tfile
10255         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10256 }
10257 run_test 126 "check that the fsgid provided by the client is taken into account"
10258
10259 test_127a() { # bug 15521
10260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10261
10262         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10263         $LCTL set_param osc.*.stats=0
10264         FSIZE=$((2048 * 1024))
10265         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10266         cancel_lru_locks osc
10267         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10268
10269         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10270         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10271                 echo "got $COUNT $NAME"
10272                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10273                 eval $NAME=$COUNT || error "Wrong proc format"
10274
10275                 case $NAME in
10276                         read_bytes|write_bytes)
10277                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10278                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10279                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10280                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10281                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10282                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10283                                 error "sumsquare is too small: $SUMSQ"
10284                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10285                                 error "sumsquare is too big: $SUMSQ"
10286                         ;;
10287                         *) ;;
10288                 esac
10289         done < $DIR/${tfile}.tmp
10290
10291         #check that we actually got some stats
10292         [ "$read_bytes" ] || error "Missing read_bytes stats"
10293         [ "$write_bytes" ] || error "Missing write_bytes stats"
10294         [ "$read_bytes" != 0 ] || error "no read done"
10295         [ "$write_bytes" != 0 ] || error "no write done"
10296 }
10297 run_test 127a "verify the client stats are sane"
10298
10299 test_127b() { # bug LU-333
10300         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10301         local name count samp unit min max sum sumsq
10302
10303         $LCTL set_param llite.*.stats=0
10304
10305         # perform 2 reads and writes so MAX is different from SUM.
10306         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10307         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10308         cancel_lru_locks osc
10309         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10310         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10311
10312         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10313         while read name count samp unit min max sum sumsq; do
10314                 echo "got $count $name"
10315                 eval $name=$count || error "Wrong proc format"
10316
10317                 case $name in
10318                 read_bytes)
10319                         [ $count -ne 2 ] && error "count is not 2: $count"
10320                         [ $min -ne $PAGE_SIZE ] &&
10321                                 error "min is not $PAGE_SIZE: $min"
10322                         [ $max -ne $PAGE_SIZE ] &&
10323                                 error "max is incorrect: $max"
10324                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10325                                 error "sum is wrong: $sum"
10326                         ;;
10327                 write_bytes)
10328                         [ $count -ne 2 ] && error "count is not 2: $count"
10329                         [ $min -ne $PAGE_SIZE ] &&
10330                                 error "min is not $PAGE_SIZE: $min"
10331                         [ $max -ne $PAGE_SIZE ] &&
10332                                 error "max is incorrect: $max"
10333                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10334                                 error "sum is wrong: $sum"
10335                         ;;
10336                 *) ;;
10337                 esac
10338         done < $TMP/$tfile.tmp
10339
10340         #check that we actually got some stats
10341         [ "$read_bytes" ] || error "Missing read_bytes stats"
10342         [ "$write_bytes" ] || error "Missing write_bytes stats"
10343         [ "$read_bytes" != 0 ] || error "no read done"
10344         [ "$write_bytes" != 0 ] || error "no write done"
10345
10346         rm -f $TMP/${tfile}.tmp
10347 }
10348 run_test 127b "verify the llite client stats are sane"
10349
10350 test_128() { # bug 15212
10351         touch $DIR/$tfile
10352         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10353                 find $DIR/$tfile
10354                 find $DIR/$tfile
10355         EOF
10356
10357         result=$(grep error $TMP/$tfile.log)
10358         rm -f $DIR/$tfile $TMP/$tfile.log
10359         [ -z "$result" ] ||
10360                 error "consecutive find's under interactive lfs failed"
10361 }
10362 run_test 128 "interactive lfs for 2 consecutive find's"
10363
10364 set_dir_limits () {
10365         local mntdev
10366         local canondev
10367         local node
10368
10369         local ldproc=/proc/fs/ldiskfs
10370         local facets=$(get_facets MDS)
10371
10372         for facet in ${facets//,/ }; do
10373                 canondev=$(ldiskfs_canon \
10374                            *.$(convert_facet2label $facet).mntdev $facet)
10375                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10376                         ldproc=/sys/fs/ldiskfs
10377                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10378                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10379         done
10380 }
10381
10382 check_mds_dmesg() {
10383         local facets=$(get_facets MDS)
10384         for facet in ${facets//,/ }; do
10385                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10386         done
10387         return 1
10388 }
10389
10390 test_129() {
10391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10392         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10393                 skip "Need MDS version with at least 2.5.56"
10394         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10395                 skip_env "ldiskfs only test"
10396         fi
10397         remote_mds_nodsh && skip "remote MDS with nodsh"
10398
10399         local ENOSPC=28
10400         local EFBIG=27
10401         local has_warning=false
10402
10403         rm -rf $DIR/$tdir
10404         mkdir -p $DIR/$tdir
10405
10406         # block size of mds1
10407         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10408         set_dir_limits $maxsize $maxsize
10409         local dirsize=$(stat -c%s "$DIR/$tdir")
10410         local nfiles=0
10411         while [[ $dirsize -le $maxsize ]]; do
10412                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10413                 rc=$?
10414                 if ! $has_warning; then
10415                         check_mds_dmesg '"is approaching"' && has_warning=true
10416                 fi
10417                 # check two errors:
10418                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10419                 # EFBIG for previous versions included in ldiskfs series
10420                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10421                         set_dir_limits 0 0
10422                         echo "return code $rc received as expected"
10423
10424                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10425                                 error_exit "create failed w/o dir size limit"
10426
10427                         check_mds_dmesg '"has reached"' ||
10428                                 error_exit "reached message should be output"
10429
10430                         [ $has_warning = "false" ] &&
10431                                 error_exit "warning message should be output"
10432
10433                         dirsize=$(stat -c%s "$DIR/$tdir")
10434
10435                         [[ $dirsize -ge $maxsize ]] && return 0
10436                         error_exit "current dir size $dirsize, " \
10437                                    "previous limit $maxsize"
10438                 elif [ $rc -ne 0 ]; then
10439                         set_dir_limits 0 0
10440                         error_exit "return $rc received instead of expected " \
10441                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10442                 fi
10443                 nfiles=$((nfiles + 1))
10444                 dirsize=$(stat -c%s "$DIR/$tdir")
10445         done
10446
10447         set_dir_limits 0 0
10448         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10449 }
10450 run_test 129 "test directory size limit ========================"
10451
10452 OLDIFS="$IFS"
10453 cleanup_130() {
10454         trap 0
10455         IFS="$OLDIFS"
10456 }
10457
10458 test_130a() {
10459         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10460         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10461
10462         trap cleanup_130 EXIT RETURN
10463
10464         local fm_file=$DIR/$tfile
10465         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10466         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10467                 error "dd failed for $fm_file"
10468
10469         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10470         filefrag -ves $fm_file
10471         RC=$?
10472         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10473                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10474         [ $RC != 0 ] && error "filefrag $fm_file failed"
10475
10476         filefrag_op=$(filefrag -ve -k $fm_file |
10477                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10478         lun=$($GETSTRIPE -i $fm_file)
10479
10480         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10481         IFS=$'\n'
10482         tot_len=0
10483         for line in $filefrag_op
10484         do
10485                 frag_lun=`echo $line | cut -d: -f5`
10486                 ext_len=`echo $line | cut -d: -f4`
10487                 if (( $frag_lun != $lun )); then
10488                         cleanup_130
10489                         error "FIEMAP on 1-stripe file($fm_file) failed"
10490                         return
10491                 fi
10492                 (( tot_len += ext_len ))
10493         done
10494
10495         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10496                 cleanup_130
10497                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10498                 return
10499         fi
10500
10501         cleanup_130
10502
10503         echo "FIEMAP on single striped file succeeded"
10504 }
10505 run_test 130a "FIEMAP (1-stripe file)"
10506
10507 test_130b() {
10508         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10509
10510         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10511         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10512
10513         trap cleanup_130 EXIT RETURN
10514
10515         local fm_file=$DIR/$tfile
10516         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10517                         error "setstripe on $fm_file"
10518         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10519                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10520
10521         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10522                 error "dd failed on $fm_file"
10523
10524         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10525         filefrag_op=$(filefrag -ve -k $fm_file |
10526                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10527
10528         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10529                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10530
10531         IFS=$'\n'
10532         tot_len=0
10533         num_luns=1
10534         for line in $filefrag_op
10535         do
10536                 frag_lun=$(echo $line | cut -d: -f5 |
10537                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10538                 ext_len=$(echo $line | cut -d: -f4)
10539                 if (( $frag_lun != $last_lun )); then
10540                         if (( tot_len != 1024 )); then
10541                                 cleanup_130
10542                                 error "FIEMAP on $fm_file failed; returned " \
10543                                 "len $tot_len for OST $last_lun instead of 1024"
10544                                 return
10545                         else
10546                                 (( num_luns += 1 ))
10547                                 tot_len=0
10548                         fi
10549                 fi
10550                 (( tot_len += ext_len ))
10551                 last_lun=$frag_lun
10552         done
10553         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10554                 cleanup_130
10555                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10556                         "luns or wrong len for OST $last_lun"
10557                 return
10558         fi
10559
10560         cleanup_130
10561
10562         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10563 }
10564 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10565
10566 test_130c() {
10567         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10568
10569         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10570         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10571
10572         trap cleanup_130 EXIT RETURN
10573
10574         local fm_file=$DIR/$tfile
10575         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10576         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10577                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10578
10579         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10580                         error "dd failed on $fm_file"
10581
10582         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10583         filefrag_op=$(filefrag -ve -k $fm_file |
10584                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10585
10586         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10587                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10588
10589         IFS=$'\n'
10590         tot_len=0
10591         num_luns=1
10592         for line in $filefrag_op
10593         do
10594                 frag_lun=$(echo $line | cut -d: -f5 |
10595                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10596                 ext_len=$(echo $line | cut -d: -f4)
10597                 if (( $frag_lun != $last_lun )); then
10598                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10599                         if (( logical != 512 )); then
10600                                 cleanup_130
10601                                 error "FIEMAP on $fm_file failed; returned " \
10602                                 "logical start for lun $logical instead of 512"
10603                                 return
10604                         fi
10605                         if (( tot_len != 512 )); then
10606                                 cleanup_130
10607                                 error "FIEMAP on $fm_file failed; returned " \
10608                                 "len $tot_len for OST $last_lun instead of 1024"
10609                                 return
10610                         else
10611                                 (( num_luns += 1 ))
10612                                 tot_len=0
10613                         fi
10614                 fi
10615                 (( tot_len += ext_len ))
10616                 last_lun=$frag_lun
10617         done
10618         if (( num_luns != 2 || tot_len != 512 )); then
10619                 cleanup_130
10620                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10621                         "luns or wrong len for OST $last_lun"
10622                 return
10623         fi
10624
10625         cleanup_130
10626
10627         echo "FIEMAP on 2-stripe file with hole succeeded"
10628 }
10629 run_test 130c "FIEMAP (2-stripe file with hole)"
10630
10631 test_130d() {
10632         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10633
10634         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10635         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10636
10637         trap cleanup_130 EXIT RETURN
10638
10639         local fm_file=$DIR/$tfile
10640         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
10641                         error "setstripe on $fm_file"
10642         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10643                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10644
10645         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
10646         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10647                 error "dd failed on $fm_file"
10648
10649         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10650         filefrag_op=$(filefrag -ve -k $fm_file |
10651                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10652
10653         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10654                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10655
10656         IFS=$'\n'
10657         tot_len=0
10658         num_luns=1
10659         for line in $filefrag_op
10660         do
10661                 frag_lun=$(echo $line | cut -d: -f5 |
10662                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10663                 ext_len=$(echo $line | cut -d: -f4)
10664                 if (( $frag_lun != $last_lun )); then
10665                         if (( tot_len != 1024 )); then
10666                                 cleanup_130
10667                                 error "FIEMAP on $fm_file failed; returned " \
10668                                 "len $tot_len for OST $last_lun instead of 1024"
10669                                 return
10670                         else
10671                                 (( num_luns += 1 ))
10672                                 tot_len=0
10673                         fi
10674                 fi
10675                 (( tot_len += ext_len ))
10676                 last_lun=$frag_lun
10677         done
10678         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10679                 cleanup_130
10680                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10681                         "luns or wrong len for OST $last_lun"
10682                 return
10683         fi
10684
10685         cleanup_130
10686
10687         echo "FIEMAP on N-stripe file succeeded"
10688 }
10689 run_test 130d "FIEMAP (N-stripe file)"
10690
10691 test_130e() {
10692         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10693
10694         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10695         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10696
10697         trap cleanup_130 EXIT RETURN
10698
10699         local fm_file=$DIR/$tfile
10700         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10701         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
10702                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10703
10704         NUM_BLKS=512
10705         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10706         for ((i = 0; i < $NUM_BLKS; i++))
10707         do
10708                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10709         done
10710
10711         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10712         filefrag_op=$(filefrag -ve -k $fm_file |
10713                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10714
10715         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10716                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10717
10718         IFS=$'\n'
10719         tot_len=0
10720         num_luns=1
10721         for line in $filefrag_op
10722         do
10723                 frag_lun=$(echo $line | cut -d: -f5 |
10724                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10725                 ext_len=$(echo $line | cut -d: -f4)
10726                 if (( $frag_lun != $last_lun )); then
10727                         if (( tot_len != $EXPECTED_LEN )); then
10728                                 cleanup_130
10729                                 error "FIEMAP on $fm_file failed; returned " \
10730                                 "len $tot_len for OST $last_lun instead " \
10731                                 "of $EXPECTED_LEN"
10732                                 return
10733                         else
10734                                 (( num_luns += 1 ))
10735                                 tot_len=0
10736                         fi
10737                 fi
10738                 (( tot_len += ext_len ))
10739                 last_lun=$frag_lun
10740         done
10741         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10742                 cleanup_130
10743                 error "FIEMAP on $fm_file failed; returned wrong number " \
10744                         "of luns or wrong len for OST $last_lun"
10745                 return
10746         fi
10747
10748         cleanup_130
10749
10750         echo "FIEMAP with continuation calls succeeded"
10751 }
10752 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10753
10754 test_130f() {
10755         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10756         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10757
10758         local fm_file=$DIR/$tfile
10759         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10760                 error "multiop create with lov_delay_create on $fm_file"
10761
10762         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10763         filefrag_extents=$(filefrag -vek $fm_file |
10764                            awk '/extents? found/ { print $2 }')
10765         if [[ "$filefrag_extents" != "0" ]]; then
10766                 error "FIEMAP on $fm_file failed; " \
10767                       "returned $filefrag_extents expected 0"
10768         fi
10769
10770         rm -f $fm_file
10771 }
10772 run_test 130f "FIEMAP (unstriped file)"
10773
10774 # Test for writev/readv
10775 test_131a() {
10776         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10777                 error "writev test failed"
10778         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10779                 error "readv failed"
10780         rm -f $DIR/$tfile
10781 }
10782 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10783
10784 test_131b() {
10785         local fsize=$((524288 + 1048576 + 1572864))
10786         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10787                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10788                         error "append writev test failed"
10789
10790         ((fsize += 1572864 + 1048576))
10791         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10792                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10793                         error "append writev test failed"
10794         rm -f $DIR/$tfile
10795 }
10796 run_test 131b "test append writev"
10797
10798 test_131c() {
10799         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10800         error "NOT PASS"
10801 }
10802 run_test 131c "test read/write on file w/o objects"
10803
10804 test_131d() {
10805         rwv -f $DIR/$tfile -w -n 1 1572864
10806         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10807         if [ "$NOB" != 1572864 ]; then
10808                 error "Short read filed: read $NOB bytes instead of 1572864"
10809         fi
10810         rm -f $DIR/$tfile
10811 }
10812 run_test 131d "test short read"
10813
10814 test_131e() {
10815         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10816         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10817         error "read hitting hole failed"
10818         rm -f $DIR/$tfile
10819 }
10820 run_test 131e "test read hitting hole"
10821
10822 check_stats() {
10823         local facet=$1
10824         local op=$2
10825         local want=${3:-0}
10826         local res
10827
10828         case $facet in
10829         mds*) res=$(do_facet $facet \
10830                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10831                  ;;
10832         ost*) res=$(do_facet $facet \
10833                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10834                  ;;
10835         *) error "Wrong facet '$facet'" ;;
10836         esac
10837         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10838         # if the argument $3 is zero, it means any stat increment is ok.
10839         if [[ $want -gt 0 ]]; then
10840                 local count=$(echo $res | awk '{ print $2 }')
10841                 [[ $count -ne $want ]] &&
10842                         error "The $op counter on $facet is $count, not $want"
10843         fi
10844 }
10845
10846 test_133a() {
10847         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10848         remote_ost_nodsh && skip "remote OST with nodsh"
10849         remote_mds_nodsh && skip "remote MDS with nodsh"
10850         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10851                 skip_env "MDS doesn't support rename stats"
10852
10853         local testdir=$DIR/${tdir}/stats_testdir
10854
10855         mkdir -p $DIR/${tdir}
10856
10857         # clear stats.
10858         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10859         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10860
10861         # verify mdt stats first.
10862         mkdir ${testdir} || error "mkdir failed"
10863         check_stats $SINGLEMDS "mkdir" 1
10864         touch ${testdir}/${tfile} || error "touch failed"
10865         check_stats $SINGLEMDS "open" 1
10866         check_stats $SINGLEMDS "close" 1
10867         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
10868                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10869                 check_stats $SINGLEMDS "mknod" 2
10870         }
10871         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10872         check_stats $SINGLEMDS "unlink" 1
10873         rm -f ${testdir}/${tfile} || error "file remove failed"
10874         check_stats $SINGLEMDS "unlink" 2
10875
10876         # remove working dir and check mdt stats again.
10877         rmdir ${testdir} || error "rmdir failed"
10878         check_stats $SINGLEMDS "rmdir" 1
10879
10880         local testdir1=$DIR/${tdir}/stats_testdir1
10881         mkdir -p ${testdir}
10882         mkdir -p ${testdir1}
10883         touch ${testdir1}/test1
10884         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10885         check_stats $SINGLEMDS "crossdir_rename" 1
10886
10887         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10888         check_stats $SINGLEMDS "samedir_rename" 1
10889
10890         rm -rf $DIR/${tdir}
10891 }
10892 run_test 133a "Verifying MDT stats ========================================"
10893
10894 test_133b() {
10895         local res
10896
10897         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10898         remote_ost_nodsh && skip "remote OST with nodsh"
10899         remote_mds_nodsh && skip "remote MDS with nodsh"
10900
10901         local testdir=$DIR/${tdir}/stats_testdir
10902
10903         mkdir -p ${testdir} || error "mkdir failed"
10904         touch ${testdir}/${tfile} || error "touch failed"
10905         cancel_lru_locks mdc
10906
10907         # clear stats.
10908         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10909         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10910
10911         # extra mdt stats verification.
10912         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10913         check_stats $SINGLEMDS "setattr" 1
10914         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10915         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
10916         then            # LU-1740
10917                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10918                 check_stats $SINGLEMDS "getattr" 1
10919         fi
10920         rm -rf $DIR/${tdir}
10921
10922         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10923         # so the check below is not reliable
10924         [ $MDSCOUNT -eq 1 ] || return 0
10925
10926         # Sleep to avoid a cached response.
10927         #define OBD_STATFS_CACHE_SECONDS 1
10928         sleep 2
10929         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10930         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10931         $LFS df || error "lfs failed"
10932         check_stats $SINGLEMDS "statfs" 1
10933
10934         # check aggregated statfs (LU-10018)
10935         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
10936                 return 0
10937         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
10938                 return 0
10939         sleep 2
10940         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10941         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10942         df $DIR
10943         check_stats $SINGLEMDS "statfs" 1
10944
10945         # We want to check that the client didn't send OST_STATFS to
10946         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10947         # extra care is needed here.
10948         if remote_mds; then
10949                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10950                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10951
10952                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10953                 [ "$res" ] && error "OST got STATFS"
10954         fi
10955
10956         return 0
10957 }
10958 run_test 133b "Verifying extra MDT stats =================================="
10959
10960 test_133c() {
10961         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10962         remote_ost_nodsh && skip "remote OST with nodsh"
10963         remote_mds_nodsh && skip "remote MDS with nodsh"
10964
10965         local testdir=$DIR/$tdir/stats_testdir
10966
10967         test_mkdir -p $testdir
10968
10969         # verify obdfilter stats.
10970         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
10971         sync
10972         cancel_lru_locks osc
10973         wait_delete_completed
10974
10975         # clear stats.
10976         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10977         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10978
10979         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
10980                 error "dd failed"
10981         sync
10982         cancel_lru_locks osc
10983         check_stats ost1 "write" 1
10984
10985         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
10986         check_stats ost1 "read" 1
10987
10988         > $testdir/$tfile || error "truncate failed"
10989         check_stats ost1 "punch" 1
10990
10991         rm -f $testdir/$tfile || error "file remove failed"
10992         wait_delete_completed
10993         check_stats ost1 "destroy" 1
10994
10995         rm -rf $DIR/$tdir
10996 }
10997 run_test 133c "Verifying OST stats ========================================"
10998
10999 order_2() {
11000         local value=$1
11001         local orig=$value
11002         local order=1
11003
11004         while [ $value -ge 2 ]; do
11005                 order=$((order*2))
11006                 value=$((value/2))
11007         done
11008
11009         if [ $orig -gt $order ]; then
11010                 order=$((order*2))
11011         fi
11012         echo $order
11013 }
11014
11015 size_in_KMGT() {
11016     local value=$1
11017     local size=('K' 'M' 'G' 'T');
11018     local i=0
11019     local size_string=$value
11020
11021     while [ $value -ge 1024 ]; do
11022         if [ $i -gt 3 ]; then
11023             #T is the biggest unit we get here, if that is bigger,
11024             #just return XXXT
11025             size_string=${value}T
11026             break
11027         fi
11028         value=$((value >> 10))
11029         if [ $value -lt 1024 ]; then
11030             size_string=${value}${size[$i]}
11031             break
11032         fi
11033         i=$((i + 1))
11034     done
11035
11036     echo $size_string
11037 }
11038
11039 get_rename_size() {
11040         local size=$1
11041         local context=${2:-.}
11042         local sample=$(do_facet $SINGLEMDS $LCTL \
11043                 get_param mdt.$FSNAME-MDT0000.rename_stats |
11044                 grep -A1 $context |
11045                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
11046         echo $sample
11047 }
11048
11049 test_133d() {
11050         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11051         remote_ost_nodsh && skip "remote OST with nodsh"
11052         remote_mds_nodsh && skip "remote MDS with nodsh"
11053         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
11054                 skip_env "MDS doesn't support rename stats"
11055
11056         local testdir1=$DIR/${tdir}/stats_testdir1
11057         local testdir2=$DIR/${tdir}/stats_testdir2
11058         mkdir -p $DIR/${tdir}
11059
11060         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11061
11062         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
11063         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
11064
11065         createmany -o $testdir1/test 512 || error "createmany failed"
11066
11067         # check samedir rename size
11068         mv ${testdir1}/test0 ${testdir1}/test_0
11069
11070         local testdir1_size=$(ls -l $DIR/${tdir} |
11071                 awk '/stats_testdir1/ {print $5}')
11072         local testdir2_size=$(ls -l $DIR/${tdir} |
11073                 awk '/stats_testdir2/ {print $5}')
11074
11075         testdir1_size=$(order_2 $testdir1_size)
11076         testdir2_size=$(order_2 $testdir2_size)
11077
11078         testdir1_size=$(size_in_KMGT $testdir1_size)
11079         testdir2_size=$(size_in_KMGT $testdir2_size)
11080
11081         echo "source rename dir size: ${testdir1_size}"
11082         echo "target rename dir size: ${testdir2_size}"
11083
11084         local cmd="do_facet $SINGLEMDS $LCTL "
11085         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11086
11087         eval $cmd || error "$cmd failed"
11088         local samedir=$($cmd | grep 'same_dir')
11089         local same_sample=$(get_rename_size $testdir1_size)
11090         [ -z "$samedir" ] && error "samedir_rename_size count error"
11091         [[ $same_sample -eq 1 ]] ||
11092                 error "samedir_rename_size error $same_sample"
11093         echo "Check same dir rename stats success"
11094
11095         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11096
11097         # check crossdir rename size
11098         mv ${testdir1}/test_0 ${testdir2}/test_0
11099
11100         testdir1_size=$(ls -l $DIR/${tdir} |
11101                 awk '/stats_testdir1/ {print $5}')
11102         testdir2_size=$(ls -l $DIR/${tdir} |
11103                 awk '/stats_testdir2/ {print $5}')
11104
11105         testdir1_size=$(order_2 $testdir1_size)
11106         testdir2_size=$(order_2 $testdir2_size)
11107
11108         testdir1_size=$(size_in_KMGT $testdir1_size)
11109         testdir2_size=$(size_in_KMGT $testdir2_size)
11110
11111         echo "source rename dir size: ${testdir1_size}"
11112         echo "target rename dir size: ${testdir2_size}"
11113
11114         eval $cmd || error "$cmd failed"
11115         local crossdir=$($cmd | grep 'crossdir')
11116         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11117         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11118         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11119         [[ $src_sample -eq 1 ]] ||
11120                 error "crossdir_rename_size error $src_sample"
11121         [[ $tgt_sample -eq 1 ]] ||
11122                 error "crossdir_rename_size error $tgt_sample"
11123         echo "Check cross dir rename stats success"
11124         rm -rf $DIR/${tdir}
11125 }
11126 run_test 133d "Verifying rename_stats ========================================"
11127
11128 test_133e() {
11129         remote_mds_nodsh && skip "remote MDS with nodsh"
11130         remote_ost_nodsh && skip "remote OST with nodsh"
11131         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11132
11133         local testdir=$DIR/${tdir}/stats_testdir
11134         local ctr f0 f1 bs=32768 count=42 sum
11135
11136         mkdir -p ${testdir} || error "mkdir failed"
11137
11138         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
11139
11140         for ctr in {write,read}_bytes; do
11141                 sync
11142                 cancel_lru_locks osc
11143
11144                 do_facet ost1 $LCTL set_param -n \
11145                         "obdfilter.*.exports.clear=clear"
11146
11147                 if [ $ctr = write_bytes ]; then
11148                         f0=/dev/zero
11149                         f1=${testdir}/${tfile}
11150                 else
11151                         f0=${testdir}/${tfile}
11152                         f1=/dev/null
11153                 fi
11154
11155                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11156                         error "dd failed"
11157                 sync
11158                 cancel_lru_locks osc
11159
11160                 sum=$(do_facet ost1 $LCTL get_param \
11161                         "obdfilter.*.exports.*.stats" |
11162                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11163                                 $1 == ctr { sum += $7 }
11164                                 END { printf("%0.0f", sum) }')
11165
11166                 if ((sum != bs * count)); then
11167                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11168                 fi
11169         done
11170
11171         rm -rf $DIR/${tdir}
11172 }
11173 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11174
11175 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11176
11177 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11178 # not honor the -ignore_readdir_race option correctly. So we call
11179 # error_ignore() rather than error() in these cases. See LU-11152.
11180 error_133() {
11181         if (find --version; do_facet mds1 find --version) |
11182                 grep -q '\b4\.5\.1[1-4]\b'; then
11183                 error_ignore LU-11152 "$@"
11184         else
11185                 error "$@"
11186         fi
11187 }
11188
11189 test_133f() {
11190         # First without trusting modes.
11191         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11192         echo "proc_dirs='$proc_dirs'"
11193         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11194         find $proc_dirs -exec cat '{}' \; &> /dev/null
11195
11196         # Second verifying readability.
11197         $LCTL get_param -R '*' &> /dev/null
11198
11199         # Verifing writability with badarea_io.
11200         find $proc_dirs \
11201                 -ignore_readdir_race \
11202                 -type f \
11203                 -not -name force_lbug \
11204                 -not -name changelog_mask \
11205                 -exec badarea_io '{}' \; ||
11206                         error_133 "find $proc_dirs failed"
11207 }
11208 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11209
11210 test_133g() {
11211         remote_mds_nodsh && skip "remote MDS with nodsh"
11212         remote_ost_nodsh && skip "remote OST with nodsh"
11213
11214         # eventually, this can also be replaced with "lctl get_param -R",
11215         # but not until that option is always available on the server
11216         local facet
11217         for facet in mds1 ost1; do
11218                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11219                         skip_noexit "Too old lustre on $facet"
11220                 local facet_proc_dirs=$(do_facet $facet \
11221                                         \\\ls -d $proc_regexp 2>/dev/null)
11222                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11223                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11224                 do_facet $facet find $facet_proc_dirs \
11225                         ! -name req_history \
11226                         -exec cat '{}' \\\; &> /dev/null
11227
11228                 do_facet $facet find $facet_proc_dirs \
11229                         ! -name req_history \
11230                         -type f \
11231                         -exec cat '{}' \\\; &> /dev/null ||
11232                                 error "proc file read failed"
11233
11234                 do_facet $facet find $facet_proc_dirs \
11235                         -ignore_readdir_race \
11236                         -type f \
11237                         -not -name force_lbug \
11238                         -not -name changelog_mask \
11239                         -exec badarea_io '{}' \\\; ||
11240                                 error_133 "$facet find $facet_proc_dirs failed"
11241         done
11242
11243         # remount the FS in case writes/reads /proc break the FS
11244         cleanup || error "failed to unmount"
11245         setup || error "failed to setup"
11246         true
11247 }
11248 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11249
11250 test_133h() {
11251         remote_mds_nodsh && skip "remote MDS with nodsh"
11252         remote_ost_nodsh && skip "remote OST with nodsh"
11253         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11254                 skip "Need MDS version at least 2.9.54"
11255
11256         local facet
11257
11258         for facet in client mds1 ost1; do
11259                 local facet_proc_dirs=$(do_facet $facet \
11260                                         \\\ls -d $proc_regexp 2> /dev/null)
11261                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11262                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11263                 # Get the list of files that are missing the terminating newline
11264                 local missing=($(do_facet $facet \
11265                         find ${facet_proc_dirs} -type f \|              \
11266                                 while read F\; do                       \
11267                                         awk -v FS='\v' -v RS='\v\v'     \
11268                                         "'END { if(NR>0 &&              \
11269                                         \\\$NF !~ /.*\\\n\$/)           \
11270                                                 print FILENAME}'"       \
11271                                         '\$F'\;                         \
11272                                 done 2>/dev/null))
11273                 [ ${#missing[*]} -eq 0 ] ||
11274                         error "files do not end with newline: ${missing[*]}"
11275         done
11276 }
11277 run_test 133h "Proc files should end with newlines"
11278
11279 test_134a() {
11280         remote_mds_nodsh && skip "remote MDS with nodsh"
11281         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11282                 skip "Need MDS version at least 2.7.54"
11283
11284         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11285         cancel_lru_locks mdc
11286
11287         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11288         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11289         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11290
11291         local nr=1000
11292         createmany -o $DIR/$tdir/f $nr ||
11293                 error "failed to create $nr files in $DIR/$tdir"
11294         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11295
11296         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11297         do_facet mds1 $LCTL set_param fail_loc=0x327
11298         do_facet mds1 $LCTL set_param fail_val=500
11299         touch $DIR/$tdir/m
11300
11301         echo "sleep 10 seconds ..."
11302         sleep 10
11303         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11304
11305         do_facet mds1 $LCTL set_param fail_loc=0
11306         do_facet mds1 $LCTL set_param fail_val=0
11307         [ $lck_cnt -lt $unused ] ||
11308                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11309
11310         rm $DIR/$tdir/m
11311         unlinkmany $DIR/$tdir/f $nr
11312 }
11313 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11314
11315 test_134b() {
11316         remote_mds_nodsh && skip "remote MDS with nodsh"
11317         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11318                 skip "Need MDS version at least 2.7.54"
11319
11320         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11321         cancel_lru_locks mdc
11322
11323         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11324                         ldlm.lock_reclaim_threshold_mb)
11325         # disable reclaim temporarily
11326         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11327
11328         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11329         do_facet mds1 $LCTL set_param fail_loc=0x328
11330         do_facet mds1 $LCTL set_param fail_val=500
11331
11332         $LCTL set_param debug=+trace
11333
11334         local nr=600
11335         createmany -o $DIR/$tdir/f $nr &
11336         local create_pid=$!
11337
11338         echo "Sleep $TIMEOUT seconds ..."
11339         sleep $TIMEOUT
11340         if ! ps -p $create_pid  > /dev/null 2>&1; then
11341                 do_facet mds1 $LCTL set_param fail_loc=0
11342                 do_facet mds1 $LCTL set_param fail_val=0
11343                 do_facet mds1 $LCTL set_param \
11344                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11345                 error "createmany finished incorrectly!"
11346         fi
11347         do_facet mds1 $LCTL set_param fail_loc=0
11348         do_facet mds1 $LCTL set_param fail_val=0
11349         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11350         wait $create_pid || return 1
11351
11352         unlinkmany $DIR/$tdir/f $nr
11353 }
11354 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11355
11356 test_140() { #bug-17379
11357         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11358
11359         test_mkdir $DIR/$tdir
11360         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11361         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11362
11363         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11364         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11365         local i=0
11366         while i=$((i + 1)); do
11367                 test_mkdir $i
11368                 cd $i || error "Changing to $i"
11369                 ln -s ../stat stat || error "Creating stat symlink"
11370                 # Read the symlink until ELOOP present,
11371                 # not LBUGing the system is considered success,
11372                 # we didn't overrun the stack.
11373                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11374                 if [ $ret -ne 0 ]; then
11375                         if [ $ret -eq 40 ]; then
11376                                 break  # -ELOOP
11377                         else
11378                                 error "Open stat symlink"
11379                                         return
11380                         fi
11381                 fi
11382         done
11383         i=$((i - 1))
11384         echo "The symlink depth = $i"
11385         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11386                                         error "Invalid symlink depth"
11387
11388         # Test recursive symlink
11389         ln -s symlink_self symlink_self
11390         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11391         echo "open symlink_self returns $ret"
11392         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11393 }
11394 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11395
11396 test_150() {
11397         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11398
11399         local TF="$TMP/$tfile"
11400
11401         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11402         cp $TF $DIR/$tfile
11403         cancel_lru_locks $OSC
11404         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11405         remount_client $MOUNT
11406         df -P $MOUNT
11407         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11408
11409         $TRUNCATE $TF 6000
11410         $TRUNCATE $DIR/$tfile 6000
11411         cancel_lru_locks $OSC
11412         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11413
11414         echo "12345" >>$TF
11415         echo "12345" >>$DIR/$tfile
11416         cancel_lru_locks $OSC
11417         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11418
11419         echo "12345" >>$TF
11420         echo "12345" >>$DIR/$tfile
11421         cancel_lru_locks $OSC
11422         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11423
11424         rm -f $TF
11425         true
11426 }
11427 run_test 150 "truncate/append tests"
11428
11429 #LU-2902 roc_hit was not able to read all values from lproc
11430 function roc_hit_init() {
11431         local list=$(comma_list $(osts_nodes))
11432         local dir=$DIR/$tdir-check
11433         local file=$dir/$tfile
11434         local BEFORE
11435         local AFTER
11436         local idx
11437
11438         test_mkdir $dir
11439         #use setstripe to do a write to every ost
11440         for i in $(seq 0 $((OSTCOUNT-1))); do
11441                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
11442                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11443                 idx=$(printf %04x $i)
11444                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11445                         awk '$1 == "cache_access" {sum += $7}
11446                                 END { printf("%0.0f", sum) }')
11447
11448                 cancel_lru_locks osc
11449                 cat $file >/dev/null
11450
11451                 AFTER=$(get_osd_param $list *OST*$idx stats |
11452                         awk '$1 == "cache_access" {sum += $7}
11453                                 END { printf("%0.0f", sum) }')
11454
11455                 echo BEFORE:$BEFORE AFTER:$AFTER
11456                 if ! let "AFTER - BEFORE == 4"; then
11457                         rm -rf $dir
11458                         error "roc_hit is not safe to use"
11459                 fi
11460                 rm $file
11461         done
11462
11463         rm -rf $dir
11464 }
11465
11466 function roc_hit() {
11467         local list=$(comma_list $(osts_nodes))
11468         echo $(get_osd_param $list '' stats |
11469                 awk '$1 == "cache_hit" {sum += $7}
11470                         END { printf("%0.0f", sum) }')
11471 }
11472
11473 function set_cache() {
11474         local on=1
11475
11476         if [ "$2" == "off" ]; then
11477                 on=0;
11478         fi
11479         local list=$(comma_list $(osts_nodes))
11480         set_osd_param $list '' $1_cache_enable $on
11481
11482         cancel_lru_locks osc
11483 }
11484
11485 test_151() {
11486         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11487         remote_ost_nodsh && skip "remote OST with nodsh"
11488
11489         local CPAGES=3
11490         local list=$(comma_list $(osts_nodes))
11491
11492         # check whether obdfilter is cache capable at all
11493         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11494                 skip "not cache-capable obdfilter"
11495         fi
11496
11497         # check cache is enabled on all obdfilters
11498         if get_osd_param $list '' read_cache_enable | grep 0; then
11499                 skip "oss cache is disabled"
11500         fi
11501
11502         set_osd_param $list '' writethrough_cache_enable 1
11503
11504         # check write cache is enabled on all obdfilters
11505         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11506                 skip "oss write cache is NOT enabled"
11507         fi
11508
11509         roc_hit_init
11510
11511         #define OBD_FAIL_OBD_NO_LRU  0x609
11512         do_nodes $list $LCTL set_param fail_loc=0x609
11513
11514         # pages should be in the case right after write
11515         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11516                 error "dd failed"
11517
11518         local BEFORE=$(roc_hit)
11519         cancel_lru_locks osc
11520         cat $DIR/$tfile >/dev/null
11521         local AFTER=$(roc_hit)
11522
11523         do_nodes $list $LCTL set_param fail_loc=0
11524
11525         if ! let "AFTER - BEFORE == CPAGES"; then
11526                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11527         fi
11528
11529         # the following read invalidates the cache
11530         cancel_lru_locks osc
11531         set_osd_param $list '' read_cache_enable 0
11532         cat $DIR/$tfile >/dev/null
11533
11534         # now data shouldn't be found in the cache
11535         BEFORE=$(roc_hit)
11536         cancel_lru_locks osc
11537         cat $DIR/$tfile >/dev/null
11538         AFTER=$(roc_hit)
11539         if let "AFTER - BEFORE != 0"; then
11540                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11541         fi
11542
11543         set_osd_param $list '' read_cache_enable 1
11544         rm -f $DIR/$tfile
11545 }
11546 run_test 151 "test cache on oss and controls ==============================="
11547
11548 test_152() {
11549         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11550
11551         local TF="$TMP/$tfile"
11552
11553         # simulate ENOMEM during write
11554 #define OBD_FAIL_OST_NOMEM      0x226
11555         lctl set_param fail_loc=0x80000226
11556         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11557         cp $TF $DIR/$tfile
11558         sync || error "sync failed"
11559         lctl set_param fail_loc=0
11560
11561         # discard client's cache
11562         cancel_lru_locks osc
11563
11564         # simulate ENOMEM during read
11565         lctl set_param fail_loc=0x80000226
11566         cmp $TF $DIR/$tfile || error "cmp failed"
11567         lctl set_param fail_loc=0
11568
11569         rm -f $TF
11570 }
11571 run_test 152 "test read/write with enomem ============================"
11572
11573 test_153() {
11574         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11575 }
11576 run_test 153 "test if fdatasync does not crash ======================="
11577
11578 dot_lustre_fid_permission_check() {
11579         local fid=$1
11580         local ffid=$MOUNT/.lustre/fid/$fid
11581         local test_dir=$2
11582
11583         echo "stat fid $fid"
11584         stat $ffid > /dev/null || error "stat $ffid failed."
11585         echo "touch fid $fid"
11586         touch $ffid || error "touch $ffid failed."
11587         echo "write to fid $fid"
11588         cat /etc/hosts > $ffid || error "write $ffid failed."
11589         echo "read fid $fid"
11590         diff /etc/hosts $ffid || error "read $ffid failed."
11591         echo "append write to fid $fid"
11592         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11593         echo "rename fid $fid"
11594         mv $ffid $test_dir/$tfile.1 &&
11595                 error "rename $ffid to $tfile.1 should fail."
11596         touch $test_dir/$tfile.1
11597         mv $test_dir/$tfile.1 $ffid &&
11598                 error "rename $tfile.1 to $ffid should fail."
11599         rm -f $test_dir/$tfile.1
11600         echo "truncate fid $fid"
11601         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11602         echo "link fid $fid"
11603         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11604         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11605                 echo "setfacl fid $fid"
11606                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11607                 echo "getfacl fid $fid"
11608                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11609         fi
11610         echo "unlink fid $fid"
11611         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11612         echo "mknod fid $fid"
11613         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11614
11615         fid=[0xf00000400:0x1:0x0]
11616         ffid=$MOUNT/.lustre/fid/$fid
11617
11618         echo "stat non-exist fid $fid"
11619         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11620         echo "write to non-exist fid $fid"
11621         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11622         echo "link new fid $fid"
11623         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11624
11625         mkdir -p $test_dir/$tdir
11626         touch $test_dir/$tdir/$tfile
11627         fid=$($LFS path2fid $test_dir/$tdir)
11628         rc=$?
11629         [ $rc -ne 0 ] &&
11630                 error "error: could not get fid for $test_dir/$dir/$tfile."
11631
11632         ffid=$MOUNT/.lustre/fid/$fid
11633
11634         echo "ls $fid"
11635         ls $ffid > /dev/null || error "ls $ffid failed."
11636         echo "touch $fid/$tfile.1"
11637         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11638
11639         echo "touch $MOUNT/.lustre/fid/$tfile"
11640         touch $MOUNT/.lustre/fid/$tfile && \
11641                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11642
11643         echo "setxattr to $MOUNT/.lustre/fid"
11644         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11645
11646         echo "listxattr for $MOUNT/.lustre/fid"
11647         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11648
11649         echo "delxattr from $MOUNT/.lustre/fid"
11650         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11651
11652         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11653         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11654                 error "touch invalid fid should fail."
11655
11656         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11657         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11658                 error "touch non-normal fid should fail."
11659
11660         echo "rename $tdir to $MOUNT/.lustre/fid"
11661         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11662                 error "rename to $MOUNT/.lustre/fid should fail."
11663
11664         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
11665         then            # LU-3547
11666                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11667                 local new_obf_mode=777
11668
11669                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11670                 chmod $new_obf_mode $DIR/.lustre/fid ||
11671                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11672
11673                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11674                 [ $obf_mode -eq $new_obf_mode ] ||
11675                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11676
11677                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11678                 chmod $old_obf_mode $DIR/.lustre/fid ||
11679                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11680         fi
11681
11682         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11683         fid=$($LFS path2fid $test_dir/$tfile-2)
11684
11685         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
11686         then # LU-5424
11687                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11688                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11689                         error "create lov data thru .lustre failed"
11690         fi
11691         echo "cp /etc/passwd $test_dir/$tfile-2"
11692         cp /etc/passwd $test_dir/$tfile-2 ||
11693                 error "copy to $test_dir/$tfile-2 failed."
11694         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11695         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11696                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11697
11698         rm -rf $test_dir/tfile.lnk
11699         rm -rf $test_dir/$tfile-2
11700 }
11701
11702 test_154A() {
11703         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11704                 skip "Need MDS version at least 2.4.1"
11705
11706         local tf=$DIR/$tfile
11707         touch $tf
11708
11709         local fid=$($LFS path2fid $tf)
11710         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11711
11712         # check that we get the same pathname back
11713         local found=$($LFS fid2path $MOUNT "$fid")
11714         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11715         [ "$found" == "$tf" ] ||
11716                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11717 }
11718 run_test 154A "lfs path2fid and fid2path basic checks"
11719
11720 test_154B() {
11721         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11722                 skip "Need MDS version at least 2.4.1"
11723
11724         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11725         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11726         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11727         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11728
11729         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11730         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11731
11732         # check that we get the same pathname
11733         echo "PFID: $PFID, name: $name"
11734         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11735         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11736         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11737                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11738
11739         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11740 }
11741 run_test 154B "verify the ll_decode_linkea tool"
11742
11743 test_154a() {
11744         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11745         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11746         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11747                 skip "Need MDS version at least 2.2.51"
11748         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11749
11750         cp /etc/hosts $DIR/$tfile
11751
11752         fid=$($LFS path2fid $DIR/$tfile)
11753         rc=$?
11754         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11755
11756         dot_lustre_fid_permission_check "$fid" $DIR ||
11757                 error "dot lustre permission check $fid failed"
11758
11759         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11760
11761         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11762
11763         touch $MOUNT/.lustre/file &&
11764                 error "creation is not allowed under .lustre"
11765
11766         mkdir $MOUNT/.lustre/dir &&
11767                 error "mkdir is not allowed under .lustre"
11768
11769         rm -rf $DIR/$tfile
11770 }
11771 run_test 154a "Open-by-FID"
11772
11773 test_154b() {
11774         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11775         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11776         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11777         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11778                 skip "Need MDS version at least 2.2.51"
11779
11780         local remote_dir=$DIR/$tdir/remote_dir
11781         local MDTIDX=1
11782         local rc=0
11783
11784         mkdir -p $DIR/$tdir
11785         $LFS mkdir -i $MDTIDX $remote_dir ||
11786                 error "create remote directory failed"
11787
11788         cp /etc/hosts $remote_dir/$tfile
11789
11790         fid=$($LFS path2fid $remote_dir/$tfile)
11791         rc=$?
11792         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11793
11794         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11795                 error "dot lustre permission check $fid failed"
11796         rm -rf $DIR/$tdir
11797 }
11798 run_test 154b "Open-by-FID for remote directory"
11799
11800 test_154c() {
11801         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11802                 skip "Need MDS version at least 2.4.1"
11803
11804         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11805         local FID1=$($LFS path2fid $DIR/$tfile.1)
11806         local FID2=$($LFS path2fid $DIR/$tfile.2)
11807         local FID3=$($LFS path2fid $DIR/$tfile.3)
11808
11809         local N=1
11810         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11811                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11812                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11813                 local want=FID$N
11814                 [ "$FID" = "${!want}" ] ||
11815                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11816                 N=$((N + 1))
11817         done
11818
11819         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11820         do
11821                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11822                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11823                 N=$((N + 1))
11824         done
11825 }
11826 run_test 154c "lfs path2fid and fid2path multiple arguments"
11827
11828 test_154d() {
11829         remote_mds_nodsh && skip "remote MDS with nodsh"
11830         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
11831                 skip "Need MDS version at least 2.5.53"
11832
11833         if remote_mds; then
11834                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11835         else
11836                 nid="0@lo"
11837         fi
11838         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11839         local fd
11840         local cmd
11841
11842         rm -f $DIR/$tfile
11843         touch $DIR/$tfile
11844
11845         local fid=$($LFS path2fid $DIR/$tfile)
11846         # Open the file
11847         fd=$(free_fd)
11848         cmd="exec $fd<$DIR/$tfile"
11849         eval $cmd
11850         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11851         echo "$fid_list" | grep "$fid"
11852         rc=$?
11853
11854         cmd="exec $fd>/dev/null"
11855         eval $cmd
11856         if [ $rc -ne 0 ]; then
11857                 error "FID $fid not found in open files list $fid_list"
11858         fi
11859 }
11860 run_test 154d "Verify open file fid"
11861
11862 test_154e()
11863 {
11864         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
11865                 skip "Need MDS version at least 2.6.50"
11866
11867         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11868                 error ".lustre returned by readdir"
11869         fi
11870 }
11871 run_test 154e ".lustre is not returned by readdir"
11872
11873 test_154f() {
11874         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11875
11876         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11877         test_mkdir -p -c1 $DIR/$tdir/d
11878         # test dirs inherit from its stripe
11879         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11880         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11881         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11882         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11883         touch $DIR/f
11884
11885         # get fid of parents
11886         local FID0=$($LFS path2fid $DIR/$tdir/d)
11887         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11888         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11889         local FID3=$($LFS path2fid $DIR)
11890
11891         # check that path2fid --parents returns expected <parent_fid>/name
11892         # 1) test for a directory (single parent)
11893         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11894         [ "$parent" == "$FID0/foo1" ] ||
11895                 error "expected parent: $FID0/foo1, got: $parent"
11896
11897         # 2) test for a file with nlink > 1 (multiple parents)
11898         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11899         echo "$parent" | grep -F "$FID1/$tfile" ||
11900                 error "$FID1/$tfile not returned in parent list"
11901         echo "$parent" | grep -F "$FID2/link" ||
11902                 error "$FID2/link not returned in parent list"
11903
11904         # 3) get parent by fid
11905         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11906         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11907         echo "$parent" | grep -F "$FID1/$tfile" ||
11908                 error "$FID1/$tfile not returned in parent list (by fid)"
11909         echo "$parent" | grep -F "$FID2/link" ||
11910                 error "$FID2/link not returned in parent list (by fid)"
11911
11912         # 4) test for entry in root directory
11913         parent=$($LFS path2fid --parents $DIR/f)
11914         echo "$parent" | grep -F "$FID3/f" ||
11915                 error "$FID3/f not returned in parent list"
11916
11917         # 5) test it on root directory
11918         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11919                 error "$MOUNT should not have parents"
11920
11921         # enable xattr caching and check that linkea is correctly updated
11922         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11923         save_lustre_params client "llite.*.xattr_cache" > $save
11924         lctl set_param llite.*.xattr_cache 1
11925
11926         # 6.1) linkea update on rename
11927         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11928
11929         # get parents by fid
11930         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11931         # foo1 should no longer be returned in parent list
11932         echo "$parent" | grep -F "$FID1" &&
11933                 error "$FID1 should no longer be in parent list"
11934         # the new path should appear
11935         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11936                 error "$FID2/$tfile.moved is not in parent list"
11937
11938         # 6.2) linkea update on unlink
11939         rm -f $DIR/$tdir/d/foo2/link
11940         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11941         # foo2/link should no longer be returned in parent list
11942         echo "$parent" | grep -F "$FID2/link" &&
11943                 error "$FID2/link should no longer be in parent list"
11944         true
11945
11946         rm -f $DIR/f
11947         restore_lustre_params < $save
11948         rm -f $save
11949 }
11950 run_test 154f "get parent fids by reading link ea"
11951
11952 test_154g()
11953 {
11954         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11955         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
11956            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
11957                 skip "Need MDS version at least 2.6.92"
11958
11959         mkdir -p $DIR/$tdir
11960         llapi_fid_test -d $DIR/$tdir
11961 }
11962 run_test 154g "various llapi FID tests"
11963
11964 test_155_small_load() {
11965     local temp=$TMP/$tfile
11966     local file=$DIR/$tfile
11967
11968     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
11969         error "dd of=$temp bs=6096 count=1 failed"
11970     cp $temp $file
11971     cancel_lru_locks $OSC
11972     cmp $temp $file || error "$temp $file differ"
11973
11974     $TRUNCATE $temp 6000
11975     $TRUNCATE $file 6000
11976     cmp $temp $file || error "$temp $file differ (truncate1)"
11977
11978     echo "12345" >>$temp
11979     echo "12345" >>$file
11980     cmp $temp $file || error "$temp $file differ (append1)"
11981
11982     echo "12345" >>$temp
11983     echo "12345" >>$file
11984     cmp $temp $file || error "$temp $file differ (append2)"
11985
11986     rm -f $temp $file
11987     true
11988 }
11989
11990 test_155_big_load() {
11991         remote_ost_nodsh && skip "remote OST with nodsh"
11992
11993         local temp=$TMP/$tfile
11994         local file=$DIR/$tfile
11995
11996         free_min_max
11997         local cache_size=$(do_facet ost$((MAXI+1)) \
11998                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
11999         local large_file_size=$((cache_size * 2))
12000
12001         echo "OSS cache size: $cache_size KB"
12002         echo "Large file size: $large_file_size KB"
12003
12004         [ $MAXV -le $large_file_size ] &&
12005                 skip_env "max available OST size needs > $large_file_size KB"
12006
12007         $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
12008
12009         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
12010                 error "dd of=$temp bs=$large_file_size count=1k failed"
12011         cp $temp $file
12012         ls -lh $temp $file
12013         cancel_lru_locks osc
12014         cmp $temp $file || error "$temp $file differ"
12015
12016         rm -f $temp $file
12017         true
12018 }
12019
12020 save_writethrough() {
12021         local facets=$(get_facets OST)
12022
12023         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
12024 }
12025
12026 test_155a() {
12027         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12028
12029         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12030
12031         save_writethrough $p
12032
12033         set_cache read on
12034         set_cache writethrough on
12035         test_155_small_load
12036         restore_lustre_params < $p
12037         rm -f $p
12038 }
12039 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
12040
12041 test_155b() {
12042         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12043
12044         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12045
12046         save_writethrough $p
12047
12048         set_cache read on
12049         set_cache writethrough off
12050         test_155_small_load
12051         restore_lustre_params < $p
12052         rm -f $p
12053 }
12054 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
12055
12056 test_155c() {
12057         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12058
12059         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12060
12061         save_writethrough $p
12062
12063         set_cache read off
12064         set_cache writethrough on
12065         test_155_small_load
12066         restore_lustre_params < $p
12067         rm -f $p
12068 }
12069 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12070
12071 test_155d() {
12072         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12073
12074         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12075
12076         save_writethrough $p
12077
12078         set_cache read off
12079         set_cache writethrough off
12080         test_155_small_load
12081         restore_lustre_params < $p
12082         rm -f $p
12083 }
12084 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12085
12086 test_155e() {
12087         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12088
12089         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12090
12091         save_writethrough $p
12092
12093         set_cache read on
12094         set_cache writethrough on
12095         test_155_big_load
12096         restore_lustre_params < $p
12097         rm -f $p
12098 }
12099 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12100
12101 test_155f() {
12102         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12103
12104         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12105
12106         save_writethrough $p
12107
12108         set_cache read on
12109         set_cache writethrough off
12110         test_155_big_load
12111         restore_lustre_params < $p
12112         rm -f $p
12113 }
12114 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12115
12116 test_155g() {
12117         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12118
12119         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12120
12121         save_writethrough $p
12122
12123         set_cache read off
12124         set_cache writethrough on
12125         test_155_big_load
12126         restore_lustre_params < $p
12127         rm -f $p
12128 }
12129 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12130
12131 test_155h() {
12132         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12133
12134         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12135
12136         save_writethrough $p
12137
12138         set_cache read off
12139         set_cache writethrough off
12140         test_155_big_load
12141         restore_lustre_params < $p
12142         rm -f $p
12143 }
12144 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12145
12146 test_156() {
12147         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12148         remote_ost_nodsh && skip "remote OST with nodsh"
12149         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
12150                 skip "stats not implemented on old servers"
12151         [ "$ost1_FSTYPE" = "zfs" ] &&
12152                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12153
12154         local CPAGES=3
12155         local BEFORE
12156         local AFTER
12157         local file="$DIR/$tfile"
12158         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12159
12160         save_writethrough $p
12161         roc_hit_init
12162
12163         log "Turn on read and write cache"
12164         set_cache read on
12165         set_cache writethrough on
12166
12167         log "Write data and read it back."
12168         log "Read should be satisfied from the cache."
12169         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12170         BEFORE=$(roc_hit)
12171         cancel_lru_locks osc
12172         cat $file >/dev/null
12173         AFTER=$(roc_hit)
12174         if ! let "AFTER - BEFORE == CPAGES"; then
12175                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12176         else
12177                 log "cache hits:: before: $BEFORE, after: $AFTER"
12178         fi
12179
12180         log "Read again; it should be satisfied from the cache."
12181         BEFORE=$AFTER
12182         cancel_lru_locks osc
12183         cat $file >/dev/null
12184         AFTER=$(roc_hit)
12185         if ! let "AFTER - BEFORE == CPAGES"; then
12186                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12187         else
12188                 log "cache hits:: before: $BEFORE, after: $AFTER"
12189         fi
12190
12191         log "Turn off the read cache and turn on the write cache"
12192         set_cache read off
12193         set_cache writethrough on
12194
12195         log "Read again; it should be satisfied from the cache."
12196         BEFORE=$(roc_hit)
12197         cancel_lru_locks osc
12198         cat $file >/dev/null
12199         AFTER=$(roc_hit)
12200         if ! let "AFTER - BEFORE == CPAGES"; then
12201                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12202         else
12203                 log "cache hits:: before: $BEFORE, after: $AFTER"
12204         fi
12205
12206         log "Read again; it should not be satisfied from the cache."
12207         BEFORE=$AFTER
12208         cancel_lru_locks osc
12209         cat $file >/dev/null
12210         AFTER=$(roc_hit)
12211         if ! let "AFTER - BEFORE == 0"; then
12212                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12213         else
12214                 log "cache hits:: before: $BEFORE, after: $AFTER"
12215         fi
12216
12217         log "Write data and read it back."
12218         log "Read should be satisfied from the cache."
12219         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12220         BEFORE=$(roc_hit)
12221         cancel_lru_locks osc
12222         cat $file >/dev/null
12223         AFTER=$(roc_hit)
12224         if ! let "AFTER - BEFORE == CPAGES"; then
12225                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12226         else
12227                 log "cache hits:: before: $BEFORE, after: $AFTER"
12228         fi
12229
12230         log "Read again; it should not be satisfied from the cache."
12231         BEFORE=$AFTER
12232         cancel_lru_locks osc
12233         cat $file >/dev/null
12234         AFTER=$(roc_hit)
12235         if ! let "AFTER - BEFORE == 0"; then
12236                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12237         else
12238                 log "cache hits:: before: $BEFORE, after: $AFTER"
12239         fi
12240
12241         log "Turn off read and write cache"
12242         set_cache read off
12243         set_cache writethrough off
12244
12245         log "Write data and read it back"
12246         log "It should not be satisfied from the cache."
12247         rm -f $file
12248         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12249         cancel_lru_locks osc
12250         BEFORE=$(roc_hit)
12251         cat $file >/dev/null
12252         AFTER=$(roc_hit)
12253         if ! let "AFTER - BEFORE == 0"; then
12254                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12255         else
12256                 log "cache hits:: before: $BEFORE, after: $AFTER"
12257         fi
12258
12259         log "Turn on the read cache and turn off the write cache"
12260         set_cache read on
12261         set_cache writethrough off
12262
12263         log "Write data and read it back"
12264         log "It should not be satisfied from the cache."
12265         rm -f $file
12266         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12267         BEFORE=$(roc_hit)
12268         cancel_lru_locks osc
12269         cat $file >/dev/null
12270         AFTER=$(roc_hit)
12271         if ! let "AFTER - BEFORE == 0"; then
12272                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12273         else
12274                 log "cache hits:: before: $BEFORE, after: $AFTER"
12275         fi
12276
12277         log "Read again; it should be satisfied from the cache."
12278         BEFORE=$(roc_hit)
12279         cancel_lru_locks osc
12280         cat $file >/dev/null
12281         AFTER=$(roc_hit)
12282         if ! let "AFTER - BEFORE == CPAGES"; then
12283                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12284         else
12285                 log "cache hits:: before: $BEFORE, after: $AFTER"
12286         fi
12287
12288         restore_lustre_params < $p
12289         rm -f $p $file
12290 }
12291 run_test 156 "Verification of tunables"
12292
12293 test_160a() {
12294         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12295         remote_mds_nodsh && skip "remote MDS with nodsh"
12296         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12297                 skip "Need MDS version at least 2.2.0"
12298
12299         changelog_register || error "changelog_register failed"
12300         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12301         changelog_users $SINGLEMDS | grep -q $cl_user ||
12302                 error "User $cl_user not found in changelog_users"
12303
12304         # change something
12305         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12306         changelog_clear 0 || error "changelog_clear failed"
12307         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12308         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12309         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12310         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12311         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12312         rm $DIR/$tdir/pics/desktop.jpg
12313
12314         changelog_dump | tail -10
12315
12316         echo "verifying changelog mask"
12317         changelog_chmask "-MKDIR"
12318         changelog_chmask "-CLOSE"
12319
12320         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12321         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12322
12323         changelog_chmask "+MKDIR"
12324         changelog_chmask "+CLOSE"
12325
12326         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12327         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12328
12329         changelog_dump | tail -10
12330         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12331         CLOSES=$(changelog_dump | grep -c "CLOSE")
12332         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12333         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12334
12335         # verify contents
12336         echo "verifying target fid"
12337         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12338         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12339         [ "$fidc" == "$fidf" ] ||
12340                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12341         echo "verifying parent fid"
12342         # The FID returned from the Changelog may be the directory shard on
12343         # a different MDT, and not the FID returned by path2fid on the parent.
12344         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12345         # since this is what will matter when recreating this file in the tree.
12346         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12347         local pathp=$($LFS fid2path $MOUNT "$fidp")
12348         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12349                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12350
12351         echo "getting records for $cl_user"
12352         changelog_users $SINGLEMDS
12353         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12354         local nclr=3
12355         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12356                 error "changelog_clear failed"
12357         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12358         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12359         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12360                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12361
12362         local min0_rec=$(changelog_users $SINGLEMDS |
12363                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12364         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12365                           awk '{ print $1; exit; }')
12366
12367         changelog_dump | tail -n 5
12368         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12369         [ $first_rec == $((min0_rec + 1)) ] ||
12370                 error "first index should be $min0_rec + 1 not $first_rec"
12371
12372         # LU-3446 changelog index reset on MDT restart
12373         local cur_rec1=$(changelog_users $SINGLEMDS |
12374                          awk '/^current.index:/ { print $NF }')
12375         changelog_clear 0 ||
12376                 error "clear all changelog records for $cl_user failed"
12377         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12378         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12379                 error "Fail to start $SINGLEMDS"
12380         local cur_rec2=$(changelog_users $SINGLEMDS |
12381                          awk '/^current.index:/ { print $NF }')
12382         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12383         [ $cur_rec1 == $cur_rec2 ] ||
12384                 error "current index should be $cur_rec1 not $cur_rec2"
12385
12386         echo "verifying users from this test are deregistered"
12387         changelog_deregister || error "changelog_deregister failed"
12388         changelog_users $SINGLEMDS | grep -q $cl_user &&
12389                 error "User '$cl_user' still in changelog_users"
12390
12391         # lctl get_param -n mdd.*.changelog_users
12392         # current index: 144
12393         # ID    index (idle seconds)
12394         # cl3   144 (2)
12395         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12396                 # this is the normal case where all users were deregistered
12397                 # make sure no new records are added when no users are present
12398                 local last_rec1=$(changelog_users $SINGLEMDS |
12399                                   awk '/^current.index:/ { print $NF }')
12400                 touch $DIR/$tdir/chloe
12401                 local last_rec2=$(changelog_users $SINGLEMDS |
12402                                   awk '/^current.index:/ { print $NF }')
12403                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12404                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12405         else
12406                 # any changelog users must be leftovers from a previous test
12407                 changelog_users $SINGLEMDS
12408                 echo "other changelog users; can't verify off"
12409         fi
12410 }
12411 run_test 160a "changelog sanity"
12412
12413 test_160b() { # LU-3587
12414         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12415         remote_mds_nodsh && skip "remote MDS with nodsh"
12416         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12417                 skip "Need MDS version at least 2.2.0"
12418
12419         changelog_register || error "changelog_register failed"
12420         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12421         changelog_users $SINGLEMDS | grep -q $cl_user ||
12422                 error "User '$cl_user' not found in changelog_users"
12423
12424         local longname1=$(str_repeat a 255)
12425         local longname2=$(str_repeat b 255)
12426
12427         cd $DIR
12428         echo "creating very long named file"
12429         touch $longname1 || error "create of '$longname1' failed"
12430         echo "renaming very long named file"
12431         mv $longname1 $longname2
12432
12433         changelog_dump | grep RENME | tail -n 5
12434         rm -f $longname2
12435 }
12436 run_test 160b "Verify that very long rename doesn't crash in changelog"
12437
12438 test_160c() {
12439         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12440         remote_mds_nodsh && skip "remote MDS with nodsh"
12441
12442         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
12443                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
12444                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
12445                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12446
12447         local rc=0
12448
12449         # Registration step
12450         changelog_register || error "changelog_register failed"
12451
12452         rm -rf $DIR/$tdir
12453         mkdir -p $DIR/$tdir
12454         $MCREATE $DIR/$tdir/foo_160c
12455         changelog_chmask "-TRUNC"
12456         $TRUNCATE $DIR/$tdir/foo_160c 200
12457         changelog_chmask "+TRUNC"
12458         $TRUNCATE $DIR/$tdir/foo_160c 199
12459         changelog_dump | tail -n 5
12460         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12461         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12462 }
12463 run_test 160c "verify that changelog log catch the truncate event"
12464
12465 test_160d() {
12466         remote_mds_nodsh && skip "remote MDS with nodsh"
12467         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12468         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12469         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
12470                 skip "Need MDS version at least 2.7.60"
12471
12472         # Registration step
12473         changelog_register || error "changelog_register failed"
12474
12475         mkdir -p $DIR/$tdir/migrate_dir
12476         changelog_clear 0 || error "changelog_clear failed"
12477
12478         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12479         changelog_dump | tail -n 5
12480         local migrates=$(changelog_dump | grep -c "MIGRT")
12481         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12482 }
12483 run_test 160d "verify that changelog log catch the migrate event"
12484
12485 test_160e() {
12486         remote_mds_nodsh && skip "remote MDS with nodsh"
12487
12488         # Create a user
12489         changelog_register || error "changelog_register failed"
12490
12491         # Delete a future user (expect fail)
12492         local MDT0=$(facet_svc $SINGLEMDS)
12493         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12494         local rc=$?
12495
12496         if [ $rc -eq 0 ]; then
12497                 error "Deleted non-existant user cl77"
12498         elif [ $rc -ne 2 ]; then
12499                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12500         fi
12501
12502         # Clear to a bad index (1 billion should be safe)
12503         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12504         rc=$?
12505
12506         if [ $rc -eq 0 ]; then
12507                 error "Successfully cleared to invalid CL index"
12508         elif [ $rc -ne 22 ]; then
12509                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12510         fi
12511 }
12512 run_test 160e "changelog negative testing (should return errors)"
12513
12514 test_160f() {
12515         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12516         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12517                 skip "Need MDS version at least 2.10.56"
12518
12519         local mdts=$(comma_list $(mdts_nodes))
12520
12521         # Create a user
12522         changelog_register || error "first changelog_register failed"
12523         changelog_register || error "second changelog_register failed"
12524         local cl_users
12525         declare -A cl_user1
12526         declare -A cl_user2
12527         local user_rec1
12528         local user_rec2
12529         local i
12530
12531         # generate some changelog records to accumulate on each MDT
12532         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12533         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12534                 error "create $DIR/$tdir/$tfile failed"
12535
12536         # check changelogs have been generated
12537         local nbcl=$(changelog_dump | wc -l)
12538         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12539
12540         for param in "changelog_max_idle_time=10" \
12541                      "changelog_gc=1" \
12542                      "changelog_min_gc_interval=2" \
12543                      "changelog_min_free_cat_entries=3"; do
12544                 local MDT0=$(facet_svc $SINGLEMDS)
12545                 local var="${param%=*}"
12546                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12547
12548                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12549                 do_nodes $mdts $LCTL set_param mdd.*.$param
12550         done
12551
12552         # force cl_user2 to be idle (1st part)
12553         sleep 9
12554
12555         # simulate changelog catalog almost full
12556         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12557         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12558
12559         for i in $(seq $MDSCOUNT); do
12560                 cl_users=(${CL_USERS[mds$i]})
12561                 cl_user1[mds$i]="${cl_users[0]}"
12562                 cl_user2[mds$i]="${cl_users[1]}"
12563
12564                 [ -n "${cl_user1[mds$i]}" ] ||
12565                         error "mds$i: no user registered"
12566                 [ -n "${cl_user2[mds$i]}" ] ||
12567                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12568
12569                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12570                 [ -n "$user_rec1" ] ||
12571                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12572                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12573                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12574                 [ -n "$user_rec2" ] ||
12575                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12576                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12577                      "$user_rec1 + 2 == $user_rec2"
12578                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12579                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12580                               "$user_rec1 + 2, but is $user_rec2"
12581                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12582                 [ -n "$user_rec2" ] ||
12583                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12584                 [ $user_rec1 == $user_rec2 ] ||
12585                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12586                               "$user_rec1, but is $user_rec2"
12587         done
12588
12589         # force cl_user2 to be idle (2nd part) and to reach
12590         # changelog_max_idle_time
12591         sleep 2
12592
12593         # generate one more changelog to trigger fail_loc
12594         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12595                 error "create $DIR/$tdir/${tfile}bis failed"
12596
12597         # ensure gc thread is done
12598         for i in $(mdts_nodes); do
12599                 wait_update $i \
12600                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12601                         error "$i: GC-thread not done"
12602         done
12603
12604         local first_rec
12605         for i in $(seq $MDSCOUNT); do
12606                 # check cl_user1 still registered
12607                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12608                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12609                 # check cl_user2 unregistered
12610                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12611                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12612
12613                 # check changelogs are present and starting at $user_rec1 + 1
12614                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12615                 [ -n "$user_rec1" ] ||
12616                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12617                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12618                             awk '{ print $1; exit; }')
12619
12620                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12621                 [ $((user_rec1 + 1)) == $first_rec ] ||
12622                         error "mds$i: first index should be $user_rec1 + 1, " \
12623                               "but is $first_rec"
12624         done
12625 }
12626 run_test 160f "changelog garbage collect (timestamped users)"
12627
12628 test_160g() {
12629         remote_mds_nodsh && skip "remote MDS with nodsh"
12630         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12631                 skip "Need MDS version at least 2.10.56"
12632
12633         local mdts=$(comma_list $(mdts_nodes))
12634
12635         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12636         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12637
12638         # Create a user
12639         changelog_register || error "first changelog_register failed"
12640         changelog_register || error "second changelog_register failed"
12641         local cl_users
12642         declare -A cl_user1
12643         declare -A cl_user2
12644         local user_rec1
12645         local user_rec2
12646         local i
12647
12648         # generate some changelog records to accumulate on each MDT
12649         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12650         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12651                 error "create $DIR/$tdir/$tfile failed"
12652
12653         # check changelogs have been generated
12654         local nbcl=$(changelog_dump | wc -l)
12655         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12656
12657         # reduce the max_idle_indexes value to make sure we exceed it
12658         max_ndx=$((nbcl / 2 - 1))
12659
12660         for param in "changelog_max_idle_indexes=$max_ndx" \
12661                      "changelog_gc=1" \
12662                      "changelog_min_gc_interval=2" \
12663                      "changelog_min_free_cat_entries=3"; do
12664                 local MDT0=$(facet_svc $SINGLEMDS)
12665                 local var="${param%=*}"
12666                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12667
12668                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12669                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12670                         error "unable to set mdd.*.$param"
12671         done
12672
12673         # simulate changelog catalog almost full
12674         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12675         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12676
12677         for i in $(seq $MDSCOUNT); do
12678                 cl_users=(${CL_USERS[mds$i]})
12679                 cl_user1[mds$i]="${cl_users[0]}"
12680                 cl_user2[mds$i]="${cl_users[1]}"
12681
12682                 [ -n "${cl_user1[mds$i]}" ] ||
12683                         error "mds$i: no user registered"
12684                 [ -n "${cl_user2[mds$i]}" ] ||
12685                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12686
12687                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12688                 [ -n "$user_rec1" ] ||
12689                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12690                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12691                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12692                 [ -n "$user_rec2" ] ||
12693                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12694                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12695                      "$user_rec1 + 2 == $user_rec2"
12696                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12697                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12698                               "$user_rec1 + 2, but is $user_rec2"
12699                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12700                 [ -n "$user_rec2" ] ||
12701                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12702                 [ $user_rec1 == $user_rec2 ] ||
12703                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12704                               "$user_rec1, but is $user_rec2"
12705         done
12706
12707         # ensure we are past the previous changelog_min_gc_interval set above
12708         sleep 2
12709
12710         # generate one more changelog to trigger fail_loc
12711         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12712                 error "create $DIR/$tdir/${tfile}bis failed"
12713
12714         # ensure gc thread is done
12715         for i in $(mdts_nodes); do
12716                 wait_update $i \
12717                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12718                         error "$i: GC-thread not done"
12719         done
12720
12721         local first_rec
12722         for i in $(seq $MDSCOUNT); do
12723                 # check cl_user1 still registered
12724                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12725                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12726                 # check cl_user2 unregistered
12727                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12728                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12729
12730                 # check changelogs are present and starting at $user_rec1 + 1
12731                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12732                 [ -n "$user_rec1" ] ||
12733                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12734                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12735                             awk '{ print $1; exit; }')
12736
12737                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12738                 [ $((user_rec1 + 1)) == $first_rec ] ||
12739                         error "mds$i: first index should be $user_rec1 + 1, " \
12740                               "but is $first_rec"
12741         done
12742 }
12743 run_test 160g "changelog garbage collect (old users)"
12744
12745 test_160h() {
12746         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12747         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12748                 skip "Need MDS version at least 2.10.56"
12749
12750         local mdts=$(comma_list $(mdts_nodes))
12751
12752         # Create a user
12753         changelog_register || error "first changelog_register failed"
12754         changelog_register || error "second changelog_register failed"
12755         local cl_users
12756         declare -A cl_user1
12757         declare -A cl_user2
12758         local user_rec1
12759         local user_rec2
12760         local i
12761
12762         # generate some changelog records to accumulate on each MDT
12763         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12764         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12765                 error "create $DIR/$tdir/$tfile failed"
12766
12767         # check changelogs have been generated
12768         local nbcl=$(changelog_dump | wc -l)
12769         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12770
12771         for param in "changelog_max_idle_time=10" \
12772                      "changelog_gc=1" \
12773                      "changelog_min_gc_interval=2"; do
12774                 local MDT0=$(facet_svc $SINGLEMDS)
12775                 local var="${param%=*}"
12776                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12777
12778                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12779                 do_nodes $mdts $LCTL set_param mdd.*.$param
12780         done
12781
12782         # force cl_user2 to be idle (1st part)
12783         sleep 9
12784
12785         for i in $(seq $MDSCOUNT); do
12786                 cl_users=(${CL_USERS[mds$i]})
12787                 cl_user1[mds$i]="${cl_users[0]}"
12788                 cl_user2[mds$i]="${cl_users[1]}"
12789
12790                 [ -n "${cl_user1[mds$i]}" ] ||
12791                         error "mds$i: no user registered"
12792                 [ -n "${cl_user2[mds$i]}" ] ||
12793                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12794
12795                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12796                 [ -n "$user_rec1" ] ||
12797                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12798                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12799                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12800                 [ -n "$user_rec2" ] ||
12801                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12802                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12803                      "$user_rec1 + 2 == $user_rec2"
12804                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12805                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12806                               "$user_rec1 + 2, but is $user_rec2"
12807                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12808                 [ -n "$user_rec2" ] ||
12809                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12810                 [ $user_rec1 == $user_rec2 ] ||
12811                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12812                               "$user_rec1, but is $user_rec2"
12813         done
12814
12815         # force cl_user2 to be idle (2nd part) and to reach
12816         # changelog_max_idle_time
12817         sleep 2
12818
12819         # force each GC-thread start and block then
12820         # one per MDT/MDD, set fail_val accordingly
12821         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12822         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12823
12824         # generate more changelogs to trigger fail_loc
12825         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12826                 error "create $DIR/$tdir/${tfile}bis failed"
12827
12828         # stop MDT to stop GC-thread, should be done in back-ground as it will
12829         # block waiting for the thread to be released and exit
12830         declare -A stop_pids
12831         for i in $(seq $MDSCOUNT); do
12832                 stop mds$i &
12833                 stop_pids[mds$i]=$!
12834         done
12835
12836         for i in $(mdts_nodes); do
12837                 local facet
12838                 local nb=0
12839                 local facets=$(facets_up_on_host $i)
12840
12841                 for facet in ${facets//,/ }; do
12842                         if [[ $facet == mds* ]]; then
12843                                 nb=$((nb + 1))
12844                         fi
12845                 done
12846                 # ensure each MDS's gc threads are still present and all in "R"
12847                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12848                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12849                         error "$i: expected $nb GC-thread"
12850                 wait_update $i \
12851                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12852                         "R" 20 ||
12853                         error "$i: GC-thread not found in R-state"
12854                 # check umounts of each MDT on MDS have reached kthread_stop()
12855                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12856                         error "$i: expected $nb umount"
12857                 wait_update $i \
12858                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12859                         error "$i: umount not found in D-state"
12860         done
12861
12862         # release all GC-threads
12863         do_nodes $mdts $LCTL set_param fail_loc=0
12864
12865         # wait for MDT stop to complete
12866         for i in $(seq $MDSCOUNT); do
12867                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12868         done
12869
12870         # XXX
12871         # may try to check if any orphan changelog records are present
12872         # via ldiskfs/zfs and llog_reader...
12873
12874         # re-start/mount MDTs
12875         for i in $(seq $MDSCOUNT); do
12876                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12877                         error "Fail to start mds$i"
12878         done
12879
12880         local first_rec
12881         for i in $(seq $MDSCOUNT); do
12882                 # check cl_user1 still registered
12883                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12884                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12885                 # check cl_user2 unregistered
12886                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12887                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12888
12889                 # check changelogs are present and starting at $user_rec1 + 1
12890                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12891                 [ -n "$user_rec1" ] ||
12892                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12893                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12894                             awk '{ print $1; exit; }')
12895
12896                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12897                 [ $((user_rec1 + 1)) == $first_rec ] ||
12898                         error "mds$i: first index should be $user_rec1 + 1, " \
12899                               "but is $first_rec"
12900         done
12901 }
12902 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12903               "during mount"
12904
12905 test_160i() {
12906
12907         local mdts=$(comma_list $(mdts_nodes))
12908
12909         changelog_register || error "first changelog_register failed"
12910
12911         # generate some changelog records to accumulate on each MDT
12912         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12913         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12914                 error "create $DIR/$tdir/$tfile failed"
12915
12916         # check changelogs have been generated
12917         local nbcl=$(changelog_dump | wc -l)
12918         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12919
12920         # simulate race between register and unregister
12921         # XXX as fail_loc is set per-MDS, with DNE configs the race
12922         # simulation will only occur for one MDT per MDS and for the
12923         # others the normal race scenario will take place
12924         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12925         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12926         do_nodes $mdts $LCTL set_param fail_val=1
12927
12928         # unregister 1st user
12929         changelog_deregister &
12930         local pid1=$!
12931         # wait some time for deregister work to reach race rdv
12932         sleep 2
12933         # register 2nd user
12934         changelog_register || error "2nd user register failed"
12935
12936         wait $pid1 || error "1st user deregister failed"
12937
12938         local i
12939         local last_rec
12940         declare -A LAST_REC
12941         for i in $(seq $MDSCOUNT); do
12942                 if changelog_users mds$i | grep "^cl"; then
12943                         # make sure new records are added with one user present
12944                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12945                                           awk '/^current.index:/ { print $NF }')
12946                 else
12947                         error "mds$i has no user registered"
12948                 fi
12949         done
12950
12951         # generate more changelog records to accumulate on each MDT
12952         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12953                 error "create $DIR/$tdir/${tfile}bis failed"
12954
12955         for i in $(seq $MDSCOUNT); do
12956                 last_rec=$(changelog_users $SINGLEMDS |
12957                            awk '/^current.index:/ { print $NF }')
12958                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12959                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12960                         error "changelogs are off on mds$i"
12961         done
12962 }
12963 run_test 160i "changelog user register/unregister race"
12964
12965 test_161a() {
12966         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12967
12968         test_mkdir -c1 $DIR/$tdir
12969         cp /etc/hosts $DIR/$tdir/$tfile
12970         test_mkdir -c1 $DIR/$tdir/foo1
12971         test_mkdir -c1 $DIR/$tdir/foo2
12972         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
12973         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
12974         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
12975         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
12976         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
12977         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
12978                 $LFS fid2path $DIR $FID
12979                 error "bad link ea"
12980         fi
12981         # middle
12982         rm $DIR/$tdir/foo2/zachary
12983         # last
12984         rm $DIR/$tdir/foo2/thor
12985         # first
12986         rm $DIR/$tdir/$tfile
12987         # rename
12988         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
12989         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
12990                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
12991         rm $DIR/$tdir/foo2/maggie
12992
12993         # overflow the EA
12994         local longname=$tfile.avg_len_is_thirty_two_
12995         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
12996                 error_noexit 'failed to unlink many hardlinks'" EXIT
12997         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
12998                 error "failed to hardlink many files"
12999         links=$($LFS fid2path $DIR $FID | wc -l)
13000         echo -n "${links}/1000 links in link EA"
13001         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
13002 }
13003 run_test 161a "link ea sanity"
13004
13005 test_161b() {
13006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13007         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
13008
13009         local MDTIDX=1
13010         local remote_dir=$DIR/$tdir/remote_dir
13011
13012         mkdir -p $DIR/$tdir
13013         $LFS mkdir -i $MDTIDX $remote_dir ||
13014                 error "create remote directory failed"
13015
13016         cp /etc/hosts $remote_dir/$tfile
13017         mkdir -p $remote_dir/foo1
13018         mkdir -p $remote_dir/foo2
13019         ln $remote_dir/$tfile $remote_dir/foo1/sofia
13020         ln $remote_dir/$tfile $remote_dir/foo2/zachary
13021         ln $remote_dir/$tfile $remote_dir/foo1/luna
13022         ln $remote_dir/$tfile $remote_dir/foo2/thor
13023
13024         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
13025                      tr -d ']')
13026         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13027                 $LFS fid2path $DIR $FID
13028                 error "bad link ea"
13029         fi
13030         # middle
13031         rm $remote_dir/foo2/zachary
13032         # last
13033         rm $remote_dir/foo2/thor
13034         # first
13035         rm $remote_dir/$tfile
13036         # rename
13037         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
13038         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
13039         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
13040                 $LFS fid2path $DIR $FID
13041                 error "bad link rename"
13042         fi
13043         rm $remote_dir/foo2/maggie
13044
13045         # overflow the EA
13046         local longname=filename_avg_len_is_thirty_two_
13047         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
13048                 error "failed to hardlink many files"
13049         links=$($LFS fid2path $DIR $FID | wc -l)
13050         echo -n "${links}/1000 links in link EA"
13051         [[ ${links} -gt 60 ]] ||
13052                 error "expected at least 60 links in link EA"
13053         unlinkmany $remote_dir/foo2/$longname 1000 ||
13054         error "failed to unlink many hardlinks"
13055 }
13056 run_test 161b "link ea sanity under remote directory"
13057
13058 test_161c() {
13059         remote_mds_nodsh && skip "remote MDS with nodsh"
13060         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13061         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
13062                 skip "Need MDS version at least 2.1.5"
13063
13064         # define CLF_RENAME_LAST 0x0001
13065         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
13066         changelog_register || error "changelog_register failed"
13067
13068         rm -rf $DIR/$tdir
13069         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13070         touch $DIR/$tdir/foo_161c
13071         touch $DIR/$tdir/bar_161c
13072         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13073         changelog_dump | grep RENME | tail -n 5
13074         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13075         changelog_clear 0 || error "changelog_clear failed"
13076         if [ x$flags != "x0x1" ]; then
13077                 error "flag $flags is not 0x1"
13078         fi
13079
13080         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13081         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13082         touch $DIR/$tdir/foo_161c
13083         touch $DIR/$tdir/bar_161c
13084         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13085         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13086         changelog_dump | grep RENME | tail -n 5
13087         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13088         changelog_clear 0 || error "changelog_clear failed"
13089         if [ x$flags != "x0x0" ]; then
13090                 error "flag $flags is not 0x0"
13091         fi
13092         echo "rename overwrite a target having nlink > 1," \
13093                 "changelog record has flags of $flags"
13094
13095         # rename doesn't overwrite a target (changelog flag 0x0)
13096         touch $DIR/$tdir/foo_161c
13097         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13098         changelog_dump | grep RENME | tail -n 5
13099         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13100         changelog_clear 0 || error "changelog_clear failed"
13101         if [ x$flags != "x0x0" ]; then
13102                 error "flag $flags is not 0x0"
13103         fi
13104         echo "rename doesn't overwrite a target," \
13105                 "changelog record has flags of $flags"
13106
13107         # define CLF_UNLINK_LAST 0x0001
13108         # unlink a file having nlink = 1 (changelog flag 0x1)
13109         rm -f $DIR/$tdir/foo2_161c
13110         changelog_dump | grep UNLNK | tail -n 5
13111         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13112         changelog_clear 0 || error "changelog_clear failed"
13113         if [ x$flags != "x0x1" ]; then
13114                 error "flag $flags is not 0x1"
13115         fi
13116         echo "unlink a file having nlink = 1," \
13117                 "changelog record has flags of $flags"
13118
13119         # unlink a file having nlink > 1 (changelog flag 0x0)
13120         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13121         rm -f $DIR/$tdir/foobar_161c
13122         changelog_dump | grep UNLNK | tail -n 5
13123         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13124         changelog_clear 0 || error "changelog_clear failed"
13125         if [ x$flags != "x0x0" ]; then
13126                 error "flag $flags is not 0x0"
13127         fi
13128         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13129 }
13130 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13131
13132 test_161d() {
13133         remote_mds_nodsh && skip "remote MDS with nodsh"
13134
13135         local pid
13136         local fid
13137
13138         changelog_register || error "changelog_register failed"
13139
13140         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13141         # interfer with $MOUNT/.lustre/fid/ access
13142         mkdir $DIR/$tdir
13143         [[ $? -eq 0 ]] || error "mkdir failed"
13144
13145         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13146         $LCTL set_param fail_loc=0x8000140c
13147         # 5s pause
13148         $LCTL set_param fail_val=5
13149
13150         # create file
13151         echo foofoo > $DIR/$tdir/$tfile &
13152         pid=$!
13153
13154         # wait for create to be delayed
13155         sleep 2
13156
13157         ps -p $pid
13158         [[ $? -eq 0 ]] || error "create should be blocked"
13159
13160         local tempfile=$(mktemp)
13161         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13162         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13163         # some delay may occur during ChangeLog publishing and file read just
13164         # above, that could allow file write to happen finally
13165         [[ -s $tempfile ]] && echo "file should be empty"
13166
13167         $LCTL set_param fail_loc=0
13168
13169         wait $pid
13170         [[ $? -eq 0 ]] || error "create failed"
13171 }
13172 run_test 161d "create with concurrent .lustre/fid access"
13173
13174 check_path() {
13175         local expected="$1"
13176         shift
13177         local fid="$2"
13178
13179         local path
13180         path=$($LFS fid2path "$@")
13181         local rc=$?
13182
13183         if [ $rc -ne 0 ]; then
13184                 error "path looked up of '$expected' failed: rc=$rc"
13185         elif [ "$path" != "$expected" ]; then
13186                 error "path looked up '$path' instead of '$expected'"
13187         else
13188                 echo "FID '$fid' resolves to path '$path' as expected"
13189         fi
13190 }
13191
13192 test_162a() { # was test_162
13193         test_mkdir -p -c1 $DIR/$tdir/d2
13194         touch $DIR/$tdir/d2/$tfile
13195         touch $DIR/$tdir/d2/x1
13196         touch $DIR/$tdir/d2/x2
13197         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13198         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13199         # regular file
13200         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13201         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13202
13203         # softlink
13204         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13205         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13206         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13207
13208         # softlink to wrong file
13209         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13210         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13211         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13212
13213         # hardlink
13214         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13215         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13216         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13217         # fid2path dir/fsname should both work
13218         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13219         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13220
13221         # hardlink count: check that there are 2 links
13222         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13223         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13224
13225         # hardlink indexing: remove the first link
13226         rm $DIR/$tdir/d2/p/q/r/hlink
13227         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13228 }
13229 run_test 162a "path lookup sanity"
13230
13231 test_162b() {
13232         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13233         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13234
13235         mkdir $DIR/$tdir
13236         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13237                                 error "create striped dir failed"
13238
13239         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13240                                         tail -n 1 | awk '{print $2}')
13241         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13242
13243         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13244         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13245
13246         # regular file
13247         for ((i=0;i<5;i++)); do
13248                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13249                         error "get fid for f$i failed"
13250                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13251
13252                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13253                         error "get fid for d$i failed"
13254                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13255         done
13256
13257         return 0
13258 }
13259 run_test 162b "striped directory path lookup sanity"
13260
13261 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13262 test_162c() {
13263         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13264                 skip "Need MDS version at least 2.7.51"
13265
13266         local lpath=$tdir.local
13267         local rpath=$tdir.remote
13268
13269         test_mkdir $DIR/$lpath
13270         test_mkdir $DIR/$rpath
13271
13272         for ((i = 0; i <= 101; i++)); do
13273                 lpath="$lpath/$i"
13274                 mkdir $DIR/$lpath
13275                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13276                         error "get fid for local directory $DIR/$lpath failed"
13277                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13278
13279                 rpath="$rpath/$i"
13280                 test_mkdir $DIR/$rpath
13281                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13282                         error "get fid for remote directory $DIR/$rpath failed"
13283                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13284         done
13285
13286         return 0
13287 }
13288 run_test 162c "fid2path works with paths 100 or more directories deep"
13289
13290 test_169() {
13291         # do directio so as not to populate the page cache
13292         log "creating a 10 Mb file"
13293         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13294         log "starting reads"
13295         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13296         log "truncating the file"
13297         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13298         log "killing dd"
13299         kill %+ || true # reads might have finished
13300         echo "wait until dd is finished"
13301         wait
13302         log "removing the temporary file"
13303         rm -rf $DIR/$tfile || error "tmp file removal failed"
13304 }
13305 run_test 169 "parallel read and truncate should not deadlock"
13306
13307 test_170() {
13308         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13309
13310         $LCTL clear     # bug 18514
13311         $LCTL debug_daemon start $TMP/${tfile}_log_good
13312         touch $DIR/$tfile
13313         $LCTL debug_daemon stop
13314         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13315                 error "sed failed to read log_good"
13316
13317         $LCTL debug_daemon start $TMP/${tfile}_log_good
13318         rm -rf $DIR/$tfile
13319         $LCTL debug_daemon stop
13320
13321         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13322                error "lctl df log_bad failed"
13323
13324         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13325         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13326
13327         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13328         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13329
13330         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13331                 error "bad_line good_line1 good_line2 are empty"
13332
13333         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13334         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13335         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13336
13337         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13338         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13339         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13340
13341         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13342                 error "bad_line_new good_line_new are empty"
13343
13344         local expected_good=$((good_line1 + good_line2*2))
13345
13346         rm -f $TMP/${tfile}*
13347         # LU-231, short malformed line may not be counted into bad lines
13348         if [ $bad_line -ne $bad_line_new ] &&
13349                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13350                 error "expected $bad_line bad lines, but got $bad_line_new"
13351                 return 1
13352         fi
13353
13354         if [ $expected_good -ne $good_line_new ]; then
13355                 error "expected $expected_good good lines, but got $good_line_new"
13356                 return 2
13357         fi
13358         true
13359 }
13360 run_test 170 "test lctl df to handle corrupted log ====================="
13361
13362 test_171() { # bug20592
13363         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13364
13365         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13366         $LCTL set_param fail_loc=0x50e
13367         $LCTL set_param fail_val=3000
13368         multiop_bg_pause $DIR/$tfile O_s || true
13369         local MULTIPID=$!
13370         kill -USR1 $MULTIPID
13371         # cause log dump
13372         sleep 3
13373         wait $MULTIPID
13374         if dmesg | grep "recursive fault"; then
13375                 error "caught a recursive fault"
13376         fi
13377         $LCTL set_param fail_loc=0
13378         true
13379 }
13380 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13381
13382 # it would be good to share it with obdfilter-survey/iokit-libecho code
13383 setup_obdecho_osc () {
13384         local rc=0
13385         local ost_nid=$1
13386         local obdfilter_name=$2
13387         echo "Creating new osc for $obdfilter_name on $ost_nid"
13388         # make sure we can find loopback nid
13389         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13390
13391         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13392                            ${obdfilter_name}_osc_UUID || rc=2; }
13393         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13394                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13395         return $rc
13396 }
13397
13398 cleanup_obdecho_osc () {
13399         local obdfilter_name=$1
13400         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13401         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13402         return 0
13403 }
13404
13405 obdecho_test() {
13406         local OBD=$1
13407         local node=$2
13408         local pages=${3:-64}
13409         local rc=0
13410         local id
13411
13412         local count=10
13413         local obd_size=$(get_obd_size $node $OBD)
13414         local page_size=$(get_page_size $node)
13415         if [[ -n "$obd_size" ]]; then
13416                 local new_count=$((obd_size / (pages * page_size / 1024)))
13417                 [[ $new_count -ge $count ]] || count=$new_count
13418         fi
13419
13420         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13421         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13422                            rc=2; }
13423         if [ $rc -eq 0 ]; then
13424             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13425             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13426         fi
13427         echo "New object id is $id"
13428         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13429                            rc=4; }
13430         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13431                            "test_brw $count w v $pages $id" || rc=4; }
13432         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13433                            rc=4; }
13434         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13435                                         "cleanup" || rc=5; }
13436         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13437                                         "detach" || rc=6; }
13438         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13439         return $rc
13440 }
13441
13442 test_180a() {
13443         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13444
13445         if ! module_loaded obdecho; then
13446                 load_module obdecho/obdecho &&
13447                         stack_trap "rmmod obdecho" EXIT ||
13448                         error "unable to load obdecho on client"
13449         fi
13450
13451         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13452         local host=$($LCTL get_param -n osc.$osc.import |
13453                      awk '/current_connection:/ { print $2 }' )
13454         local target=$($LCTL get_param -n osc.$osc.import |
13455                        awk '/target:/ { print $2 }' )
13456         target=${target%_UUID}
13457
13458         if [ -n "$target" ]; then
13459                 setup_obdecho_osc $host $target &&
13460                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13461                         { error "obdecho setup failed with $?"; return; }
13462
13463                 obdecho_test ${target}_osc client ||
13464                         error "obdecho_test failed on ${target}_osc"
13465         else
13466                 $LCTL get_param osc.$osc.import
13467                 error "there is no osc.$osc.import target"
13468         fi
13469 }
13470 run_test 180a "test obdecho on osc"
13471
13472 test_180b() {
13473         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13474         remote_ost_nodsh && skip "remote OST with nodsh"
13475
13476         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13477                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13478                 error "failed to load module obdecho"
13479
13480         local target=$(do_facet ost1 $LCTL dl |
13481                        awk '/obdfilter/ { print $4; exit; }')
13482
13483         if [ -n "$target" ]; then
13484                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13485         else
13486                 do_facet ost1 $LCTL dl
13487                 error "there is no obdfilter target on ost1"
13488         fi
13489 }
13490 run_test 180b "test obdecho directly on obdfilter"
13491
13492 test_180c() { # LU-2598
13493         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13494         remote_ost_nodsh && skip "remote OST with nodsh"
13495         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
13496                 skip "Need MDS version at least 2.4.0"
13497
13498         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13499                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13500                 error "failed to load module obdecho"
13501
13502         local target=$(do_facet ost1 $LCTL dl |
13503                        awk '/obdfilter/ { print $4; exit; }')
13504
13505         if [ -n "$target" ]; then
13506                 local pages=16384 # 64MB bulk I/O RPC size
13507
13508                 obdecho_test "$target" ost1 "$pages" ||
13509                         error "obdecho_test with pages=$pages failed with $?"
13510         else
13511                 do_facet ost1 $LCTL dl
13512                 error "there is no obdfilter target on ost1"
13513         fi
13514 }
13515 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13516
13517 test_181() { # bug 22177
13518         test_mkdir $DIR/$tdir
13519         # create enough files to index the directory
13520         createmany -o $DIR/$tdir/foobar 4000
13521         # print attributes for debug purpose
13522         lsattr -d .
13523         # open dir
13524         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13525         MULTIPID=$!
13526         # remove the files & current working dir
13527         unlinkmany $DIR/$tdir/foobar 4000
13528         rmdir $DIR/$tdir
13529         kill -USR1 $MULTIPID
13530         wait $MULTIPID
13531         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13532         return 0
13533 }
13534 run_test 181 "Test open-unlinked dir ========================"
13535
13536 test_182() {
13537         local fcount=1000
13538         local tcount=10
13539
13540         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13541
13542         $LCTL set_param mdc.*.rpc_stats=clear
13543
13544         for (( i = 0; i < $tcount; i++ )) ; do
13545                 mkdir $DIR/$tdir/$i
13546         done
13547
13548         for (( i = 0; i < $tcount; i++ )) ; do
13549                 createmany -o $DIR/$tdir/$i/f- $fcount &
13550         done
13551         wait
13552
13553         for (( i = 0; i < $tcount; i++ )) ; do
13554                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13555         done
13556         wait
13557
13558         $LCTL get_param mdc.*.rpc_stats
13559
13560         rm -rf $DIR/$tdir
13561 }
13562 run_test 182 "Test parallel modify metadata operations ================"
13563
13564 test_183() { # LU-2275
13565         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13566         remote_mds_nodsh && skip "remote MDS with nodsh"
13567         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
13568                 skip "Need MDS version at least 2.3.56"
13569
13570         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13571         echo aaa > $DIR/$tdir/$tfile
13572
13573 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13574         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13575
13576         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13577         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13578
13579         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13580
13581         # Flush negative dentry cache
13582         touch $DIR/$tdir/$tfile
13583
13584         # We are not checking for any leaked references here, they'll
13585         # become evident next time we do cleanup with module unload.
13586         rm -rf $DIR/$tdir
13587 }
13588 run_test 183 "No crash or request leak in case of strange dispositions ========"
13589
13590 # test suite 184 is for LU-2016, LU-2017
13591 test_184a() {
13592         check_swap_layouts_support
13593
13594         dir0=$DIR/$tdir/$testnum
13595         test_mkdir -p -c1 $dir0
13596         ref1=/etc/passwd
13597         ref2=/etc/group
13598         file1=$dir0/f1
13599         file2=$dir0/f2
13600         $SETSTRIPE -c1 $file1
13601         cp $ref1 $file1
13602         $SETSTRIPE -c2 $file2
13603         cp $ref2 $file2
13604         gen1=$($GETSTRIPE -g $file1)
13605         gen2=$($GETSTRIPE -g $file2)
13606
13607         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13608         gen=$($GETSTRIPE -g $file1)
13609         [[ $gen1 != $gen ]] ||
13610                 "Layout generation on $file1 does not change"
13611         gen=$($GETSTRIPE -g $file2)
13612         [[ $gen2 != $gen ]] ||
13613                 "Layout generation on $file2 does not change"
13614
13615         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13616         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13617
13618         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13619 }
13620 run_test 184a "Basic layout swap"
13621
13622 test_184b() {
13623         check_swap_layouts_support
13624
13625         dir0=$DIR/$tdir/$testnum
13626         mkdir -p $dir0 || error "creating dir $dir0"
13627         file1=$dir0/f1
13628         file2=$dir0/f2
13629         file3=$dir0/f3
13630         dir1=$dir0/d1
13631         dir2=$dir0/d2
13632         mkdir $dir1 $dir2
13633         $SETSTRIPE -c1 $file1
13634         $SETSTRIPE -c2 $file2
13635         $SETSTRIPE -c1 $file3
13636         chown $RUNAS_ID $file3
13637         gen1=$($GETSTRIPE -g $file1)
13638         gen2=$($GETSTRIPE -g $file2)
13639
13640         $LFS swap_layouts $dir1 $dir2 &&
13641                 error "swap of directories layouts should fail"
13642         $LFS swap_layouts $dir1 $file1 &&
13643                 error "swap of directory and file layouts should fail"
13644         $RUNAS $LFS swap_layouts $file1 $file2 &&
13645                 error "swap of file we cannot write should fail"
13646         $LFS swap_layouts $file1 $file3 &&
13647                 error "swap of file with different owner should fail"
13648         /bin/true # to clear error code
13649 }
13650 run_test 184b "Forbidden layout swap (will generate errors)"
13651
13652 test_184c() {
13653         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13654         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13655         check_swap_layouts_support
13656
13657         local dir0=$DIR/$tdir/$testnum
13658         mkdir -p $dir0 || error "creating dir $dir0"
13659
13660         local ref1=$dir0/ref1
13661         local ref2=$dir0/ref2
13662         local file1=$dir0/file1
13663         local file2=$dir0/file2
13664         # create a file large enough for the concurrent test
13665         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13666         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13667         echo "ref file size: ref1($(stat -c %s $ref1))," \
13668              "ref2($(stat -c %s $ref2))"
13669
13670         cp $ref2 $file2
13671         dd if=$ref1 of=$file1 bs=16k &
13672         local DD_PID=$!
13673
13674         # Make sure dd starts to copy file
13675         while [ ! -f $file1 ]; do sleep 0.1; done
13676
13677         $LFS swap_layouts $file1 $file2
13678         local rc=$?
13679         wait $DD_PID
13680         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13681         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13682
13683         # how many bytes copied before swapping layout
13684         local copied=$(stat -c %s $file2)
13685         local remaining=$(stat -c %s $ref1)
13686         remaining=$((remaining - copied))
13687         echo "Copied $copied bytes before swapping layout..."
13688
13689         cmp -n $copied $file1 $ref2 | grep differ &&
13690                 error "Content mismatch [0, $copied) of ref2 and file1"
13691         cmp -n $copied $file2 $ref1 ||
13692                 error "Content mismatch [0, $copied) of ref1 and file2"
13693         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13694                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13695
13696         # clean up
13697         rm -f $ref1 $ref2 $file1 $file2
13698 }
13699 run_test 184c "Concurrent write and layout swap"
13700
13701 test_184d() {
13702         check_swap_layouts_support
13703         [ -z "$(which getfattr 2>/dev/null)" ] &&
13704                 skip_env "no getfattr command"
13705
13706         local file1=$DIR/$tdir/$tfile-1
13707         local file2=$DIR/$tdir/$tfile-2
13708         local file3=$DIR/$tdir/$tfile-3
13709         local lovea1
13710         local lovea2
13711
13712         mkdir -p $DIR/$tdir
13713         touch $file1 || error "create $file1 failed"
13714         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13715                 error "create $file2 failed"
13716         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13717                 error "create $file3 failed"
13718         lovea1=$(get_layout_param $file1)
13719
13720         $LFS swap_layouts $file2 $file3 ||
13721                 error "swap $file2 $file3 layouts failed"
13722         $LFS swap_layouts $file1 $file2 ||
13723                 error "swap $file1 $file2 layouts failed"
13724
13725         lovea2=$(get_layout_param $file2)
13726         echo "$lovea1"
13727         echo "$lovea2"
13728         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13729
13730         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13731         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13732 }
13733 run_test 184d "allow stripeless layouts swap"
13734
13735 test_184e() {
13736         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
13737                 skip "Need MDS version at least 2.6.94"
13738         check_swap_layouts_support
13739         [ -z "$(which getfattr 2>/dev/null)" ] &&
13740                 skip_env "no getfattr command"
13741
13742         local file1=$DIR/$tdir/$tfile-1
13743         local file2=$DIR/$tdir/$tfile-2
13744         local file3=$DIR/$tdir/$tfile-3
13745         local lovea
13746
13747         mkdir -p $DIR/$tdir
13748         touch $file1 || error "create $file1 failed"
13749         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13750                 error "create $file2 failed"
13751         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13752                 error "create $file3 failed"
13753
13754         $LFS swap_layouts $file1 $file2 ||
13755                 error "swap $file1 $file2 layouts failed"
13756
13757         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13758         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13759
13760         echo 123 > $file1 || error "Should be able to write into $file1"
13761
13762         $LFS swap_layouts $file1 $file3 ||
13763                 error "swap $file1 $file3 layouts failed"
13764
13765         echo 123 > $file1 || error "Should be able to write into $file1"
13766
13767         rm -rf $file1 $file2 $file3
13768 }
13769 run_test 184e "Recreate layout after stripeless layout swaps"
13770
13771 test_184f() {
13772         # Create a file with name longer than sizeof(struct stat) ==
13773         # 144 to see if we can get chars from the file name to appear
13774         # in the returned striping. Note that 'f' == 0x66.
13775         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13776
13777         mkdir -p $DIR/$tdir
13778         mcreate $DIR/$tdir/$file
13779         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13780                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13781         fi
13782 }
13783 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13784
13785 test_185() { # LU-2441
13786         # LU-3553 - no volatile file support in old servers
13787         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
13788                 skip "Need MDS version at least 2.3.60"
13789
13790         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13791         touch $DIR/$tdir/spoo
13792         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13793         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13794                 error "cannot create/write a volatile file"
13795         [ "$FILESET" == "" ] &&
13796         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13797                 error "FID is still valid after close"
13798
13799         multiop_bg_pause $DIR/$tdir vVw4096_c
13800         local multi_pid=$!
13801
13802         local OLD_IFS=$IFS
13803         IFS=":"
13804         local fidv=($fid)
13805         IFS=$OLD_IFS
13806         # assume that the next FID for this client is sequential, since stdout
13807         # is unfortunately eaten by multiop_bg_pause
13808         local n=$((${fidv[1]} + 1))
13809         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13810         if [ "$FILESET" == "" ]; then
13811                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13812                         error "FID is missing before close"
13813         fi
13814         kill -USR1 $multi_pid
13815         # 1 second delay, so if mtime change we will see it
13816         sleep 1
13817         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13818         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13819 }
13820 run_test 185 "Volatile file support"
13821
13822 test_187a() {
13823         remote_mds_nodsh && skip "remote MDS with nodsh"
13824         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13825                 skip "Need MDS version at least 2.3.0"
13826
13827         local dir0=$DIR/$tdir/$testnum
13828         mkdir -p $dir0 || error "creating dir $dir0"
13829
13830         local file=$dir0/file1
13831         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13832         local dv1=$($LFS data_version $file)
13833         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13834         local dv2=$($LFS data_version $file)
13835         [[ $dv1 != $dv2 ]] ||
13836                 error "data version did not change on write $dv1 == $dv2"
13837
13838         # clean up
13839         rm -f $file1
13840 }
13841 run_test 187a "Test data version change"
13842
13843 test_187b() {
13844         remote_mds_nodsh && skip "remote MDS with nodsh"
13845         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13846                 skip "Need MDS version at least 2.3.0"
13847
13848         local dir0=$DIR/$tdir/$testnum
13849         mkdir -p $dir0 || error "creating dir $dir0"
13850
13851         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13852         [[ ${DV[0]} != ${DV[1]} ]] ||
13853                 error "data version did not change on write"\
13854                       " ${DV[0]} == ${DV[1]}"
13855
13856         # clean up
13857         rm -f $file1
13858 }
13859 run_test 187b "Test data version change on volatile file"
13860
13861 test_200() {
13862         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13863         remote_mgs_nodsh && skip "remote MGS with nodsh"
13864         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13865
13866         local POOL=${POOL:-cea1}
13867         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13868         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13869         # Pool OST targets
13870         local first_ost=0
13871         local last_ost=$(($OSTCOUNT - 1))
13872         local ost_step=2
13873         local ost_list=$(seq $first_ost $ost_step $last_ost)
13874         local ost_range="$first_ost $last_ost $ost_step"
13875         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13876         local file_dir=$POOL_ROOT/file_tst
13877         local subdir=$test_path/subdir
13878         local rc=0
13879
13880         if ! combined_mgs_mds ; then
13881                 mount_mgs_client
13882         fi
13883
13884         while : ; do
13885                 # former test_200a test_200b
13886                 pool_add $POOL                          || { rc=$? ; break; }
13887                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13888                 # former test_200c test_200d
13889                 mkdir -p $test_path
13890                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13891                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13892                 mkdir -p $subdir
13893                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13894                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13895                                                         || { rc=$? ; break; }
13896                 # former test_200e test_200f
13897                 local files=$((OSTCOUNT*3))
13898                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13899                                                         || { rc=$? ; break; }
13900                 pool_create_files $POOL $file_dir $files "$ost_list" \
13901                                                         || { rc=$? ; break; }
13902                 # former test_200g test_200h
13903                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13904                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13905
13906                 # former test_201a test_201b test_201c
13907                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13908
13909                 local f=$test_path/$tfile
13910                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13911                 pool_remove $POOL $f                    || { rc=$? ; break; }
13912                 break
13913         done
13914
13915         destroy_test_pools
13916
13917         if ! combined_mgs_mds ; then
13918                 umount_mgs_client
13919         fi
13920         return $rc
13921 }
13922 run_test 200 "OST pools"
13923
13924 # usage: default_attr <count | size | offset>
13925 default_attr() {
13926         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13927 }
13928
13929 # usage: check_default_stripe_attr
13930 check_default_stripe_attr() {
13931         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
13932         case $1 in
13933         --stripe-count|-c)
13934                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13935         --stripe-size|-S)
13936                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13937         --stripe-index|-i)
13938                 EXPECTED=-1;;
13939         *)
13940                 error "unknown getstripe attr '$1'"
13941         esac
13942
13943         [ $ACTUAL == $EXPECTED ] ||
13944                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13945 }
13946
13947 test_204a() {
13948         test_mkdir $DIR/$tdir
13949         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13950
13951         check_default_stripe_attr --stripe-count
13952         check_default_stripe_attr --stripe-size
13953         check_default_stripe_attr --stripe-index
13954 }
13955 run_test 204a "Print default stripe attributes"
13956
13957 test_204b() {
13958         test_mkdir $DIR/$tdir
13959         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13960
13961         check_default_stripe_attr --stripe-size
13962         check_default_stripe_attr --stripe-index
13963 }
13964 run_test 204b "Print default stripe size and offset"
13965
13966 test_204c() {
13967         test_mkdir $DIR/$tdir
13968         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
13969
13970         check_default_stripe_attr --stripe-count
13971         check_default_stripe_attr --stripe-index
13972 }
13973 run_test 204c "Print default stripe count and offset"
13974
13975 test_204d() {
13976         test_mkdir $DIR/$tdir
13977         $SETSTRIPE --stripe-index 0 $DIR/$tdir
13978
13979         check_default_stripe_attr --stripe-count
13980         check_default_stripe_attr --stripe-size
13981 }
13982 run_test 204d "Print default stripe count and size"
13983
13984 test_204e() {
13985         test_mkdir $DIR/$tdir
13986         $SETSTRIPE -d $DIR/$tdir
13987
13988         check_default_stripe_attr --stripe-count --raw
13989         check_default_stripe_attr --stripe-size --raw
13990         check_default_stripe_attr --stripe-index --raw
13991 }
13992 run_test 204e "Print raw stripe attributes"
13993
13994 test_204f() {
13995         test_mkdir $DIR/$tdir
13996         $SETSTRIPE --stripe-count 1 $DIR/$tdir
13997
13998         check_default_stripe_attr --stripe-size --raw
13999         check_default_stripe_attr --stripe-index --raw
14000 }
14001 run_test 204f "Print raw stripe size and offset"
14002
14003 test_204g() {
14004         test_mkdir $DIR/$tdir
14005         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
14006
14007         check_default_stripe_attr --stripe-count --raw
14008         check_default_stripe_attr --stripe-index --raw
14009 }
14010 run_test 204g "Print raw stripe count and offset"
14011
14012 test_204h() {
14013         test_mkdir $DIR/$tdir
14014         $SETSTRIPE --stripe-index 0 $DIR/$tdir
14015
14016         check_default_stripe_attr --stripe-count --raw
14017         check_default_stripe_attr --stripe-size --raw
14018 }
14019 run_test 204h "Print raw stripe count and size"
14020
14021 # Figure out which job scheduler is being used, if any,
14022 # or use a fake one
14023 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
14024         JOBENV=SLURM_JOB_ID
14025 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
14026         JOBENV=LSB_JOBID
14027 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
14028         JOBENV=PBS_JOBID
14029 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
14030         JOBENV=LOADL_STEP_ID
14031 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
14032         JOBENV=JOB_ID
14033 else
14034         $LCTL list_param jobid_name > /dev/null 2>&1
14035         if [ $? -eq 0 ]; then
14036                 JOBENV=nodelocal
14037         else
14038                 JOBENV=FAKE_JOBID
14039         fi
14040 fi
14041 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
14042
14043 verify_jobstats() {
14044         local cmd=($1)
14045         shift
14046         local facets="$@"
14047
14048 # we don't really need to clear the stats for this test to work, since each
14049 # command has a unique jobid, but it makes debugging easier if needed.
14050 #       for facet in $facets; do
14051 #               local dev=$(convert_facet2label $facet)
14052 #               # clear old jobstats
14053 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
14054 #       done
14055
14056         # use a new JobID for each test, or we might see an old one
14057         [ "$JOBENV" = "FAKE_JOBID" ] &&
14058                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
14059
14060         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
14061
14062         [ "$JOBENV" = "nodelocal" ] && {
14063                 FAKE_JOBID=id.$testnum.%e.$RANDOM
14064                 $LCTL set_param jobid_name=$FAKE_JOBID
14065                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14066         }
14067
14068         log "Test: ${cmd[*]}"
14069         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14070
14071         if [ $JOBENV = "FAKE_JOBID" ]; then
14072                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14073         else
14074                 ${cmd[*]}
14075         fi
14076
14077         # all files are created on OST0000
14078         for facet in $facets; do
14079                 local stats="*.$(convert_facet2label $facet).job_stats"
14080
14081                 # strip out libtool wrappers for in-tree executables
14082                 if [ $(do_facet $facet lctl get_param $stats |
14083                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14084                         do_facet $facet lctl get_param $stats
14085                         error "No jobstats for $JOBVAL found on $facet::$stats"
14086                 fi
14087         done
14088 }
14089
14090 jobstats_set() {
14091         local new_jobenv=$1
14092
14093         set_persistent_param_and_check client "jobid_var" \
14094                 "$FSNAME.sys.jobid_var" $new_jobenv
14095 }
14096
14097 test_205() { # Job stats
14098         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14099         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
14100                 skip "Need MDS version with at least 2.7.1"
14101         remote_mgs_nodsh && skip "remote MGS with nodsh"
14102         remote_mds_nodsh && skip "remote MDS with nodsh"
14103         remote_ost_nodsh && skip "remote OST with nodsh"
14104         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14105                 skip "Server doesn't support jobstats"
14106         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14107
14108         local old_jobenv=$($LCTL get_param -n jobid_var)
14109         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14110
14111         if [[ $PERM_CMD = *"set_param -P"* ]]; then
14112                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14113         else
14114                 stack_trap "do_facet mgs $PERM_CMD \
14115                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14116         fi
14117         changelog_register
14118
14119         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14120                                 mdt.*.job_cleanup_interval | head -n 1)
14121         local new_interval=5
14122         do_facet $SINGLEMDS \
14123                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14124         stack_trap "do_facet $SINGLEMDS \
14125                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14126         local start=$SECONDS
14127
14128         local cmd
14129         # mkdir
14130         cmd="mkdir $DIR/$tdir"
14131         verify_jobstats "$cmd" "$SINGLEMDS"
14132         # rmdir
14133         cmd="rmdir $DIR/$tdir"
14134         verify_jobstats "$cmd" "$SINGLEMDS"
14135         # mkdir on secondary MDT
14136         if [ $MDSCOUNT -gt 1 ]; then
14137                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14138                 verify_jobstats "$cmd" "mds2"
14139         fi
14140         # mknod
14141         cmd="mknod $DIR/$tfile c 1 3"
14142         verify_jobstats "$cmd" "$SINGLEMDS"
14143         # unlink
14144         cmd="rm -f $DIR/$tfile"
14145         verify_jobstats "$cmd" "$SINGLEMDS"
14146         # create all files on OST0000 so verify_jobstats can find OST stats
14147         # open & close
14148         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
14149         verify_jobstats "$cmd" "$SINGLEMDS"
14150         # setattr
14151         cmd="touch $DIR/$tfile"
14152         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14153         # write
14154         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14155         verify_jobstats "$cmd" "ost1"
14156         # read
14157         cancel_lru_locks osc
14158         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14159         verify_jobstats "$cmd" "ost1"
14160         # truncate
14161         cmd="$TRUNCATE $DIR/$tfile 0"
14162         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14163         # rename
14164         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14165         verify_jobstats "$cmd" "$SINGLEMDS"
14166         # jobstats expiry - sleep until old stats should be expired
14167         local left=$((new_interval + 5 - (SECONDS - start)))
14168         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14169                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14170                         "0" $left
14171         cmd="mkdir $DIR/$tdir.expire"
14172         verify_jobstats "$cmd" "$SINGLEMDS"
14173         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14174             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14175
14176         # Ensure that jobid are present in changelog (if supported by MDS)
14177         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14178                 changelog_dump | tail -10
14179                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14180                 [ $jobids -eq 9 ] ||
14181                         error "Wrong changelog jobid count $jobids != 9"
14182
14183                 # LU-5862
14184                 JOBENV="disable"
14185                 jobstats_set $JOBENV
14186                 touch $DIR/$tfile
14187                 changelog_dump | grep $tfile
14188                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14189                 [ $jobids -eq 0 ] ||
14190                         error "Unexpected jobids when jobid_var=$JOBENV"
14191         fi
14192
14193         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14194         JOBENV="JOBCOMPLEX"
14195         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14196
14197         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14198 }
14199 run_test 205 "Verify job stats"
14200
14201 # LU-1480, LU-1773 and LU-1657
14202 test_206() {
14203         mkdir -p $DIR/$tdir
14204         $SETSTRIPE -c -1 $DIR/$tdir
14205 #define OBD_FAIL_LOV_INIT 0x1403
14206         $LCTL set_param fail_loc=0xa0001403
14207         $LCTL set_param fail_val=1
14208         touch $DIR/$tdir/$tfile || true
14209 }
14210 run_test 206 "fail lov_init_raid0() doesn't lbug"
14211
14212 test_207a() {
14213         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14214         local fsz=`stat -c %s $DIR/$tfile`
14215         cancel_lru_locks mdc
14216
14217         # do not return layout in getattr intent
14218 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14219         $LCTL set_param fail_loc=0x170
14220         local sz=`stat -c %s $DIR/$tfile`
14221
14222         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14223
14224         rm -rf $DIR/$tfile
14225 }
14226 run_test 207a "can refresh layout at glimpse"
14227
14228 test_207b() {
14229         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14230         local cksum=`md5sum $DIR/$tfile`
14231         local fsz=`stat -c %s $DIR/$tfile`
14232         cancel_lru_locks mdc
14233         cancel_lru_locks osc
14234
14235         # do not return layout in getattr intent
14236 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14237         $LCTL set_param fail_loc=0x171
14238
14239         # it will refresh layout after the file is opened but before read issues
14240         echo checksum is "$cksum"
14241         echo "$cksum" |md5sum -c --quiet || error "file differs"
14242
14243         rm -rf $DIR/$tfile
14244 }
14245 run_test 207b "can refresh layout at open"
14246
14247 test_208() {
14248         # FIXME: in this test suite, only RD lease is used. This is okay
14249         # for now as only exclusive open is supported. After generic lease
14250         # is done, this test suite should be revised. - Jinshan
14251
14252         remote_mds_nodsh && skip "remote MDS with nodsh"
14253         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14254                 skip "Need MDS version at least 2.4.52"
14255
14256         echo "==== test 1: verify get lease work"
14257         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14258
14259         echo "==== test 2: verify lease can be broken by upcoming open"
14260         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14261         local PID=$!
14262         sleep 1
14263
14264         $MULTIOP $DIR/$tfile oO_RDONLY:c
14265         kill -USR1 $PID && wait $PID || error "break lease error"
14266
14267         echo "==== test 3: verify lease can't be granted if an open already exists"
14268         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14269         local PID=$!
14270         sleep 1
14271
14272         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14273         kill -USR1 $PID && wait $PID || error "open file error"
14274
14275         echo "==== test 4: lease can sustain over recovery"
14276         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14277         PID=$!
14278         sleep 1
14279
14280         fail mds1
14281
14282         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14283
14284         echo "==== test 5: lease broken can't be regained by replay"
14285         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14286         PID=$!
14287         sleep 1
14288
14289         # open file to break lease and then recovery
14290         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14291         fail mds1
14292
14293         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14294
14295         rm -f $DIR/$tfile
14296 }
14297 run_test 208 "Exclusive open"
14298
14299 test_209() {
14300         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14301                 skip_env "must have disp_stripe"
14302
14303         touch $DIR/$tfile
14304         sync; sleep 5; sync;
14305
14306         echo 3 > /proc/sys/vm/drop_caches
14307         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14308
14309         # open/close 500 times
14310         for i in $(seq 500); do
14311                 cat $DIR/$tfile
14312         done
14313
14314         echo 3 > /proc/sys/vm/drop_caches
14315         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14316
14317         echo "before: $req_before, after: $req_after"
14318         [ $((req_after - req_before)) -ge 300 ] &&
14319                 error "open/close requests are not freed"
14320         return 0
14321 }
14322 run_test 209 "read-only open/close requests should be freed promptly"
14323
14324 test_212() {
14325         size=`date +%s`
14326         size=$((size % 8192 + 1))
14327         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14328         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14329         rm -f $DIR/f212 $DIR/f212.xyz
14330 }
14331 run_test 212 "Sendfile test ============================================"
14332
14333 test_213() {
14334         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14335         cancel_lru_locks osc
14336         lctl set_param fail_loc=0x8000040f
14337         # generate a read lock
14338         cat $DIR/$tfile > /dev/null
14339         # write to the file, it will try to cancel the above read lock.
14340         cat /etc/hosts >> $DIR/$tfile
14341 }
14342 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14343
14344 test_214() { # for bug 20133
14345         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14346         for (( i=0; i < 340; i++ )) ; do
14347                 touch $DIR/$tdir/d214c/a$i
14348         done
14349
14350         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14351         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14352         ls $DIR/d214c || error "ls $DIR/d214c failed"
14353         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14354         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14355 }
14356 run_test 214 "hash-indexed directory test - bug 20133"
14357
14358 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14359 create_lnet_proc_files() {
14360         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14361 }
14362
14363 # counterpart of create_lnet_proc_files
14364 remove_lnet_proc_files() {
14365         rm -f $TMP/lnet_$1.sys
14366 }
14367
14368 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14369 # 3rd arg as regexp for body
14370 check_lnet_proc_stats() {
14371         local l=$(cat "$TMP/lnet_$1" |wc -l)
14372         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14373
14374         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14375 }
14376
14377 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14378 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14379 # optional and can be regexp for 2nd line (lnet.routes case)
14380 check_lnet_proc_entry() {
14381         local blp=2          # blp stands for 'position of 1st line of body'
14382         [ -z "$5" ] || blp=3 # lnet.routes case
14383
14384         local l=$(cat "$TMP/lnet_$1" |wc -l)
14385         # subtracting one from $blp because the body can be empty
14386         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14387
14388         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14389                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14390
14391         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14392                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14393
14394         # bail out if any unexpected line happened
14395         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14396         [ "$?" != 0 ] || error "$2 misformatted"
14397 }
14398
14399 test_215() { # for bugs 18102, 21079, 21517
14400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14401
14402         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14403         local P='[1-9][0-9]*'           # positive numeric
14404         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14405         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14406         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14407         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14408
14409         local L1 # regexp for 1st line
14410         local L2 # regexp for 2nd line (optional)
14411         local BR # regexp for the rest (body)
14412
14413         # lnet.stats should look as 11 space-separated non-negative numerics
14414         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14415         create_lnet_proc_files "stats"
14416         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14417         remove_lnet_proc_files "stats"
14418
14419         # lnet.routes should look like this:
14420         # Routing disabled/enabled
14421         # net hops priority state router
14422         # where net is a string like tcp0, hops > 0, priority >= 0,
14423         # state is up/down,
14424         # router is a string like 192.168.1.1@tcp2
14425         L1="^Routing (disabled|enabled)$"
14426         L2="^net +hops +priority +state +router$"
14427         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14428         create_lnet_proc_files "routes"
14429         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14430         remove_lnet_proc_files "routes"
14431
14432         # lnet.routers should look like this:
14433         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14434         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14435         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14436         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14437         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14438         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14439         create_lnet_proc_files "routers"
14440         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14441         remove_lnet_proc_files "routers"
14442
14443         # lnet.peers should look like this:
14444         # nid refs state last max rtr min tx min queue
14445         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14446         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14447         # numeric (0 or >0 or <0), queue >= 0.
14448         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14449         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14450         create_lnet_proc_files "peers"
14451         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14452         remove_lnet_proc_files "peers"
14453
14454         # lnet.buffers  should look like this:
14455         # pages count credits min
14456         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14457         L1="^pages +count +credits +min$"
14458         BR="^ +$N +$N +$I +$I$"
14459         create_lnet_proc_files "buffers"
14460         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14461         remove_lnet_proc_files "buffers"
14462
14463         # lnet.nis should look like this:
14464         # nid status alive refs peer rtr max tx min
14465         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14466         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14467         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14468         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14469         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14470         create_lnet_proc_files "nis"
14471         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14472         remove_lnet_proc_files "nis"
14473
14474         # can we successfully write to lnet.stats?
14475         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14476 }
14477 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14478
14479 test_216() { # bug 20317
14480         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14481         remote_ost_nodsh && skip "remote OST with nodsh"
14482
14483         local node
14484         local facets=$(get_facets OST)
14485         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14486
14487         save_lustre_params client "osc.*.contention_seconds" > $p
14488         save_lustre_params $facets \
14489                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14490         save_lustre_params $facets \
14491                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14492         save_lustre_params $facets \
14493                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14494         clear_stats osc.*.osc_stats
14495
14496         # agressive lockless i/o settings
14497         do_nodes $(comma_list $(osts_nodes)) \
14498                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14499                         ldlm.namespaces.filter-*.contended_locks=0 \
14500                         ldlm.namespaces.filter-*.contention_seconds=60"
14501         lctl set_param -n osc.*.contention_seconds=60
14502
14503         $DIRECTIO write $DIR/$tfile 0 10 4096
14504         $CHECKSTAT -s 40960 $DIR/$tfile
14505
14506         # disable lockless i/o
14507         do_nodes $(comma_list $(osts_nodes)) \
14508                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14509                         ldlm.namespaces.filter-*.contended_locks=32 \
14510                         ldlm.namespaces.filter-*.contention_seconds=0"
14511         lctl set_param -n osc.*.contention_seconds=0
14512         clear_stats osc.*.osc_stats
14513
14514         dd if=/dev/zero of=$DIR/$tfile count=0
14515         $CHECKSTAT -s 0 $DIR/$tfile
14516
14517         restore_lustre_params <$p
14518         rm -f $p
14519         rm $DIR/$tfile
14520 }
14521 run_test 216 "check lockless direct write updates file size and kms correctly"
14522
14523 test_217() { # bug 22430
14524         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14525
14526         local node
14527         local nid
14528
14529         for node in $(nodes_list); do
14530                 nid=$(host_nids_address $node $NETTYPE)
14531                 if [[ $nid = *-* ]] ; then
14532                         echo "lctl ping $(h2nettype $nid)"
14533                         lctl ping $(h2nettype $nid)
14534                 else
14535                         echo "skipping $node (no hyphen detected)"
14536                 fi
14537         done
14538 }
14539 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14540
14541 test_218() {
14542        # do directio so as not to populate the page cache
14543        log "creating a 10 Mb file"
14544        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14545        log "starting reads"
14546        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14547        log "truncating the file"
14548        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14549        log "killing dd"
14550        kill %+ || true # reads might have finished
14551        echo "wait until dd is finished"
14552        wait
14553        log "removing the temporary file"
14554        rm -rf $DIR/$tfile || error "tmp file removal failed"
14555 }
14556 run_test 218 "parallel read and truncate should not deadlock"
14557
14558 test_219() {
14559         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14560
14561         # write one partial page
14562         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14563         # set no grant so vvp_io_commit_write will do sync write
14564         $LCTL set_param fail_loc=0x411
14565         # write a full page at the end of file
14566         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14567
14568         $LCTL set_param fail_loc=0
14569         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14570         $LCTL set_param fail_loc=0x411
14571         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14572
14573         # LU-4201
14574         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14575         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14576 }
14577 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14578
14579 test_220() { #LU-325
14580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14581         remote_ost_nodsh && skip "remote OST with nodsh"
14582         remote_mds_nodsh && skip "remote MDS with nodsh"
14583         remote_mgs_nodsh && skip "remote MGS with nodsh"
14584
14585         local OSTIDX=0
14586
14587         # create on MDT0000 so the last_id and next_id are correct
14588         mkdir $DIR/$tdir
14589         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14590         OST=${OST%_UUID}
14591
14592         # on the mdt's osc
14593         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14594         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14595                         osc.$mdtosc_proc1.prealloc_last_id)
14596         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14597                         osc.$mdtosc_proc1.prealloc_next_id)
14598
14599         $LFS df -i
14600
14601         if ! combined_mgs_mds ; then
14602                 mount_mgs_client
14603         fi
14604
14605         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14606         #define OBD_FAIL_OST_ENOINO              0x229
14607         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14608         create_pool $FSNAME.$TESTNAME || return 1
14609         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14610
14611         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14612
14613         MDSOBJS=$((last_id - next_id))
14614         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14615
14616         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14617         echo "OST still has $count kbytes free"
14618
14619         echo "create $MDSOBJS files @next_id..."
14620         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14621
14622         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14623                         osc.$mdtosc_proc1.prealloc_last_id)
14624         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14625                         osc.$mdtosc_proc1.prealloc_next_id)
14626
14627         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14628         $LFS df -i
14629
14630         echo "cleanup..."
14631
14632         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14633         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14634
14635         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14636                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14637         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14638                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14639         echo "unlink $MDSOBJS files @$next_id..."
14640         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14641
14642         if ! combined_mgs_mds ; then
14643                 umount_mgs_client
14644         fi
14645 }
14646 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14647
14648 test_221() {
14649         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14650
14651         dd if=`which date` of=$MOUNT/date oflag=sync
14652         chmod +x $MOUNT/date
14653
14654         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14655         $LCTL set_param fail_loc=0x80001401
14656
14657         $MOUNT/date > /dev/null
14658         rm -f $MOUNT/date
14659 }
14660 run_test 221 "make sure fault and truncate race to not cause OOM"
14661
14662 test_222a () {
14663         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14664
14665         rm -rf $DIR/$tdir
14666         test_mkdir $DIR/$tdir
14667         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14668         createmany -o $DIR/$tdir/$tfile 10
14669         cancel_lru_locks mdc
14670         cancel_lru_locks osc
14671         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14672         $LCTL set_param fail_loc=0x31a
14673         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14674         $LCTL set_param fail_loc=0
14675         rm -r $DIR/$tdir
14676 }
14677 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14678
14679 test_222b () {
14680         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14681
14682         rm -rf $DIR/$tdir
14683         test_mkdir $DIR/$tdir
14684         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14685         createmany -o $DIR/$tdir/$tfile 10
14686         cancel_lru_locks mdc
14687         cancel_lru_locks osc
14688         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14689         $LCTL set_param fail_loc=0x31a
14690         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14691         $LCTL set_param fail_loc=0
14692 }
14693 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14694
14695 test_223 () {
14696         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14697
14698         rm -rf $DIR/$tdir
14699         test_mkdir $DIR/$tdir
14700         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14701         createmany -o $DIR/$tdir/$tfile 10
14702         cancel_lru_locks mdc
14703         cancel_lru_locks osc
14704         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14705         $LCTL set_param fail_loc=0x31b
14706         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14707         $LCTL set_param fail_loc=0
14708         rm -r $DIR/$tdir
14709 }
14710 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14711
14712 test_224a() { # LU-1039, MRP-303
14713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14714
14715         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14716         $LCTL set_param fail_loc=0x508
14717         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14718         $LCTL set_param fail_loc=0
14719         df $DIR
14720 }
14721 run_test 224a "Don't panic on bulk IO failure"
14722
14723 test_224b() { # LU-1039, MRP-303
14724         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14725
14726         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14727         cancel_lru_locks osc
14728         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14729         $LCTL set_param fail_loc=0x515
14730         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14731         $LCTL set_param fail_loc=0
14732         df $DIR
14733 }
14734 run_test 224b "Don't panic on bulk IO failure"
14735
14736 test_224c() { # LU-6441
14737         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14738         remote_mds_nodsh && skip "remote MDS with nodsh"
14739
14740         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14741         save_writethrough $p
14742         set_cache writethrough on
14743
14744         local pages_per_rpc=$($LCTL get_param \
14745                                 osc.*.max_pages_per_rpc)
14746         local at_max=$($LCTL get_param -n at_max)
14747         local timeout=$($LCTL get_param -n timeout)
14748         local test_at="at_max"
14749         local param_at="$FSNAME.sys.at_max"
14750         local test_timeout="timeout"
14751         local param_timeout="$FSNAME.sys.timeout"
14752
14753         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14754
14755         set_persistent_param_and_check client "$test_at" "$param_at" 0
14756         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14757
14758         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
14759         do_facet ost1 $LCTL set_param fail_loc=0x520
14760         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14761         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14762         sync
14763         do_facet ost1 $LCTL set_param fail_loc=0
14764
14765         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14766         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14767                 $timeout
14768
14769         $LCTL set_param -n $pages_per_rpc
14770         restore_lustre_params < $p
14771         rm -f $p
14772 }
14773 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14774
14775 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14776 test_225a () {
14777         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14778         if [ -z ${MDSSURVEY} ]; then
14779                 skip_env "mds-survey not found"
14780         fi
14781         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14782                 skip "Need MDS version at least 2.2.51"
14783
14784         local mds=$(facet_host $SINGLEMDS)
14785         local target=$(do_nodes $mds 'lctl dl' |
14786                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14787
14788         local cmd1="file_count=1000 thrhi=4"
14789         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14790         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14791         local cmd="$cmd1 $cmd2 $cmd3"
14792
14793         rm -f ${TMP}/mds_survey*
14794         echo + $cmd
14795         eval $cmd || error "mds-survey with zero-stripe failed"
14796         cat ${TMP}/mds_survey*
14797         rm -f ${TMP}/mds_survey*
14798 }
14799 run_test 225a "Metadata survey sanity with zero-stripe"
14800
14801 test_225b () {
14802         if [ -z ${MDSSURVEY} ]; then
14803                 skip_env "mds-survey not found"
14804         fi
14805         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14806                 skip "Need MDS version at least 2.2.51"
14807         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14808         remote_mds_nodsh && skip "remote MDS with nodsh"
14809         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14810                 skip_env "Need to mount OST to test"
14811         fi
14812
14813         local mds=$(facet_host $SINGLEMDS)
14814         local target=$(do_nodes $mds 'lctl dl' |
14815                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14816
14817         local cmd1="file_count=1000 thrhi=4"
14818         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14819         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14820         local cmd="$cmd1 $cmd2 $cmd3"
14821
14822         rm -f ${TMP}/mds_survey*
14823         echo + $cmd
14824         eval $cmd || error "mds-survey with stripe_count failed"
14825         cat ${TMP}/mds_survey*
14826         rm -f ${TMP}/mds_survey*
14827 }
14828 run_test 225b "Metadata survey sanity with stripe_count = 1"
14829
14830 mcreate_path2fid () {
14831         local mode=$1
14832         local major=$2
14833         local minor=$3
14834         local name=$4
14835         local desc=$5
14836         local path=$DIR/$tdir/$name
14837         local fid
14838         local rc
14839         local fid_path
14840
14841         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14842                 error "cannot create $desc"
14843
14844         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14845         rc=$?
14846         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14847
14848         fid_path=$($LFS fid2path $MOUNT $fid)
14849         rc=$?
14850         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14851
14852         [ "$path" == "$fid_path" ] ||
14853                 error "fid2path returned $fid_path, expected $path"
14854
14855         echo "pass with $path and $fid"
14856 }
14857
14858 test_226a () {
14859         rm -rf $DIR/$tdir
14860         mkdir -p $DIR/$tdir
14861
14862         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14863         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14864         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14865         mcreate_path2fid 0040666 0 0 dir "directory"
14866         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14867         mcreate_path2fid 0100666 0 0 file "regular file"
14868         mcreate_path2fid 0120666 0 0 link "symbolic link"
14869         mcreate_path2fid 0140666 0 0 sock "socket"
14870 }
14871 run_test 226a "call path2fid and fid2path on files of all type"
14872
14873 test_226b () {
14874         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14875
14876         local MDTIDX=1
14877
14878         rm -rf $DIR/$tdir
14879         mkdir -p $DIR/$tdir
14880         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14881                 error "create remote directory failed"
14882         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14883         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14884                                 "character special file (null)"
14885         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14886                                 "character special file (no device)"
14887         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14888         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14889                                 "block special file (loop)"
14890         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14891         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14892         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14893 }
14894 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14895
14896 # LU-1299 Executing or running ldd on a truncated executable does not
14897 # cause an out-of-memory condition.
14898 test_227() {
14899         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14900         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14901
14902         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14903         chmod +x $MOUNT/date
14904
14905         $MOUNT/date > /dev/null
14906         ldd $MOUNT/date > /dev/null
14907         rm -f $MOUNT/date
14908 }
14909 run_test 227 "running truncated executable does not cause OOM"
14910
14911 # LU-1512 try to reuse idle OI blocks
14912 test_228a() {
14913         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14914         remote_mds_nodsh && skip "remote MDS with nodsh"
14915         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14916
14917         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14918         local myDIR=$DIR/$tdir
14919
14920         mkdir -p $myDIR
14921         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14922         $LCTL set_param fail_loc=0x80001002
14923         createmany -o $myDIR/t- 10000
14924         $LCTL set_param fail_loc=0
14925         # The guard is current the largest FID holder
14926         touch $myDIR/guard
14927         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14928                     tr -d '[')
14929         local IDX=$(($SEQ % 64))
14930
14931         do_facet $SINGLEMDS sync
14932         # Make sure journal flushed.
14933         sleep 6
14934         local blk1=$(do_facet $SINGLEMDS \
14935                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14936                      grep Blockcount | awk '{print $4}')
14937
14938         # Remove old files, some OI blocks will become idle.
14939         unlinkmany $myDIR/t- 10000
14940         # Create new files, idle OI blocks should be reused.
14941         createmany -o $myDIR/t- 2000
14942         do_facet $SINGLEMDS sync
14943         # Make sure journal flushed.
14944         sleep 6
14945         local blk2=$(do_facet $SINGLEMDS \
14946                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14947                      grep Blockcount | awk '{print $4}')
14948
14949         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14950 }
14951 run_test 228a "try to reuse idle OI blocks"
14952
14953 test_228b() {
14954         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14955         remote_mds_nodsh && skip "remote MDS with nodsh"
14956         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14957
14958         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14959         local myDIR=$DIR/$tdir
14960
14961         mkdir -p $myDIR
14962         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14963         $LCTL set_param fail_loc=0x80001002
14964         createmany -o $myDIR/t- 10000
14965         $LCTL set_param fail_loc=0
14966         # The guard is current the largest FID holder
14967         touch $myDIR/guard
14968         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14969                     tr -d '[')
14970         local IDX=$(($SEQ % 64))
14971
14972         do_facet $SINGLEMDS sync
14973         # Make sure journal flushed.
14974         sleep 6
14975         local blk1=$(do_facet $SINGLEMDS \
14976                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14977                      grep Blockcount | awk '{print $4}')
14978
14979         # Remove old files, some OI blocks will become idle.
14980         unlinkmany $myDIR/t- 10000
14981
14982         # stop the MDT
14983         stop $SINGLEMDS || error "Fail to stop MDT."
14984         # remount the MDT
14985         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
14986
14987         df $MOUNT || error "Fail to df."
14988         # Create new files, idle OI blocks should be reused.
14989         createmany -o $myDIR/t- 2000
14990         do_facet $SINGLEMDS sync
14991         # Make sure journal flushed.
14992         sleep 6
14993         local blk2=$(do_facet $SINGLEMDS \
14994                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14995                      grep Blockcount | awk '{print $4}')
14996
14997         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14998 }
14999 run_test 228b "idle OI blocks can be reused after MDT restart"
15000
15001 #LU-1881
15002 test_228c() {
15003         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15004         remote_mds_nodsh && skip "remote MDS with nodsh"
15005         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
15006
15007         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
15008         local myDIR=$DIR/$tdir
15009
15010         mkdir -p $myDIR
15011         #define OBD_FAIL_SEQ_EXHAUST             0x1002
15012         $LCTL set_param fail_loc=0x80001002
15013         # 20000 files can guarantee there are index nodes in the OI file
15014         createmany -o $myDIR/t- 20000
15015         $LCTL set_param fail_loc=0
15016         # The guard is current the largest FID holder
15017         touch $myDIR/guard
15018         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15019                     tr -d '[')
15020         local IDX=$(($SEQ % 64))
15021
15022         do_facet $SINGLEMDS sync
15023         # Make sure journal flushed.
15024         sleep 6
15025         local blk1=$(do_facet $SINGLEMDS \
15026                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15027                      grep Blockcount | awk '{print $4}')
15028
15029         # Remove old files, some OI blocks will become idle.
15030         unlinkmany $myDIR/t- 20000
15031         rm -f $myDIR/guard
15032         # The OI file should become empty now
15033
15034         # Create new files, idle OI blocks should be reused.
15035         createmany -o $myDIR/t- 2000
15036         do_facet $SINGLEMDS sync
15037         # Make sure journal flushed.
15038         sleep 6
15039         local blk2=$(do_facet $SINGLEMDS \
15040                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15041                      grep Blockcount | awk '{print $4}')
15042
15043         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15044 }
15045 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
15046
15047 test_229() { # LU-2482, LU-3448
15048         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15049         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
15050         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
15051                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
15052
15053         rm -f $DIR/$tfile
15054
15055         # Create a file with a released layout and stripe count 2.
15056         $MULTIOP $DIR/$tfile H2c ||
15057                 error "failed to create file with released layout"
15058
15059         $GETSTRIPE -v $DIR/$tfile
15060
15061         local pattern=$($GETSTRIPE -L $DIR/$tfile)
15062         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
15063
15064         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
15065         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15066         stat $DIR/$tfile || error "failed to stat released file"
15067
15068         chown $RUNAS_ID $DIR/$tfile ||
15069                 error "chown $RUNAS_ID $DIR/$tfile failed"
15070
15071         chgrp $RUNAS_ID $DIR/$tfile ||
15072                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15073
15074         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15075         rm $DIR/$tfile || error "failed to remove released file"
15076 }
15077 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15078
15079 test_230a() {
15080         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15081         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15082         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15083                 skip "Need MDS version at least 2.11.52"
15084
15085         local MDTIDX=1
15086
15087         test_mkdir $DIR/$tdir
15088         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15089         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15090         [ $mdt_idx -ne 0 ] &&
15091                 error "create local directory on wrong MDT $mdt_idx"
15092
15093         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15094                         error "create remote directory failed"
15095         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15096         [ $mdt_idx -ne $MDTIDX ] &&
15097                 error "create remote directory on wrong MDT $mdt_idx"
15098
15099         createmany -o $DIR/$tdir/test_230/t- 10 ||
15100                 error "create files on remote directory failed"
15101         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15102         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15103         rm -r $DIR/$tdir || error "unlink remote directory failed"
15104 }
15105 run_test 230a "Create remote directory and files under the remote directory"
15106
15107 test_230b() {
15108         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15109         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15110         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15111                 skip "Need MDS version at least 2.11.52"
15112
15113         local MDTIDX=1
15114         local mdt_index
15115         local i
15116         local file
15117         local pid
15118         local stripe_count
15119         local migrate_dir=$DIR/$tdir/migrate_dir
15120         local other_dir=$DIR/$tdir/other_dir
15121
15122         test_mkdir $DIR/$tdir
15123         test_mkdir -i0 -c1 $migrate_dir
15124         test_mkdir -i0 -c1 $other_dir
15125         for ((i=0; i<10; i++)); do
15126                 mkdir -p $migrate_dir/dir_${i}
15127                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15128                         error "create files under remote dir failed $i"
15129         done
15130
15131         cp /etc/passwd $migrate_dir/$tfile
15132         cp /etc/passwd $other_dir/$tfile
15133         chattr +SAD $migrate_dir
15134         chattr +SAD $migrate_dir/$tfile
15135
15136         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15137         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15138         local old_dir_mode=$(stat -c%f $migrate_dir)
15139         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15140
15141         mkdir -p $migrate_dir/dir_default_stripe2
15142         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
15143         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
15144
15145         mkdir -p $other_dir
15146         ln $migrate_dir/$tfile $other_dir/luna
15147         ln $migrate_dir/$tfile $migrate_dir/sofia
15148         ln $other_dir/$tfile $migrate_dir/david
15149         ln -s $migrate_dir/$tfile $other_dir/zachary
15150         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15151         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15152
15153         $LFS migrate -m $MDTIDX $migrate_dir ||
15154                 error "fails on migrating remote dir to MDT1"
15155
15156         echo "migratate to MDT1, then checking.."
15157         for ((i = 0; i < 10; i++)); do
15158                 for file in $(find $migrate_dir/dir_${i}); do
15159                         mdt_index=$($LFS getstripe -m $file)
15160                         [ $mdt_index == $MDTIDX ] ||
15161                                 error "$file is not on MDT${MDTIDX}"
15162                 done
15163         done
15164
15165         # the multiple link file should still in MDT0
15166         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15167         [ $mdt_index == 0 ] ||
15168                 error "$file is not on MDT${MDTIDX}"
15169
15170         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15171         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15172                 error " expect $old_dir_flag get $new_dir_flag"
15173
15174         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15175         [ "$old_file_flag" = "$new_file_flag" ] ||
15176                 error " expect $old_file_flag get $new_file_flag"
15177
15178         local new_dir_mode=$(stat -c%f $migrate_dir)
15179         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15180                 error "expect mode $old_dir_mode get $new_dir_mode"
15181
15182         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15183         [ "$old_file_mode" = "$new_file_mode" ] ||
15184                 error "expect mode $old_file_mode get $new_file_mode"
15185
15186         diff /etc/passwd $migrate_dir/$tfile ||
15187                 error "$tfile different after migration"
15188
15189         diff /etc/passwd $other_dir/luna ||
15190                 error "luna different after migration"
15191
15192         diff /etc/passwd $migrate_dir/sofia ||
15193                 error "sofia different after migration"
15194
15195         diff /etc/passwd $migrate_dir/david ||
15196                 error "david different after migration"
15197
15198         diff /etc/passwd $other_dir/zachary ||
15199                 error "zachary different after migration"
15200
15201         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15202                 error "${tfile}_ln different after migration"
15203
15204         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15205                 error "${tfile}_ln_other different after migration"
15206
15207         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15208         [ $stripe_count = 2 ] ||
15209                 error "dir strpe_count $d != 2 after migration."
15210
15211         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15212         [ $stripe_count = 2 ] ||
15213                 error "file strpe_count $d != 2 after migration."
15214
15215         #migrate back to MDT0
15216         MDTIDX=0
15217
15218         $LFS migrate -m $MDTIDX $migrate_dir ||
15219                 error "fails on migrating remote dir to MDT0"
15220
15221         echo "migrate back to MDT0, checking.."
15222         for file in $(find $migrate_dir); do
15223                 mdt_index=$($LFS getstripe -m $file)
15224                 [ $mdt_index == $MDTIDX ] ||
15225                         error "$file is not on MDT${MDTIDX}"
15226         done
15227
15228         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15229         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15230                 error " expect $old_dir_flag get $new_dir_flag"
15231
15232         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15233         [ "$old_file_flag" = "$new_file_flag" ] ||
15234                 error " expect $old_file_flag get $new_file_flag"
15235
15236         local new_dir_mode=$(stat -c%f $migrate_dir)
15237         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15238                 error "expect mode $old_dir_mode get $new_dir_mode"
15239
15240         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15241         [ "$old_file_mode" = "$new_file_mode" ] ||
15242                 error "expect mode $old_file_mode get $new_file_mode"
15243
15244         diff /etc/passwd ${migrate_dir}/$tfile ||
15245                 error "$tfile different after migration"
15246
15247         diff /etc/passwd ${other_dir}/luna ||
15248                 error "luna different after migration"
15249
15250         diff /etc/passwd ${migrate_dir}/sofia ||
15251                 error "sofia different after migration"
15252
15253         diff /etc/passwd ${other_dir}/zachary ||
15254                 error "zachary different after migration"
15255
15256         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15257                 error "${tfile}_ln different after migration"
15258
15259         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15260                 error "${tfile}_ln_other different after migration"
15261
15262         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15263         [ $stripe_count = 2 ] ||
15264                 error "dir strpe_count $d != 2 after migration."
15265
15266         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15267         [ $stripe_count = 2 ] ||
15268                 error "file strpe_count $d != 2 after migration."
15269
15270         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15271 }
15272 run_test 230b "migrate directory"
15273
15274 test_230c() {
15275         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15276         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15277         remote_mds_nodsh && skip "remote MDS with nodsh"
15278         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15279                 skip "Need MDS version at least 2.11.52"
15280
15281         local MDTIDX=1
15282         local total=3
15283         local mdt_index
15284         local file
15285         local migrate_dir=$DIR/$tdir/migrate_dir
15286
15287         #If migrating directory fails in the middle, all entries of
15288         #the directory is still accessiable.
15289         test_mkdir $DIR/$tdir
15290         test_mkdir -i0 -c1 $migrate_dir
15291         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15292         stat $migrate_dir
15293         createmany -o $migrate_dir/f $total ||
15294                 error "create files under ${migrate_dir} failed"
15295
15296         # fail after migrating top dir, and this will fail only once, so the
15297         # first sub file migration will fail (currently f3), others succeed.
15298         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15299         do_facet mds1 lctl set_param fail_loc=0x1801
15300         local t=$(ls $migrate_dir | wc -l)
15301         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15302                 error "migrate should fail"
15303         local u=$(ls $migrate_dir | wc -l)
15304         [ "$u" == "$t" ] || error "$u != $t during migration"
15305
15306         # add new dir/file should succeed
15307         mkdir $migrate_dir/dir ||
15308                 error "mkdir failed under migrating directory"
15309         touch $migrate_dir/file ||
15310                 error "create file failed under migrating directory"
15311
15312         # add file with existing name should fail
15313         for file in $migrate_dir/f*; do
15314                 stat $file > /dev/null || error "stat $file failed"
15315                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15316                         error "open(O_CREAT|O_EXCL) $file should fail"
15317                 $MULTIOP $file m && error "create $file should fail"
15318                 touch $DIR/$tdir/remote_dir/$tfile ||
15319                         error "touch $tfile failed"
15320                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15321                         error "link $file should fail"
15322                 mdt_index=$($LFS getstripe -m $file)
15323                 if [ $mdt_index == 0 ]; then
15324                         # file failed to migrate is not allowed to rename to
15325                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15326                                 error "rename to $file should fail"
15327                 else
15328                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15329                                 error "rename to $file failed"
15330                 fi
15331                 echo hello >> $file || error "write $file failed"
15332         done
15333
15334         # resume migration with different options should fail
15335         $LFS migrate -m 0 $migrate_dir &&
15336                 error "migrate -m 0 $migrate_dir should fail"
15337
15338         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15339                 error "migrate -c 2 $migrate_dir should fail"
15340
15341         # resume migration should succeed
15342         $LFS migrate -m $MDTIDX $migrate_dir ||
15343                 error "migrate $migrate_dir failed"
15344
15345         echo "Finish migration, then checking.."
15346         for file in $(find $migrate_dir); do
15347                 mdt_index=$($LFS getstripe -m $file)
15348                 [ $mdt_index == $MDTIDX ] ||
15349                         error "$file is not on MDT${MDTIDX}"
15350         done
15351
15352         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15353 }
15354 run_test 230c "check directory accessiblity if migration failed"
15355
15356 test_230d() {
15357         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15358         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15359         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15360                 skip "Need MDS version at least 2.11.52"
15361         # LU-11235
15362         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
15363
15364         local migrate_dir=$DIR/$tdir/migrate_dir
15365         local old_index
15366         local new_index
15367         local old_count
15368         local new_count
15369         local new_hash
15370         local mdt_index
15371         local i
15372         local j
15373
15374         old_index=$((RANDOM % MDSCOUNT))
15375         old_count=$((MDSCOUNT - old_index))
15376         new_index=$((RANDOM % MDSCOUNT))
15377         new_count=$((MDSCOUNT - new_index))
15378         new_hash="all_char"
15379
15380         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15381         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15382
15383         test_mkdir $DIR/$tdir
15384         test_mkdir -i $old_index -c $old_count $migrate_dir
15385
15386         for ((i=0; i<100; i++)); do
15387                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15388                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15389                         error "create files under remote dir failed $i"
15390         done
15391
15392         echo -n "Migrate from MDT$old_index "
15393         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15394         echo -n "to MDT$new_index"
15395         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15396         echo
15397
15398         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15399         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15400                 error "migrate remote dir error"
15401
15402         echo "Finish migration, then checking.."
15403         for file in $(find $migrate_dir); do
15404                 mdt_index=$($LFS getstripe -m $file)
15405                 if [ $mdt_index -lt $new_index ] ||
15406                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15407                         error "$file is on MDT$mdt_index"
15408                 fi
15409         done
15410
15411         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15412 }
15413 run_test 230d "check migrate big directory"
15414
15415 test_230e() {
15416         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15417         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15418         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15419                 skip "Need MDS version at least 2.11.52"
15420
15421         local i
15422         local j
15423         local a_fid
15424         local b_fid
15425
15426         mkdir -p $DIR/$tdir
15427         mkdir $DIR/$tdir/migrate_dir
15428         mkdir $DIR/$tdir/other_dir
15429         touch $DIR/$tdir/migrate_dir/a
15430         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15431         ls $DIR/$tdir/other_dir
15432
15433         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15434                 error "migrate dir fails"
15435
15436         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15437         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15438
15439         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15440         [ $mdt_index == 0 ] || error "a is not on MDT0"
15441
15442         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15443                 error "migrate dir fails"
15444
15445         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15446         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15447
15448         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15449         [ $mdt_index == 1 ] || error "a is not on MDT1"
15450
15451         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15452         [ $mdt_index == 1 ] || error "b is not on MDT1"
15453
15454         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15455         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15456
15457         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15458
15459         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15460 }
15461 run_test 230e "migrate mulitple local link files"
15462
15463 test_230f() {
15464         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15465         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15466         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15467                 skip "Need MDS version at least 2.11.52"
15468
15469         local a_fid
15470         local ln_fid
15471
15472         mkdir -p $DIR/$tdir
15473         mkdir $DIR/$tdir/migrate_dir
15474         $LFS mkdir -i1 $DIR/$tdir/other_dir
15475         touch $DIR/$tdir/migrate_dir/a
15476         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15477         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15478         ls $DIR/$tdir/other_dir
15479
15480         # a should be migrated to MDT1, since no other links on MDT0
15481         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15482                 error "#1 migrate dir fails"
15483         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15484         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15485         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15486         [ $mdt_index == 1 ] || error "a is not on MDT1"
15487
15488         # a should stay on MDT1, because it is a mulitple link file
15489         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15490                 error "#2 migrate dir fails"
15491         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15492         [ $mdt_index == 1 ] || error "a is not on MDT1"
15493
15494         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15495                 error "#3 migrate dir fails"
15496
15497         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15498         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15499         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15500
15501         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15502         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15503
15504         # a should be migrated to MDT0, since no other links on MDT1
15505         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15506                 error "#4 migrate dir fails"
15507         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15508         [ $mdt_index == 0 ] || error "a is not on MDT0"
15509
15510         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15511 }
15512 run_test 230f "migrate mulitple remote link files"
15513
15514 test_230g() {
15515         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15516         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15517         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15518                 skip "Need MDS version at least 2.11.52"
15519
15520         mkdir -p $DIR/$tdir/migrate_dir
15521
15522         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15523                 error "migrating dir to non-exist MDT succeeds"
15524         true
15525 }
15526 run_test 230g "migrate dir to non-exist MDT"
15527
15528 test_230h() {
15529         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15530         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15531         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15532                 skip "Need MDS version at least 2.11.52"
15533
15534         local mdt_index
15535
15536         mkdir -p $DIR/$tdir/migrate_dir
15537
15538         $LFS migrate -m1 $DIR &&
15539                 error "migrating mountpoint1 should fail"
15540
15541         $LFS migrate -m1 $DIR/$tdir/.. &&
15542                 error "migrating mountpoint2 should fail"
15543
15544         # same as mv
15545         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15546                 error "migrating $tdir/migrate_dir/.. should fail"
15547
15548         true
15549 }
15550 run_test 230h "migrate .. and root"
15551
15552 test_230i() {
15553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15554         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15555         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15556                 skip "Need MDS version at least 2.11.52"
15557
15558         mkdir -p $DIR/$tdir/migrate_dir
15559
15560         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15561                 error "migration fails with a tailing slash"
15562
15563         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15564                 error "migration fails with two tailing slashes"
15565 }
15566 run_test 230i "lfs migrate -m tolerates trailing slashes"
15567
15568 test_230j() {
15569         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15570         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15571                 skip "Need MDS version at least 2.11.52"
15572
15573         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15574         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15575                 error "create $tfile failed"
15576         cat /etc/passwd > $DIR/$tdir/$tfile
15577
15578         $LFS migrate -m 1 $DIR/$tdir
15579
15580         cmp /etc/passwd $DIR/$tdir/$tfile ||
15581                 error "DoM file mismatch after migration"
15582 }
15583 run_test 230j "DoM file data not changed after dir migration"
15584
15585 test_230k() {
15586         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15587         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15588                 skip "Need MDS version at least 2.11.56"
15589
15590         local total=20
15591         local files_on_starting_mdt=0
15592
15593         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15594         $LFS getdirstripe $DIR/$tdir
15595         for i in $(seq $total); do
15596                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15597                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15598                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15599         done
15600
15601         echo "$files_on_starting_mdt files on MDT0"
15602
15603         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15604         $LFS getdirstripe $DIR/$tdir
15605
15606         files_on_starting_mdt=0
15607         for i in $(seq $total); do
15608                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15609                         error "file $tfile.$i mismatch after migration"
15610                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15611                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15612         done
15613
15614         echo "$files_on_starting_mdt files on MDT1 after migration"
15615         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15616
15617         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15618         $LFS getdirstripe $DIR/$tdir
15619
15620         files_on_starting_mdt=0
15621         for i in $(seq $total); do
15622                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15623                         error "file $tfile.$i mismatch after 2nd migration"
15624                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15625                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15626         done
15627
15628         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15629         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15630
15631         true
15632 }
15633 run_test 230k "file data not changed after dir migration"
15634
15635 test_230l() {
15636         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15637         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15638                 skip "Need MDS version at least 2.11.56"
15639
15640         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15641         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15642                 error "create files under remote dir failed $i"
15643         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15644 }
15645 run_test 230l "readdir between MDTs won't crash"
15646
15647 test_231a()
15648 {
15649         # For simplicity this test assumes that max_pages_per_rpc
15650         # is the same across all OSCs
15651         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15652         local bulk_size=$((max_pages * PAGE_SIZE))
15653         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15654                                        head -n 1)
15655
15656         mkdir -p $DIR/$tdir
15657         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15658                 error "failed to set stripe with -S ${brw_size}M option"
15659
15660         # clear the OSC stats
15661         $LCTL set_param osc.*.stats=0 &>/dev/null
15662         stop_writeback
15663
15664         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15665         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15666                 oflag=direct &>/dev/null || error "dd failed"
15667
15668         sync; sleep 1; sync # just to be safe
15669         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15670         if [ x$nrpcs != "x1" ]; then
15671                 $LCTL get_param osc.*.stats
15672                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15673         fi
15674
15675         start_writeback
15676         # Drop the OSC cache, otherwise we will read from it
15677         cancel_lru_locks osc
15678
15679         # clear the OSC stats
15680         $LCTL set_param osc.*.stats=0 &>/dev/null
15681
15682         # Client reads $bulk_size.
15683         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15684                 iflag=direct &>/dev/null || error "dd failed"
15685
15686         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15687         if [ x$nrpcs != "x1" ]; then
15688                 $LCTL get_param osc.*.stats
15689                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15690         fi
15691 }
15692 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15693
15694 test_231b() {
15695         mkdir -p $DIR/$tdir
15696         local i
15697         for i in {0..1023}; do
15698                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15699                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15700                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15701         done
15702         sync
15703 }
15704 run_test 231b "must not assert on fully utilized OST request buffer"
15705
15706 test_232a() {
15707         mkdir -p $DIR/$tdir
15708         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15709
15710         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15711         do_facet ost1 $LCTL set_param fail_loc=0x31c
15712
15713         # ignore dd failure
15714         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15715
15716         do_facet ost1 $LCTL set_param fail_loc=0
15717         umount_client $MOUNT || error "umount failed"
15718         mount_client $MOUNT || error "mount failed"
15719         stop ost1 || error "cannot stop ost1"
15720         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15721 }
15722 run_test 232a "failed lock should not block umount"
15723
15724 test_232b() {
15725         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
15726                 skip "Need MDS version at least 2.10.58"
15727
15728         mkdir -p $DIR/$tdir
15729         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15730         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15731         sync
15732         cancel_lru_locks osc
15733
15734         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15735         do_facet ost1 $LCTL set_param fail_loc=0x31c
15736
15737         # ignore failure
15738         $LFS data_version $DIR/$tdir/$tfile || true
15739
15740         do_facet ost1 $LCTL set_param fail_loc=0
15741         umount_client $MOUNT || error "umount failed"
15742         mount_client $MOUNT || error "mount failed"
15743         stop ost1 || error "cannot stop ost1"
15744         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15745 }
15746 run_test 232b "failed data version lock should not block umount"
15747
15748 test_233a() {
15749         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
15750                 skip "Need MDS version at least 2.3.64"
15751         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15752
15753         local fid=$($LFS path2fid $MOUNT)
15754
15755         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15756                 error "cannot access $MOUNT using its FID '$fid'"
15757 }
15758 run_test 233a "checking that OBF of the FS root succeeds"
15759
15760 test_233b() {
15761         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
15762                 skip "Need MDS version at least 2.5.90"
15763         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15764
15765         local fid=$($LFS path2fid $MOUNT/.lustre)
15766
15767         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15768                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15769
15770         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15771         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15772                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15773 }
15774 run_test 233b "checking that OBF of the FS .lustre succeeds"
15775
15776 test_234() {
15777         local p="$TMP/sanityN-$TESTNAME.parameters"
15778         save_lustre_params client "llite.*.xattr_cache" > $p
15779         lctl set_param llite.*.xattr_cache 1 ||
15780                 skip_env "xattr cache is not supported"
15781
15782         mkdir -p $DIR/$tdir || error "mkdir failed"
15783         touch $DIR/$tdir/$tfile || error "touch failed"
15784         # OBD_FAIL_LLITE_XATTR_ENOMEM
15785         $LCTL set_param fail_loc=0x1405
15786         getfattr -n user.attr $DIR/$tdir/$tfile &&
15787                 error "getfattr should have failed with ENOMEM"
15788         $LCTL set_param fail_loc=0x0
15789         rm -rf $DIR/$tdir
15790
15791         restore_lustre_params < $p
15792         rm -f $p
15793 }
15794 run_test 234 "xattr cache should not crash on ENOMEM"
15795
15796 test_235() {
15797         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
15798                 skip "Need MDS version at least 2.4.52"
15799
15800         flock_deadlock $DIR/$tfile
15801         local RC=$?
15802         case $RC in
15803                 0)
15804                 ;;
15805                 124) error "process hangs on a deadlock"
15806                 ;;
15807                 *) error "error executing flock_deadlock $DIR/$tfile"
15808                 ;;
15809         esac
15810 }
15811 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15812
15813 #LU-2935
15814 test_236() {
15815         check_swap_layouts_support
15816
15817         local ref1=/etc/passwd
15818         local ref2=/etc/group
15819         local file1=$DIR/$tdir/f1
15820         local file2=$DIR/$tdir/f2
15821
15822         test_mkdir -c1 $DIR/$tdir
15823         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15824         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15825         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15826         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15827         local fd=$(free_fd)
15828         local cmd="exec $fd<>$file2"
15829         eval $cmd
15830         rm $file2
15831         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15832                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15833         cmd="exec $fd>&-"
15834         eval $cmd
15835         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15836
15837         #cleanup
15838         rm -rf $DIR/$tdir
15839 }
15840 run_test 236 "Layout swap on open unlinked file"
15841
15842 # LU-4659 linkea consistency
15843 test_238() {
15844         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
15845                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
15846                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
15847                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15848
15849         touch $DIR/$tfile
15850         ln $DIR/$tfile $DIR/$tfile.lnk
15851         touch $DIR/$tfile.new
15852         mv $DIR/$tfile.new $DIR/$tfile
15853         local fid1=$($LFS path2fid $DIR/$tfile)
15854         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15855         local path1=$($LFS fid2path $FSNAME "$fid1")
15856         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15857         local path2=$($LFS fid2path $FSNAME "$fid2")
15858         [ $tfile.lnk == $path2 ] ||
15859                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15860         rm -f $DIR/$tfile*
15861 }
15862 run_test 238 "Verify linkea consistency"
15863
15864 test_239A() { # was test_239
15865         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
15866                 skip "Need MDS version at least 2.5.60"
15867
15868         local list=$(comma_list $(mdts_nodes))
15869
15870         mkdir -p $DIR/$tdir
15871         createmany -o $DIR/$tdir/f- 5000
15872         unlinkmany $DIR/$tdir/f- 5000
15873         [ $MDS1_VERSION -gt $(version_code 2.10.53) ] &&
15874                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15875         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15876                         osp.*MDT*.sync_in_flight" | calc_sum)
15877         [ "$changes" -eq 0 ] || error "$changes not synced"
15878 }
15879 run_test 239A "osp_sync test"
15880
15881 test_239a() { #LU-5297
15882         remote_mds_nodsh && skip "remote MDS with nodsh"
15883
15884         touch $DIR/$tfile
15885         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15886         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15887         chgrp $RUNAS_GID $DIR/$tfile
15888         wait_delete_completed
15889 }
15890 run_test 239a "process invalid osp sync record correctly"
15891
15892 test_239b() { #LU-5297
15893         remote_mds_nodsh && skip "remote MDS with nodsh"
15894
15895         touch $DIR/$tfile1
15896         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15897         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15898         chgrp $RUNAS_GID $DIR/$tfile1
15899         wait_delete_completed
15900         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15901         touch $DIR/$tfile2
15902         chgrp $RUNAS_GID $DIR/$tfile2
15903         wait_delete_completed
15904 }
15905 run_test 239b "process osp sync record with ENOMEM error correctly"
15906
15907 test_240() {
15908         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15909         remote_mds_nodsh && skip "remote MDS with nodsh"
15910
15911         mkdir -p $DIR/$tdir
15912
15913         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15914                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15915         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15916                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15917
15918         umount_client $MOUNT || error "umount failed"
15919         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15920         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15921         mount_client $MOUNT || error "failed to mount client"
15922
15923         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15924         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15925 }
15926 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15927
15928 test_241_bio() {
15929         local count=$1
15930         local bsize=$2
15931
15932         for LOOP in $(seq $count); do
15933                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15934                 cancel_lru_locks $OSC || true
15935         done
15936 }
15937
15938 test_241_dio() {
15939         local count=$1
15940         local bsize=$2
15941
15942         for LOOP in $(seq $1); do
15943                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15944                         2>/dev/null
15945         done
15946 }
15947
15948 test_241a() { # was test_241
15949         local bsize=$PAGE_SIZE
15950
15951         (( bsize < 40960 )) && bsize=40960
15952         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15953         ls -la $DIR/$tfile
15954         cancel_lru_locks $OSC
15955         test_241_bio 1000 $bsize &
15956         PID=$!
15957         test_241_dio 1000 $bsize
15958         wait $PID
15959 }
15960 run_test 241a "bio vs dio"
15961
15962 test_241b() {
15963         local bsize=$PAGE_SIZE
15964
15965         (( bsize < 40960 )) && bsize=40960
15966         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15967         ls -la $DIR/$tfile
15968         test_241_dio 1000 $bsize &
15969         PID=$!
15970         test_241_dio 1000 $bsize
15971         wait $PID
15972 }
15973 run_test 241b "dio vs dio"
15974
15975 test_242() {
15976         remote_mds_nodsh && skip "remote MDS with nodsh"
15977
15978         mkdir -p $DIR/$tdir
15979         touch $DIR/$tdir/$tfile
15980
15981         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
15982         do_facet mds1 lctl set_param fail_loc=0x105
15983         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
15984
15985         do_facet mds1 lctl set_param fail_loc=0
15986         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
15987 }
15988 run_test 242 "mdt_readpage failure should not cause directory unreadable"
15989
15990 test_243()
15991 {
15992         test_mkdir $DIR/$tdir
15993         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
15994 }
15995 run_test 243 "various group lock tests"
15996
15997 test_244()
15998 {
15999         test_mkdir $DIR/$tdir
16000         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
16001         sendfile_grouplock $DIR/$tdir/$tfile || \
16002                 error "sendfile+grouplock failed"
16003         rm -rf $DIR/$tdir
16004 }
16005 run_test 244 "sendfile with group lock tests"
16006
16007 test_245() {
16008         local flagname="multi_mod_rpcs"
16009         local connect_data_name="max_mod_rpcs"
16010         local out
16011
16012         # check if multiple modify RPCs flag is set
16013         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
16014                 grep "connect_flags:")
16015         echo "$out"
16016
16017         echo "$out" | grep -qw $flagname
16018         if [ $? -ne 0 ]; then
16019                 echo "connect flag $flagname is not set"
16020                 return
16021         fi
16022
16023         # check if multiple modify RPCs data is set
16024         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
16025         echo "$out"
16026
16027         echo "$out" | grep -qw $connect_data_name ||
16028                 error "import should have connect data $connect_data_name"
16029 }
16030 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
16031
16032 test_246() { # LU-7371
16033         remote_ost_nodsh && skip "remote OST with nodsh"
16034         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
16035                 skip "Need OST version >= 2.7.62"
16036
16037         do_facet ost1 $LCTL set_param fail_val=4095
16038 #define OBD_FAIL_OST_READ_SIZE          0x234
16039         do_facet ost1 $LCTL set_param fail_loc=0x234
16040         $LFS setstripe $DIR/$tfile -i 0 -c 1
16041         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
16042         cancel_lru_locks $FSNAME-OST0000
16043         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
16044 }
16045 run_test 246 "Read file of size 4095 should return right length"
16046
16047 cleanup_247() {
16048         local submount=$1
16049
16050         trap 0
16051         umount_client $submount
16052         rmdir $submount
16053 }
16054
16055 test_247a() {
16056         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16057                 grep -q subtree ||
16058                 skip_env "Fileset feature is not supported"
16059
16060         local submount=${MOUNT}_$tdir
16061
16062         mkdir $MOUNT/$tdir
16063         mkdir -p $submount || error "mkdir $submount failed"
16064         FILESET="$FILESET/$tdir" mount_client $submount ||
16065                 error "mount $submount failed"
16066         trap "cleanup_247 $submount" EXIT
16067         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16068         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16069                 error "read $MOUNT/$tdir/$tfile failed"
16070         cleanup_247 $submount
16071 }
16072 run_test 247a "mount subdir as fileset"
16073
16074 test_247b() {
16075         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16076                 skip_env "Fileset feature is not supported"
16077
16078         local submount=${MOUNT}_$tdir
16079
16080         rm -rf $MOUNT/$tdir
16081         mkdir -p $submount || error "mkdir $submount failed"
16082         SKIP_FILESET=1
16083         FILESET="$FILESET/$tdir" mount_client $submount &&
16084                 error "mount $submount should fail"
16085         rmdir $submount
16086 }
16087 run_test 247b "mount subdir that dose not exist"
16088
16089 test_247c() {
16090         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16091                 skip_env "Fileset feature is not supported"
16092
16093         local submount=${MOUNT}_$tdir
16094
16095         mkdir -p $MOUNT/$tdir/dir1
16096         mkdir -p $submount || error "mkdir $submount failed"
16097         trap "cleanup_247 $submount" EXIT
16098         FILESET="$FILESET/$tdir" mount_client $submount ||
16099                 error "mount $submount failed"
16100         local fid=$($LFS path2fid $MOUNT/)
16101         $LFS fid2path $submount $fid && error "fid2path should fail"
16102         cleanup_247 $submount
16103 }
16104 run_test 247c "running fid2path outside root"
16105
16106 test_247d() {
16107         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16108                 skip "Fileset feature is not supported"
16109
16110         local submount=${MOUNT}_$tdir
16111
16112         mkdir -p $MOUNT/$tdir/dir1
16113         mkdir -p $submount || error "mkdir $submount failed"
16114         FILESET="$FILESET/$tdir" mount_client $submount ||
16115                 error "mount $submount failed"
16116         trap "cleanup_247 $submount" EXIT
16117         local fid=$($LFS path2fid $submount/dir1)
16118         $LFS fid2path $submount $fid || error "fid2path should succeed"
16119         cleanup_247 $submount
16120 }
16121 run_test 247d "running fid2path inside root"
16122
16123 # LU-8037
16124 test_247e() {
16125         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16126                 grep -q subtree ||
16127                 skip "Fileset feature is not supported"
16128
16129         local submount=${MOUNT}_$tdir
16130
16131         mkdir $MOUNT/$tdir
16132         mkdir -p $submount || error "mkdir $submount failed"
16133         FILESET="$FILESET/.." mount_client $submount &&
16134                 error "mount $submount should fail"
16135         rmdir $submount
16136 }
16137 run_test 247e "mount .. as fileset"
16138
16139 test_248() {
16140         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16141         [ -z "$fast_read_sav" ] && skip "no fast read support"
16142
16143         # create a large file for fast read verification
16144         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16145
16146         # make sure the file is created correctly
16147         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16148                 { rm -f $DIR/$tfile; skip "file creation error"; }
16149
16150         echo "Test 1: verify that fast read is 4 times faster on cache read"
16151
16152         # small read with fast read enabled
16153         $LCTL set_param -n llite.*.fast_read=1
16154         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16155                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16156                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16157         # small read with fast read disabled
16158         $LCTL set_param -n llite.*.fast_read=0
16159         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16160                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16161                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16162
16163         # verify that fast read is 4 times faster for cache read
16164         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16165                 error_not_in_vm "fast read was not 4 times faster: " \
16166                            "$t_fast vs $t_slow"
16167
16168         echo "Test 2: verify the performance between big and small read"
16169         $LCTL set_param -n llite.*.fast_read=1
16170
16171         # 1k non-cache read
16172         cancel_lru_locks osc
16173         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16174                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16175                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16176
16177         # 1M non-cache read
16178         cancel_lru_locks osc
16179         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16180                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16181                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16182
16183         # verify that big IO is not 4 times faster than small IO
16184         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16185                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16186
16187         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16188         rm -f $DIR/$tfile
16189 }
16190 run_test 248 "fast read verification"
16191
16192 test_249() { # LU-7890
16193         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16194                 skip "Need at least version 2.8.54"
16195
16196         rm -f $DIR/$tfile
16197         $SETSTRIPE -c 1 $DIR/$tfile
16198         # Offset 2T == 4k * 512M
16199         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16200                 error "dd to 2T offset failed"
16201 }
16202 run_test 249 "Write above 2T file size"
16203
16204 test_250() {
16205         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
16206          && skip "no 16TB file size limit on ZFS"
16207
16208         $SETSTRIPE -c 1 $DIR/$tfile
16209         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16210         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16211         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16212         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16213                 conv=notrunc,fsync && error "append succeeded"
16214         return 0
16215 }
16216 run_test 250 "Write above 16T limit"
16217
16218 test_251() {
16219         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
16220
16221         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16222         #Skip once - writing the first stripe will succeed
16223         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16224         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16225                 error "short write happened"
16226
16227         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16228         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16229                 error "short read happened"
16230
16231         rm -f $DIR/$tfile
16232 }
16233 run_test 251 "Handling short read and write correctly"
16234
16235 test_252() {
16236         remote_mds_nodsh && skip "remote MDS with nodsh"
16237         remote_ost_nodsh && skip "remote OST with nodsh"
16238         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16239                 skip_env "ldiskfs only test"
16240         fi
16241
16242         local tgt
16243         local dev
16244         local out
16245         local uuid
16246         local num
16247         local gen
16248
16249         # check lr_reader on OST0000
16250         tgt=ost1
16251         dev=$(facet_device $tgt)
16252         out=$(do_facet $tgt $LR_READER $dev)
16253         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16254         echo "$out"
16255         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16256         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16257                 error "Invalid uuid returned by $LR_READER on target $tgt"
16258         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16259
16260         # check lr_reader -c on MDT0000
16261         tgt=mds1
16262         dev=$(facet_device $tgt)
16263         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16264                 skip "$LR_READER does not support additional options"
16265         fi
16266         out=$(do_facet $tgt $LR_READER -c $dev)
16267         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16268         echo "$out"
16269         num=$(echo "$out" | grep -c "mdtlov")
16270         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16271                 error "Invalid number of mdtlov clients returned by $LR_READER"
16272         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16273
16274         # check lr_reader -cr on MDT0000
16275         out=$(do_facet $tgt $LR_READER -cr $dev)
16276         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16277         echo "$out"
16278         echo "$out" | grep -q "^reply_data:$" ||
16279                 error "$LR_READER should have returned 'reply_data' section"
16280         num=$(echo "$out" | grep -c "client_generation")
16281         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16282 }
16283 run_test 252 "check lr_reader tool"
16284
16285 test_253_fill_ost() {
16286         local size_mb #how many MB should we write to pass watermark
16287         local lwm=$3  #low watermark
16288         local free_10mb #10% of free space
16289
16290         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16291         size_mb=$((free_kb / 1024 - lwm))
16292         free_10mb=$((free_kb / 10240))
16293         #If 10% of free space cross low watermark use it
16294         if (( free_10mb > size_mb )); then
16295                 size_mb=$free_10mb
16296         else
16297                 #At least we need to store 1.1 of difference between
16298                 #free space and low watermark
16299                 size_mb=$((size_mb + size_mb / 10))
16300         fi
16301         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16302                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16303                          oflag=append conv=notrunc
16304         fi
16305
16306         sleep_maxage
16307
16308         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16309         echo "OST still has $((free_kb / 1024)) mbytes free"
16310 }
16311
16312 test_253() {
16313         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16314         remote_mds_nodsh && skip "remote MDS with nodsh"
16315         remote_mgs_nodsh && skip "remote MGS with nodsh"
16316
16317         local ostidx=0
16318         local rc=0
16319
16320         local ost_name=$($LFS osts |
16321                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16322         # on the mdt's osc
16323         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16324         do_facet $SINGLEMDS $LCTL get_param -n \
16325                 osp.$mdtosc_proc1.reserved_mb_high ||
16326                 skip  "remote MDS does not support reserved_mb_high"
16327
16328         rm -rf $DIR/$tdir
16329         wait_mds_ost_sync
16330         wait_delete_completed
16331         mkdir $DIR/$tdir
16332
16333         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16334                         osp.$mdtosc_proc1.reserved_mb_high)
16335         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16336                         osp.$mdtosc_proc1.reserved_mb_low)
16337         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16338
16339         if ! combined_mgs_mds ; then
16340                 mount_mgs_client
16341         fi
16342         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16343         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16344                 error "Adding $ost_name to pool failed"
16345
16346         # Wait for client to see a OST at pool
16347         wait_update $HOSTNAME "$LCTL get_param -n
16348                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16349                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16350                 error "Client can not see the pool"
16351         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16352                 error "Setstripe failed"
16353
16354         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16355         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16356         echo "OST still has $((blocks/1024)) mbytes free"
16357
16358         local new_lwm=$((blocks/1024-10))
16359         do_facet $SINGLEMDS $LCTL set_param \
16360                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16361         do_facet $SINGLEMDS $LCTL set_param \
16362                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16363
16364         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16365
16366         #First enospc could execute orphan deletion so repeat.
16367         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16368
16369         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16370                         osp.$mdtosc_proc1.prealloc_status)
16371         echo "prealloc_status $oa_status"
16372
16373         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16374                 error "File creation should fail"
16375         #object allocation was stopped, but we still able to append files
16376         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16377                 error "Append failed"
16378         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16379
16380         wait_delete_completed
16381
16382         sleep_maxage
16383
16384         for i in $(seq 10 12); do
16385                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16386                         error "File creation failed after rm";
16387         done
16388
16389         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16390                         osp.$mdtosc_proc1.prealloc_status)
16391         echo "prealloc_status $oa_status"
16392
16393         if (( oa_status != 0 )); then
16394                 error "Object allocation still disable after rm"
16395         fi
16396         do_facet $SINGLEMDS $LCTL set_param \
16397                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16398         do_facet $SINGLEMDS $LCTL set_param \
16399                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16400
16401
16402         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16403                 error "Remove $ost_name from pool failed"
16404         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16405                 error "Pool destroy fialed"
16406
16407         if ! combined_mgs_mds ; then
16408                 umount_mgs_client
16409         fi
16410 }
16411 run_test 253 "Check object allocation limit"
16412
16413 test_254() {
16414         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16415         remote_mds_nodsh && skip "remote MDS with nodsh"
16416         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16417                 skip "MDS does not support changelog_size"
16418
16419         local cl_user
16420         local MDT0=$(facet_svc $SINGLEMDS)
16421
16422         changelog_register || error "changelog_register failed"
16423
16424         changelog_clear 0 || error "changelog_clear failed"
16425
16426         local size1=$(do_facet $SINGLEMDS \
16427                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16428         echo "Changelog size $size1"
16429
16430         rm -rf $DIR/$tdir
16431         $LFS mkdir -i 0 $DIR/$tdir
16432         # change something
16433         mkdir -p $DIR/$tdir/pics/2008/zachy
16434         touch $DIR/$tdir/pics/2008/zachy/timestamp
16435         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16436         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16437         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16438         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16439         rm $DIR/$tdir/pics/desktop.jpg
16440
16441         local size2=$(do_facet $SINGLEMDS \
16442                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16443         echo "Changelog size after work $size2"
16444
16445         (( $size2 > $size1 )) ||
16446                 error "new Changelog size=$size2 less than old size=$size1"
16447 }
16448 run_test 254 "Check changelog size"
16449
16450 ladvise_no_type()
16451 {
16452         local type=$1
16453         local file=$2
16454
16455         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16456                 awk -F: '{print $2}' | grep $type > /dev/null
16457         if [ $? -ne 0 ]; then
16458                 return 0
16459         fi
16460         return 1
16461 }
16462
16463 ladvise_no_ioctl()
16464 {
16465         local file=$1
16466
16467         lfs ladvise -a willread $file > /dev/null 2>&1
16468         if [ $? -eq 0 ]; then
16469                 return 1
16470         fi
16471
16472         lfs ladvise -a willread $file 2>&1 |
16473                 grep "Inappropriate ioctl for device" > /dev/null
16474         if [ $? -eq 0 ]; then
16475                 return 0
16476         fi
16477         return 1
16478 }
16479
16480 percent() {
16481         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16482 }
16483
16484 # run a random read IO workload
16485 # usage: random_read_iops <filename> <filesize> <iosize>
16486 random_read_iops() {
16487         local file=$1
16488         local fsize=$2
16489         local iosize=${3:-4096}
16490
16491         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16492                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16493 }
16494
16495 drop_file_oss_cache() {
16496         local file="$1"
16497         local nodes="$2"
16498
16499         $LFS ladvise -a dontneed $file 2>/dev/null ||
16500                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16501 }
16502
16503 ladvise_willread_performance()
16504 {
16505         local repeat=10
16506         local average_origin=0
16507         local average_cache=0
16508         local average_ladvise=0
16509
16510         for ((i = 1; i <= $repeat; i++)); do
16511                 echo "Iter $i/$repeat: reading without willread hint"
16512                 cancel_lru_locks osc
16513                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16514                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16515                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16516                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16517
16518                 cancel_lru_locks osc
16519                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16520                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16521                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16522
16523                 cancel_lru_locks osc
16524                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16525                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16526                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16527                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16528                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16529         done
16530         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16531         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16532         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16533
16534         speedup_cache=$(percent $average_cache $average_origin)
16535         speedup_ladvise=$(percent $average_ladvise $average_origin)
16536
16537         echo "Average uncached read: $average_origin"
16538         echo "Average speedup with OSS cached read: " \
16539                 "$average_cache = +$speedup_cache%"
16540         echo "Average speedup with ladvise willread: " \
16541                 "$average_ladvise = +$speedup_ladvise%"
16542
16543         local lowest_speedup=20
16544         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16545                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16546                         "got $average_cache%. Skipping ladvise willread check."
16547                 return 0
16548         fi
16549
16550         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16551         # it is still good to run until then to exercise 'ladvise willread'
16552         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16553                 [ "$ost1_FSTYPE" = "zfs" ] &&
16554                 echo "osd-zfs does not support dontneed or drop_caches" &&
16555                 return 0
16556
16557         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16558         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16559                 error_not_in_vm "Speedup with willread is less than " \
16560                         "$lowest_speedup%, got $average_ladvise%"
16561 }
16562
16563 test_255a() {
16564         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16565                 skip "lustre < 2.8.54 does not support ladvise "
16566         remote_ost_nodsh && skip "remote OST with nodsh"
16567
16568         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16569
16570         ladvise_no_type willread $DIR/$tfile &&
16571                 skip "willread ladvise is not supported"
16572
16573         ladvise_no_ioctl $DIR/$tfile &&
16574                 skip "ladvise ioctl is not supported"
16575
16576         local size_mb=100
16577         local size=$((size_mb * 1048576))
16578         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16579                 error "dd to $DIR/$tfile failed"
16580
16581         lfs ladvise -a willread $DIR/$tfile ||
16582                 error "Ladvise failed with no range argument"
16583
16584         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16585                 error "Ladvise failed with no -l or -e argument"
16586
16587         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16588                 error "Ladvise failed with only -e argument"
16589
16590         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16591                 error "Ladvise failed with only -l argument"
16592
16593         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16594                 error "End offset should not be smaller than start offset"
16595
16596         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16597                 error "End offset should not be equal to start offset"
16598
16599         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16600                 error "Ladvise failed with overflowing -s argument"
16601
16602         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16603                 error "Ladvise failed with overflowing -e argument"
16604
16605         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16606                 error "Ladvise failed with overflowing -l argument"
16607
16608         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16609                 error "Ladvise succeeded with conflicting -l and -e arguments"
16610
16611         echo "Synchronous ladvise should wait"
16612         local delay=4
16613 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16614         do_nodes $(comma_list $(osts_nodes)) \
16615                 $LCTL set_param fail_val=$delay fail_loc=0x237
16616
16617         local start_ts=$SECONDS
16618         lfs ladvise -a willread $DIR/$tfile ||
16619                 error "Ladvise failed with no range argument"
16620         local end_ts=$SECONDS
16621         local inteval_ts=$((end_ts - start_ts))
16622
16623         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16624                 error "Synchronous advice didn't wait reply"
16625         fi
16626
16627         echo "Asynchronous ladvise shouldn't wait"
16628         local start_ts=$SECONDS
16629         lfs ladvise -a willread -b $DIR/$tfile ||
16630                 error "Ladvise failed with no range argument"
16631         local end_ts=$SECONDS
16632         local inteval_ts=$((end_ts - start_ts))
16633
16634         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16635                 error "Asynchronous advice blocked"
16636         fi
16637
16638         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16639         ladvise_willread_performance
16640 }
16641 run_test 255a "check 'lfs ladvise -a willread'"
16642
16643 facet_meminfo() {
16644         local facet=$1
16645         local info=$2
16646
16647         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16648 }
16649
16650 test_255b() {
16651         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16652                 skip "lustre < 2.8.54 does not support ladvise "
16653         remote_ost_nodsh && skip "remote OST with nodsh"
16654
16655         lfs setstripe -c 1 -i 0 $DIR/$tfile
16656
16657         ladvise_no_type dontneed $DIR/$tfile &&
16658                 skip "dontneed ladvise is not supported"
16659
16660         ladvise_no_ioctl $DIR/$tfile &&
16661                 skip "ladvise ioctl is not supported"
16662
16663         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16664                 [ "$ost1_FSTYPE" = "zfs" ] &&
16665                 skip "zfs-osd does not support 'ladvise dontneed'"
16666
16667         local size_mb=100
16668         local size=$((size_mb * 1048576))
16669         # In order to prevent disturbance of other processes, only check 3/4
16670         # of the memory usage
16671         local kibibytes=$((size_mb * 1024 * 3 / 4))
16672
16673         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16674                 error "dd to $DIR/$tfile failed"
16675
16676         #force write to complete before dropping OST cache & checking memory
16677         sync
16678
16679         local total=$(facet_meminfo ost1 MemTotal)
16680         echo "Total memory: $total KiB"
16681
16682         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16683         local before_read=$(facet_meminfo ost1 Cached)
16684         echo "Cache used before read: $before_read KiB"
16685
16686         lfs ladvise -a willread $DIR/$tfile ||
16687                 error "Ladvise willread failed"
16688         local after_read=$(facet_meminfo ost1 Cached)
16689         echo "Cache used after read: $after_read KiB"
16690
16691         lfs ladvise -a dontneed $DIR/$tfile ||
16692                 error "Ladvise dontneed again failed"
16693         local no_read=$(facet_meminfo ost1 Cached)
16694         echo "Cache used after dontneed ladvise: $no_read KiB"
16695
16696         if [ $total -lt $((before_read + kibibytes)) ]; then
16697                 echo "Memory is too small, abort checking"
16698                 return 0
16699         fi
16700
16701         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16702                 error "Ladvise willread should use more memory" \
16703                         "than $kibibytes KiB"
16704         fi
16705
16706         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16707                 error "Ladvise dontneed should release more memory" \
16708                         "than $kibibytes KiB"
16709         fi
16710 }
16711 run_test 255b "check 'lfs ladvise -a dontneed'"
16712
16713 test_255c() {
16714         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
16715                 skip "lustre < 2.10.53 does not support lockahead"
16716
16717         local count
16718         local new_count
16719         local difference
16720         local i
16721         local rc
16722
16723         test_mkdir -p $DIR/$tdir
16724         $SETSTRIPE -i 0 $DIR/$tdir
16725
16726         #test 10 returns only success/failure
16727         i=10
16728         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16729         rc=$?
16730         if [ $rc -eq 255 ]; then
16731                 error "Ladvise test${i} failed, ${rc}"
16732         fi
16733
16734         #test 11 counts lock enqueue requests, all others count new locks
16735         i=11
16736         count=$(do_facet ost1 \
16737                 $LCTL get_param -n ost.OSS.ost.stats)
16738         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16739
16740         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16741         rc=$?
16742         if [ $rc -eq 255 ]; then
16743                 error "Ladvise test${i} failed, ${rc}"
16744         fi
16745
16746         new_count=$(do_facet ost1 \
16747                 $LCTL get_param -n ost.OSS.ost.stats)
16748         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16749                    awk '{ print $2 }')
16750
16751         difference="$((new_count - count))"
16752         if [ $difference -ne $rc ]; then
16753                 error "Ladvise test${i}, bad enqueue count, returned " \
16754                       "${rc}, actual ${difference}"
16755         fi
16756
16757         for i in $(seq 12 21); do
16758                 # If we do not do this, we run the risk of having too many
16759                 # locks and starting lock cancellation while we are checking
16760                 # lock counts.
16761                 cancel_lru_locks osc
16762
16763                 count=$($LCTL get_param -n \
16764                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16765
16766                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16767                 rc=$?
16768                 if [ $rc -eq 255 ]; then
16769                         error "Ladvise test ${i} failed, ${rc}"
16770                 fi
16771
16772                 new_count=$($LCTL get_param -n \
16773                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
16774                 difference="$((new_count - count))"
16775
16776                 # Test 15 output is divided by 100 to map down to valid return
16777                 if [ $i -eq 15 ]; then
16778                         rc="$((rc * 100))"
16779                 fi
16780
16781                 if [ $difference -ne $rc ]; then
16782                         error "Ladvise test ${i}, bad lock count, returned " \
16783                               "${rc}, actual ${difference}"
16784                 fi
16785         done
16786
16787         #test 22 returns only success/failure
16788         i=22
16789         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16790         rc=$?
16791         if [ $rc -eq 255 ]; then
16792                 error "Ladvise test${i} failed, ${rc}"
16793         fi
16794 }
16795 run_test 255c "suite of ladvise lockahead tests"
16796
16797 test_256() {
16798         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16799         remote_mds_nodsh && skip "remote MDS with nodsh"
16800         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16801         changelog_users $SINGLEMDS | grep "^cl" &&
16802                 skip "active changelog user"
16803
16804         local cl_user
16805         local cat_sl
16806         local mdt_dev
16807
16808         mdt_dev=$(mdsdevname 1)
16809         echo $mdt_dev
16810
16811         changelog_register || error "changelog_register failed"
16812
16813         rm -rf $DIR/$tdir
16814         mkdir -p $DIR/$tdir
16815
16816         changelog_clear 0 || error "changelog_clear failed"
16817
16818         # change something
16819         touch $DIR/$tdir/{1..10}
16820
16821         # stop the MDT
16822         stop $SINGLEMDS || error "Fail to stop MDT"
16823
16824         # remount the MDT
16825
16826         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16827
16828         #after mount new plainllog is used
16829         touch $DIR/$tdir/{11..19}
16830         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16831         cat_sl=$(do_facet $SINGLEMDS "sync; \
16832                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16833                  llog_reader $tmpfile | grep -c type=1064553b")
16834         do_facet $SINGLEMDS llog_reader $tmpfile
16835
16836         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16837
16838         changelog_clear 0 || error "changelog_clear failed"
16839
16840         cat_sl=$(do_facet $SINGLEMDS "sync; \
16841                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16842                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16843
16844         if (( cat_sl == 2 )); then
16845                 error "Empty plain llog was not deleted from changelog catalog"
16846         elif (( cat_sl != 1 )); then
16847                 error "Active plain llog shouldn't be deleted from catalog"
16848         fi
16849 }
16850 run_test 256 "Check llog delete for empty and not full state"
16851
16852 test_257() {
16853         remote_mds_nodsh && skip "remote MDS with nodsh"
16854         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
16855                 skip "Need MDS version at least 2.8.55"
16856
16857         test_mkdir $DIR/$tdir
16858
16859         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16860                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16861         stat $DIR/$tdir
16862
16863 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16864         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16865         local facet=mds$((mdtidx + 1))
16866         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16867         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16868
16869         stop $facet || error "stop MDS failed"
16870         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16871                 error "start MDS fail"
16872 }
16873 run_test 257 "xattr locks are not lost"
16874
16875 # Verify we take the i_mutex when security requires it
16876 test_258a() {
16877 #define OBD_FAIL_IMUTEX_SEC 0x141c
16878         $LCTL set_param fail_loc=0x141c
16879         touch $DIR/$tfile
16880         chmod u+s $DIR/$tfile
16881         chmod a+rwx $DIR/$tfile
16882         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16883         RC=$?
16884         if [ $RC -ne 0 ]; then
16885                 error "error, failed to take i_mutex, rc=$?"
16886         fi
16887         rm -f $DIR/$tfile
16888 }
16889 run_test 258a
16890
16891 # Verify we do NOT take the i_mutex in the normal case
16892 test_258b() {
16893 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16894         $LCTL set_param fail_loc=0x141d
16895         touch $DIR/$tfile
16896         chmod a+rwx $DIR
16897         chmod a+rw $DIR/$tfile
16898         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16899         RC=$?
16900         if [ $RC -ne 0 ]; then
16901                 error "error, took i_mutex unnecessarily, rc=$?"
16902         fi
16903         rm -f $DIR/$tfile
16904
16905 }
16906 run_test 258b "verify i_mutex security behavior"
16907
16908 test_259() {
16909         local file=$DIR/$tfile
16910         local before
16911         local after
16912
16913         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16914
16915         stack_trap "rm -f $file" EXIT
16916
16917         wait_delete_completed
16918         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16919         echo "before: $before"
16920
16921         $LFS setstripe -i 0 -c 1 $file
16922         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16923         sync_all_data
16924         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16925         echo "after write: $after"
16926
16927 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16928         do_facet ost1 $LCTL set_param fail_loc=0x2301
16929         $TRUNCATE $file 0
16930         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16931         echo "after truncate: $after"
16932
16933         stop ost1
16934         do_facet ost1 $LCTL set_param fail_loc=0
16935         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16936         sleep 2
16937         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16938         echo "after restart: $after"
16939         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16940                 error "missing truncate?"
16941
16942         return 0
16943 }
16944 run_test 259 "crash at delayed truncate"
16945
16946 test_260() {
16947 #define OBD_FAIL_MDC_CLOSE               0x806
16948         $LCTL set_param fail_loc=0x80000806
16949         touch $DIR/$tfile
16950
16951 }
16952 run_test 260 "Check mdc_close fail"
16953
16954 ### Data-on-MDT sanity tests ###
16955 test_270a() {
16956         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16957                 skip "Need MDS version at least 2.10.55 for DoM"
16958
16959         # create DoM file
16960         local dom=$DIR/$tdir/dom_file
16961         local tmp=$DIR/$tdir/tmp_file
16962
16963         mkdir -p $DIR/$tdir
16964
16965         # basic checks for DoM component creation
16966         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
16967                 error "Can set MDT layout to non-first entry"
16968
16969         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
16970                 error "Can define multiple entries as MDT layout"
16971
16972         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
16973
16974         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
16975         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
16976         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
16977
16978         local mdtidx=$($LFS getstripe -m $dom)
16979         local mdtname=MDT$(printf %04x $mdtidx)
16980         local facet=mds$((mdtidx + 1))
16981         local space_check=1
16982
16983         # Skip free space checks with ZFS
16984         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
16985
16986         # write
16987         sync
16988         local size_tmp=$((65536 * 3))
16989         local mdtfree1=$(do_facet $facet \
16990                          lctl get_param -n osd*.*$mdtname.kbytesfree)
16991
16992         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
16993         # check also direct IO along write
16994         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
16995         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
16996         sync
16997         cmp $tmp $dom || error "file data is different"
16998         [ $(stat -c%s $dom) == $size_tmp ] ||
16999                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17000         if [ $space_check == 1 ]; then
17001                 local mdtfree2=$(do_facet $facet \
17002                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
17003
17004                 # increase in usage from by $size_tmp
17005                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17006                         error "MDT free space wrong after write: " \
17007                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17008         fi
17009
17010         # truncate
17011         local size_dom=10000
17012
17013         $TRUNCATE $dom $size_dom
17014         [ $(stat -c%s $dom) == $size_dom ] ||
17015                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
17016         if [ $space_check == 1 ]; then
17017                 mdtfree1=$(do_facet $facet \
17018                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17019                 # decrease in usage from $size_tmp to new $size_dom
17020                 [ $(($mdtfree1 - $mdtfree2)) -ge \
17021                   $(((size_tmp - size_dom) / 1024)) ] ||
17022                         error "MDT free space is wrong after truncate: " \
17023                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
17024         fi
17025
17026         # append
17027         cat $tmp >> $dom
17028         sync
17029         size_dom=$((size_dom + size_tmp))
17030         [ $(stat -c%s $dom) == $size_dom ] ||
17031                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
17032         if [ $space_check == 1 ]; then
17033                 mdtfree2=$(do_facet $facet \
17034                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17035                 # increase in usage by $size_tmp from previous
17036                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17037                         error "MDT free space is wrong after append: " \
17038                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17039         fi
17040
17041         # delete
17042         rm $dom
17043         if [ $space_check == 1 ]; then
17044                 mdtfree1=$(do_facet $facet \
17045                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17046                 # decrease in usage by $size_dom from previous
17047                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
17048                         error "MDT free space is wrong after removal: " \
17049                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
17050         fi
17051
17052         # combined striping
17053         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
17054                 error "Can't create DoM + OST striping"
17055
17056         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
17057         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17058         # check also direct IO along write
17059         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17060         sync
17061         cmp $tmp $dom || error "file data is different"
17062         [ $(stat -c%s $dom) == $size_tmp ] ||
17063                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17064         rm $dom $tmp
17065
17066         return 0
17067 }
17068 run_test 270a "DoM: basic functionality tests"
17069
17070 test_270b() {
17071         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17072                 skip "Need MDS version at least 2.10.55"
17073
17074         local dom=$DIR/$tdir/dom_file
17075         local max_size=1048576
17076
17077         mkdir -p $DIR/$tdir
17078         $LFS setstripe -E $max_size -L mdt $dom
17079
17080         # truncate over the limit
17081         $TRUNCATE $dom $(($max_size + 1)) &&
17082                 error "successful truncate over the maximum size"
17083         # write over the limit
17084         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17085                 error "successful write over the maximum size"
17086         # append over the limit
17087         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17088         echo "12345" >> $dom && error "successful append over the maximum size"
17089         rm $dom
17090
17091         return 0
17092 }
17093 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17094
17095 test_270c() {
17096         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17097                 skip "Need MDS version at least 2.10.55"
17098
17099         mkdir -p $DIR/$tdir
17100         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17101
17102         # check files inherit DoM EA
17103         touch $DIR/$tdir/first
17104         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
17105                 error "bad pattern"
17106         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17107                 error "bad stripe count"
17108         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17109                 error "bad stripe size"
17110
17111         # check directory inherits DoM EA and uses it as default
17112         mkdir $DIR/$tdir/subdir
17113         touch $DIR/$tdir/subdir/second
17114         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17115                 error "bad pattern in sub-directory"
17116         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17117                 error "bad stripe count in sub-directory"
17118         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17119                 error "bad stripe size in sub-directory"
17120         return 0
17121 }
17122 run_test 270c "DoM: DoM EA inheritance tests"
17123
17124 test_270d() {
17125         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17126                 skip "Need MDS version at least 2.10.55"
17127
17128         mkdir -p $DIR/$tdir
17129         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17130
17131         # inherit default DoM striping
17132         mkdir $DIR/$tdir/subdir
17133         touch $DIR/$tdir/subdir/f1
17134
17135         # change default directory striping
17136         $LFS setstripe -c 1 $DIR/$tdir/subdir
17137         touch $DIR/$tdir/subdir/f2
17138         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17139                 error "wrong default striping in file 2"
17140         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17141                 error "bad pattern in file 2"
17142         return 0
17143 }
17144 run_test 270d "DoM: change striping from DoM to RAID0"
17145
17146 test_270e() {
17147         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17148                 skip "Need MDS version at least 2.10.55"
17149
17150         mkdir -p $DIR/$tdir/dom
17151         mkdir -p $DIR/$tdir/norm
17152         DOMFILES=20
17153         NORMFILES=10
17154         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17155         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17156
17157         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17158         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17159
17160         # find DoM files by layout
17161         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17162         [ $NUM -eq  $DOMFILES ] ||
17163                 error "lfs find -L: found $NUM, expected $DOMFILES"
17164         echo "Test 1: lfs find 20 DOM files by layout: OK"
17165
17166         # there should be 1 dir with default DOM striping
17167         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17168         [ $NUM -eq  1 ] ||
17169                 error "lfs find -L: found $NUM, expected 1 dir"
17170         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17171
17172         # find DoM files by stripe size
17173         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17174         [ $NUM -eq  $DOMFILES ] ||
17175                 error "lfs find -S: found $NUM, expected $DOMFILES"
17176         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17177
17178         # find files by stripe offset except DoM files
17179         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17180         [ $NUM -eq  $NORMFILES ] ||
17181                 error "lfs find -i: found $NUM, expected $NORMFILES"
17182         echo "Test 5: lfs find no DOM files by stripe index: OK"
17183         return 0
17184 }
17185 run_test 270e "DoM: lfs find with DoM files test"
17186
17187 test_270f() {
17188         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17189                 skip "Need MDS version at least 2.10.55"
17190
17191         local mdtname=${FSNAME}-MDT0000-mdtlov
17192         local dom=$DIR/$tdir/dom_file
17193         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17194                                                 lod.$mdtname.dom_stripesize)
17195         local dom_limit=131072
17196
17197         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17198         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17199                                                 lod.$mdtname.dom_stripesize)
17200         [ ${dom_limit} -eq ${dom_current} ] ||
17201                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17202
17203         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17204         $LFS setstripe -d $DIR/$tdir
17205         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17206                 error "Can't set directory default striping"
17207
17208         # exceed maximum stripe size
17209         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17210                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17211         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17212                 error "Able to create DoM component size more than LOD limit"
17213
17214         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17215         dom_current=$(do_facet mds1 $LCTL get_param -n \
17216                                                 lod.$mdtname.dom_stripesize)
17217         [ 0 -eq ${dom_current} ] ||
17218                 error "Can't set zero DoM stripe limit"
17219         rm $dom
17220
17221         # attempt to create DoM file on server with disabled DoM should
17222         # remove DoM entry from layout and be succeed
17223         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17224                 error "Can't create DoM file (DoM is disabled)"
17225         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17226                 error "File has DoM component while DoM is disabled"
17227         rm $dom
17228
17229         # attempt to create DoM file with only DoM stripe should return error
17230         $LFS setstripe -E $dom_limit -L mdt $dom &&
17231                 error "Able to create DoM-only file while DoM is disabled"
17232
17233         # too low values to be aligned with smallest stripe size 64K
17234         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17235         dom_current=$(do_facet mds1 $LCTL get_param -n \
17236                                                 lod.$mdtname.dom_stripesize)
17237         [ 30000 -eq ${dom_current} ] &&
17238                 error "Can set too small DoM stripe limit"
17239
17240         # 64K is a minimal stripe size in Lustre, expect limit of that size
17241         [ 65536 -eq ${dom_current} ] ||
17242                 error "Limit is not set to 64K but ${dom_current}"
17243
17244         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17245         dom_current=$(do_facet mds1 $LCTL get_param -n \
17246                                                 lod.$mdtname.dom_stripesize)
17247         echo $dom_current
17248         [ 2147483648 -eq ${dom_current} ] &&
17249                 error "Can set too large DoM stripe limit"
17250
17251         do_facet mds1 $LCTL set_param -n \
17252                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17253         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17254                 error "Can't create DoM component size after limit change"
17255         do_facet mds1 $LCTL set_param -n \
17256                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17257         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17258                 error "Can't create DoM file after limit decrease"
17259         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17260                 error "Can create big DoM component after limit decrease"
17261         touch ${dom}_def ||
17262                 error "Can't create file with old default layout"
17263
17264         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17265         return 0
17266 }
17267 run_test 270f "DoM: maximum DoM stripe size checks"
17268
17269 test_271a() {
17270         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17271                 skip "Need MDS version at least 2.10.55"
17272
17273         local dom=$DIR/$tdir/dom
17274
17275         mkdir -p $DIR/$tdir
17276
17277         $LFS setstripe -E 1024K -L mdt $dom
17278
17279         lctl set_param -n mdc.*.stats=clear
17280         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17281         cat $dom > /dev/null
17282         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17283         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17284         ls $dom
17285         rm -f $dom
17286 }
17287 run_test 271a "DoM: data is cached for read after write"
17288
17289 test_271b() {
17290         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17291                 skip "Need MDS version at least 2.10.55"
17292
17293         local dom=$DIR/$tdir/dom
17294
17295         mkdir -p $DIR/$tdir
17296
17297         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17298
17299         lctl set_param -n mdc.*.stats=clear
17300         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17301         cancel_lru_locks mdc
17302         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17303         # second stat to check size is cached on client
17304         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17305         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17306         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17307         rm -f $dom
17308 }
17309 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17310
17311 test_271ba() {
17312         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17313                 skip "Need MDS version at least 2.10.55"
17314
17315         local dom=$DIR/$tdir/dom
17316
17317         mkdir -p $DIR/$tdir
17318
17319         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17320
17321         lctl set_param -n mdc.*.stats=clear
17322         lctl set_param -n osc.*.stats=clear
17323         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17324         cancel_lru_locks mdc
17325         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17326         # second stat to check size is cached on client
17327         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17328         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17329         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17330         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17331         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17332         rm -f $dom
17333 }
17334 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17335
17336
17337 get_mdc_stats() {
17338         local mdtidx=$1
17339         local param=$2
17340         local mdt=MDT$(printf %04x $mdtidx)
17341
17342         if [ -z $param ]; then
17343                 lctl get_param -n mdc.*$mdt*.stats
17344         else
17345                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17346         fi
17347 }
17348
17349 test_271c() {
17350         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17351                 skip "Need MDS version at least 2.10.55"
17352
17353         local dom=$DIR/$tdir/dom
17354
17355         mkdir -p $DIR/$tdir
17356
17357         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17358
17359         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17360         local facet=mds$((mdtidx + 1))
17361
17362         cancel_lru_locks mdc
17363         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17364         createmany -o $dom 1000
17365         lctl set_param -n mdc.*.stats=clear
17366         smalliomany -w $dom 1000 200
17367         get_mdc_stats $mdtidx
17368         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17369         # Each file has 1 open, 1 IO enqueues, total 2000
17370         # but now we have also +1 getxattr for security.capability, total 3000
17371         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17372         unlinkmany $dom 1000
17373
17374         cancel_lru_locks mdc
17375         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17376         createmany -o $dom 1000
17377         lctl set_param -n mdc.*.stats=clear
17378         smalliomany -w $dom 1000 200
17379         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17380         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17381         # for OPEN and IO lock.
17382         [ $((enq - enq_2)) -ge 1000 ] ||
17383                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17384         unlinkmany $dom 1000
17385         return 0
17386 }
17387 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17388
17389 cleanup_271def_tests() {
17390         trap 0
17391         rm -f $1
17392 }
17393
17394 test_271d() {
17395         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17396                 skip "Need MDS version at least 2.10.57"
17397
17398         local dom=$DIR/$tdir/dom
17399         local tmp=$TMP/$tfile
17400         trap "cleanup_271def_tests $tmp" EXIT
17401
17402         mkdir -p $DIR/$tdir
17403
17404         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17405
17406         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17407
17408         cancel_lru_locks mdc
17409         dd if=/dev/urandom of=$tmp bs=1000 count=1
17410         dd if=$tmp of=$dom bs=1000 count=1
17411         cancel_lru_locks mdc
17412
17413         cat /etc/hosts >> $tmp
17414         lctl set_param -n mdc.*.stats=clear
17415
17416         # append data to the same file it should update local page
17417         echo "Append to the same page"
17418         cat /etc/hosts >> $dom
17419         local num=$(get_mdc_stats $mdtidx ost_read)
17420         local ra=$(get_mdc_stats $mdtidx req_active)
17421         local rw=$(get_mdc_stats $mdtidx req_waittime)
17422
17423         [ -z $num ] || error "$num READ RPC occured"
17424         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17425         echo "... DONE"
17426
17427         # compare content
17428         cmp $tmp $dom || error "file miscompare"
17429
17430         cancel_lru_locks mdc
17431         lctl set_param -n mdc.*.stats=clear
17432
17433         echo "Open and read file"
17434         cat $dom > /dev/null
17435         local num=$(get_mdc_stats $mdtidx ost_read)
17436         local ra=$(get_mdc_stats $mdtidx req_active)
17437         local rw=$(get_mdc_stats $mdtidx req_waittime)
17438
17439         [ -z $num ] || error "$num READ RPC occured"
17440         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17441         echo "... DONE"
17442
17443         # compare content
17444         cmp $tmp $dom || error "file miscompare"
17445
17446         return 0
17447 }
17448 run_test 271d "DoM: read on open (1K file in reply buffer)"
17449
17450 test_271e() {
17451         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17452                 skip "Need MDS version at least 2.10.57"
17453
17454         local dom=$DIR/$tdir/dom
17455         local tmp=$TMP/${tfile}.data
17456         trap "cleanup_271def_tests $tmp" EXIT
17457
17458         mkdir -p $DIR/$tdir
17459
17460         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17461
17462         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17463
17464         cancel_lru_locks mdc
17465         dd if=/dev/urandom of=$tmp bs=30K count=1
17466         dd if=$tmp of=$dom bs=30K count=1
17467         cancel_lru_locks mdc
17468         cat /etc/hosts >> $tmp
17469         lctl set_param -n mdc.*.stats=clear
17470
17471         echo "Append to the same page"
17472         cat /etc/hosts >> $dom
17473
17474         local num=$(get_mdc_stats $mdtidx ost_read)
17475         local ra=$(get_mdc_stats $mdtidx req_active)
17476         local rw=$(get_mdc_stats $mdtidx req_waittime)
17477
17478         [ -z $num ] || error "$num READ RPC occured"
17479         # Reply buffer can be adjusted for larger buffer by resend
17480         echo "... DONE with $((ra - rw)) resends"
17481
17482         # compare content
17483         cmp $tmp $dom || error "file miscompare"
17484
17485         cancel_lru_locks mdc
17486         lctl set_param -n mdc.*.stats=clear
17487
17488         echo "Open and read file"
17489         cat $dom > /dev/null
17490         local num=$(get_mdc_stats $mdtidx ost_read)
17491         local ra=$(get_mdc_stats $mdtidx req_active)
17492         local rw=$(get_mdc_stats $mdtidx req_waittime)
17493
17494         [ -z $num ] || error "$num READ RPC occured"
17495         # Reply buffer can be adjusted for larger buffer by resend
17496         echo "... DONE with $((ra - rw)) resends"
17497
17498         # compare content
17499         cmp $tmp $dom || error "file miscompare"
17500
17501         return 0
17502 }
17503 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17504
17505 test_271f() {
17506         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17507                 skip "Need MDS version at least 2.10.57"
17508
17509         local dom=$DIR/$tdir/dom
17510         local tmp=$TMP/$tfile
17511         trap "cleanup_271def_tests $tmp" EXIT
17512
17513         mkdir -p $DIR/$tdir
17514
17515         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17516
17517         local mdtidx=$($GETSTRIPE -M $DIR/$tdir)
17518
17519         cancel_lru_locks mdc
17520         dd if=/dev/urandom of=$tmp bs=200000 count=1
17521         dd if=$tmp of=$dom bs=200000 count=1
17522         cancel_lru_locks mdc
17523         cat /etc/hosts >> $tmp
17524         lctl set_param -n mdc.*.stats=clear
17525
17526         echo "Append to the same page"
17527         cat /etc/hosts >> $dom
17528         local num=$(get_mdc_stats $mdtidx ost_read)
17529         local ra=$(get_mdc_stats $mdtidx req_active)
17530         local rw=$(get_mdc_stats $mdtidx req_waittime)
17531
17532         [ -z $num ] || error "$num READ RPC occured"
17533         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17534         echo "... DONE"
17535
17536         # compare content
17537         cmp $tmp $dom || error "file miscompare"
17538
17539         cancel_lru_locks mdc
17540         lctl set_param -n mdc.*.stats=clear
17541
17542         echo "Open and read file"
17543         cat $dom > /dev/null
17544         local num=$(get_mdc_stats $mdtidx ost_read)
17545         local ra=$(get_mdc_stats $mdtidx req_active)
17546         local rw=$(get_mdc_stats $mdtidx req_waittime)
17547
17548         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17549         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17550         echo "... DONE"
17551
17552         # compare content
17553         cmp $tmp $dom || error "file miscompare"
17554
17555         return 0
17556 }
17557 run_test 271f "DoM: read on open (200K file and read tail)"
17558
17559 test_272a() {
17560         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17561                 skip "Need MDS version at least 2.11.50"
17562
17563         local dom=$DIR/$tdir/dom
17564         mkdir -p $DIR/$tdir
17565
17566         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17567         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17568                 error "failed to write data into $dom"
17569         local old_md5=$(md5sum $dom)
17570
17571         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17572                 error "failed to migrate to the same DoM component"
17573
17574         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17575                 error "layout was not changed silently"
17576
17577         local new_md5=$(md5sum $dom)
17578
17579         [ "$old_md5" != "$new_md5" ] &&
17580                 error "md5sum differ: $old_md5, $new_md5"
17581         return 0
17582 }
17583 run_test 272a "DoM migration: new layout with the same DOM component"
17584
17585 test_272b() {
17586         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17587                 skip "Need MDS version at least 2.11.50"
17588
17589         local dom=$DIR/$tdir/dom
17590         mkdir -p $DIR/$tdir
17591         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17592
17593         local mdtidx=$($LFS getstripe -m $dom)
17594         local mdtname=MDT$(printf %04x $mdtidx)
17595         local facet=mds$((mdtidx + 1))
17596
17597         local mdtfree1=$(do_facet $facet \
17598                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17599         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17600                 error "failed to write data into $dom"
17601         local old_md5=$(md5sum $dom)
17602         cancel_lru_locks mdc
17603         local mdtfree1=$(do_facet $facet \
17604                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17605
17606         $LFS migrate -c2 $dom ||
17607                 error "failed to migrate to the new composite layout"
17608         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17609                 error "MDT stripe was not removed"
17610
17611         cancel_lru_locks mdc
17612         local new_md5=$(md5sum $dom)
17613         [ "$old_md5" != "$new_md5" ] &&
17614                 error "$old_md5 != $new_md5"
17615
17616         # Skip free space checks with ZFS
17617         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17618                 local mdtfree2=$(do_facet $facet \
17619                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17620                 [ $mdtfree2 -gt $mdtfree1 ] ||
17621                         error "MDT space is not freed after migration"
17622         fi
17623         return 0
17624 }
17625 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17626
17627 test_272c() {
17628         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17629                 skip "Need MDS version at least 2.11.50"
17630
17631         local dom=$DIR/$tdir/$tfile
17632         mkdir -p $DIR/$tdir
17633         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17634
17635         local mdtidx=$($LFS getstripe -m $dom)
17636         local mdtname=MDT$(printf %04x $mdtidx)
17637         local facet=mds$((mdtidx + 1))
17638
17639         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17640                 error "failed to write data into $dom"
17641         local old_md5=$(md5sum $dom)
17642         cancel_lru_locks mdc
17643         local mdtfree1=$(do_facet $facet \
17644                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17645
17646         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17647                 error "failed to migrate to the new composite layout"
17648         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17649                 error "MDT stripe was not removed"
17650
17651         cancel_lru_locks mdc
17652         local new_md5=$(md5sum $dom)
17653         [ "$old_md5" != "$new_md5" ] &&
17654                 error "$old_md5 != $new_md5"
17655
17656         # Skip free space checks with ZFS
17657         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17658                 local mdtfree2=$(do_facet $facet \
17659                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17660                 [ $mdtfree2 -gt $mdtfree1 ] ||
17661                         error "MDS space is not freed after migration"
17662         fi
17663         return 0
17664 }
17665 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17666
17667 test_273a() {
17668         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17669                 skip "Need MDS version at least 2.11.50"
17670
17671         # Layout swap cannot be done if either file has DOM component,
17672         # this will never be supported, migration should be used instead
17673
17674         local dom=$DIR/$tdir/$tfile
17675         mkdir -p $DIR/$tdir
17676
17677         $LFS setstripe -c2 ${dom}_plain
17678         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17679         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17680                 error "can swap layout with DoM component"
17681         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17682                 error "can swap layout with DoM component"
17683
17684         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17685         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17686                 error "can swap layout with DoM component"
17687         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17688                 error "can swap layout with DoM component"
17689         return 0
17690 }
17691 run_test 273a "DoM: layout swapping should fail with DOM"
17692
17693 test_275() {
17694         remote_ost_nodsh && skip "remote OST with nodsh"
17695         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
17696                 skip "Need OST version >= 2.10.57"
17697
17698         local file=$DIR/$tfile
17699         local oss
17700
17701         oss=$(comma_list $(osts_nodes))
17702
17703         dd if=/dev/urandom of=$file bs=1M count=2 ||
17704                 error "failed to create a file"
17705         cancel_lru_locks osc
17706
17707         #lock 1
17708         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17709                 error "failed to read a file"
17710
17711 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17712         $LCTL set_param fail_loc=0x8000031f
17713
17714         cancel_lru_locks osc &
17715         sleep 1
17716
17717 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17718         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17719         #IO takes another lock, but matches the PENDING one
17720         #and places it to the IO RPC
17721         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17722                 error "failed to read a file with PENDING lock"
17723 }
17724 run_test 275 "Read on a canceled duplicate lock"
17725
17726 test_276() {
17727         remote_ost_nodsh && skip "remote OST with nodsh"
17728         local pid
17729
17730         do_facet ost1 "(while true; do \
17731                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17732                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17733         pid=$!
17734
17735         for LOOP in $(seq 20); do
17736                 stop ost1
17737                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17738         done
17739         kill -9 $pid
17740         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17741                 rm $TMP/sanity_276_pid"
17742 }
17743 run_test 276 "Race between mount and obd_statfs"
17744
17745 cleanup_test_300() {
17746         trap 0
17747         umask $SAVE_UMASK
17748 }
17749 test_striped_dir() {
17750         local mdt_index=$1
17751         local stripe_count
17752         local stripe_index
17753
17754         mkdir -p $DIR/$tdir
17755
17756         SAVE_UMASK=$(umask)
17757         trap cleanup_test_300 RETURN EXIT
17758
17759         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17760                                                 $DIR/$tdir/striped_dir ||
17761                 error "set striped dir error"
17762
17763         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17764         [ "$mode" = "755" ] || error "expect 755 got $mode"
17765
17766         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17767                 error "getdirstripe failed"
17768         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17769         if [ "$stripe_count" != "2" ]; then
17770                 error "1:stripe_count is $stripe_count, expect 2"
17771         fi
17772         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17773         if [ "$stripe_count" != "2" ]; then
17774                 error "2:stripe_count is $stripe_count, expect 2"
17775         fi
17776
17777         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17778         if [ "$stripe_index" != "$mdt_index" ]; then
17779                 error "stripe_index is $stripe_index, expect $mdt_index"
17780         fi
17781
17782         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17783                 error "nlink error after create striped dir"
17784
17785         mkdir $DIR/$tdir/striped_dir/a
17786         mkdir $DIR/$tdir/striped_dir/b
17787
17788         stat $DIR/$tdir/striped_dir/a ||
17789                 error "create dir under striped dir failed"
17790         stat $DIR/$tdir/striped_dir/b ||
17791                 error "create dir under striped dir failed"
17792
17793         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17794                 error "nlink error after mkdir"
17795
17796         rmdir $DIR/$tdir/striped_dir/a
17797         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17798                 error "nlink error after rmdir"
17799
17800         rmdir $DIR/$tdir/striped_dir/b
17801         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17802                 error "nlink error after rmdir"
17803
17804         chattr +i $DIR/$tdir/striped_dir
17805         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17806                 error "immutable flags not working under striped dir!"
17807         chattr -i $DIR/$tdir/striped_dir
17808
17809         rmdir $DIR/$tdir/striped_dir ||
17810                 error "rmdir striped dir error"
17811
17812         cleanup_test_300
17813
17814         true
17815 }
17816
17817 test_300a() {
17818         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17819                 skip "skipped for lustre < 2.7.0"
17820         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17821         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17822
17823         test_striped_dir 0 || error "failed on striped dir on MDT0"
17824         test_striped_dir 1 || error "failed on striped dir on MDT0"
17825 }
17826 run_test 300a "basic striped dir sanity test"
17827
17828 test_300b() {
17829         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17830                 skip "skipped for lustre < 2.7.0"
17831         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17832         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17833
17834         local i
17835         local mtime1
17836         local mtime2
17837         local mtime3
17838
17839         test_mkdir $DIR/$tdir || error "mkdir fail"
17840         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17841                 error "set striped dir error"
17842         for i in {0..9}; do
17843                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17844                 sleep 1
17845                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17846                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17847                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17848                 sleep 1
17849                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17850                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17851                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17852         done
17853         true
17854 }
17855 run_test 300b "check ctime/mtime for striped dir"
17856
17857 test_300c() {
17858         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17859                 skip "skipped for lustre < 2.7.0"
17860         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17861         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17862
17863         local file_count
17864
17865         mkdir -p $DIR/$tdir
17866         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17867                 error "set striped dir error"
17868
17869         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17870                 error "chown striped dir failed"
17871
17872         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17873                 error "create 5k files failed"
17874
17875         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17876
17877         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17878
17879         rm -rf $DIR/$tdir
17880 }
17881 run_test 300c "chown && check ls under striped directory"
17882
17883 test_300d() {
17884         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17885                 skip "skipped for lustre < 2.7.0"
17886         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17887         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17888
17889         local stripe_count
17890         local file
17891
17892         mkdir -p $DIR/$tdir
17893         $SETSTRIPE -c 2 $DIR/$tdir
17894
17895         #local striped directory
17896         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17897                 error "set striped dir error"
17898         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17899                 error "create 10 files failed"
17900
17901         #remote striped directory
17902         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17903                 error "set striped dir error"
17904         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17905                 error "create 10 files failed"
17906
17907         for file in $(find $DIR/$tdir); do
17908                 stripe_count=$($LFS getstripe -c $file)
17909                 [ $stripe_count -eq 2 ] ||
17910                         error "wrong stripe $stripe_count for $file"
17911         done
17912
17913         rm -rf $DIR/$tdir
17914 }
17915 run_test 300d "check default stripe under striped directory"
17916
17917 test_300e() {
17918         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17919                 skip "Need MDS version at least 2.7.55"
17920         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17921         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17922
17923         local stripe_count
17924         local file
17925
17926         mkdir -p $DIR/$tdir
17927
17928         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17929                 error "set striped dir error"
17930
17931         touch $DIR/$tdir/striped_dir/a
17932         touch $DIR/$tdir/striped_dir/b
17933         touch $DIR/$tdir/striped_dir/c
17934
17935         mkdir $DIR/$tdir/striped_dir/dir_a
17936         mkdir $DIR/$tdir/striped_dir/dir_b
17937         mkdir $DIR/$tdir/striped_dir/dir_c
17938
17939         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17940                 error "set striped adir under striped dir error"
17941
17942         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17943                 error "set striped bdir under striped dir error"
17944
17945         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17946                 error "set striped cdir under striped dir error"
17947
17948         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17949                 error "rename dir under striped dir fails"
17950
17951         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17952                 error "rename dir under different stripes fails"
17953
17954         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17955                 error "rename file under striped dir should succeed"
17956
17957         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17958                 error "rename dir under striped dir should succeed"
17959
17960         rm -rf $DIR/$tdir
17961 }
17962 run_test 300e "check rename under striped directory"
17963
17964 test_300f() {
17965         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17966         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17967         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17968                 skip "Need MDS version at least 2.7.55"
17969
17970         local stripe_count
17971         local file
17972
17973         rm -rf $DIR/$tdir
17974         mkdir -p $DIR/$tdir
17975
17976         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17977                 error "set striped dir error"
17978
17979         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
17980                 error "set striped dir error"
17981
17982         touch $DIR/$tdir/striped_dir/a
17983         mkdir $DIR/$tdir/striped_dir/dir_a
17984         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
17985                 error "create striped dir under striped dir fails"
17986
17987         touch $DIR/$tdir/striped_dir1/b
17988         mkdir $DIR/$tdir/striped_dir1/dir_b
17989         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
17990                 error "create striped dir under striped dir fails"
17991
17992         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
17993                 error "rename dir under different striped dir should fail"
17994
17995         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
17996                 error "rename striped dir under diff striped dir should fail"
17997
17998         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
17999                 error "rename file under diff striped dirs fails"
18000
18001         rm -rf $DIR/$tdir
18002 }
18003 run_test 300f "check rename cross striped directory"
18004
18005 test_300_check_default_striped_dir()
18006 {
18007         local dirname=$1
18008         local default_count=$2
18009         local default_index=$3
18010         local stripe_count
18011         local stripe_index
18012         local dir_stripe_index
18013         local dir
18014
18015         echo "checking $dirname $default_count $default_index"
18016         $LFS setdirstripe -D -c $default_count -i $default_index \
18017                                 -t all_char $DIR/$tdir/$dirname ||
18018                 error "set default stripe on striped dir error"
18019         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
18020         [ $stripe_count -eq $default_count ] ||
18021                 error "expect $default_count get $stripe_count for $dirname"
18022
18023         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
18024         [ $stripe_index -eq $default_index ] ||
18025                 error "expect $default_index get $stripe_index for $dirname"
18026
18027         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
18028                                                 error "create dirs failed"
18029
18030         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
18031         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
18032         for dir in $(find $DIR/$tdir/$dirname/*); do
18033                 stripe_count=$($LFS getdirstripe -c $dir)
18034                 [ $stripe_count -eq $default_count ] ||
18035                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
18036                 error "stripe count $default_count != $stripe_count for $dir"
18037
18038                 stripe_index=$($LFS getdirstripe -i $dir)
18039                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
18040                         error "$stripe_index != $default_index for $dir"
18041
18042                 #check default stripe
18043                 stripe_count=$($LFS getdirstripe -D -c $dir)
18044                 [ $stripe_count -eq $default_count ] ||
18045                 error "default count $default_count != $stripe_count for $dir"
18046
18047                 stripe_index=$($LFS getdirstripe -D -i $dir)
18048                 [ $stripe_index -eq $default_index ] ||
18049                 error "default index $default_index != $stripe_index for $dir"
18050         done
18051         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
18052 }
18053
18054 test_300g() {
18055         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18056         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18057                 skip "Need MDS version at least 2.7.55"
18058
18059         local dir
18060         local stripe_count
18061         local stripe_index
18062
18063         mkdir $DIR/$tdir
18064         mkdir $DIR/$tdir/normal_dir
18065
18066         #Checking when client cache stripe index
18067         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18068         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18069                 error "create striped_dir failed"
18070
18071         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18072                 error "create dir0 fails"
18073         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18074         [ $stripe_index -eq 0 ] ||
18075                 error "dir0 expect index 0 got $stripe_index"
18076
18077         mkdir $DIR/$tdir/striped_dir/dir1 ||
18078                 error "create dir1 fails"
18079         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18080         [ $stripe_index -eq 1 ] ||
18081                 error "dir1 expect index 1 got $stripe_index"
18082
18083         #check default stripe count/stripe index
18084         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18085         test_300_check_default_striped_dir normal_dir 1 0
18086         test_300_check_default_striped_dir normal_dir 2 1
18087         test_300_check_default_striped_dir normal_dir 2 -1
18088
18089         #delete default stripe information
18090         echo "delete default stripeEA"
18091         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18092                 error "set default stripe on striped dir error"
18093
18094         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18095         for dir in $(find $DIR/$tdir/normal_dir/*); do
18096                 stripe_count=$($LFS getdirstripe -c $dir)
18097                 [ $stripe_count -eq 0 ] ||
18098                         error "expect 1 get $stripe_count for $dir"
18099                 stripe_index=$($LFS getdirstripe -i $dir)
18100                 [ $stripe_index -eq 0 ] ||
18101                         error "expect 0 get $stripe_index for $dir"
18102         done
18103 }
18104 run_test 300g "check default striped directory for normal directory"
18105
18106 test_300h() {
18107         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18108         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18109                 skip "Need MDS version at least 2.7.55"
18110
18111         local dir
18112         local stripe_count
18113
18114         mkdir $DIR/$tdir
18115         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18116                 error "set striped dir error"
18117
18118         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18119         test_300_check_default_striped_dir striped_dir 1 0
18120         test_300_check_default_striped_dir striped_dir 2 1
18121         test_300_check_default_striped_dir striped_dir 2 -1
18122
18123         #delete default stripe information
18124         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18125                 error "set default stripe on striped dir error"
18126
18127         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18128         for dir in $(find $DIR/$tdir/striped_dir/*); do
18129                 stripe_count=$($LFS getdirstripe -c $dir)
18130                 [ $stripe_count -eq 0 ] ||
18131                         error "expect 1 get $stripe_count for $dir"
18132         done
18133 }
18134 run_test 300h "check default striped directory for striped directory"
18135
18136 test_300i() {
18137         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18138         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18139         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18140                 skip "Need MDS version at least 2.7.55"
18141
18142         local stripe_count
18143         local file
18144
18145         mkdir $DIR/$tdir
18146
18147         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18148                 error "set striped dir error"
18149
18150         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18151                 error "create files under striped dir failed"
18152
18153         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18154                 error "set striped hashdir error"
18155
18156         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18157                 error "create dir0 under hash dir failed"
18158         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18159                 error "create dir1 under hash dir failed"
18160
18161         # unfortunately, we need to umount to clear dir layout cache for now
18162         # once we fully implement dir layout, we can drop this
18163         umount_client $MOUNT || error "umount failed"
18164         mount_client $MOUNT || error "mount failed"
18165
18166         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18167         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18168         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18169
18170         #set the stripe to be unknown hash type
18171         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18172         $LCTL set_param fail_loc=0x1901
18173         for ((i = 0; i < 10; i++)); do
18174                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18175                         error "stat f-$i failed"
18176                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18177         done
18178
18179         touch $DIR/$tdir/striped_dir/f0 &&
18180                 error "create under striped dir with unknown hash should fail"
18181
18182         $LCTL set_param fail_loc=0
18183
18184         umount_client $MOUNT || error "umount failed"
18185         mount_client $MOUNT || error "mount failed"
18186
18187         return 0
18188 }
18189 run_test 300i "client handle unknown hash type striped directory"
18190
18191 test_300j() {
18192         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18193         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18194         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18195                 skip "Need MDS version at least 2.7.55"
18196
18197         local stripe_count
18198         local file
18199
18200         mkdir $DIR/$tdir
18201
18202         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18203         $LCTL set_param fail_loc=0x1702
18204         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18205                 error "set striped dir error"
18206
18207         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18208                 error "create files under striped dir failed"
18209
18210         $LCTL set_param fail_loc=0
18211
18212         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18213
18214         return 0
18215 }
18216 run_test 300j "test large update record"
18217
18218 test_300k() {
18219         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18220         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18221         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18222                 skip "Need MDS version at least 2.7.55"
18223
18224         local stripe_count
18225         local file
18226
18227         mkdir $DIR/$tdir
18228
18229         #define OBD_FAIL_LARGE_STRIPE   0x1703
18230         $LCTL set_param fail_loc=0x1703
18231         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18232                 error "set striped dir error"
18233         $LCTL set_param fail_loc=0
18234
18235         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18236                 error "getstripeddir fails"
18237         rm -rf $DIR/$tdir/striped_dir ||
18238                 error "unlink striped dir fails"
18239
18240         return 0
18241 }
18242 run_test 300k "test large striped directory"
18243
18244 test_300l() {
18245         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18246         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18247         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18248                 skip "Need MDS version at least 2.7.55"
18249
18250         local stripe_index
18251
18252         test_mkdir -p $DIR/$tdir/striped_dir
18253         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18254                         error "chown $RUNAS_ID failed"
18255         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18256                 error "set default striped dir failed"
18257
18258         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18259         $LCTL set_param fail_loc=0x80000158
18260         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18261
18262         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18263         [ $stripe_index -eq 1 ] ||
18264                 error "expect 1 get $stripe_index for $dir"
18265 }
18266 run_test 300l "non-root user to create dir under striped dir with stale layout"
18267
18268 test_300m() {
18269         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18270         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18271         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18272                 skip "Need MDS version at least 2.7.55"
18273
18274         mkdir -p $DIR/$tdir/striped_dir
18275         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18276                 error "set default stripes dir error"
18277
18278         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18279
18280         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18281         [ $stripe_count -eq 0 ] ||
18282                         error "expect 0 get $stripe_count for a"
18283
18284         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18285                 error "set default stripes dir error"
18286
18287         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18288
18289         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18290         [ $stripe_count -eq 0 ] ||
18291                         error "expect 0 get $stripe_count for b"
18292
18293         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18294                 error "set default stripes dir error"
18295
18296         mkdir $DIR/$tdir/striped_dir/c &&
18297                 error "default stripe_index is invalid, mkdir c should fails"
18298
18299         rm -rf $DIR/$tdir || error "rmdir fails"
18300 }
18301 run_test 300m "setstriped directory on single MDT FS"
18302
18303 cleanup_300n() {
18304         local list=$(comma_list $(mdts_nodes))
18305
18306         trap 0
18307         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18308 }
18309
18310 test_300n() {
18311         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18312         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18313         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18314                 skip "Need MDS version at least 2.7.55"
18315         remote_mds_nodsh && skip "remote MDS with nodsh"
18316
18317         local stripe_index
18318         local list=$(comma_list $(mdts_nodes))
18319
18320         trap cleanup_300n RETURN EXIT
18321         mkdir -p $DIR/$tdir
18322         chmod 777 $DIR/$tdir
18323         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18324                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18325                 error "create striped dir succeeds with gid=0"
18326
18327         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18328         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18329                 error "create striped dir fails with gid=-1"
18330
18331         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18332         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18333                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18334                 error "set default striped dir succeeds with gid=0"
18335
18336
18337         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18338         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18339                 error "set default striped dir fails with gid=-1"
18340
18341
18342         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18343         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18344                                         error "create test_dir fails"
18345         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18346                                         error "create test_dir1 fails"
18347         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18348                                         error "create test_dir2 fails"
18349         cleanup_300n
18350 }
18351 run_test 300n "non-root user to create dir under striped dir with default EA"
18352
18353 test_300o() {
18354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18355         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18356         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18357                 skip "Need MDS version at least 2.7.55"
18358
18359         local numfree1
18360         local numfree2
18361
18362         mkdir -p $DIR/$tdir
18363
18364         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18365         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18366         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18367                 skip "not enough free inodes $numfree1 $numfree2"
18368         fi
18369
18370         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18371         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18372         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18373                 skip "not enough free space $numfree1 $numfree2"
18374         fi
18375
18376         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18377                 error "setdirstripe fails"
18378
18379         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18380                 error "create dirs fails"
18381
18382         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18383         ls $DIR/$tdir/striped_dir > /dev/null ||
18384                 error "ls striped dir fails"
18385         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18386                 error "unlink big striped dir fails"
18387 }
18388 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18389
18390 test_300p() {
18391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18392         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18393         remote_mds_nodsh && skip "remote MDS with nodsh"
18394
18395         mkdir -p $DIR/$tdir
18396
18397         #define OBD_FAIL_OUT_ENOSPC     0x1704
18398         do_facet mds2 lctl set_param fail_loc=0x80001704
18399         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18400                  && error "create striped directory should fail"
18401
18402         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18403
18404         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18405         true
18406 }
18407 run_test 300p "create striped directory without space"
18408
18409 test_300q() {
18410         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18411         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18412
18413         local fd=$(free_fd)
18414         local cmd="exec $fd<$tdir"
18415         cd $DIR
18416         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18417         eval $cmd
18418         cmd="exec $fd<&-"
18419         trap "eval $cmd" EXIT
18420         cd $tdir || error "cd $tdir fails"
18421         rmdir  ../$tdir || error "rmdir $tdir fails"
18422         mkdir local_dir && error "create dir succeeds"
18423         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18424         eval $cmd
18425         return 0
18426 }
18427 run_test 300q "create remote directory under orphan directory"
18428
18429 test_300r() {
18430         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18431                 skip "Need MDS version at least 2.7.55" && return
18432         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18433
18434         mkdir $DIR/$tdir
18435
18436         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18437                 error "set striped dir error"
18438
18439         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18440                 error "getstripeddir fails"
18441
18442         local stripe_count
18443         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18444                       awk '/lmv_stripe_count:/ { print $2 }')
18445
18446         [ $MDSCOUNT -ne $stripe_count ] &&
18447                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18448
18449         rm -rf $DIR/$tdir/striped_dir ||
18450                 error "unlink striped dir fails"
18451 }
18452 run_test 300r "test -1 striped directory"
18453
18454 prepare_remote_file() {
18455         mkdir $DIR/$tdir/src_dir ||
18456                 error "create remote source failed"
18457
18458         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18459                  error "cp to remote source failed"
18460         touch $DIR/$tdir/src_dir/a
18461
18462         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18463                 error "create remote target dir failed"
18464
18465         touch $DIR/$tdir/tgt_dir/b
18466
18467         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18468                 error "rename dir cross MDT failed!"
18469
18470         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18471                 error "src_child still exists after rename"
18472
18473         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18474                 error "missing file(a) after rename"
18475
18476         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18477                 error "diff after rename"
18478 }
18479
18480 test_310a() {
18481         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18482         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18483
18484         local remote_file=$DIR/$tdir/tgt_dir/b
18485
18486         mkdir -p $DIR/$tdir
18487
18488         prepare_remote_file || error "prepare remote file failed"
18489
18490         #open-unlink file
18491         $OPENUNLINK $remote_file $remote_file ||
18492                 error "openunlink $remote_file failed"
18493         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18494 }
18495 run_test 310a "open unlink remote file"
18496
18497 test_310b() {
18498         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18500
18501         local remote_file=$DIR/$tdir/tgt_dir/b
18502
18503         mkdir -p $DIR/$tdir
18504
18505         prepare_remote_file || error "prepare remote file failed"
18506
18507         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18508         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18509         $CHECKSTAT -t file $remote_file || error "check file failed"
18510 }
18511 run_test 310b "unlink remote file with multiple links while open"
18512
18513 test_310c() {
18514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18515         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18516
18517         local remote_file=$DIR/$tdir/tgt_dir/b
18518
18519         mkdir -p $DIR/$tdir
18520
18521         prepare_remote_file || error "prepare remote file failed"
18522
18523         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18524         multiop_bg_pause $remote_file O_uc ||
18525                         error "mulitop failed for remote file"
18526         MULTIPID=$!
18527         $MULTIOP $DIR/$tfile Ouc
18528         kill -USR1 $MULTIPID
18529         wait $MULTIPID
18530 }
18531 run_test 310c "open-unlink remote file with multiple links"
18532
18533 #LU-4825
18534 test_311() {
18535         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18536         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18537         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
18538                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18539         remote_mds_nodsh && skip "remote MDS with nodsh"
18540
18541         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18542         local mdts=$(comma_list $(mdts_nodes))
18543
18544         mkdir -p $DIR/$tdir
18545         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
18546         createmany -o $DIR/$tdir/$tfile. 1000
18547
18548         # statfs data is not real time, let's just calculate it
18549         old_iused=$((old_iused + 1000))
18550
18551         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18552                         osp.*OST0000*MDT0000.create_count")
18553         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18554                                 osp.*OST0000*MDT0000.max_create_count")
18555         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
18556
18557         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18558         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
18559         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18560
18561         unlinkmany $DIR/$tdir/$tfile. 1000
18562
18563         do_nodes $mdts "$LCTL set_param -n \
18564                         osp.*OST0000*.max_create_count=$max_count"
18565         [ $(lustre_version_code $facet) -lt $(version_code 2.11.56) ] &&
18566                 do_nodes $mdts "$LCTL set_param -n \
18567                                 osp.*OST0000*.create_count=$count"
18568         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
18569                         grep "=0" && error "create_count is zero"
18570
18571         local new_iused
18572         for i in $(seq 120); do
18573                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18574                 # system may be too busy to destroy all objs in time, use
18575                 # a somewhat small value to not fail autotest
18576                 [ $((old_iused - new_iused)) -gt 400 ] && break
18577                 sleep 1
18578         done
18579
18580         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18581         [ $((old_iused - new_iused)) -gt 400 ] ||
18582                 error "objs not destroyed after unlink"
18583 }
18584 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18585
18586 zfs_oid_to_objid()
18587 {
18588         local ost=$1
18589         local objid=$2
18590
18591         local vdevdir=$(dirname $(facet_vdevice $ost))
18592         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18593         local zfs_zapid=$(do_facet $ost $cmd |
18594                           grep -w "/O/0/d$((objid%32))" -C 5 |
18595                           awk '/Object/{getline; print $1}')
18596         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18597                           awk "/$objid = /"'{printf $3}')
18598
18599         echo $zfs_objid
18600 }
18601
18602 zfs_object_blksz() {
18603         local ost=$1
18604         local objid=$2
18605
18606         local vdevdir=$(dirname $(facet_vdevice $ost))
18607         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18608         local blksz=$(do_facet $ost $cmd $objid |
18609                       awk '/dblk/{getline; printf $4}')
18610
18611         case "${blksz: -1}" in
18612                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18613                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18614                 *) ;;
18615         esac
18616
18617         echo $blksz
18618 }
18619
18620 test_312() { # LU-4856
18621         remote_ost_nodsh && skip "remote OST with nodsh"
18622         [ "$ost1_FSTYPE" = "zfs" ] ||
18623                 skip_env "the test only applies to zfs"
18624
18625         local max_blksz=$(do_facet ost1 \
18626                           $ZFS get -p recordsize $(facet_device ost1) |
18627                           awk '!/VALUE/{print $3}')
18628
18629         # to make life a little bit easier
18630         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18631         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18632
18633         local tf=$DIR/$tdir/$tfile
18634         touch $tf
18635         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18636
18637         # Get ZFS object id
18638         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18639         # block size change by sequential overwrite
18640         local bs
18641
18642         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18643                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18644
18645                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18646                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18647         done
18648         rm -f $tf
18649
18650         # block size change by sequential append write
18651         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18652         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18653         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18654         local count
18655
18656         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18657                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18658                         oflag=sync conv=notrunc
18659
18660                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18661                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18662                         error "blksz error, actual $blksz, " \
18663                                 "expected: 2 * $count * $PAGE_SIZE"
18664         done
18665         rm -f $tf
18666
18667         # random write
18668         touch $tf
18669         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18670         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18671
18672         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18673         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18674         [ $blksz -eq $PAGE_SIZE ] ||
18675                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18676
18677         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18678         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18679         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18680
18681         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18682         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18683         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18684 }
18685 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18686
18687 test_313() {
18688         remote_ost_nodsh && skip "remote OST with nodsh"
18689
18690         local file=$DIR/$tfile
18691
18692         rm -f $file
18693         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
18694
18695         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18696         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18697         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18698                 error "write should failed"
18699         do_facet ost1 "$LCTL set_param fail_loc=0"
18700         rm -f $file
18701 }
18702 run_test 313 "io should fail after last_rcvd update fail"
18703
18704 test_314() {
18705         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18706
18707         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18708         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18709         rm -f $DIR/$tfile
18710         wait_delete_completed
18711         do_facet ost1 "$LCTL set_param fail_loc=0"
18712 }
18713 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18714
18715 test_315() { # LU-618
18716         local file=$DIR/$tfile
18717         rm -f $file
18718
18719         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18720                 error "multiop file write failed"
18721         $MULTIOP $file oO_RDONLY:r4063232_c &
18722         PID=$!
18723
18724         sleep 2
18725
18726         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18727         kill -USR1 $PID
18728
18729         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18730         rm -f $file
18731 }
18732 run_test 315 "read should be accounted"
18733
18734 test_316() {
18735         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18736         large_xattr_enabled || skip_env "ea_inode feature disabled"
18737
18738         rm -rf $DIR/$tdir/d
18739         mkdir -p $DIR/$tdir/d
18740         chown nobody $DIR/$tdir/d
18741         touch $DIR/$tdir/d/file
18742
18743         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18744 }
18745 run_test 316 "lfs mv"
18746
18747 test_317() {
18748         local trunc_sz
18749         local grant_blk_size
18750
18751         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18752                 skip "LU-10370: no implementation for ZFS" && return
18753         fi
18754
18755         stack_trap "rm -f $DIR/$tfile" EXIT
18756         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18757                         awk '/grant_block_size:/ { print $2; exit; }')
18758         #
18759         # Create File of size 5M. Truncate it to below size's and verify
18760         # blocks count.
18761         #
18762         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18763                 error "Create file : $DIR/$tfile"
18764
18765         for trunc_sz in 2097152 4097 4000 509 0; do
18766                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18767                         error "truncate $tfile to $trunc_sz failed"
18768                 local sz=$(stat --format=%s $DIR/$tfile)
18769                 local blk=$(stat --format=%b $DIR/$tfile)
18770                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18771                                      grant_blk_size) * 8))
18772
18773                 if [[ $blk -ne $trunc_blk ]]; then
18774                         $(which stat) $DIR/$tfile
18775                         error "Expected Block $trunc_blk got $blk for $tfile"
18776                 fi
18777
18778                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18779                         error "Expected Size $trunc_sz got $sz for $tfile"
18780         done
18781
18782         #
18783         # sparse file test
18784         # Create file with a hole and write actual two blocks. Block count
18785         # must be 16.
18786         #
18787         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18788                 conv=fsync || error "Create file : $DIR/$tfile"
18789
18790         # Calculate the final truncate size.
18791         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18792
18793         #
18794         # truncate to size $trunc_sz bytes. Strip the last block
18795         # The block count must drop to 8
18796         #
18797         $TRUNCATE $DIR/$tfile $trunc_sz ||
18798                 error "truncate $tfile to $trunc_sz failed"
18799
18800         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18801         sz=$(stat --format=%s $DIR/$tfile)
18802         blk=$(stat --format=%b $DIR/$tfile)
18803
18804         if [[ $blk -ne $trunc_bsz ]]; then
18805                 $(which stat) $DIR/$tfile
18806                 error "Expected Block $trunc_bsz got $blk for $tfile"
18807         fi
18808
18809         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18810                 error "Expected Size $trunc_sz got $sz for $tfile"
18811 }
18812 run_test 317 "Verify blocks get correctly update after truncate"
18813
18814 test_fake_rw() {
18815         local read_write=$1
18816         if [ "$read_write" = "write" ]; then
18817                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18818         elif [ "$read_write" = "read" ]; then
18819                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18820         else
18821                 error "argument error"
18822         fi
18823
18824         # turn off debug for performance testing
18825         local saved_debug=$($LCTL get_param -n debug)
18826         $LCTL set_param debug=0
18827
18828         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
18829
18830         # get ost1 size - lustre-OST0000
18831         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18832         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18833         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18834
18835         if [ "$read_write" = "read" ]; then
18836                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18837         fi
18838
18839         local start_time=$(date +%s.%N)
18840         $dd_cmd bs=1M count=$blocks oflag=sync ||
18841                 error "real dd $read_write error"
18842         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18843
18844         if [ "$read_write" = "write" ]; then
18845                 rm -f $DIR/$tfile
18846         fi
18847
18848         # define OBD_FAIL_OST_FAKE_RW           0x238
18849         do_facet ost1 $LCTL set_param fail_loc=0x238
18850
18851         local start_time=$(date +%s.%N)
18852         $dd_cmd bs=1M count=$blocks oflag=sync ||
18853                 error "fake dd $read_write error"
18854         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18855
18856         if [ "$read_write" = "write" ]; then
18857                 # verify file size
18858                 cancel_lru_locks osc
18859                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18860                         error "$tfile size not $blocks MB"
18861         fi
18862         do_facet ost1 $LCTL set_param fail_loc=0
18863
18864         echo "fake $read_write $duration_fake vs. normal $read_write" \
18865                 "$duration in seconds"
18866         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18867                 error_not_in_vm "fake write is slower"
18868
18869         $LCTL set_param -n debug="$saved_debug"
18870         rm -f $DIR/$tfile
18871 }
18872 test_399a() { # LU-7655 for OST fake write
18873         remote_ost_nodsh && skip "remote OST with nodsh"
18874
18875         test_fake_rw write
18876 }
18877 run_test 399a "fake write should not be slower than normal write"
18878
18879 test_399b() { # LU-8726 for OST fake read
18880         remote_ost_nodsh && skip "remote OST with nodsh"
18881         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
18882                 skip_env "ldiskfs only test"
18883         fi
18884
18885         test_fake_rw read
18886 }
18887 run_test 399b "fake read should not be slower than normal read"
18888
18889 test_400a() { # LU-1606, was conf-sanity test_74
18890         if ! which $CC > /dev/null 2>&1; then
18891                 skip_env "$CC is not installed"
18892         fi
18893
18894         local extra_flags=''
18895         local out=$TMP/$tfile
18896         local prefix=/usr/include/lustre
18897         local prog
18898
18899         if ! [[ -d $prefix ]]; then
18900                 # Assume we're running in tree and fixup the include path.
18901                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18902                 extra_flags+=" -L$LUSTRE/utils/.lib"
18903         fi
18904
18905         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18906                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18907                         error "client api broken"
18908         done
18909         rm -f $out
18910 }
18911 run_test 400a "Lustre client api program can compile and link"
18912
18913 test_400b() { # LU-1606, LU-5011
18914         local header
18915         local out=$TMP/$tfile
18916         local prefix=/usr/include/linux/lustre
18917
18918         # We use a hard coded prefix so that this test will not fail
18919         # when run in tree. There are headers in lustre/include/lustre/
18920         # that are not packaged (like lustre_idl.h) and have more
18921         # complicated include dependencies (like config.h and lnet/types.h).
18922         # Since this test about correct packaging we just skip them when
18923         # they don't exist (see below) rather than try to fixup cppflags.
18924
18925         if ! which $CC > /dev/null 2>&1; then
18926                 skip_env "$CC is not installed"
18927         fi
18928
18929         for header in $prefix/*.h; do
18930                 if ! [[ -f "$header" ]]; then
18931                         continue
18932                 fi
18933
18934                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
18935                         continue # lustre_ioctl.h is internal header
18936                 fi
18937
18938                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
18939                         error "cannot compile '$header'"
18940         done
18941         rm -f $out
18942 }
18943 run_test 400b "packaged headers can be compiled"
18944
18945 test_401a() { #LU-7437
18946         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
18947         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
18948
18949         #count the number of parameters by "list_param -R"
18950         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
18951         #count the number of parameters by listing proc files
18952         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
18953         echo "proc_dirs='$proc_dirs'"
18954         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
18955         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
18956                       sort -u | wc -l)
18957
18958         [ $params -eq $procs ] ||
18959                 error "found $params parameters vs. $procs proc files"
18960
18961         # test the list_param -D option only returns directories
18962         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
18963         #count the number of parameters by listing proc directories
18964         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
18965                 sort -u | wc -l)
18966
18967         [ $params -eq $procs ] ||
18968                 error "found $params parameters vs. $procs proc files"
18969 }
18970 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
18971
18972 test_401b() {
18973         local save=$($LCTL get_param -n jobid_var)
18974         local tmp=testing
18975
18976         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
18977                 error "no error returned when setting bad parameters"
18978
18979         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
18980         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
18981
18982         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
18983         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
18984         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
18985 }
18986 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
18987
18988 test_401c() {
18989         local jobid_var_old=$($LCTL get_param -n jobid_var)
18990         local jobid_var_new
18991
18992         $LCTL set_param jobid_var= &&
18993                 error "no error returned for 'set_param a='"
18994
18995         jobid_var_new=$($LCTL get_param -n jobid_var)
18996         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
18997                 error "jobid_var was changed by setting without value"
18998
18999         $LCTL set_param jobid_var &&
19000                 error "no error returned for 'set_param a'"
19001
19002         jobid_var_new=$($LCTL get_param -n jobid_var)
19003         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
19004                 error "jobid_var was changed by setting without value"
19005 }
19006 run_test 401c "Verify 'lctl set_param' without value fails in either format."
19007
19008 test_401d() {
19009         local jobid_var_old=$($LCTL get_param -n jobid_var)
19010         local jobid_var_new
19011         local new_value="foo=bar"
19012
19013         $LCTL set_param jobid_var=$new_value ||
19014                 error "'set_param a=b' did not accept a value containing '='"
19015
19016         jobid_var_new=$($LCTL get_param -n jobid_var)
19017         [[ "$jobid_var_new" == "$new_value" ]] ||
19018                 error "'set_param a=b' failed on a value containing '='"
19019
19020         # Reset the jobid_var to test the other format
19021         $LCTL set_param jobid_var=$jobid_var_old
19022         jobid_var_new=$($LCTL get_param -n jobid_var)
19023         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19024                 error "failed to reset jobid_var"
19025
19026         $LCTL set_param jobid_var $new_value ||
19027                 error "'set_param a b' did not accept a value containing '='"
19028
19029         jobid_var_new=$($LCTL get_param -n jobid_var)
19030         [[ "$jobid_var_new" == "$new_value" ]] ||
19031                 error "'set_param a b' failed on a value containing '='"
19032
19033         $LCTL set_param jobid_var $jobid_var_old
19034         jobid_var_new=$($LCTL get_param -n jobid_var)
19035         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19036                 error "failed to reset jobid_var"
19037 }
19038 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
19039
19040 test_402() {
19041         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
19042         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
19043                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
19044         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
19045                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
19046                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
19047         remote_mds_nodsh && skip "remote MDS with nodsh"
19048
19049         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
19050 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
19051         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
19052         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
19053                 echo "Touch failed - OK"
19054 }
19055 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
19056
19057 test_403() {
19058         local file1=$DIR/$tfile.1
19059         local file2=$DIR/$tfile.2
19060         local tfile=$TMP/$tfile
19061
19062         rm -f $file1 $file2 $tfile
19063
19064         touch $file1
19065         ln $file1 $file2
19066
19067         # 30 sec OBD_TIMEOUT in ll_getattr()
19068         # right before populating st_nlink
19069         $LCTL set_param fail_loc=0x80001409
19070         stat -c %h $file1 > $tfile &
19071
19072         # create an alias, drop all locks and reclaim the dentry
19073         < $file2
19074         cancel_lru_locks mdc
19075         cancel_lru_locks osc
19076         sysctl -w vm.drop_caches=2
19077
19078         wait
19079
19080         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19081
19082         rm -f $tfile $file1 $file2
19083 }
19084 run_test 403 "i_nlink should not drop to zero due to aliasing"
19085
19086 test_404() { # LU-6601
19087         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
19088                 skip "Need server version newer than 2.8.52"
19089         remote_mds_nodsh && skip "remote MDS with nodsh"
19090
19091         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19092                 awk '/osp .*-osc-MDT/ { print $4}')
19093
19094         local osp
19095         for osp in $mosps; do
19096                 echo "Deactivate: " $osp
19097                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19098                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19099                         awk -vp=$osp '$4 == p { print $2 }')
19100                 [ $stat = IN ] || {
19101                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19102                         error "deactivate error"
19103                 }
19104                 echo "Activate: " $osp
19105                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19106                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19107                         awk -vp=$osp '$4 == p { print $2 }')
19108                 [ $stat = UP ] || {
19109                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19110                         error "activate error"
19111                 }
19112         done
19113 }
19114 run_test 404 "validate manual {de}activated works properly for OSPs"
19115
19116 test_405() {
19117         [ $MDS1_VERSION -lt $(version_code 2.6.92) -o \
19118         [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
19119                 skip "Layout swap lock is not supported"
19120         check_swap_layouts_support
19121
19122         test_mkdir $DIR/$tdir
19123         swap_lock_test -d $DIR/$tdir ||
19124                 error "One layout swap locked test failed"
19125 }
19126 run_test 405 "Various layout swap lock tests"
19127
19128 test_406() {
19129         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19130         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19131         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19132         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19133         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
19134                 skip "Need MDS version at least 2.8.50"
19135
19136         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19137         local test_pool=$TESTNAME
19138
19139         if ! combined_mgs_mds ; then
19140                 mount_mgs_client
19141         fi
19142         pool_add $test_pool || error "pool_add failed"
19143         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19144                 error "pool_add_targets failed"
19145
19146         save_layout_restore_at_exit $MOUNT
19147
19148         # parent set default stripe count only, child will stripe from both
19149         # parent and fs default
19150         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19151                 error "setstripe $MOUNT failed"
19152         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19153         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19154         for i in $(seq 10); do
19155                 local f=$DIR/$tdir/$tfile.$i
19156                 touch $f || error "touch failed"
19157                 local count=$($LFS getstripe -c $f)
19158                 [ $count -eq $OSTCOUNT ] ||
19159                         error "$f stripe count $count != $OSTCOUNT"
19160                 local offset=$($LFS getstripe -i $f)
19161                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19162                 local size=$($LFS getstripe -S $f)
19163                 [ $size -eq $((def_stripe_size * 2)) ] ||
19164                         error "$f stripe size $size != $((def_stripe_size * 2))"
19165                 local pool=$($LFS getstripe -p $f)
19166                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19167         done
19168
19169         # change fs default striping, delete parent default striping, now child
19170         # will stripe from new fs default striping only
19171         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19172                 error "change $MOUNT default stripe failed"
19173         $LFS setstripe -c 0 $DIR/$tdir ||
19174                 error "delete $tdir default stripe failed"
19175         for i in $(seq 11 20); do
19176                 local f=$DIR/$tdir/$tfile.$i
19177                 touch $f || error "touch $f failed"
19178                 local count=$($LFS getstripe -c $f)
19179                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19180                 local offset=$($LFS getstripe -i $f)
19181                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19182                 local size=$($LFS getstripe -S $f)
19183                 [ $size -eq $def_stripe_size ] ||
19184                         error "$f stripe size $size != $def_stripe_size"
19185                 local pool=$($LFS getstripe -p $f)
19186                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19187         done
19188
19189         unlinkmany $DIR/$tdir/$tfile. 1 20
19190
19191         local f=$DIR/$tdir/$tfile
19192         pool_remove_all_targets $test_pool $f
19193         pool_remove $test_pool $f
19194
19195         if ! combined_mgs_mds ; then
19196                 umount_mgs_client
19197         fi
19198 }
19199 run_test 406 "DNE support fs default striping"
19200
19201 test_407() {
19202         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19203         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19204                 skip "Need MDS version at least 2.8.55"
19205         remote_mds_nodsh && skip "remote MDS with nodsh"
19206
19207         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19208                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19209         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19210                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19211         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19212
19213         #define OBD_FAIL_DT_TXN_STOP    0x2019
19214         for idx in $(seq $MDSCOUNT); do
19215                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19216         done
19217         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19218         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19219                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19220         true
19221 }
19222 run_test 407 "transaction fail should cause operation fail"
19223
19224 test_408() {
19225         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19226
19227         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19228         lctl set_param fail_loc=0x8000040a
19229         # let ll_prepare_partial_page() fail
19230         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19231
19232         rm -f $DIR/$tfile
19233
19234         # create at least 100 unused inodes so that
19235         # shrink_icache_memory(0) should not return 0
19236         touch $DIR/$tfile-{0..100}
19237         rm -f $DIR/$tfile-{0..100}
19238         sync
19239
19240         echo 2 > /proc/sys/vm/drop_caches
19241 }
19242 run_test 408 "drop_caches should not hang due to page leaks"
19243
19244 test_409()
19245 {
19246         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19247         check_mount_and_prep
19248
19249         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19250         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19251         touch $DIR/$tdir/guard || error "(2) Fail to create"
19252
19253         local PREFIX=$(str_repeat 'A' 128)
19254         echo "Create 1K hard links start at $(date)"
19255         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19256                 error "(3) Fail to hard link"
19257
19258         echo "Links count should be right although linkEA overflow"
19259         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19260         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19261         [ $linkcount -eq 1001 ] ||
19262                 error "(5) Unexpected hard links count: $linkcount"
19263
19264         echo "List all links start at $(date)"
19265         ls -l $DIR/$tdir/foo > /dev/null ||
19266                 error "(6) Fail to list $DIR/$tdir/foo"
19267
19268         echo "Unlink hard links start at $(date)"
19269         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19270                 error "(7) Fail to unlink"
19271 }
19272 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19273
19274 test_410()
19275 {
19276         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19277                 skip "Need client version at least 2.9.59"
19278
19279         # Create a file, and stat it from the kernel
19280         local testfile=$DIR/$tfile
19281         touch $testfile
19282
19283         local run_id=$RANDOM
19284         local my_ino=$(stat --format "%i" $testfile)
19285
19286         # Try to insert the module. This will always fail as the
19287         # module is designed to not be inserted.
19288         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19289             &> /dev/null
19290
19291         # Anything but success is a test failure
19292         dmesg | grep -q \
19293             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19294             error "no inode match"
19295 }
19296 run_test 410 "Test inode number returned from kernel thread"
19297
19298 cleanup_test411_cgroup() {
19299         trap 0
19300         rmdir "$1"
19301 }
19302
19303 test_411() {
19304         local cg_basedir=/sys/fs/cgroup/memory
19305         # LU-9966
19306         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19307                 skip "no setup for cgroup"
19308
19309         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19310                 error "test file creation failed"
19311         cancel_lru_locks osc
19312
19313         # Create a very small memory cgroup to force a slab allocation error
19314         local cgdir=$cg_basedir/osc_slab_alloc
19315         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19316         trap "cleanup_test411_cgroup $cgdir" EXIT
19317         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19318         echo 1M > $cgdir/memory.limit_in_bytes
19319
19320         # Should not LBUG, just be killed by oom-killer
19321         # dd will return 0 even allocation failure in some environment.
19322         # So don't check return value
19323         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19324         cleanup_test411_cgroup $cgdir
19325
19326         return 0
19327 }
19328 run_test 411 "Slab allocation error with cgroup does not LBUG"
19329
19330 test_412() {
19331         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19332         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19333                 skip "Need server version at least 2.10.55"
19334         fi
19335
19336         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19337                 error "mkdir failed"
19338         $LFS getdirstripe $DIR/$tdir
19339         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19340         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19341                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19342         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19343         [ $stripe_count -eq 2 ] ||
19344                 error "expect 2 get $stripe_count"
19345 }
19346 run_test 412 "mkdir on specific MDTs"
19347
19348 test_413() {
19349         [ $MDSCOUNT -lt 2 ] &&
19350                 skip "We need at least 2 MDTs for this test"
19351
19352         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19353                 skip "Need server version at least 2.10.55"
19354         fi
19355
19356         mkdir $DIR/$tdir || error "mkdir failed"
19357
19358         # find MDT that is the most full
19359         local max=$($LFS df | grep MDT |
19360                 awk 'BEGIN { a=0 }
19361                         { sub("%", "", $5)
19362                           if (0+$5 >= a)
19363                           {
19364                                 a = $5
19365                                 b = $6
19366                           }
19367                         }
19368                      END { split(b, c, ":")
19369                            sub("]", "", c[2])
19370                            print c[2]
19371                          }')
19372
19373         for i in $(seq $((MDSCOUNT - 1))); do
19374                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19375                         error "mkdir d$i failed"
19376                 $LFS getdirstripe $DIR/$tdir/d$i
19377                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19378                 [ $stripe_index -ne $max ] ||
19379                         error "don't expect $max"
19380         done
19381 }
19382 run_test 413 "mkdir on less full MDTs"
19383
19384 test_414() {
19385 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19386         $LCTL set_param fail_loc=0x80000521
19387         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19388         rm -f $DIR/$tfile
19389 }
19390 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19391
19392 test_415() {
19393         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19394         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19395                 skip "Need server version at least 2.11.52"
19396
19397         # LU-11102
19398         local total
19399         local setattr_pid
19400         local start_time
19401         local end_time
19402         local duration
19403
19404         total=500
19405         # this test may be slow on ZFS
19406         [ "$mds1_FSTYPE" == "zfs" ] && total=100
19407
19408         # though this test is designed for striped directory, let's test normal
19409         # directory too since lock is always saved as CoS lock.
19410         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19411         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19412
19413         (
19414                 while true; do
19415                         touch $DIR/$tdir
19416                 done
19417         ) &
19418         setattr_pid=$!
19419
19420         start_time=$(date +%s)
19421         for i in $(seq $total); do
19422                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19423                         > /dev/null
19424         done
19425         end_time=$(date +%s)
19426         duration=$((end_time - start_time))
19427
19428         kill -9 $setattr_pid
19429
19430         echo "rename $total files took $duration sec"
19431         [ $duration -lt 100 ] || error "rename took $duration sec"
19432 }
19433 run_test 415 "lock revoke is not missing"
19434
19435 test_416() {
19436         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19437                 skip "Need server version at least 2.11.55"
19438
19439         # define OBD_FAIL_OSD_TXN_START    0x19a
19440         do_facet mds1 lctl set_param fail_loc=0x19a
19441
19442         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19443
19444         true
19445 }
19446 run_test 416 "transaction start failure won't cause system hung"
19447
19448 cleanup_417() {
19449         trap 0
19450         do_nodes $(comma_list $(mdts_nodes)) \
19451                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19452         do_nodes $(comma_list $(mdts_nodes)) \
19453                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19454         do_nodes $(comma_list $(mdts_nodes)) \
19455                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19456 }
19457
19458 test_417() {
19459         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19460         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
19461                 skip "Need MDS version at least 2.11.56"
19462
19463         trap cleanup_417 RETURN EXIT
19464
19465         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19466         do_nodes $(comma_list $(mdts_nodes)) \
19467                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19468         $LFS migrate -m 0 $DIR/$tdir.1 &&
19469                 error "migrate dir $tdir.1 should fail"
19470
19471         do_nodes $(comma_list $(mdts_nodes)) \
19472                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19473         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19474                 error "create remote dir $tdir.2 should fail"
19475
19476         do_nodes $(comma_list $(mdts_nodes)) \
19477                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19478         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19479                 error "create striped dir $tdir.3 should fail"
19480         true
19481 }
19482 run_test 417 "disable remote dir, striped dir and dir migration"
19483
19484 # Checks that the outputs of df [-i] and lfs df [-i] match
19485 #
19486 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19487 check_lfs_df() {
19488         local dir=$2
19489         local inodes
19490         local df_out
19491         local lfs_df_out
19492         local tries=100
19493         local count=0
19494         local passed=false
19495
19496         # blocks or inodes
19497         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19498
19499         while (( count < tries )); do
19500                 cancel_lru_locks
19501                 sync; sleep 0.2
19502
19503                 # read the lines of interest
19504                 df_out=($(df $inodes $dir | tail -n +2)) ||
19505                         error "df $inodes $dir | tail -n +2 failed"
19506                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
19507                         error "lfs df $inodes $dir | grep summary: failed"
19508
19509                 # skip first substrings of each output as they are different
19510                 # <NID>:/<fsname for df, filesystem_summary: for lfs df
19511                 df_out=(${df_out[@]:1})
19512                 lfs_df_out=(${lfs_df_out[@]:1})
19513
19514                 # compare the two outputs
19515                 passed=true
19516
19517                 for i in {0..4}; do
19518                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
19519                 done
19520                 $passed && break
19521         done
19522
19523         $passed || error "df and lfs df $1 output mismatch: "   \
19524                          "df ${inodes}: ${df_out[*]}, "         \
19525                          "lfs df ${inodes}: ${lfs_df_out[*]}"
19526 }
19527
19528 test_418() {
19529         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19530
19531         local dir=$DIR/$tdir
19532         local numfiles=$((RANDOM % 4096 + 2))
19533         local numblocks=$((RANDOM % 256 + 1))
19534
19535         wait_delete_completed
19536         test_mkdir $dir
19537
19538         # check block output
19539         check_lfs_df blocks $dir
19540         # check inode output
19541         check_lfs_df inodes $dir
19542
19543         # create a single file and retest
19544         echo "Creating a single file and testing"
19545         createmany -o $dir/$tfile- 1 &>/dev/null ||
19546                 error "creating 1 file in $dir failed"
19547         check_lfs_df blocks $dir
19548         check_lfs_df inodes $dir
19549
19550         # create a random number of files
19551         echo "Creating $((numfiles - 1)) files and testing"
19552         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19553                 error "creating $((numfiles - 1)) files in $dir failed"
19554
19555         # write a random number of blocks to the first test file
19556         echo "Writing $numblocks 4K blocks and testing"
19557         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19558                 count=$numblocks &>/dev/null ||
19559                 error "dd to $dir/${tfile}-0 failed"
19560
19561         # retest
19562         check_lfs_df blocks $dir
19563         check_lfs_df inodes $dir
19564
19565         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19566                 error "unlinking $numfiles files in $dir failed"
19567 }
19568 run_test 418 "df and lfs df outputs match"
19569
19570 prep_801() {
19571         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19572         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19573                 skip "Need server version at least 2.9.55"
19574
19575         start_full_debug_logging
19576 }
19577
19578 post_801() {
19579         stop_full_debug_logging
19580 }
19581
19582 barrier_stat() {
19583         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19584                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19585                            awk '/The barrier for/ { print $7 }')
19586                 echo $st
19587         else
19588                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19589                 echo \'$st\'
19590         fi
19591 }
19592
19593 barrier_expired() {
19594         local expired
19595
19596         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19597                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19598                           awk '/will be expired/ { print $7 }')
19599         else
19600                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19601         fi
19602
19603         echo $expired
19604 }
19605
19606 test_801a() {
19607         prep_801
19608
19609         echo "Start barrier_freeze at: $(date)"
19610         #define OBD_FAIL_BARRIER_DELAY          0x2202
19611         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19612         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19613
19614         sleep 2
19615         local b_status=$(barrier_stat)
19616         echo "Got barrier status at: $(date)"
19617         [ "$b_status" = "'freezing_p1'" ] ||
19618                 error "(1) unexpected barrier status $b_status"
19619
19620         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19621         wait
19622         b_status=$(barrier_stat)
19623         [ "$b_status" = "'frozen'" ] ||
19624                 error "(2) unexpected barrier status $b_status"
19625
19626         local expired=$(barrier_expired)
19627         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19628         sleep $((expired + 3))
19629
19630         b_status=$(barrier_stat)
19631         [ "$b_status" = "'expired'" ] ||
19632                 error "(3) unexpected barrier status $b_status"
19633
19634         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19635                 error "(4) fail to freeze barrier"
19636
19637         b_status=$(barrier_stat)
19638         [ "$b_status" = "'frozen'" ] ||
19639                 error "(5) unexpected barrier status $b_status"
19640
19641         echo "Start barrier_thaw at: $(date)"
19642         #define OBD_FAIL_BARRIER_DELAY          0x2202
19643         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19644         do_facet mgs $LCTL barrier_thaw $FSNAME &
19645
19646         sleep 2
19647         b_status=$(barrier_stat)
19648         echo "Got barrier status at: $(date)"
19649         [ "$b_status" = "'thawing'" ] ||
19650                 error "(6) unexpected barrier status $b_status"
19651
19652         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19653         wait
19654         b_status=$(barrier_stat)
19655         [ "$b_status" = "'thawed'" ] ||
19656                 error "(7) unexpected barrier status $b_status"
19657
19658         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19659         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19660         do_facet mgs $LCTL barrier_freeze $FSNAME
19661
19662         b_status=$(barrier_stat)
19663         [ "$b_status" = "'failed'" ] ||
19664                 error "(8) unexpected barrier status $b_status"
19665
19666         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19667         do_facet mgs $LCTL barrier_thaw $FSNAME
19668
19669         post_801
19670 }
19671 run_test 801a "write barrier user interfaces and stat machine"
19672
19673 test_801b() {
19674         prep_801
19675
19676         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19677         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19678         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19679         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19680         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19681
19682         cancel_lru_locks mdc
19683
19684         # 180 seconds should be long enough
19685         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19686
19687         local b_status=$(barrier_stat)
19688         [ "$b_status" = "'frozen'" ] ||
19689                 error "(6) unexpected barrier status $b_status"
19690
19691         mkdir $DIR/$tdir/d0/d10 &
19692         mkdir_pid=$!
19693
19694         touch $DIR/$tdir/d1/f13 &
19695         touch_pid=$!
19696
19697         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19698         ln_pid=$!
19699
19700         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19701         mv_pid=$!
19702
19703         rm -f $DIR/$tdir/d4/f12 &
19704         rm_pid=$!
19705
19706         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19707
19708         # To guarantee taht the 'stat' is not blocked
19709         b_status=$(barrier_stat)
19710         [ "$b_status" = "'frozen'" ] ||
19711                 error "(8) unexpected barrier status $b_status"
19712
19713         # let above commands to run at background
19714         sleep 5
19715
19716         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19717         ps -p $touch_pid || error "(10) touch should be blocked"
19718         ps -p $ln_pid || error "(11) link should be blocked"
19719         ps -p $mv_pid || error "(12) rename should be blocked"
19720         ps -p $rm_pid || error "(13) unlink should be blocked"
19721
19722         b_status=$(barrier_stat)
19723         [ "$b_status" = "'frozen'" ] ||
19724                 error "(14) unexpected barrier status $b_status"
19725
19726         do_facet mgs $LCTL barrier_thaw $FSNAME
19727         b_status=$(barrier_stat)
19728         [ "$b_status" = "'thawed'" ] ||
19729                 error "(15) unexpected barrier status $b_status"
19730
19731         wait $mkdir_pid || error "(16) mkdir should succeed"
19732         wait $touch_pid || error "(17) touch should succeed"
19733         wait $ln_pid || error "(18) link should succeed"
19734         wait $mv_pid || error "(19) rename should succeed"
19735         wait $rm_pid || error "(20) unlink should succeed"
19736
19737         post_801
19738 }
19739 run_test 801b "modification will be blocked by write barrier"
19740
19741 test_801c() {
19742         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19743
19744         prep_801
19745
19746         stop mds2 || error "(1) Fail to stop mds2"
19747
19748         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19749
19750         local b_status=$(barrier_stat)
19751         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19752                 do_facet mgs $LCTL barrier_thaw $FSNAME
19753                 error "(2) unexpected barrier status $b_status"
19754         }
19755
19756         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19757                 error "(3) Fail to rescan barrier bitmap"
19758
19759         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19760
19761         b_status=$(barrier_stat)
19762         [ "$b_status" = "'frozen'" ] ||
19763                 error "(4) unexpected barrier status $b_status"
19764
19765         do_facet mgs $LCTL barrier_thaw $FSNAME
19766         b_status=$(barrier_stat)
19767         [ "$b_status" = "'thawed'" ] ||
19768                 error "(5) unexpected barrier status $b_status"
19769
19770         local devname=$(mdsdevname 2)
19771
19772         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19773
19774         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19775                 error "(7) Fail to rescan barrier bitmap"
19776
19777         post_801
19778 }
19779 run_test 801c "rescan barrier bitmap"
19780
19781 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19782 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19783 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19784
19785 cleanup_802() {
19786         trap 0
19787
19788         stopall
19789         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19790         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19791         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19792         setupall
19793 }
19794
19795 test_802() {
19796
19797         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19798         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19799                 skip "Need server version at least 2.9.55"
19800
19801         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19802
19803         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19804
19805         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19806                 error "(2) Fail to copy"
19807
19808         trap cleanup_802 EXIT
19809
19810         # sync by force before remount as readonly
19811         sync; sync_all_data; sleep 3; sync_all_data
19812
19813         stopall
19814
19815         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19816         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19817         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19818
19819         echo "Mount the server as read only"
19820         setupall server_only || error "(3) Fail to start servers"
19821
19822         echo "Mount client without ro should fail"
19823         mount_client $MOUNT &&
19824                 error "(4) Mount client without 'ro' should fail"
19825
19826         echo "Mount client with ro should succeed"
19827         mount_client $MOUNT ro ||
19828                 error "(5) Mount client with 'ro' should succeed"
19829
19830         echo "Modify should be refused"
19831         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19832
19833         echo "Read should be allowed"
19834         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19835                 error "(7) Read should succeed under ro mode"
19836
19837         cleanup_802
19838 }
19839 run_test 802 "simulate readonly device"
19840
19841 test_803() {
19842         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19843         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19844                 skip "MDS needs to be newer than 2.10.54"
19845
19846         mkdir -p $DIR/$tdir
19847         # Create some objects on all MDTs to trigger related logs objects
19848         for idx in $(seq $MDSCOUNT); do
19849                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19850                         $DIR/$tdir/dir${idx} ||
19851                         error "Fail to create $DIR/$tdir/dir${idx}"
19852         done
19853
19854         sync; sleep 3
19855         wait_delete_completed # ensure old test cleanups are finished
19856         echo "before create:"
19857         $LFS df -i $MOUNT
19858         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19859
19860         for i in {1..10}; do
19861                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19862                         error "Fail to create $DIR/$tdir/foo$i"
19863         done
19864
19865         sync; sleep 3
19866         echo "after create:"
19867         $LFS df -i $MOUNT
19868         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19869
19870         # allow for an llog to be cleaned up during the test
19871         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19872                 error "before ($before_used) + 10 > after ($after_used)"
19873
19874         for i in {1..10}; do
19875                 rm -rf $DIR/$tdir/foo$i ||
19876                         error "Fail to remove $DIR/$tdir/foo$i"
19877         done
19878
19879         sleep 3 # avoid MDT return cached statfs
19880         wait_delete_completed
19881         echo "after unlink:"
19882         $LFS df -i $MOUNT
19883         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19884
19885         # allow for an llog to be created during the test
19886         [ $after_used -le $((before_used + 1)) ] ||
19887                 error "after ($after_used) > before ($before_used) + 1"
19888 }
19889 run_test 803 "verify agent object for remote object"
19890
19891 test_804() {
19892         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19893         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19894                 skip "MDS needs to be newer than 2.10.54"
19895         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19896
19897         mkdir -p $DIR/$tdir
19898         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19899                 error "Fail to create $DIR/$tdir/dir0"
19900
19901         local fid=$($LFS path2fid $DIR/$tdir/dir0)
19902         local dev=$(mdsdevname 2)
19903
19904         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19905                 grep ${fid} || error "NOT found agent entry for dir0"
19906
19907         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
19908                 error "Fail to create $DIR/$tdir/dir1"
19909
19910         touch $DIR/$tdir/dir1/foo0 ||
19911                 error "Fail to create $DIR/$tdir/dir1/foo0"
19912         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
19913         local rc=0
19914
19915         for idx in $(seq $MDSCOUNT); do
19916                 dev=$(mdsdevname $idx)
19917                 do_facet mds${idx} \
19918                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19919                         grep ${fid} && rc=$idx
19920         done
19921
19922         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
19923                 error "Fail to rename foo0 to foo1"
19924         if [ $rc -eq 0 ]; then
19925                 for idx in $(seq $MDSCOUNT); do
19926                         dev=$(mdsdevname $idx)
19927                         do_facet mds${idx} \
19928                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19929                         grep ${fid} && rc=$idx
19930                 done
19931         fi
19932
19933         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
19934                 error "Fail to rename foo1 to foo2"
19935         if [ $rc -eq 0 ]; then
19936                 for idx in $(seq $MDSCOUNT); do
19937                         dev=$(mdsdevname $idx)
19938                         do_facet mds${idx} \
19939                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
19940                         grep ${fid} && rc=$idx
19941                 done
19942         fi
19943
19944         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
19945
19946         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
19947                 error "Fail to link to $DIR/$tdir/dir1/foo2"
19948         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
19949                 error "Fail to rename foo2 to foo0"
19950         unlink $DIR/$tdir/dir1/foo0 ||
19951                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
19952         rm -rf $DIR/$tdir/dir0 ||
19953                 error "Fail to rm $DIR/$tdir/dir0"
19954
19955         for idx in $(seq $MDSCOUNT); do
19956                 dev=$(mdsdevname $idx)
19957                 rc=0
19958
19959                 stop mds${idx}
19960                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
19961                         rc=$?
19962                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
19963                         error "mount mds$idx failed"
19964                 df $MOUNT > /dev/null 2>&1
19965
19966                 # e2fsck should not return error
19967                 [ $rc -eq 0 ] ||
19968                         error "e2fsck detected error on MDT${idx}: rc=$rc"
19969         done
19970 }
19971 run_test 804 "verify agent entry for remote entry"
19972
19973 cleanup_805() {
19974         do_facet $SINGLEMDS zfs set quota=$old $fsset
19975         unlinkmany $DIR/$tdir/f- 1000000
19976         trap 0
19977 }
19978
19979 test_805() {
19980         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
19981         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
19982         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
19983                 skip "netfree not implemented before 0.7"
19984         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
19985                 skip "Need MDS version at least 2.10.57"
19986
19987         local fsset
19988         local freekb
19989         local usedkb
19990         local old
19991         local quota
19992         local pref="osd-zfs.lustre-MDT0000."
19993
19994         # limit available space on MDS dataset to meet nospace issue
19995         # quickly. then ZFS 0.7.2 can use reserved space if asked
19996         # properly (using netfree flag in osd_declare_destroy()
19997         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
19998         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
19999                 gawk '{print $3}')
20000         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
20001         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
20002         let "usedkb=usedkb-freekb"
20003         let "freekb=freekb/2"
20004         if let "freekb > 5000"; then
20005                 let "freekb=5000"
20006         fi
20007         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
20008         trap cleanup_805 EXIT
20009         mkdir $DIR/$tdir
20010         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
20011         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
20012         rm -rf $DIR/$tdir || error "not able to remove"
20013         do_facet $SINGLEMDS zfs set quota=$old $fsset
20014         trap 0
20015 }
20016 run_test 805 "ZFS can remove from full fs"
20017
20018 # Size-on-MDS test
20019 check_lsom_data()
20020 {
20021         local file=$1
20022         local size=$($LFS getsom -s $file)
20023         local expect=$(stat -c %s $file)
20024
20025         [[ $size == $expect ]] ||
20026                 error "$file expected size: $expect, got: $size"
20027
20028         local blocks=$($LFS getsom -b $file)
20029         expect=$(stat -c %b $file)
20030         [[ $blocks == $expect ]] ||
20031                 error "$file expected blocks: $expect, got: $blocks"
20032 }
20033
20034 check_lsom_size()
20035 {
20036         local size=$($LFS getsom -s $1)
20037         local expect=$2
20038
20039         [[ $size == $expect ]] ||
20040                 error "$file expected size: $expect, got: $size"
20041 }
20042
20043 test_806() {
20044         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20045                 skip "Need MDS version at least 2.11.52"
20046
20047         local bs=1048576
20048
20049         touch $DIR/$tfile || error "touch $tfile failed"
20050
20051         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20052         save_lustre_params client "llite.*.xattr_cache" > $save
20053         lctl set_param llite.*.xattr_cache=0
20054         stack_trap "restore_lustre_params < $save" EXIT
20055
20056         # single-threaded write
20057         echo "Test SOM for single-threaded write"
20058         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
20059                 error "write $tfile failed"
20060         check_lsom_size $DIR/$tfile $bs
20061
20062         local num=32
20063         local size=$(($num * $bs))
20064         local offset=0
20065         local i
20066
20067         echo "Test SOM for single client multi-threaded($num) write"
20068         $TRUNCATE $DIR/$tfile 0
20069         for ((i = 0; i < $num; i++)); do
20070                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20071                 local pids[$i]=$!
20072                 offset=$((offset + $bs))
20073         done
20074         for (( i=0; i < $num; i++ )); do
20075                 wait ${pids[$i]}
20076         done
20077         check_lsom_size $DIR/$tfile $size
20078
20079         $TRUNCATE $DIR/$tfile 0
20080         for ((i = 0; i < $num; i++)); do
20081                 offset=$((offset - $bs))
20082                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20083                 local pids[$i]=$!
20084         done
20085         for (( i=0; i < $num; i++ )); do
20086                 wait ${pids[$i]}
20087         done
20088         check_lsom_size $DIR/$tfile $size
20089
20090         # multi-client wirtes
20091         num=$(get_node_count ${CLIENTS//,/ })
20092         size=$(($num * $bs))
20093         offset=0
20094         i=0
20095
20096         echo "Test SOM for multi-client ($num) writes"
20097         $TRUNCATE $DIR/$tfile 0
20098         for client in ${CLIENTS//,/ }; do
20099                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20100                 local pids[$i]=$!
20101                 i=$((i + 1))
20102                 offset=$((offset + $bs))
20103         done
20104         for (( i=0; i < $num; i++ )); do
20105                 wait ${pids[$i]}
20106         done
20107         check_lsom_size $DIR/$tfile $offset
20108
20109         i=0
20110         $TRUNCATE $DIR/$tfile 0
20111         for client in ${CLIENTS//,/ }; do
20112                 offset=$((offset - $bs))
20113                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20114                 local pids[$i]=$!
20115                 i=$((i + 1))
20116         done
20117         for (( i=0; i < $num; i++ )); do
20118                 wait ${pids[$i]}
20119         done
20120         check_lsom_size $DIR/$tfile $size
20121
20122         # verify truncate
20123         echo "Test SOM for truncate"
20124         $TRUNCATE $DIR/$tfile 1048576
20125         check_lsom_size $DIR/$tfile 1048576
20126         $TRUNCATE $DIR/$tfile 1234
20127         check_lsom_size $DIR/$tfile 1234
20128
20129         # verify SOM blocks count
20130         echo "Verify SOM block count"
20131         $TRUNCATE $DIR/$tfile 0
20132         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
20133                 error "failed to write file $tfile"
20134         check_lsom_data $DIR/$tfile
20135 }
20136 run_test 806 "Verify Lazy Size on MDS"
20137
20138 test_807() {
20139         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20140                 skip "Need MDS version at least 2.11.52"
20141
20142         # Registration step
20143         changelog_register || error "changelog_register failed"
20144         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
20145         changelog_users $SINGLEMDS | grep -q $cl_user ||
20146                 error "User $cl_user not found in changelog_users"
20147
20148         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20149         save_lustre_params client "llite.*.xattr_cache" > $save
20150         lctl set_param llite.*.xattr_cache=0
20151         stack_trap "restore_lustre_params < $save" EXIT
20152
20153         rm -rf $DIR/$tdir || error "rm $tdir failed"
20154         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20155         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
20156         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
20157         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
20158                 error "truncate $tdir/trunc failed"
20159
20160         local bs=1048576
20161         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
20162                 error "write $tfile failed"
20163
20164         # multi-client wirtes
20165         local num=$(get_node_count ${CLIENTS//,/ })
20166         local offset=0
20167         local i=0
20168
20169         echo "Test SOM for multi-client ($num) writes"
20170         touch $DIR/$tfile || error "touch $tfile failed"
20171         $TRUNCATE $DIR/$tfile 0
20172         for client in ${CLIENTS//,/ }; do
20173                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20174                 local pids[$i]=$!
20175                 i=$((i + 1))
20176                 offset=$((offset + $bs))
20177         done
20178         for (( i=0; i < $num; i++ )); do
20179                 wait ${pids[$i]}
20180         done
20181
20182         sleep 5
20183         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20184         check_lsom_data $DIR/$tdir/trunc
20185         check_lsom_data $DIR/$tdir/single_dd
20186         check_lsom_data $DIR/$tfile
20187
20188         rm -rf $DIR/$tdir
20189         # Deregistration step
20190         changelog_deregister || error "changelog_deregister failed"
20191 }
20192 run_test 807 "verify LSOM syncing tool"
20193
20194 check_som_nologged()
20195 {
20196         local lines=$($LFS changelog $FSNAME-MDT0000 |
20197                 grep 'x=trusted.som' | wc -l)
20198         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20199 }
20200
20201 test_808() {
20202         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
20203                 skip "Need MDS version at least 2.11.55"
20204
20205         # Registration step
20206         changelog_register || error "changelog_register failed"
20207
20208         touch $DIR/$tfile || error "touch $tfile failed"
20209         check_som_nologged
20210
20211         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20212                 error "write $tfile failed"
20213         check_som_nologged
20214
20215         $TRUNCATE $DIR/$tfile 1234
20216         check_som_nologged
20217
20218         $TRUNCATE $DIR/$tfile 1048576
20219         check_som_nologged
20220
20221         # Deregistration step
20222         changelog_deregister || error "changelog_deregister failed"
20223 }
20224 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20225
20226 check_som_nodata()
20227 {
20228         $LFS getsom $1
20229         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20230 }
20231
20232 test_809() {
20233         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20234                 skip "Need MDS version at least 2.11.56"
20235
20236         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20237                 error "failed to create DoM-only file $DIR/$tfile"
20238         touch $DIR/$tfile || error "touch $tfile failed"
20239         check_som_nodata $DIR/$tfile
20240
20241         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20242                 error "write $tfile failed"
20243         check_som_nodata $DIR/$tfile
20244
20245         $TRUNCATE $DIR/$tfile 1234
20246         check_som_nodata $DIR/$tfile
20247
20248         $TRUNCATE $DIR/$tfile 4097
20249         check_som_nodata $DIR/$file
20250 }
20251 run_test 809 "Verify no SOM xattr store for DoM-only files"
20252
20253 test_810() {
20254         local ORIG
20255         local CSUM
20256
20257         # t10 seem to dislike partial pages
20258         lctl set_param osc.*.checksum_type=adler
20259         lctl set_param fail_loc=0x411
20260         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20261         ORIG=$(md5sum $DIR/$tfile)
20262         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20263         CSUM=$(md5sum $DIR/$tfile)
20264         set_checksum_type adler
20265         if [ "$ORIG" != "$CSUM" ]; then
20266                 error "$ORIG != $CSUM"
20267         fi
20268 }
20269 run_test 810 "partial page writes on ZFS (LU-11663)"
20270
20271 test_811() {
20272         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20273                 skip "Need MDS version at least 2.11.56"
20274
20275         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20276         do_facet mds1 $LCTL set_param fail_loc=0x165
20277         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20278
20279         stop mds1
20280         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20281
20282         sleep 5
20283         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20284                 error "MDD orphan cleanup thread not quit"
20285 }
20286 run_test 811 "orphan name stub can be cleaned up in startup"
20287
20288 #
20289 # tests that do cleanup/setup should be run at the end
20290 #
20291
20292 test_900() {
20293         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20294         local ls
20295
20296         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20297         $LCTL set_param fail_loc=0x903
20298
20299         cancel_lru_locks MGC
20300
20301         FAIL_ON_ERROR=true cleanup
20302         FAIL_ON_ERROR=true setup
20303 }
20304 run_test 900 "umount should not race with any mgc requeue thread"
20305
20306 complete $SECONDS
20307 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20308 check_and_cleanup_lustre
20309 if [ "$I_MOUNTED" != "yes" ]; then
20310         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20311 fi
20312 exit_status