Whamcloud - gitweb
LU-10496 tgt: move FMD handling from OFD to target
[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
12 ALWAYS_EXCEPT="$SANITY_EXCEPT  42a     42b     42c"
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-11594 LU-11667 LU-11729
27         ALWAYS_EXCEPT+=" 45       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 "$LFS 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         $LFS 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=$($LFS getstripe -c $1)
1976         lmm_seq=$($LFS getstripe -v $1 | awk '/lmm_seq/ { print $2 }')
1977         lmm_oid=$($LFS 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         $LFS 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 "$LFS getstripe -c $MOUNT | sed 's/  *//g'" "1" 20 ||
2110                 error "stripe count $($LFS getstripe -c $MOUNT) != 1"
2111         local default_size=$($LFS getstripe -S $MOUNT)
2112         local default_offset=$($LFS 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                 $LFS setstripe -i $i -c -1 $tfile$i
2159                 # get striping information
2160                 ost_idx=($($LFS 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         $LFS 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         [[ $($LFS getstripe -c $DIR/$tdir/f0) == 2 ]] ||
2287                 error "wrong stripecount"
2288
2289 }
2290 run_test 27F "Client resend delayed layout creation with non-zero size"
2291
2292 test_27G() { #LU-10629
2293         [ $MDS1_VERSION -lt $(version_code 2.11.51) ] &&
2294                 skip "Need MDS version at least 2.11.51"
2295         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
2296         remote_mds_nodsh && skip "remote MDS with nodsh"
2297         local POOL=${POOL:-testpool}
2298         local ostrange="0 0 1"
2299
2300         test_mkdir $DIR/$tdir
2301         pool_add $POOL || error "pool_add failed"
2302         pool_add_targets $POOL $ostrange || error "pool_add_targets failed"
2303         $LFS setstripe -p $POOL $DIR/$tdir
2304
2305         local pool=$($LFS getstripe -p $DIR/$tdir)
2306
2307         [ "$pool" = "$POOL" ] || error "Striping failed got '$pool' not '$POOL'"
2308
2309         $LFS setstripe -d $DIR/$tdir
2310
2311         pool=$($LFS getstripe -p $DIR/$tdir)
2312
2313         rmdir $DIR/$tdir
2314
2315         [ -z "$pool" ] || error "'$pool' is not empty"
2316 }
2317 run_test 27G "Clear OST pool from stripe"
2318
2319 test_27H() {
2320         [[ $MDS1_VERSION -le $(version_code 2.11.54) ]] &&
2321                 skip "Need MDS version newer than 2.11.54"
2322         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
2323         test_mkdir $DIR/$tdir
2324         $LFS setstripe -o 0 -o 2 $DIR/$tdir || error "setstripe failed"
2325         touch $DIR/$tdir/$tfile
2326         $LFS getstripe -c $DIR/$tdir/$tfile
2327         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
2328                 error "two-stripe file doesn't have two stripes"
2329
2330         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
2331         $LFS getstripe -y $DIR/$tdir/$tfile
2332         (( $($LFS getstripe -y $DIR/$tdir/$tfile |
2333              egrep -c "l_ost_idx: [02]$") == "2" )) ||
2334                 error "expected l_ost_idx: [02]$ not matched"
2335
2336         # make sure ost list has been cleared
2337         local stripesize=$($LFS getstripe -S $DIR/$tdir)
2338         $LFS setstripe -S $((stripesize * 4)) -i 1 \
2339                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
2340         touch $DIR/$tdir/f3
2341         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
2342 }
2343 run_test 27H "Set specific OSTs stripe"
2344
2345 # createtest also checks that device nodes are created and
2346 # then visible correctly (#2091)
2347 test_28() { # bug 2091
2348         test_mkdir $DIR/d28
2349         $CREATETEST $DIR/d28/ct || error "createtest failed"
2350 }
2351 run_test 28 "create/mknod/mkdir with bad file types ============"
2352
2353 test_29() {
2354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2355
2356         sync; sleep 1; sync # flush out any dirty pages from previous tests
2357         cancel_lru_locks
2358         test_mkdir $DIR/d29
2359         touch $DIR/d29/foo
2360         log 'first d29'
2361         ls -l $DIR/d29
2362
2363         declare -i LOCKCOUNTORIG=0
2364         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2365                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2366         done
2367         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2368
2369         declare -i LOCKUNUSEDCOUNTORIG=0
2370         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2371                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2372         done
2373
2374         log 'second d29'
2375         ls -l $DIR/d29
2376         log 'done'
2377
2378         declare -i LOCKCOUNTCURRENT=0
2379         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2380                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2381         done
2382
2383         declare -i LOCKUNUSEDCOUNTCURRENT=0
2384         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2385                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2386         done
2387
2388         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2389                 $LCTL set_param -n ldlm.dump_namespaces ""
2390                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2391                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2392                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2393                 return 2
2394         fi
2395         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2396                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2397                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2398                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2399                 return 3
2400         fi
2401 }
2402 run_test 29 "IT_GETATTR regression  ============================"
2403
2404 test_30a() { # was test_30
2405         cp $(which ls) $DIR || cp /bin/ls $DIR
2406         $DIR/ls / || error "Can't execute binary from lustre"
2407         rm $DIR/ls
2408 }
2409 run_test 30a "execute binary from Lustre (execve) =============="
2410
2411 test_30b() {
2412         cp `which ls` $DIR || cp /bin/ls $DIR
2413         chmod go+rx $DIR/ls
2414         $RUNAS $DIR/ls / || error "Can't execute binary from lustre as non-root"
2415         rm $DIR/ls
2416 }
2417 run_test 30b "execute binary from Lustre as non-root ==========="
2418
2419 test_30c() { # b=22376
2420         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2421
2422         cp `which ls` $DIR || cp /bin/ls $DIR
2423         chmod a-rw $DIR/ls
2424         cancel_lru_locks mdc
2425         cancel_lru_locks osc
2426         $RUNAS $DIR/ls / || error "Can't execute binary from lustre"
2427         rm -f $DIR/ls
2428 }
2429 run_test 30c "execute binary from Lustre without read perms ===="
2430
2431 test_31a() {
2432         $OPENUNLINK $DIR/f31 $DIR/f31 || error "openunlink failed"
2433         $CHECKSTAT -a $DIR/f31 || error "$DIR/f31 exists"
2434 }
2435 run_test 31a "open-unlink file =================================="
2436
2437 test_31b() {
2438         touch $DIR/f31 || error "touch $DIR/f31 failed"
2439         ln $DIR/f31 $DIR/f31b || error "ln failed"
2440         $MULTIOP $DIR/f31b Ouc || error "multiop failed"
2441         $CHECKSTAT -t file $DIR/f31 || error "$DIR/f31 not file type"
2442 }
2443 run_test 31b "unlink file with multiple links while open ======="
2444
2445 test_31c() {
2446         touch $DIR/f31 || error "touch $DIR/f31 failed"
2447         ln $DIR/f31 $DIR/f31c || error "ln failed"
2448         multiop_bg_pause $DIR/f31 O_uc ||
2449                 error "multiop_bg_pause for $DIR/f31 failed"
2450         MULTIPID=$!
2451         $MULTIOP $DIR/f31c Ouc
2452         kill -USR1 $MULTIPID
2453         wait $MULTIPID
2454 }
2455 run_test 31c "open-unlink file with multiple links ============="
2456
2457 test_31d() {
2458         opendirunlink $DIR/d31d $DIR/d31d || error "opendirunlink failed"
2459         $CHECKSTAT -a $DIR/d31d || error "$DIR/d31d exists"
2460 }
2461 run_test 31d "remove of open directory ========================="
2462
2463 test_31e() { # bug 2904
2464         openfilleddirunlink $DIR/d31e || error "openfilleddirunlink failed"
2465 }
2466 run_test 31e "remove of open non-empty directory ==============="
2467
2468 test_31f() { # bug 4554
2469         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2470
2471         set -vx
2472         test_mkdir $DIR/d31f
2473         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2474         cp /etc/hosts $DIR/d31f
2475         ls -l $DIR/d31f
2476         $LFS getstripe $DIR/d31f/hosts
2477         multiop_bg_pause $DIR/d31f D_c || return 1
2478         MULTIPID=$!
2479
2480         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2481         test_mkdir $DIR/d31f
2482         $LFS setstripe -S 1048576 -c 1 $DIR/d31f
2483         cp /etc/hosts $DIR/d31f
2484         ls -l $DIR/d31f
2485         $LFS getstripe $DIR/d31f/hosts
2486         multiop_bg_pause $DIR/d31f D_c || return 1
2487         MULTIPID2=$!
2488
2489         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2490         wait $MULTIPID || error "first opendir $MULTIPID failed"
2491
2492         sleep 6
2493
2494         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2495         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2496         set +vx
2497 }
2498 run_test 31f "remove of open directory with open-unlink file ==="
2499
2500 test_31g() {
2501         echo "-- cross directory link --"
2502         test_mkdir -c1 $DIR/${tdir}ga
2503         test_mkdir -c1 $DIR/${tdir}gb
2504         touch $DIR/${tdir}ga/f
2505         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2506         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2507         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2508         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2509         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2510 }
2511 run_test 31g "cross directory link==============="
2512
2513 test_31h() {
2514         echo "-- cross directory link --"
2515         test_mkdir -c1 $DIR/${tdir}
2516         test_mkdir -c1 $DIR/${tdir}/dir
2517         touch $DIR/${tdir}/f
2518         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2519         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2520         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2521         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2522         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2523 }
2524 run_test 31h "cross directory link under child==============="
2525
2526 test_31i() {
2527         echo "-- cross directory link --"
2528         test_mkdir -c1 $DIR/$tdir
2529         test_mkdir -c1 $DIR/$tdir/dir
2530         touch $DIR/$tdir/dir/f
2531         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2532         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2533         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2534         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2535         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2536 }
2537 run_test 31i "cross directory link under parent==============="
2538
2539 test_31j() {
2540         test_mkdir -c1 -p $DIR/$tdir
2541         test_mkdir -c1 -p $DIR/$tdir/dir1
2542         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2543         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2544         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2545         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2546         return 0
2547 }
2548 run_test 31j "link for directory==============="
2549
2550 test_31k() {
2551         test_mkdir -c1 -p $DIR/$tdir
2552         touch $DIR/$tdir/s
2553         touch $DIR/$tdir/exist
2554         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2555         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2556         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2557         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2558         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2559         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2560         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2561         return 0
2562 }
2563 run_test 31k "link to file: the same, non-existing, dir==============="
2564
2565 test_31m() {
2566         mkdir $DIR/d31m
2567         touch $DIR/d31m/s
2568         mkdir $DIR/d31m2
2569         touch $DIR/d31m2/exist
2570         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2571         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2572         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2573         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2574         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2575         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2576         return 0
2577 }
2578 run_test 31m "link to file: the same, non-existing, dir==============="
2579
2580 test_31n() {
2581         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2582         nlink=$(stat --format=%h $DIR/$tfile)
2583         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2584         local fd=$(free_fd)
2585         local cmd="exec $fd<$DIR/$tfile"
2586         eval $cmd
2587         cmd="exec $fd<&-"
2588         trap "eval $cmd" EXIT
2589         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2590         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2591         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2592         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2593         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2594         eval $cmd
2595 }
2596 run_test 31n "check link count of unlinked file"
2597
2598 link_one() {
2599         local TEMPNAME=$(mktemp $1_XXXXXX)
2600         mlink $TEMPNAME $1 2> /dev/null &&
2601                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2602         munlink $TEMPNAME
2603 }
2604
2605 test_31o() { # LU-2901
2606         test_mkdir $DIR/$tdir
2607         for LOOP in $(seq 100); do
2608                 rm -f $DIR/$tdir/$tfile*
2609                 for THREAD in $(seq 8); do
2610                         link_one $DIR/$tdir/$tfile.$LOOP &
2611                 done
2612                 wait
2613                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2614                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2615                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2616                         break || true
2617         done
2618 }
2619 run_test 31o "duplicate hard links with same filename"
2620
2621 test_31p() {
2622         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
2623
2624         test_mkdir $DIR/$tdir
2625         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2626         $LFS setdirstripe -D -c2 -H all_char $DIR/$tdir/striped_dir
2627
2628         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2629                 error "open unlink test1 failed"
2630         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2631                 error "open unlink test2 failed"
2632
2633         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2634                 error "test1 still exists"
2635         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2636                 error "test2 still exists"
2637 }
2638 run_test 31p "remove of open striped directory"
2639
2640 cleanup_test32_mount() {
2641         local rc=0
2642         trap 0
2643         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2644         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2645         losetup -d $loopdev || true
2646         rm -rf $DIR/$tdir
2647         return $rc
2648 }
2649
2650 test_32a() {
2651         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2652
2653         echo "== more mountpoints and symlinks ================="
2654         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2655         trap cleanup_test32_mount EXIT
2656         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2657         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2658                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2659         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. ||
2660                 error "$DIR/$tdir/ext2-mountpoint/.. not dir type"
2661         cleanup_test32_mount
2662 }
2663 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2664
2665 test_32b() {
2666         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2667
2668         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2669         trap cleanup_test32_mount EXIT
2670         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2671         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2672                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2673         ls -al $DIR/$tdir/ext2-mountpoint/.. ||
2674                 error "Can't list $DIR/$tdir/ext2-mountpoint/.."
2675         cleanup_test32_mount
2676 }
2677 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2678
2679 test_32c() {
2680         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2681
2682         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2683         trap cleanup_test32_mount EXIT
2684         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2685         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2686                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2687         test_mkdir -p $DIR/$tdir/d2/test_dir
2688         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2689                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_dir not dir type"
2690         cleanup_test32_mount
2691 }
2692 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2693
2694 test_32d() {
2695         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2696
2697         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2698         trap cleanup_test32_mount EXIT
2699         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2700         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2701                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2702         test_mkdir -p $DIR/$tdir/d2/test_dir
2703         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir ||
2704                 error "Can't list $DIR/$tdir/ext2-mountpoint/../d2/test_dir"
2705         cleanup_test32_mount
2706 }
2707 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2708
2709 test_32e() {
2710         rm -fr $DIR/$tdir
2711         test_mkdir -p $DIR/$tdir/tmp
2712         local tmp_dir=$DIR/$tdir/tmp
2713         ln -s $DIR/$tdir $tmp_dir/symlink11
2714         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2715         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2716         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2717 }
2718 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2719
2720 test_32f() {
2721         rm -fr $DIR/$tdir
2722         test_mkdir -p $DIR/$tdir/tmp
2723         local tmp_dir=$DIR/$tdir/tmp
2724         ln -s $DIR/$tdir $tmp_dir/symlink11
2725         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2726         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2727         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2728 }
2729 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2730
2731 test_32g() {
2732         local tmp_dir=$DIR/$tdir/tmp
2733         test_mkdir -p $tmp_dir
2734         test_mkdir $DIR/${tdir}2
2735         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2736         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2737         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2738         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2739         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2740         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2741 }
2742 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2743
2744 test_32h() {
2745         rm -fr $DIR/$tdir $DIR/${tdir}2
2746         tmp_dir=$DIR/$tdir/tmp
2747         test_mkdir -p $tmp_dir
2748         test_mkdir $DIR/${tdir}2
2749         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2750         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2751         ls $tmp_dir/symlink12 || error "listing symlink12"
2752         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2753 }
2754 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2755
2756 test_32i() {
2757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2758
2759         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2760         trap cleanup_test32_mount EXIT
2761         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2762         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2763                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2764         touch $DIR/$tdir/test_file
2765         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file ||
2766                 error "$DIR/$tdir/ext2-mountpoint/../test_file not file type"
2767         cleanup_test32_mount
2768 }
2769 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2770
2771 test_32j() {
2772         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2773
2774         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2775         trap cleanup_test32_mount EXIT
2776         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2777         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2778                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2779         touch $DIR/$tdir/test_file
2780         cat $DIR/$tdir/ext2-mountpoint/../test_file ||
2781                 error "Can't open $DIR/$tdir/ext2-mountpoint/../test_file"
2782         cleanup_test32_mount
2783 }
2784 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2785
2786 test_32k() {
2787         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2788
2789         rm -fr $DIR/$tdir
2790         trap cleanup_test32_mount EXIT
2791         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2792         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2793                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2794         test_mkdir -p $DIR/$tdir/d2
2795         touch $DIR/$tdir/d2/test_file || error "touch failed"
2796         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2797                 error "$DIR/$tdir/ext2-mountpoint/../d2/test_file not file type"
2798         cleanup_test32_mount
2799 }
2800 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2801
2802 test_32l() {
2803         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2804
2805         rm -fr $DIR/$tdir
2806         trap cleanup_test32_mount EXIT
2807         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2808         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2809                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2810         test_mkdir -p $DIR/$tdir/d2
2811         touch $DIR/$tdir/d2/test_file || error "touch failed"
2812         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file ||
2813                 error "Can't open $DIR/$tdir/ext2-mountpoint/../d2/test_file"
2814         cleanup_test32_mount
2815 }
2816 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2817
2818 test_32m() {
2819         rm -fr $DIR/d32m
2820         test_mkdir -p $DIR/d32m/tmp
2821         TMP_DIR=$DIR/d32m/tmp
2822         ln -s $DIR $TMP_DIR/symlink11
2823         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2824         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 ||
2825                 error "symlink11 not a link"
2826         $CHECKSTAT -t link $DIR/d32m/symlink01 ||
2827                 error "symlink01 not a link"
2828 }
2829 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2830
2831 test_32n() {
2832         rm -fr $DIR/d32n
2833         test_mkdir -p $DIR/d32n/tmp
2834         TMP_DIR=$DIR/d32n/tmp
2835         ln -s $DIR $TMP_DIR/symlink11
2836         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2837         ls -l $DIR/d32n/tmp/symlink11  || error "listing symlink11"
2838         ls -l $DIR/d32n/symlink01 || error "listing symlink01"
2839 }
2840 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2841
2842 test_32o() {
2843         touch $DIR/$tfile
2844         test_mkdir -p $DIR/d32o/tmp
2845         TMP_DIR=$DIR/d32o/tmp
2846         ln -s $DIR/$tfile $TMP_DIR/symlink12
2847         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2848         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 ||
2849                 error "symlink12 not a link"
2850         $CHECKSTAT -t link $DIR/d32o/symlink02 || error "symlink02 not a link"
2851         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 ||
2852                 error "$DIR/d32o/tmp/symlink12 not file type"
2853         $CHECKSTAT -t file -f $DIR/d32o/symlink02 ||
2854                 error "$DIR/d32o/symlink02 not file type"
2855 }
2856 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2857
2858 test_32p() {
2859         log 32p_1
2860         rm -fr $DIR/d32p
2861         log 32p_2
2862         rm -f $DIR/$tfile
2863         log 32p_3
2864         touch $DIR/$tfile
2865         log 32p_4
2866         test_mkdir -p $DIR/d32p/tmp
2867         log 32p_5
2868         TMP_DIR=$DIR/d32p/tmp
2869         log 32p_6
2870         ln -s $DIR/$tfile $TMP_DIR/symlink12
2871         log 32p_7
2872         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2873         log 32p_8
2874         cat $DIR/d32p/tmp/symlink12 ||
2875                 error "Can't open $DIR/d32p/tmp/symlink12"
2876         log 32p_9
2877         cat $DIR/d32p/symlink02 || error "Can't open $DIR/d32p/symlink02"
2878         log 32p_10
2879 }
2880 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2881
2882 test_32q() {
2883         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2884
2885         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2886         trap cleanup_test32_mount EXIT
2887         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2888         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2889         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2890                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2891         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2892         cleanup_test32_mount
2893 }
2894 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2895
2896 test_32r() {
2897         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2898
2899         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2900         trap cleanup_test32_mount EXIT
2901         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2902         touch $DIR/$tdir/ext2-mountpoint/under_the_mount || error "touch failed"
2903         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint ||
2904                 error "mount failed for $EXT2_DEV $DIR/$tdir/ext2-mountpoint"
2905         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2906         cleanup_test32_mount
2907 }
2908 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2909
2910 test_33aa() {
2911         rm -f $DIR/$tfile
2912         touch $DIR/$tfile
2913         chmod 444 $DIR/$tfile
2914         chown $RUNAS_ID $DIR/$tfile
2915         log 33_1
2916         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2917         log 33_2
2918 }
2919 run_test 33aa "write file with mode 444 (should return error)"
2920
2921 test_33a() {
2922         rm -fr $DIR/$tdir
2923         test_mkdir $DIR/$tdir
2924         chown $RUNAS_ID $DIR/$tdir
2925         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2926                 error "$RUNAS create $tdir/$tfile failed"
2927         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2928                 error "open RDWR" || true
2929 }
2930 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2931
2932 test_33b() {
2933         rm -fr $DIR/$tdir
2934         test_mkdir $DIR/$tdir
2935         chown $RUNAS_ID $DIR/$tdir
2936         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2937 }
2938 run_test 33b "test open file with malformed flags (No panic)"
2939
2940 test_33c() {
2941         [ $PARALLEL == "yes" ] && skip "skip parallel run"
2942         remote_ost_nodsh && skip "remote OST with nodsh"
2943
2944         local ostnum
2945         local ostname
2946         local write_bytes
2947         local all_zeros
2948
2949         all_zeros=:
2950         rm -fr $DIR/$tdir
2951         test_mkdir $DIR/$tdir
2952         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2953
2954         sync
2955         for ostnum in $(seq $OSTCOUNT); do
2956                 # test-framework's OST numbering is one-based, while Lustre's
2957                 # is zero-based
2958                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2959                 # Parsing llobdstat's output sucks; we could grep the /proc
2960                 # path, but that's likely to not be as portable as using the
2961                 # llobdstat utility.  So we parse lctl output instead.
2962                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2963                         obdfilter/$ostname/stats |
2964                         awk '/^write_bytes/ {print $7}' )
2965                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2966                 if (( ${write_bytes:-0} > 0 ))
2967                 then
2968                         all_zeros=false
2969                         break;
2970                 fi
2971         done
2972
2973         $all_zeros || return 0
2974
2975         # Write four bytes
2976         echo foo > $DIR/$tdir/bar
2977         # Really write them
2978         sync
2979
2980         # Total up write_bytes after writing.  We'd better find non-zeros.
2981         for ostnum in $(seq $OSTCOUNT); do
2982                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2983                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2984                         obdfilter/$ostname/stats |
2985                         awk '/^write_bytes/ {print $7}' )
2986                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2987                 if (( ${write_bytes:-0} > 0 ))
2988                 then
2989                         all_zeros=false
2990                         break;
2991                 fi
2992         done
2993
2994         if $all_zeros
2995         then
2996                 for ostnum in $(seq $OSTCOUNT); do
2997                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2998                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2999                         do_facet ost$ostnum lctl get_param -n \
3000                                 obdfilter/$ostname/stats
3001                 done
3002                 error "OST not keeping write_bytes stats (b22312)"
3003         fi
3004 }
3005 run_test 33c "test llobdstat and write_bytes"
3006
3007 test_33d() {
3008         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3010
3011         local MDTIDX=1
3012         local remote_dir=$DIR/$tdir/remote_dir
3013
3014         test_mkdir $DIR/$tdir
3015         $LFS mkdir -i $MDTIDX $remote_dir ||
3016                 error "create remote directory failed"
3017
3018         touch $remote_dir/$tfile
3019         chmod 444 $remote_dir/$tfile
3020         chown $RUNAS_ID $remote_dir/$tfile
3021
3022         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
3023
3024         chown $RUNAS_ID $remote_dir
3025         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
3026                                         error "create" || true
3027         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
3028                                     error "open RDWR" || true
3029         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
3030 }
3031 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
3032
3033 test_33e() {
3034         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3035
3036         mkdir $DIR/$tdir
3037
3038         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3039         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3040         mkdir $DIR/$tdir/local_dir
3041
3042         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3043         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3044         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3045
3046         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3047                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
3048
3049         rmdir $DIR/$tdir/* || error "rmdir failed"
3050
3051         umask 777
3052         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3053         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3054         mkdir $DIR/$tdir/local_dir
3055
3056         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3057         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3058         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3059
3060         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3061                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
3062
3063         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
3064
3065         umask 000
3066         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
3067         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
3068         mkdir $DIR/$tdir/local_dir
3069
3070         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
3071         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
3072         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
3073
3074         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
3075                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
3076 }
3077 run_test 33e "mkdir and striped directory should have same mode"
3078
3079 cleanup_33f() {
3080         trap 0
3081         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
3082 }
3083
3084 test_33f() {
3085         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3086         remote_mds_nodsh && skip "remote MDS with nodsh"
3087
3088         mkdir $DIR/$tdir
3089         chmod go+rwx $DIR/$tdir
3090         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
3091         trap cleanup_33f EXIT
3092
3093         $RUNAS lfs mkdir -i 0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
3094                 error "cannot create striped directory"
3095
3096         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
3097                 error "cannot create files in striped directory"
3098
3099         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
3100                 error "cannot remove files in striped directory"
3101
3102         $RUNAS rmdir $DIR/$tdir/striped_dir ||
3103                 error "cannot remove striped directory"
3104
3105         cleanup_33f
3106 }
3107 run_test 33f "nonroot user can create, access, and remove a striped directory"
3108
3109 test_33g() {
3110         mkdir -p $DIR/$tdir/dir2
3111
3112         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
3113         echo $err
3114         [[ $err =~ "exists" ]] || error "Not exists error"
3115 }
3116 run_test 33g "nonroot user create already existing root created file"
3117
3118 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
3119 test_34a() {
3120         rm -f $DIR/f34
3121         $MCREATE $DIR/f34 || error "mcreate failed"
3122         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3123                 error "getstripe failed"
3124         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error "truncate failed"
3125         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3126                 error "getstripe failed"
3127         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3128                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3129 }
3130 run_test 34a "truncate file that has not been opened ==========="
3131
3132 test_34b() {
3133         [ ! -f $DIR/f34 ] && test_34a
3134         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3135                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3136         $OPENFILE -f O_RDONLY $DIR/f34
3137         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" ||
3138                 error "getstripe failed"
3139         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3140                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3141 }
3142 run_test 34b "O_RDONLY opening file doesn't create objects ====="
3143
3144 test_34c() {
3145         [ ! -f $DIR/f34 ] && test_34a
3146         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3147                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3148         $OPENFILE -f O_RDWR $DIR/f34
3149         $LFS getstripe $DIR/f34 2>&1 | grep -q "no stripe info" &&
3150                 error "$LFS getstripe failed"
3151         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3152                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3153 }
3154 run_test 34c "O_RDWR opening file-with-size works =============="
3155
3156 test_34d() {
3157         [ ! -f $DIR/f34 ] && test_34a
3158         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 ||
3159                 error "dd failed"
3160         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 ||
3161                 error "Size of $DIR/f34 not equal to $TEST_34_SIZE bytes"
3162         rm $DIR/f34
3163 }
3164 run_test 34d "write to sparse file ============================="
3165
3166 test_34e() {
3167         rm -f $DIR/f34e
3168         $MCREATE $DIR/f34e || error "mcreate failed"
3169         $TRUNCATE $DIR/f34e 1000 || error "truncate failed"
3170         $CHECKSTAT -s 1000 $DIR/f34e ||
3171                 error "Size of $DIR/f34e not equal to 1000 bytes"
3172         $OPENFILE -f O_RDWR $DIR/f34e
3173         $CHECKSTAT -s 1000 $DIR/f34e ||
3174                 error "Size of $DIR/f34e not equal to 1000 bytes"
3175 }
3176 run_test 34e "create objects, some with size and some without =="
3177
3178 test_34f() { # bug 6242, 6243
3179         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3180
3181         SIZE34F=48000
3182         rm -f $DIR/f34f
3183         $MCREATE $DIR/f34f || error "mcreate failed"
3184         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
3185         dd if=$DIR/f34f of=$TMP/f34f
3186         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
3187         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
3188         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
3189         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
3190         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
3191 }
3192 run_test 34f "read from a file with no objects until EOF ======="
3193
3194 test_34g() {
3195         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3196
3197         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE ||
3198                 error "dd failed"
3199         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error "truncate failed"
3200         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3201                 error "Size of $DIR/$tfile not equal to $((TEST_34_SIZE / 2))"
3202         cancel_lru_locks osc
3203         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile ||
3204                 error "wrong size after lock cancel"
3205
3206         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error "truncate failed"
3207         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3208                 error "expanding truncate failed"
3209         cancel_lru_locks osc
3210         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile ||
3211                 error "wrong expanded size after lock cancel"
3212 }
3213 run_test 34g "truncate long file ==============================="
3214
3215 test_34h() {
3216         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3217
3218         local gid=10
3219         local sz=1000
3220
3221         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error "dd failed"
3222         sync # Flush the cache so that multiop below does not block on cache
3223              # flush when getting the group lock
3224         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
3225         MULTIPID=$!
3226
3227         # Since just timed wait is not good enough, let's do a sync write
3228         # that way we are sure enough time for a roundtrip + processing
3229         # passed + 2 seconds of extra margin.
3230         dd if=/dev/zero of=$DIR/${tfile}-1 bs=$PAGE_SIZE oflag=direct count=1
3231         rm $DIR/${tfile}-1
3232         sleep 2
3233
3234         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
3235                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
3236                 kill -9 $MULTIPID
3237         fi
3238         wait $MULTIPID
3239         local nsz=`stat -c %s $DIR/$tfile`
3240         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
3241 }
3242 run_test 34h "ftruncate file under grouplock should not block"
3243
3244 test_35a() {
3245         cp /bin/sh $DIR/f35a
3246         chmod 444 $DIR/f35a
3247         chown $RUNAS_ID $DIR/f35a
3248         $RUNAS $DIR/f35a && error || true
3249         rm $DIR/f35a
3250 }
3251 run_test 35a "exec file with mode 444 (should return and not leak)"
3252
3253 test_36a() {
3254         rm -f $DIR/f36
3255         utime $DIR/f36 || error "utime failed for MDS"
3256 }
3257 run_test 36a "MDS utime check (mknod, utime)"
3258
3259 test_36b() {
3260         echo "" > $DIR/f36
3261         utime $DIR/f36 || error "utime failed for OST"
3262 }
3263 run_test 36b "OST utime check (open, utime)"
3264
3265 test_36c() {
3266         rm -f $DIR/d36/f36
3267         test_mkdir $DIR/d36
3268         chown $RUNAS_ID $DIR/d36
3269         $RUNAS utime $DIR/d36/f36 || error "utime failed for MDS as non-root"
3270 }
3271 run_test 36c "non-root MDS utime check (mknod, utime)"
3272
3273 test_36d() {
3274         [ ! -d $DIR/d36 ] && test_36c
3275         echo "" > $DIR/d36/f36
3276         $RUNAS utime $DIR/d36/f36 || error "utime failed for OST as non-root"
3277 }
3278 run_test 36d "non-root OST utime check (open, utime)"
3279
3280 test_36e() {
3281         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping"
3282
3283         test_mkdir $DIR/$tdir
3284         touch $DIR/$tdir/$tfile
3285         $RUNAS utime $DIR/$tdir/$tfile &&
3286                 error "utime worked, expected failure" || true
3287 }
3288 run_test 36e "utime on non-owned file (should return error)"
3289
3290 subr_36fh() {
3291         local fl="$1"
3292         local LANG_SAVE=$LANG
3293         local LC_LANG_SAVE=$LC_LANG
3294         export LANG=C LC_LANG=C # for date language
3295
3296         DATESTR="Dec 20  2000"
3297         test_mkdir $DIR/$tdir
3298         lctl set_param fail_loc=$fl
3299         date; date +%s
3300         cp /etc/hosts $DIR/$tdir/$tfile
3301         sync & # write RPC generated with "current" inode timestamp, but delayed
3302         sleep 1
3303         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3304         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3305         cancel_lru_locks $OSC
3306         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3307         date; date +%s
3308         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3309                 echo "BEFORE: $LS_BEFORE" && \
3310                 echo "AFTER : $LS_AFTER" && \
3311                 echo "WANT  : $DATESTR" && \
3312                 error "$DIR/$tdir/$tfile timestamps changed" || true
3313
3314         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3315 }
3316
3317 test_36f() {
3318         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3319
3320         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3321         subr_36fh "0x80000214"
3322 }
3323 run_test 36f "utime on file racing with OST BRW write =========="
3324
3325 test_36g() {
3326         remote_ost_nodsh && skip "remote OST with nodsh"
3327         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3328         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
3329                 skip "Need MDS version at least 2.12.51"
3330
3331         local fmd_max_age
3332         local fmd
3333         local facet="ost1"
3334         local tgt="obdfilter"
3335
3336         [[ $OSC == "mdc" ]] && tgt="mdt" && facet="mds1"
3337
3338         test_mkdir $DIR/$tdir
3339         fmd_max_age=$(do_facet $facet \
3340                 "lctl get_param -n $tgt.*.tgt_fmd_seconds 2> /dev/null | \
3341                 head -n 1")
3342
3343         echo "FMD max age: ${fmd_max_age}s"
3344         touch $DIR/$tdir/$tfile
3345         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
3346                 gawk '{cnt=cnt+$1}  END{print cnt}')
3347         echo "FMD before: $fmd"
3348         [[ $fmd == 0 ]] &&
3349                 error "FMD wasn't create by touch"
3350         sleep $((fmd_max_age + 12))
3351         fmd=$(do_facet $facet "lctl get_param -n $tgt.*.exports.*.fmd_count" |
3352                 gawk '{cnt=cnt+$1}  END{print cnt}')
3353         echo "FMD after: $fmd"
3354         [[ $fmd == 0 ]] ||
3355                 error "FMD wasn't expired by ping"
3356 }
3357 run_test 36g "FMD cache expiry ====================="
3358
3359 test_36h() {
3360         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3361
3362         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3363         subr_36fh "0x80000227"
3364 }
3365 run_test 36h "utime on file racing with OST BRW write =========="
3366
3367 test_36i() {
3368         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
3369
3370         test_mkdir $DIR/$tdir
3371         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3372
3373         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3374         local new_mtime=$((mtime + 200))
3375
3376         #change Modify time of striped dir
3377         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3378                         error "change mtime failed"
3379
3380         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3381
3382         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3383 }
3384 run_test 36i "change mtime on striped directory"
3385
3386 # test_37 - duplicate with tests 32q 32r
3387
3388 test_38() {
3389         local file=$DIR/$tfile
3390         touch $file
3391         openfile -f O_DIRECTORY $file
3392         local RC=$?
3393         local ENOTDIR=20
3394         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3395         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3396 }
3397 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3398
3399 test_39a() { # was test_39
3400         touch $DIR/$tfile
3401         touch $DIR/${tfile}2
3402 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3403 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3404 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3405         sleep 2
3406         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3407         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3408                 echo "mtime"
3409                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3410                 echo "atime"
3411                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3412                 echo "ctime"
3413                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3414                 error "O_TRUNC didn't change timestamps"
3415         fi
3416 }
3417 run_test 39a "mtime changed on create"
3418
3419 test_39b() {
3420         test_mkdir -c1 $DIR/$tdir
3421         cp -p /etc/passwd $DIR/$tdir/fopen
3422         cp -p /etc/passwd $DIR/$tdir/flink
3423         cp -p /etc/passwd $DIR/$tdir/funlink
3424         cp -p /etc/passwd $DIR/$tdir/frename
3425         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3426
3427         sleep 1
3428         echo "aaaaaa" >> $DIR/$tdir/fopen
3429         echo "aaaaaa" >> $DIR/$tdir/flink
3430         echo "aaaaaa" >> $DIR/$tdir/funlink
3431         echo "aaaaaa" >> $DIR/$tdir/frename
3432
3433         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3434         local link_new=`stat -c %Y $DIR/$tdir/flink`
3435         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3436         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3437
3438         cat $DIR/$tdir/fopen > /dev/null
3439         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3440         rm -f $DIR/$tdir/funlink2
3441         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3442
3443         for (( i=0; i < 2; i++ )) ; do
3444                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3445                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3446                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3447                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3448
3449                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3450                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3451                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3452                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3453
3454                 cancel_lru_locks $OSC
3455                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3456         done
3457 }
3458 run_test 39b "mtime change on open, link, unlink, rename  ======"
3459
3460 # this should be set to past
3461 TEST_39_MTIME=`date -d "1 year ago" +%s`
3462
3463 # bug 11063
3464 test_39c() {
3465         touch $DIR1/$tfile
3466         sleep 2
3467         local mtime0=`stat -c %Y $DIR1/$tfile`
3468
3469         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3470         local mtime1=`stat -c %Y $DIR1/$tfile`
3471         [ "$mtime1" = $TEST_39_MTIME ] || \
3472                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3473
3474         local d1=`date +%s`
3475         echo hello >> $DIR1/$tfile
3476         local d2=`date +%s`
3477         local mtime2=`stat -c %Y $DIR1/$tfile`
3478         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3479                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3480
3481         mv $DIR1/$tfile $DIR1/$tfile-1
3482
3483         for (( i=0; i < 2; i++ )) ; do
3484                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3485                 [ "$mtime2" = "$mtime3" ] || \
3486                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3487
3488                 cancel_lru_locks $OSC
3489                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3490         done
3491 }
3492 run_test 39c "mtime change on rename ==========================="
3493
3494 # bug 21114
3495 test_39d() {
3496         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3497
3498         touch $DIR1/$tfile
3499         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3500
3501         for (( i=0; i < 2; i++ )) ; do
3502                 local mtime=`stat -c %Y $DIR1/$tfile`
3503                 [ $mtime = $TEST_39_MTIME ] || \
3504                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3505
3506                 cancel_lru_locks $OSC
3507                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3508         done
3509 }
3510 run_test 39d "create, utime, stat =============================="
3511
3512 # bug 21114
3513 test_39e() {
3514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3515
3516         touch $DIR1/$tfile
3517         local mtime1=`stat -c %Y $DIR1/$tfile`
3518
3519         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3520
3521         for (( i=0; i < 2; i++ )) ; do
3522                 local mtime2=`stat -c %Y $DIR1/$tfile`
3523                 [ $mtime2 = $TEST_39_MTIME ] || \
3524                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3525
3526                 cancel_lru_locks $OSC
3527                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3528         done
3529 }
3530 run_test 39e "create, stat, utime, stat ========================"
3531
3532 # bug 21114
3533 test_39f() {
3534         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3535
3536         touch $DIR1/$tfile
3537         mtime1=`stat -c %Y $DIR1/$tfile`
3538
3539         sleep 2
3540         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3541
3542         for (( i=0; i < 2; i++ )) ; do
3543                 local mtime2=`stat -c %Y $DIR1/$tfile`
3544                 [ $mtime2 = $TEST_39_MTIME ] || \
3545                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3546
3547                 cancel_lru_locks $OSC
3548                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3549         done
3550 }
3551 run_test 39f "create, stat, sleep, utime, stat ================="
3552
3553 # bug 11063
3554 test_39g() {
3555         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3556
3557         echo hello >> $DIR1/$tfile
3558         local mtime1=`stat -c %Y $DIR1/$tfile`
3559
3560         sleep 2
3561         chmod o+r $DIR1/$tfile
3562
3563         for (( i=0; i < 2; i++ )) ; do
3564                 local mtime2=`stat -c %Y $DIR1/$tfile`
3565                 [ "$mtime1" = "$mtime2" ] || \
3566                         error "lost mtime: $mtime2, should be $mtime1"
3567
3568                 cancel_lru_locks $OSC
3569                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3570         done
3571 }
3572 run_test 39g "write, chmod, stat ==============================="
3573
3574 # bug 11063
3575 test_39h() {
3576         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3577
3578         touch $DIR1/$tfile
3579         sleep 1
3580
3581         local d1=`date`
3582         echo hello >> $DIR1/$tfile
3583         local mtime1=`stat -c %Y $DIR1/$tfile`
3584
3585         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3586         local d2=`date`
3587         if [ "$d1" != "$d2" ]; then
3588                 echo "write and touch not within one second"
3589         else
3590                 for (( i=0; i < 2; i++ )) ; do
3591                         local mtime2=`stat -c %Y $DIR1/$tfile`
3592                         [ "$mtime2" = $TEST_39_MTIME ] || \
3593                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3594
3595                         cancel_lru_locks $OSC
3596                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3597                 done
3598         fi
3599 }
3600 run_test 39h "write, utime within one second, stat ============="
3601
3602 test_39i() {
3603         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3604
3605         touch $DIR1/$tfile
3606         sleep 1
3607
3608         echo hello >> $DIR1/$tfile
3609         local mtime1=`stat -c %Y $DIR1/$tfile`
3610
3611         mv $DIR1/$tfile $DIR1/$tfile-1
3612
3613         for (( i=0; i < 2; i++ )) ; do
3614                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3615
3616                 [ "$mtime1" = "$mtime2" ] || \
3617                         error "lost mtime: $mtime2, should be $mtime1"
3618
3619                 cancel_lru_locks $OSC
3620                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3621         done
3622 }
3623 run_test 39i "write, rename, stat =============================="
3624
3625 test_39j() {
3626         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3627
3628         start_full_debug_logging
3629         touch $DIR1/$tfile
3630         sleep 1
3631
3632         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3633         lctl set_param fail_loc=0x80000412
3634         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3635                 error "multiop failed"
3636         local multipid=$!
3637         local mtime1=`stat -c %Y $DIR1/$tfile`
3638
3639         mv $DIR1/$tfile $DIR1/$tfile-1
3640
3641         kill -USR1 $multipid
3642         wait $multipid || error "multiop close failed"
3643
3644         for (( i=0; i < 2; i++ )) ; do
3645                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3646                 [ "$mtime1" = "$mtime2" ] ||
3647                         error "mtime is lost on close: $mtime2, " \
3648                               "should be $mtime1"
3649
3650                 cancel_lru_locks $OSC
3651                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3652         done
3653         lctl set_param fail_loc=0
3654         stop_full_debug_logging
3655 }
3656 run_test 39j "write, rename, close, stat ======================="
3657
3658 test_39k() {
3659         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3660
3661         touch $DIR1/$tfile
3662         sleep 1
3663
3664         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3665         local multipid=$!
3666         local mtime1=`stat -c %Y $DIR1/$tfile`
3667
3668         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3669
3670         kill -USR1 $multipid
3671         wait $multipid || error "multiop close failed"
3672
3673         for (( i=0; i < 2; i++ )) ; do
3674                 local mtime2=`stat -c %Y $DIR1/$tfile`
3675
3676                 [ "$mtime2" = $TEST_39_MTIME ] || \
3677                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3678
3679                 cancel_lru_locks osc
3680                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3681         done
3682 }
3683 run_test 39k "write, utime, close, stat ========================"
3684
3685 # this should be set to future
3686 TEST_39_ATIME=`date -d "1 year" +%s`
3687
3688 test_39l() {
3689         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3690         remote_mds_nodsh && skip "remote MDS with nodsh"
3691
3692         local atime_diff=$(do_facet $SINGLEMDS \
3693                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3694         rm -rf $DIR/$tdir
3695         mkdir -p $DIR/$tdir
3696
3697         # test setting directory atime to future
3698         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3699         local atime=$(stat -c %X $DIR/$tdir)
3700         [ "$atime" = $TEST_39_ATIME ] ||
3701                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3702
3703         # test setting directory atime from future to now
3704         local now=$(date +%s)
3705         touch -a -d @$now $DIR/$tdir
3706
3707         atime=$(stat -c %X $DIR/$tdir)
3708         [ "$atime" -eq "$now"  ] ||
3709                 error "atime is not updated from future: $atime, $now"
3710
3711         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3712         sleep 3
3713
3714         # test setting directory atime when now > dir atime + atime_diff
3715         local d1=$(date +%s)
3716         ls $DIR/$tdir
3717         local d2=$(date +%s)
3718         cancel_lru_locks mdc
3719         atime=$(stat -c %X $DIR/$tdir)
3720         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3721                 error "atime is not updated  : $atime, should be $d2"
3722
3723         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3724         sleep 3
3725
3726         # test not setting directory atime when now < dir atime + atime_diff
3727         ls $DIR/$tdir
3728         cancel_lru_locks mdc
3729         atime=$(stat -c %X $DIR/$tdir)
3730         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3731                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3732
3733         do_facet $SINGLEMDS \
3734                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3735 }
3736 run_test 39l "directory atime update ==========================="
3737
3738 test_39m() {
3739         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3740
3741         touch $DIR1/$tfile
3742         sleep 2
3743         local far_past_mtime=$(date -d "May 29 1953" +%s)
3744         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3745
3746         touch -m -d @$far_past_mtime $DIR1/$tfile
3747         touch -a -d @$far_past_atime $DIR1/$tfile
3748
3749         for (( i=0; i < 2; i++ )) ; do
3750                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3751                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3752                         error "atime or mtime set incorrectly"
3753
3754                 cancel_lru_locks $OSC
3755                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3756         done
3757 }
3758 run_test 39m "test atime and mtime before 1970"
3759
3760 test_39n() { # LU-3832
3761         remote_mds_nodsh && skip "remote MDS with nodsh"
3762
3763         local atime_diff=$(do_facet $SINGLEMDS \
3764                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3765         local atime0
3766         local atime1
3767         local atime2
3768
3769         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3770
3771         rm -rf $DIR/$tfile
3772         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3773         atime0=$(stat -c %X $DIR/$tfile)
3774
3775         sleep 5
3776         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3777         atime1=$(stat -c %X $DIR/$tfile)
3778
3779         sleep 5
3780         cancel_lru_locks mdc
3781         cancel_lru_locks osc
3782         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3783         atime2=$(stat -c %X $DIR/$tfile)
3784
3785         do_facet $SINGLEMDS \
3786                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3787
3788         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3789         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3790 }
3791 run_test 39n "check that O_NOATIME is honored"
3792
3793 test_39o() {
3794         TESTDIR=$DIR/$tdir/$tfile
3795         [ -e $TESTDIR ] && rm -rf $TESTDIR
3796         mkdir -p $TESTDIR
3797         cd $TESTDIR
3798         links1=2
3799         ls
3800         mkdir a b
3801         ls
3802         links2=$(stat -c %h .)
3803         [ $(($links1 + 2)) != $links2 ] &&
3804                 error "wrong links count $(($links1 + 2)) != $links2"
3805         rmdir b
3806         links3=$(stat -c %h .)
3807         [ $(($links1 + 1)) != $links3 ] &&
3808                 error "wrong links count $links1 != $links3"
3809         return 0
3810 }
3811 run_test 39o "directory cached attributes updated after create"
3812
3813 test_39p() {
3814         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
3815
3816         local MDTIDX=1
3817         TESTDIR=$DIR/$tdir/$tdir
3818         [ -e $TESTDIR ] && rm -rf $TESTDIR
3819         test_mkdir -p $TESTDIR
3820         cd $TESTDIR
3821         links1=2
3822         ls
3823         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3824         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3825         ls
3826         links2=$(stat -c %h .)
3827         [ $(($links1 + 2)) != $links2 ] &&
3828                 error "wrong links count $(($links1 + 2)) != $links2"
3829         rmdir remote_dir2
3830         links3=$(stat -c %h .)
3831         [ $(($links1 + 1)) != $links3 ] &&
3832                 error "wrong links count $links1 != $links3"
3833         return 0
3834 }
3835 run_test 39p "remote directory cached attributes updated after create ========"
3836
3837
3838 test_39q() { # LU-8041
3839         local testdir=$DIR/$tdir
3840         mkdir -p $testdir
3841         multiop_bg_pause $testdir D_c || error "multiop failed"
3842         local multipid=$!
3843         cancel_lru_locks mdc
3844         kill -USR1 $multipid
3845         local atime=$(stat -c %X $testdir)
3846         [ "$atime" -ne 0 ] || error "atime is zero"
3847 }
3848 run_test 39q "close won't zero out atime"
3849
3850 test_40() {
3851         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3852         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3853                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3854         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3855                 error "$tfile is not 4096 bytes in size"
3856 }
3857 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3858
3859 test_41() {
3860         # bug 1553
3861         small_write $DIR/f41 18
3862 }
3863 run_test 41 "test small file write + fstat ====================="
3864
3865 count_ost_writes() {
3866         lctl get_param -n ${OSC}.*.stats |
3867                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3868                         END { printf("%0.0f", writes) }'
3869 }
3870
3871 # decent default
3872 WRITEBACK_SAVE=500
3873 DIRTY_RATIO_SAVE=40
3874 MAX_DIRTY_RATIO=50
3875 BG_DIRTY_RATIO_SAVE=10
3876 MAX_BG_DIRTY_RATIO=25
3877
3878 start_writeback() {
3879         trap 0
3880         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3881         # dirty_ratio, dirty_background_ratio
3882         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3883                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3884                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3885                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3886         else
3887                 # if file not here, we are a 2.4 kernel
3888                 kill -CONT `pidof kupdated`
3889         fi
3890 }
3891
3892 stop_writeback() {
3893         # setup the trap first, so someone cannot exit the test at the
3894         # exact wrong time and mess up a machine
3895         trap start_writeback EXIT
3896         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3897         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3898                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3899                 sysctl -w vm.dirty_writeback_centisecs=0
3900                 sysctl -w vm.dirty_writeback_centisecs=0
3901                 # save and increase /proc/sys/vm/dirty_ratio
3902                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3903                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3904                 # save and increase /proc/sys/vm/dirty_background_ratio
3905                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3906                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3907         else
3908                 # if file not here, we are a 2.4 kernel
3909                 kill -STOP `pidof kupdated`
3910         fi
3911 }
3912
3913 # ensure that all stripes have some grant before we test client-side cache
3914 setup_test42() {
3915         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3916                 dd if=/dev/zero of=$i bs=4k count=1
3917                 rm $i
3918         done
3919 }
3920
3921 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3922 # file truncation, and file removal.
3923 test_42a() {
3924         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3925
3926         setup_test42
3927         cancel_lru_locks $OSC
3928         stop_writeback
3929         sync; sleep 1; sync # just to be safe
3930         BEFOREWRITES=`count_ost_writes`
3931         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3932         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3933         AFTERWRITES=`count_ost_writes`
3934         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3935                 error "$BEFOREWRITES < $AFTERWRITES"
3936         start_writeback
3937 }
3938 run_test 42a "ensure that we don't flush on close"
3939
3940 test_42b() {
3941         [ $PARALLEL == "yes" ] && skip "skip parallel run"
3942
3943         setup_test42
3944         cancel_lru_locks $OSC
3945         stop_writeback
3946         sync
3947         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3948         BEFOREWRITES=$(count_ost_writes)
3949         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3950         AFTERWRITES=$(count_ost_writes)
3951         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3952                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3953         fi
3954         BEFOREWRITES=$(count_ost_writes)
3955         sync || error "sync: $?"
3956         AFTERWRITES=$(count_ost_writes)
3957         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3958                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3959         fi
3960         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3961         start_writeback
3962         return 0
3963 }
3964 run_test 42b "test destroy of file with cached dirty data ======"
3965
3966 # if these tests just want to test the effect of truncation,
3967 # they have to be very careful.  consider:
3968 # - the first open gets a {0,EOF}PR lock
3969 # - the first write conflicts and gets a {0, count-1}PW
3970 # - the rest of the writes are under {count,EOF}PW
3971 # - the open for truncate tries to match a {0,EOF}PR
3972 #   for the filesize and cancels the PWs.
3973 # any number of fixes (don't get {0,EOF} on open, match
3974 # composite locks, do smarter file size management) fix
3975 # this, but for now we want these tests to verify that
3976 # the cancellation with truncate intent works, so we
3977 # start the file with a full-file pw lock to match against
3978 # until the truncate.
3979 trunc_test() {
3980         test=$1
3981         file=$DIR/$test
3982         offset=$2
3983         cancel_lru_locks $OSC
3984         stop_writeback
3985         # prime the file with 0,EOF PW to match
3986         touch $file
3987         $TRUNCATE $file 0
3988         sync; sync
3989         # now the real test..
3990         dd if=/dev/zero of=$file bs=1024 count=100
3991         BEFOREWRITES=`count_ost_writes`
3992         $TRUNCATE $file $offset
3993         cancel_lru_locks $OSC
3994         AFTERWRITES=`count_ost_writes`
3995         start_writeback
3996 }
3997
3998 test_42c() {
3999         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4000
4001         trunc_test 42c 1024
4002         [ $BEFOREWRITES -eq $AFTERWRITES ] &&
4003                 error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
4004         rm $file
4005 }
4006 run_test 42c "test partial truncate of file with cached dirty data"
4007
4008 test_42d() {
4009         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4010
4011         trunc_test 42d 0
4012         [ $BEFOREWRITES -eq $AFTERWRITES ] ||
4013                 error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
4014         rm $file
4015 }
4016 run_test 42d "test complete truncate of file with cached dirty data"
4017
4018 test_42e() { # bug22074
4019         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4020
4021         local TDIR=$DIR/${tdir}e
4022         local pages=16 # hardcoded 16 pages, don't change it.
4023         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
4024         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
4025         local max_dirty_mb
4026         local warmup_files
4027
4028         test_mkdir $DIR/${tdir}e
4029         $LFS setstripe -c 1 $TDIR
4030         createmany -o $TDIR/f $files
4031
4032         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
4033
4034         # we assume that with $OSTCOUNT files, at least one of them will
4035         # be allocated on OST0.
4036         warmup_files=$((OSTCOUNT * max_dirty_mb))
4037         createmany -o $TDIR/w $warmup_files
4038
4039         # write a large amount of data into one file and sync, to get good
4040         # avail_grant number from OST.
4041         for ((i=0; i<$warmup_files; i++)); do
4042                 idx=$($LFS getstripe -i $TDIR/w$i)
4043                 [ $idx -ne 0 ] && continue
4044                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
4045                 break
4046         done
4047         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
4048         sync
4049         $LCTL get_param $proc_osc0/cur_dirty_bytes
4050         $LCTL get_param $proc_osc0/cur_grant_bytes
4051
4052         # create as much dirty pages as we can while not to trigger the actual
4053         # RPCs directly. but depends on the env, VFS may trigger flush during this
4054         # period, hopefully we are good.
4055         for ((i=0; i<$warmup_files; i++)); do
4056                 idx=$($LFS getstripe -i $TDIR/w$i)
4057                 [ $idx -ne 0 ] && continue
4058                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
4059         done
4060         $LCTL get_param $proc_osc0/cur_dirty_bytes
4061         $LCTL get_param $proc_osc0/cur_grant_bytes
4062
4063         # perform the real test
4064         $LCTL set_param $proc_osc0/rpc_stats 0
4065         for ((;i<$files; i++)); do
4066                 [ $($LFS getstripe -i $TDIR/f$i) -eq 0 ] || continue
4067                 dd if=/dev/zero of=$TDIR/f$i bs=$PAGE_SIZE count=$pages 2>/dev/null
4068         done
4069         sync
4070         $LCTL get_param $proc_osc0/rpc_stats
4071
4072         local percent=0
4073         local have_ppr=false
4074         $LCTL get_param $proc_osc0/rpc_stats |
4075                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
4076                         # skip lines until we are at the RPC histogram data
4077                         [ "$PPR" == "pages" ] && have_ppr=true && continue
4078                         $have_ppr || continue
4079
4080                         # we only want the percent stat for < 16 pages
4081                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
4082
4083                         percent=$((percent + WPCT))
4084                         if [[ $percent -gt 15 ]]; then
4085                                 error "less than 16-pages write RPCs" \
4086                                       "$percent% > 15%"
4087                                 break
4088                         fi
4089                 done
4090         rm -rf $TDIR
4091 }
4092 run_test 42e "verify sub-RPC writes are not done synchronously"
4093
4094 test_43A() { # was test_43
4095         test_mkdir $DIR/$tdir
4096         cp -p /bin/ls $DIR/$tdir/$tfile
4097         $MULTIOP $DIR/$tdir/$tfile Ow_c &
4098         pid=$!
4099         # give multiop a chance to open
4100         sleep 1
4101
4102         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
4103         kill -USR1 $pid
4104 }
4105 run_test 43A "execution of file opened for write should return -ETXTBSY"
4106
4107 test_43a() {
4108         test_mkdir $DIR/$tdir
4109         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4110                 cp -p multiop $DIR/$tdir/multiop
4111         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4112                 error "multiop open $TMP/$tfile.junk failed"
4113         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4114         MULTIOP_PID=$!
4115         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
4116         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4117         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4118 }
4119 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
4120
4121 test_43b() {
4122         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4123
4124         test_mkdir $DIR/$tdir
4125         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
4126                 cp -p multiop $DIR/$tdir/multiop
4127         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
4128                 error "multiop open $TMP/$tfile.junk failed"
4129         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
4130         MULTIOP_PID=$!
4131         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
4132         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
4133         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
4134 }
4135 run_test 43b "truncate of file being executed should return -ETXTBSY"
4136
4137 test_43c() {
4138         local testdir="$DIR/$tdir"
4139         test_mkdir $testdir
4140         cp $SHELL $testdir/
4141         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
4142                 ( cd $testdir && md5sum -c )
4143 }
4144 run_test 43c "md5sum of copy into lustre"
4145
4146 test_44A() { # was test_44
4147         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4148
4149         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
4150         dd if=$DIR/f1 bs=4k count=1 > /dev/null
4151 }
4152 run_test 44A "zero length read from a sparse stripe"
4153
4154 test_44a() {
4155         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
4156                 awk '{ print $2 }')
4157         [ -z "$nstripe" ] && skip "can't get stripe info"
4158         [[ $nstripe -gt $OSTCOUNT ]] &&
4159                 skip "Wrong default_stripe_count: $nstripe OSTCOUNT: $OSTCOUNT"
4160
4161         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
4162                 awk '{ print $2 }')
4163         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
4164                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
4165                         awk '{ print $2 }')
4166         fi
4167
4168         OFFSETS="0 $((stride/2)) $((stride-1))"
4169         for offset in $OFFSETS; do
4170                 for i in $(seq 0 $((nstripe-1))); do
4171                         local GLOBALOFFSETS=""
4172                         # size in Bytes
4173                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
4174                         local myfn=$DIR/d44a-$size
4175                         echo "--------writing $myfn at $size"
4176                         ll_sparseness_write $myfn $size ||
4177                                 error "ll_sparseness_write"
4178                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
4179                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4180                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4181
4182                         for j in $(seq 0 $((nstripe-1))); do
4183                                 # size in Bytes
4184                                 size=$((((j + $nstripe )*$stride + $offset)))
4185                                 ll_sparseness_write $myfn $size ||
4186                                         error "ll_sparseness_write"
4187                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
4188                         done
4189                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
4190                                 error "ll_sparseness_verify $GLOBALOFFSETS"
4191                         rm -f $myfn
4192                 done
4193         done
4194 }
4195 run_test 44a "test sparse pwrite ==============================="
4196
4197 dirty_osc_total() {
4198         tot=0
4199         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
4200                 tot=$(($tot + $d))
4201         done
4202         echo $tot
4203 }
4204 do_dirty_record() {
4205         before=`dirty_osc_total`
4206         echo executing "\"$*\""
4207         eval $*
4208         after=`dirty_osc_total`
4209         echo before $before, after $after
4210 }
4211 test_45() {
4212         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4213
4214         f="$DIR/f45"
4215         # Obtain grants from OST if it supports it
4216         echo blah > ${f}_grant
4217         stop_writeback
4218         sync
4219         do_dirty_record "echo blah > $f"
4220         [[ $before -eq $after ]] && error "write wasn't cached"
4221         do_dirty_record "> $f"
4222         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
4223         do_dirty_record "echo blah > $f"
4224         [[ $before -eq $after ]] && error "write wasn't cached"
4225         do_dirty_record "sync"
4226         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
4227         do_dirty_record "echo blah > $f"
4228         [[ $before -eq $after ]] && error "write wasn't cached"
4229         do_dirty_record "cancel_lru_locks osc"
4230         [[ $before -gt $after ]] ||
4231                 error "lock cancellation didn't lower dirty count"
4232         start_writeback
4233 }
4234 run_test 45 "osc io page accounting ============================"
4235
4236 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
4237 # test tickles a bug where re-dirtying a page was failing to be mapped to the
4238 # objects offset and an assert hit when an rpc was built with 1023's mapped
4239 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
4240 test_46() {
4241         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4242
4243         f="$DIR/f46"
4244         stop_writeback
4245         sync
4246         dd if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4247         sync
4248         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=1023 count=1
4249         dd conv=notrunc if=/dev/zero of=$f bs=$PAGE_SIZE seek=511 count=1
4250         sync
4251         start_writeback
4252 }
4253 run_test 46 "dirtying a previously written page ================"
4254
4255 # test_47 is removed "Device nodes check" is moved to test_28
4256
4257 test_48a() { # bug 2399
4258         [ "$mds1_FSTYPE" = "zfs" ] &&
4259         [ $MDS1_VERSION -lt $(version_code 2.3.63) ] &&
4260                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly"
4261
4262         test_mkdir $DIR/$tdir
4263         cd $DIR/$tdir
4264         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
4265         test_mkdir $DIR/$tdir
4266         touch foo || error "'touch foo' failed after recreating cwd"
4267         test_mkdir bar
4268         touch .foo || error "'touch .foo' failed after recreating cwd"
4269         test_mkdir .bar
4270         ls . > /dev/null || error "'ls .' failed after recreating cwd"
4271         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4272         cd . || error "'cd .' failed after recreating cwd"
4273         mkdir . && error "'mkdir .' worked after recreating cwd"
4274         rmdir . && error "'rmdir .' worked after recreating cwd"
4275         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4276         cd .. || error "'cd ..' failed after recreating cwd"
4277 }
4278 run_test 48a "Access renamed working dir (should return errors)="
4279
4280 test_48b() { # bug 2399
4281         rm -rf $DIR/$tdir
4282         test_mkdir $DIR/$tdir
4283         cd $DIR/$tdir
4284         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4285         touch foo && error "'touch foo' worked after removing cwd"
4286         mkdir foo && error "'mkdir foo' worked after removing cwd"
4287         touch .foo && error "'touch .foo' worked after removing cwd"
4288         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4289         ls . > /dev/null && error "'ls .' worked after removing cwd"
4290         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4291         mkdir . && error "'mkdir .' worked after removing cwd"
4292         rmdir . && error "'rmdir .' worked after removing cwd"
4293         ln -s . foo && error "'ln -s .' worked after removing cwd"
4294         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4295 }
4296 run_test 48b "Access removed working dir (should return errors)="
4297
4298 test_48c() { # bug 2350
4299         #lctl set_param debug=-1
4300         #set -vx
4301         rm -rf $DIR/$tdir
4302         test_mkdir -p $DIR/$tdir/dir
4303         cd $DIR/$tdir/dir
4304         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4305         $TRACE touch foo && error "touch foo worked after removing cwd"
4306         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4307         touch .foo && error "touch .foo worked after removing cwd"
4308         mkdir .foo && error "mkdir .foo worked after removing cwd"
4309         $TRACE ls . && error "'ls .' worked after removing cwd"
4310         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4311         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4312         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4313         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4314         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4315 }
4316 run_test 48c "Access removed working subdir (should return errors)"
4317
4318 test_48d() { # bug 2350
4319         #lctl set_param debug=-1
4320         #set -vx
4321         rm -rf $DIR/$tdir
4322         test_mkdir -p $DIR/$tdir/dir
4323         cd $DIR/$tdir/dir
4324         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4325         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4326         $TRACE touch foo && error "'touch foo' worked after removing parent"
4327         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4328         touch .foo && error "'touch .foo' worked after removing parent"
4329         mkdir .foo && error "mkdir .foo worked after removing parent"
4330         $TRACE ls . && error "'ls .' worked after removing parent"
4331         $TRACE ls .. && error "'ls ..' worked after removing parent"
4332         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4333         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4334         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4335         true
4336 }
4337 run_test 48d "Access removed parent subdir (should return errors)"
4338
4339 test_48e() { # bug 4134
4340         #lctl set_param debug=-1
4341         #set -vx
4342         rm -rf $DIR/$tdir
4343         test_mkdir -p $DIR/$tdir/dir
4344         cd $DIR/$tdir/dir
4345         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4346         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4347         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4348         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4349         # On a buggy kernel addition of "touch foo" after cd .. will
4350         # produce kernel oops in lookup_hash_it
4351         touch ../foo && error "'cd ..' worked after recreate parent"
4352         cd $DIR
4353         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4354 }
4355 run_test 48e "Access to recreated parent subdir (should return errors)"
4356
4357 test_49() { # LU-1030
4358         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4359         remote_ost_nodsh && skip "remote OST with nodsh"
4360
4361         # get ost1 size - lustre-OST0000
4362         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4363                 awk '{ print $4 }')
4364         # write 800M at maximum
4365         [[ $ost1_size -lt 2 ]] && ost1_size=2
4366         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4367
4368         $LFS setstripe -c 1 -i 0 $DIR/$tfile
4369         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4370         local dd_pid=$!
4371
4372         # change max_pages_per_rpc while writing the file
4373         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4374         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4375         # loop until dd process exits
4376         while ps ax -opid | grep -wq $dd_pid; do
4377                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4378                 sleep $((RANDOM % 5 + 1))
4379         done
4380         # restore original max_pages_per_rpc
4381         $LCTL set_param $osc1_mppc=$orig_mppc
4382         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4383 }
4384 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4385
4386 test_50() {
4387         # bug 1485
4388         test_mkdir $DIR/$tdir
4389         cd $DIR/$tdir
4390         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4391 }
4392 run_test 50 "special situations: /proc symlinks  ==============="
4393
4394 test_51a() {    # was test_51
4395         # bug 1516 - create an empty entry right after ".." then split dir
4396         test_mkdir -c1 $DIR/$tdir
4397         touch $DIR/$tdir/foo
4398         $MCREATE $DIR/$tdir/bar
4399         rm $DIR/$tdir/foo
4400         createmany -m $DIR/$tdir/longfile 201
4401         FNUM=202
4402         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4403                 $MCREATE $DIR/$tdir/longfile$FNUM
4404                 FNUM=$(($FNUM + 1))
4405                 echo -n "+"
4406         done
4407         echo
4408         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4409 }
4410 run_test 51a "special situations: split htree with empty entry =="
4411
4412 cleanup_print_lfs_df () {
4413         trap 0
4414         $LFS df
4415         $LFS df -i
4416 }
4417
4418 test_51b() {
4419         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4420
4421         local dir=$DIR/$tdir
4422         local nrdirs=$((65536 + 100))
4423
4424         # cleanup the directory
4425         rm -fr $dir
4426
4427         test_mkdir -c1 $dir
4428
4429         $LFS df
4430         $LFS df -i
4431         local mdtidx=$(printf "%04x" $($LFS getstripe -m $dir))
4432         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4433         [[ $numfree -lt $nrdirs ]] &&
4434                 skip "not enough free inodes ($numfree) on MDT$mdtidx"
4435
4436         # need to check free space for the directories as well
4437         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4438         numfree=$(( blkfree / $(fs_inode_ksize) ))
4439         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)"
4440
4441         trap cleanup_print_lfs_df EXIT
4442
4443         # create files
4444         createmany -d $dir/d $nrdirs || {
4445                 unlinkmany $dir/d $nrdirs
4446                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4447         }
4448
4449         # really created :
4450         nrdirs=$(ls -U $dir | wc -l)
4451
4452         # unlink all but 100 subdirectories, then check it still works
4453         local left=100
4454         local delete=$((nrdirs - left))
4455
4456         $LFS df
4457         $LFS df -i
4458
4459         # for ldiskfs the nlink count should be 1, but this is OSD specific
4460         # and so this is listed for informational purposes only
4461         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4462         unlinkmany -d $dir/d $delete ||
4463                 error "unlink of first $delete subdirs failed"
4464
4465         echo "nlink between: $(stat -c %h $dir)"
4466         local found=$(ls -U $dir | wc -l)
4467         [ $found -ne $left ] &&
4468                 error "can't find subdirs: found only $found, expected $left"
4469
4470         unlinkmany -d $dir/d $delete $left ||
4471                 error "unlink of second $left subdirs failed"
4472         # regardless of whether the backing filesystem tracks nlink accurately
4473         # or not, the nlink count shouldn't be more than "." and ".." here
4474         local after=$(stat -c %h $dir)
4475         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4476                 echo "nlink after: $after"
4477
4478         cleanup_print_lfs_df
4479 }
4480 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4481
4482 test_51d() {
4483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4484         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
4485
4486         test_mkdir $DIR/$tdir
4487         createmany -o $DIR/$tdir/t- 1000
4488         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4489         for N in $(seq 0 $((OSTCOUNT - 1))); do
4490                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4491                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4492                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4493                         '($1 == '$N') { objs += 1 } \
4494                         END { printf("%0.0f", objs) }')
4495                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4496         done
4497         unlinkmany $DIR/$tdir/t- 1000
4498
4499         NLAST=0
4500         for N in $(seq 1 $((OSTCOUNT - 1))); do
4501                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4502                         error "OST $N has less objects vs OST $NLAST" \
4503                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4504                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4505                         error "OST $N has less objects vs OST $NLAST" \
4506                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4507
4508                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4509                         error "OST $N has less #0 objects vs OST $NLAST" \
4510                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4511                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4512                         error "OST $N has less #0 objects vs OST $NLAST" \
4513                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4514                 NLAST=$N
4515         done
4516         rm -f $TMP/$tfile
4517 }
4518 run_test 51d "check object distribution"
4519
4520 test_51e() {
4521         if [ "$mds1_FSTYPE" != ldiskfs ]; then
4522                 skip_env "ldiskfs only test"
4523         fi
4524
4525         test_mkdir -c1 $DIR/$tdir
4526         test_mkdir -c1 $DIR/$tdir/d0
4527
4528         touch $DIR/$tdir/d0/foo
4529         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4530                 error "file exceed 65000 nlink limit!"
4531         unlinkmany $DIR/$tdir/d0/f- 65001
4532         return 0
4533 }
4534 run_test 51e "check file nlink limit"
4535
4536 test_51f() {
4537         test_mkdir $DIR/$tdir
4538
4539         local max=100000
4540         local ulimit_old=$(ulimit -n)
4541         local spare=20 # number of spare fd's for scripts/libraries, etc.
4542         local mdt=$($LFS getstripe -m $DIR/$tdir)
4543         local numfree=$($LFS df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4544
4545         echo "MDT$mdt numfree=$numfree, max=$max"
4546         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4547         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4548                 while ! ulimit -n $((numfree + spare)); do
4549                         numfree=$((numfree * 3 / 4))
4550                 done
4551                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4552         else
4553                 echo "left ulimit at $ulimit_old"
4554         fi
4555
4556         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4557                 unlinkmany $DIR/$tdir/f $numfree
4558                 error "create+open $numfree files in $DIR/$tdir failed"
4559         }
4560         ulimit -n $ulimit_old
4561
4562         # if createmany exits at 120s there will be fewer than $numfree files
4563         unlinkmany $DIR/$tdir/f $numfree || true
4564 }
4565 run_test 51f "check many open files limit"
4566
4567 test_52a() {
4568         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4569         test_mkdir $DIR/$tdir
4570         touch $DIR/$tdir/foo
4571         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4572         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4573         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4574         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4575         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4576                                         error "link worked"
4577         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4578         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4579         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4580                                                      error "lsattr"
4581         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4582         cp -r $DIR/$tdir $TMP/
4583         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4584 }
4585 run_test 52a "append-only flag test (should return errors)"
4586
4587 test_52b() {
4588         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4589         test_mkdir $DIR/$tdir
4590         touch $DIR/$tdir/foo
4591         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4592         cat test > $DIR/$tdir/foo && error "cat test worked"
4593         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4594         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4595         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4596                                         error "link worked"
4597         echo foo >> $DIR/$tdir/foo && error "echo worked"
4598         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4599         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4600         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4601         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4602                                                         error "lsattr"
4603         chattr -i $DIR/$tdir/foo || error "chattr failed"
4604
4605         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4606 }
4607 run_test 52b "immutable flag test (should return errors) ======="
4608
4609 test_53() {
4610         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4611         remote_mds_nodsh && skip "remote MDS with nodsh"
4612         remote_ost_nodsh && skip "remote OST with nodsh"
4613
4614         local param
4615         local param_seq
4616         local ostname
4617         local mds_last
4618         local mds_last_seq
4619         local ost_last
4620         local ost_last_seq
4621         local ost_last_id
4622         local ostnum
4623         local node
4624         local found=false
4625         local support_last_seq=true
4626
4627         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
4628                 support_last_seq=false
4629
4630         # only test MDT0000
4631         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4632         local value
4633         for value in $(do_facet $SINGLEMDS \
4634                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4635                 param=$(echo ${value[0]} | cut -d "=" -f1)
4636                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4637
4638                 if $support_last_seq; then
4639                         param_seq=$(echo $param |
4640                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4641                         mds_last_seq=$(do_facet $SINGLEMDS \
4642                                        $LCTL get_param -n $param_seq)
4643                 fi
4644                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4645
4646                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4647                 node=$(facet_active_host ost$((ostnum+1)))
4648                 param="obdfilter.$ostname.last_id"
4649                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4650                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4651                         ost_last_id=$ost_last
4652
4653                         if $support_last_seq; then
4654                                 ost_last_id=$(echo $ost_last |
4655                                               awk -F':' '{print $2}' |
4656                                               sed -e "s/^0x//g")
4657                                 ost_last_seq=$(echo $ost_last |
4658                                                awk -F':' '{print $1}')
4659                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4660                         fi
4661
4662                         if [[ $ost_last_id != $mds_last ]]; then
4663                                 error "$ost_last_id != $mds_last"
4664                         else
4665                                 found=true
4666                                 break
4667                         fi
4668                 done
4669         done
4670         $found || error "can not match last_seq/last_id for $mdtosc"
4671         return 0
4672 }
4673 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4674
4675 test_54a() {
4676         perl -MSocket -e ';' || skip "no Socket perl module installed"
4677
4678         $SOCKETSERVER $DIR/socket ||
4679                 error "$SOCKETSERVER $DIR/socket failed: $?"
4680         $SOCKETCLIENT $DIR/socket ||
4681                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4682         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4683 }
4684 run_test 54a "unix domain socket test =========================="
4685
4686 test_54b() {
4687         f="$DIR/f54b"
4688         mknod $f c 1 3
4689         chmod 0666 $f
4690         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1
4691 }
4692 run_test 54b "char device works in lustre ======================"
4693
4694 find_loop_dev() {
4695         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4696         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4697         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4698
4699         for i in $(seq 3 7); do
4700                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4701                 LOOPDEV=$LOOPBASE$i
4702                 LOOPNUM=$i
4703                 break
4704         done
4705 }
4706
4707 cleanup_54c() {
4708         local rc=0
4709         loopdev="$DIR/loop54c"
4710
4711         trap 0
4712         $UMOUNT $DIR/$tdir || rc=$?
4713         losetup -d $loopdev || true
4714         losetup -d $LOOPDEV || true
4715         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4716         return $rc
4717 }
4718
4719 test_54c() {
4720         [ $PARALLEL == "yes" ] && skip "skip parallel run"
4721
4722         loopdev="$DIR/loop54c"
4723
4724         find_loop_dev
4725         [ -z "$LOOPNUM" ] && skip_env "couldn't find empty loop device"
4726         trap cleanup_54c EXIT
4727         mknod $loopdev b 7 $LOOPNUM
4728         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4729         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE seek=1024 count=1 > /dev/null
4730         losetup $loopdev $DIR/$tfile ||
4731                 error "can't set up $loopdev for $DIR/$tfile"
4732         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4733         test_mkdir $DIR/$tdir
4734         mount -t ext2 $loopdev $DIR/$tdir ||
4735                 error "error mounting $loopdev on $DIR/$tdir"
4736         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$PAGE_SIZE count=30 ||
4737                 error "dd write"
4738         df $DIR/$tdir
4739         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$PAGE_SIZE count=30 ||
4740                 error "dd read"
4741         cleanup_54c
4742 }
4743 run_test 54c "block device works in lustre ====================="
4744
4745 test_54d() {
4746         f="$DIR/f54d"
4747         string="aaaaaa"
4748         mknod $f p
4749         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4750 }
4751 run_test 54d "fifo device works in lustre ======================"
4752
4753 test_54e() {
4754         f="$DIR/f54e"
4755         string="aaaaaa"
4756         cp -aL /dev/console $f
4757         echo $string > $f || error "echo $string to $f failed"
4758 }
4759 run_test 54e "console/tty device works in lustre ======================"
4760
4761 test_56a() {
4762         local numfiles=3
4763         local dir=$DIR/$tdir
4764
4765         rm -rf $dir
4766         test_mkdir -p $dir/dir
4767         for i in $(seq $numfiles); do
4768                 touch $dir/file$i
4769                 touch $dir/dir/file$i
4770         done
4771
4772         local numcomp=$($LFS getstripe --component-count $dir)
4773
4774         [[ $numcomp == 0 ]] && numcomp=1
4775
4776         # test lfs getstripe with --recursive
4777         local filenum=$($LFS getstripe -r $dir | egrep -c "obdidx|l_ost_idx")
4778
4779         [[ $filenum -eq $((numfiles * 2)) ]] ||
4780                 error "$LFS getstripe -r: found $filenum != $((numfiles * 2))"
4781         filenum=$($LFS getstripe $dir | egrep -c "obdidx|l_ost_idx")
4782         [[ $filenum -eq $numfiles ]] ||
4783                 error "$LFS getstripe $dir: found $filenum, not $numfiles"
4784         echo "$LFS getstripe showed obdidx or l_ost_idx"
4785
4786         # test lfs getstripe with file instead of dir
4787         filenum=$($LFS getstripe $dir/file1 | egrep -c "obdidx|l_ost_idx")
4788         [[ $filenum -eq 1 ]] ||
4789                 error "$LFS getstripe $dir/file1: found $filenum, not 1"
4790         echo "$LFS getstripe file1 passed"
4791
4792         #test lfs getstripe with --verbose
4793         filenum=$($LFS getstripe --verbose $dir | grep -c lmm_magic)
4794         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4795                 error "$LFS getstripe --verbose $dir: "\
4796                       "got $filenum want $((numfiles * numcomp)) lmm_magic"
4797         [[ $($LFS getstripe $dir | grep -c lmm_magic) -eq 0 ]] ||
4798                 error "$LFS getstripe $dir: showed lmm_magic"
4799
4800         #test lfs getstripe with -v prints lmm_fid
4801         filenum=$($LFS getstripe -v $dir | grep -c lmm_fid)
4802         [[ $filenum -eq $((numfiles * numcomp)) ]] ||
4803                 error "$LFS getstripe -v $dir: "\
4804                       "got $filenum want $((numfiles * numcomp)) lmm_fid"
4805         [[ $($LFS getstripe $dir | grep -c lmm_fid) -eq 0 ]] ||
4806                 error "$LFS getstripe $dir: showed lmm_fid by default"
4807         echo "$LFS getstripe --verbose passed"
4808
4809         #check for FID information
4810         local fid1=$($LFS getstripe --fid $dir/file1)
4811         local fid2=$($LFS getstripe --verbose $dir/file1 |
4812                      awk '/lmm_fid: / { print $2; exit; }')
4813         local fid3=$($LFS path2fid $dir/file1)
4814
4815         [ "$fid1" != "$fid2" ] &&
4816                 error "getstripe --fid '$fid1' != getstripe --verbose '$fid2'"
4817         [ "$fid1" != "$fid3" ] &&
4818                 error "getstripe --fid '$fid1' != lfs path2fid '$fid3'"
4819         echo "$LFS getstripe --fid passed"
4820
4821         #test lfs getstripe with --obd
4822         $LFS getstripe --obd wrong_uuid $dir 2>&1 | grep -q "unknown obduuid" ||
4823                 error "$LFS getstripe --obd wrong_uuid: should return error"
4824
4825         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
4826
4827         local ostidx=1
4828         local obduuid=$(ostuuid_from_index $ostidx)
4829         local found=$($LFS getstripe -r --obd $obduuid $dir |
4830                 grep 'lmm_stripe_offset:' | grep -c " $ostidx\$")
4831
4832         filenum=$($LFS getstripe -ir $dir | grep -c "^$ostidx\$")
4833         [[ $($LFS getstripe -id $dir) -ne $ostidx ]] ||
4834                 ((filenum--))
4835         [[ $($LFS getstripe -id $dir/dir) -ne $ostidx ]] ||
4836                 ((filenum--))
4837
4838         [[ $found -eq $filenum ]] ||
4839                 error "$LFS getstripe --obd: found $found expect $filenum"
4840         [[ $($LFS getstripe -r -v --obd $obduuid $dir |
4841                 sed '/^[         ]*'${ostidx}'[  ]/d' |
4842                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4843                 error "$LFS getstripe --obd: should not show file on other obd"
4844         echo "$LFS getstripe --obd passed"
4845 }
4846 run_test 56a "check $LFS getstripe"
4847
4848 test_56b() {
4849         local dir=$DIR/$tdir
4850         local numdirs=3
4851
4852         test_mkdir $dir
4853         for i in $(seq $numdirs); do
4854                 test_mkdir $dir/dir$i
4855         done
4856
4857         # test lfs getdirstripe default mode is non-recursion, which is
4858         # different from lfs getstripe
4859         local dircnt=$($LFS getdirstripe $dir | grep -c lmv_stripe_count)
4860
4861         [[ $dircnt -eq 1 ]] ||
4862                 error "$LFS getdirstripe: found $dircnt, not 1"
4863         dircnt=$($LFS getdirstripe --recursive $dir |
4864                 grep -c lmv_stripe_count)
4865         [[ $dircnt -eq $((numdirs + 1)) ]] ||
4866                 error "$LFS getdirstripe -r: $dircnt, != $((numdirs + 1))"
4867 }
4868 run_test 56b "check $LFS getdirstripe"
4869
4870 test_56c() {
4871         remote_ost_nodsh && skip "remote OST with nodsh"
4872
4873         local ost_idx=0
4874         local ost_name=$(ostname_from_index $ost_idx)
4875         local old_status=$(ost_dev_status $ost_idx)
4876
4877         [[ -z "$old_status" ]] ||
4878                 skip_env "OST $ost_name is in $old_status status"
4879
4880         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4881         sleep_maxage
4882
4883         local new_status=$(ost_dev_status $ost_idx)
4884
4885         [[ "$new_status" = "D" ]] ||
4886                 error "OST $ost_name is in status of '$new_status', not 'D'"
4887
4888         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4889         sleep_maxage
4890
4891         new_status=$(ost_dev_status $ost_idx)
4892         [[ -z "$new_status" ]] ||
4893                 error "OST $ost_name is in status of '$new_status', not ''"
4894 }
4895 run_test 56c "check 'lfs df' showing device status"
4896
4897 NUMFILES=3
4898 NUMDIRS=3
4899 setup_56() {
4900         local local_tdir="$1"
4901         local local_numfiles="$2"
4902         local local_numdirs="$3"
4903         local dir_params="$4"
4904         local dir_stripe_params="$5"
4905
4906         if [ ! -d "$local_tdir" ] ; then
4907                 test_mkdir -p $dir_stripe_params $local_tdir
4908                 [ "$dir_params" ] && $LFS setstripe $dir_params $local_tdir
4909                 for i in $(seq $local_numfiles) ; do
4910                         touch $local_tdir/file$i
4911                 done
4912                 for i in $(seq $local_numdirs) ; do
4913                         test_mkdir $dir_stripe_params $local_tdir/dir$i
4914                         for j in $(seq $local_numfiles) ; do
4915                                 touch $local_tdir/dir$i/file$j
4916                         done
4917                 done
4918         fi
4919 }
4920
4921 setup_56_special() {
4922         local local_tdir=$1
4923         local local_numfiles=$2
4924         local local_numdirs=$3
4925
4926         setup_56 $local_tdir $local_numfiles $local_numdirs
4927
4928         if [ ! -e "$local_tdir/loop${local_numfiles}b" ] ; then
4929                 for i in $(seq $local_numfiles) ; do
4930                         mknod $local_tdir/loop${i}b b 7 $i
4931                         mknod $local_tdir/null${i}c c 1 3
4932                         ln -s $local_tdir/file1 $local_tdir/link${i}
4933                 done
4934                 for i in $(seq $local_numdirs) ; do
4935                         mknod $local_tdir/dir$i/loop${i}b b 7 $i
4936                         mknod $local_tdir/dir$i/null${i}c c 1 3
4937                         ln -s $local_tdir/dir$i/file1 $local_tdir/dir$i/link${i}
4938                 done
4939         fi
4940 }
4941
4942 test_56g() {
4943         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4944         local expected=$(($NUMDIRS + 2))
4945
4946         setup_56 $dir $NUMFILES $NUMDIRS
4947
4948         # test lfs find with -name
4949         for i in $(seq $NUMFILES) ; do
4950                 local nums=$($LFS find -name "*$i" $dir | wc -l)
4951
4952                 [ $nums -eq $expected ] ||
4953                         error "lfs find -name '*$i' $dir wrong: "\
4954                               "found $nums, expected $expected"
4955         done
4956 }
4957 run_test 56g "check lfs find -name"
4958
4959 test_56h() {
4960         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4961         local expected=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4962
4963         setup_56 $dir $NUMFILES $NUMDIRS
4964
4965         # test lfs find with ! -name
4966         for i in $(seq $NUMFILES) ; do
4967                 local nums=$($LFS find ! -name "*$i" $dir | wc -l)
4968
4969                 [ $nums -eq $expected ] ||
4970                         error "lfs find ! -name '*$i' $dir wrong: "\
4971                               "found $nums, expected $expected"
4972         done
4973 }
4974 run_test 56h "check lfs find ! -name"
4975
4976 test_56i() {
4977         local dir=$DIR/$tdir
4978
4979         test_mkdir $dir
4980
4981         local cmd="$LFS find -ost $(ostuuid_from_index 0 $dir) $dir"
4982         local out=$($cmd)
4983
4984         [ -z "$out" ] || error "'$cmd' returned directory '$out'"
4985 }
4986 run_test 56i "check 'lfs find -ost UUID' skips directories"
4987
4988 test_56j() {
4989         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
4990
4991         setup_56_special $dir $NUMFILES $NUMDIRS
4992
4993         local expected=$((NUMDIRS + 1))
4994         local cmd="$LFS find -type d $dir"
4995         local nums=$($cmd | wc -l)
4996
4997         [ $nums -eq $expected ] ||
4998                 error "'$cmd' wrong: found $nums, expected $expected"
4999 }
5000 run_test 56j "check lfs find -type d"
5001
5002 test_56k() {
5003         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5004
5005         setup_56_special $dir $NUMFILES $NUMDIRS
5006
5007         local expected=$(((NUMDIRS + 1) * NUMFILES))
5008         local cmd="$LFS find -type f $dir"
5009         local nums=$($cmd | wc -l)
5010
5011         [ $nums -eq $expected ] ||
5012                 error "'$cmd' wrong: found $nums, expected $expected"
5013 }
5014 run_test 56k "check lfs find -type f"
5015
5016 test_56l() {
5017         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5018
5019         setup_56_special $dir $NUMFILES $NUMDIRS
5020
5021         local expected=$((NUMDIRS + NUMFILES))
5022         local cmd="$LFS find -type b $dir"
5023         local nums=$($cmd | wc -l)
5024
5025         [ $nums -eq $expected ] ||
5026                 error "'$cmd' wrong: found $nums, expected $expected"
5027 }
5028 run_test 56l "check lfs find -type b"
5029
5030 test_56m() {
5031         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5032
5033         setup_56_special $dir $NUMFILES $NUMDIRS
5034
5035         local expected=$((NUMDIRS + NUMFILES))
5036         local cmd="$LFS find -type c $dir"
5037         local nums=$($cmd | wc -l)
5038         [ $nums -eq $expected ] ||
5039                 error "'$cmd' wrong: found $nums, expected $expected"
5040 }
5041 run_test 56m "check lfs find -type c"
5042
5043 test_56n() {
5044         local dir=$DIR/d$(basetest $testnum)g.$TESTSUITE
5045         setup_56_special $dir $NUMFILES $NUMDIRS
5046
5047         local expected=$((NUMDIRS + NUMFILES))
5048         local cmd="$LFS find -type l $dir"
5049         local nums=$($cmd | wc -l)
5050
5051         [ $nums -eq $expected ] ||
5052                 error "'$cmd' wrong: found $nums, expected $expected"
5053 }
5054 run_test 56n "check lfs find -type l"
5055
5056 test_56o() {
5057         local dir=$DIR/$tdir
5058
5059         setup_56 $dir $NUMFILES $NUMDIRS
5060         utime $dir/file1 > /dev/null || error "utime (1)"
5061         utime $dir/file2 > /dev/null || error "utime (2)"
5062         utime $dir/dir1 > /dev/null || error "utime (3)"
5063         utime $dir/dir2 > /dev/null || error "utime (4)"
5064         utime $dir/dir1/file1 > /dev/null || error "utime (5)"
5065         dd if=/dev/zero count=1 >> $dir/dir1/file1 && sync
5066
5067         local expected=4
5068         local nums=$($LFS find -mtime +0 $dir | wc -l)
5069
5070         [ $nums -eq $expected ] ||
5071                 error "lfs find -mtime +0 $dir: found $nums expect $expected"
5072
5073         expected=12
5074         cmd="$LFS find -mtime 0 $dir"
5075         nums=$($cmd | wc -l)
5076         [ $nums -eq $expected ] ||
5077                 error "'$cmd' wrong: found $nums, expected $expected"
5078 }
5079 run_test 56o "check lfs find -mtime for old files"
5080
5081 test_56p() {
5082         [ $RUNAS_ID -eq $UID ] &&
5083                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5084
5085         local dir=$DIR/$tdir
5086
5087         setup_56 $dir $NUMFILES $NUMDIRS
5088         chown $RUNAS_ID $dir/file* || error "chown $DIR/${tdir}g/file$i failed"
5089
5090         local expected=$NUMFILES
5091         local cmd="$LFS find -uid $RUNAS_ID $dir"
5092         local nums=$($cmd | wc -l)
5093
5094         [ $nums -eq $expected ] ||
5095                 error "'$cmd' wrong: found $nums, expected $expected"
5096
5097         expected=$(((NUMFILES + 1) * NUMDIRS + 1))
5098         cmd="$LFS find ! -uid $RUNAS_ID $dir"
5099         nums=$($cmd | wc -l)
5100         [ $nums -eq $expected ] ||
5101                 error "'$cmd' wrong: found $nums, expected $expected"
5102 }
5103 run_test 56p "check lfs find -uid and ! -uid"
5104
5105 test_56q() {
5106         [ $RUNAS_ID -eq $UID ] &&
5107                 skip_env "RUNAS_ID = UID = $UID -- skipping"
5108
5109         local dir=$DIR/$tdir
5110
5111         setup_56 $dir $NUMFILES $NUMDIRS
5112         chgrp $RUNAS_GID $dir/file* || error "chown $dir/file$i failed"
5113
5114         local expected=$NUMFILES
5115         local cmd="$LFS find -gid $RUNAS_GID $dir"
5116         local nums=$($cmd | wc -l)
5117
5118         [ $nums -eq $expected ] ||
5119                 error "'$cmd' wrong: found $nums, expected $expected"
5120
5121         expected=$(( ($NUMFILES+1) * $NUMDIRS + 1))
5122         cmd="$LFS find ! -gid $RUNAS_GID $dir"
5123         nums=$($cmd | wc -l)
5124         [ $nums -eq $expected ] ||
5125                 error "'$cmd' wrong: found $nums, expected $expected"
5126 }
5127 run_test 56q "check lfs find -gid and ! -gid"
5128
5129 test_56r() {
5130         local dir=$DIR/$tdir
5131
5132         setup_56 $dir $NUMFILES $NUMDIRS
5133
5134         local expected=12
5135         local cmd="$LFS find -size 0 -type f $dir"
5136         local nums=$($cmd | wc -l)
5137
5138         [ $nums -eq $expected ] ||
5139                 error "'$cmd' wrong: found $nums, expected $expected"
5140         expected=0
5141         cmd="$LFS find ! -size 0 -type f $dir"
5142         nums=$($cmd | wc -l)
5143         [ $nums -eq $expected ] ||
5144                 error "'$cmd' wrong: found $nums, expected $expected"
5145         echo "test" > $dir/$tfile
5146         echo "test2" > $dir/$tfile.2 && sync
5147         expected=1
5148         cmd="$LFS find -size 5 -type f $dir"
5149         nums=$($cmd | wc -l)
5150         [ $nums -eq $expected ] ||
5151                 error "'$cmd' wrong: found $nums, expected $expected"
5152         expected=1
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=2
5158         cmd="$LFS find -size +0 -type f $dir"
5159         nums=$($cmd | wc -l)
5160         [ $nums -eq $expected ] ||
5161                 error "'$cmd' wrong: found $nums, expected $expected"
5162         expected=2
5163         cmd="$LFS find ! -size -5 -type f $dir"
5164         nums=$($cmd | wc -l)
5165         [ $nums -eq $expected ] ||
5166                 error "'$cmd' wrong: found $nums, expected $expected"
5167         expected=12
5168         cmd="$LFS find -size -5 -type f $dir"
5169         nums=$($cmd | wc -l)
5170         [ $nums -eq $expected ] ||
5171                 error "'$cmd' wrong: found $nums, expected $expected"
5172 }
5173 run_test 56r "check lfs find -size works"
5174
5175 test_56s() { # LU-611 #LU-9369
5176         [[ $OSTCOUNT -lt 2 ]] && skip_env "need at least 2 OSTs"
5177
5178         local dir=$DIR/$tdir
5179         local onestripe=$(((NUMDIRS + 1) * NUMFILES))
5180
5181         setup_56 $dir $NUMFILES $NUMDIRS "-c 1"
5182         for i in $(seq $NUMDIRS); do
5183                 $LFS setstripe -c $((OSTCOUNT + 1)) $dir/dir$i/$tfile
5184         done
5185
5186         local expected=$NUMDIRS
5187         local cmd="$LFS find -c $OSTCOUNT $dir"
5188         local nums=$($cmd | wc -l)
5189
5190         [ $nums -eq $expected ] || {
5191                 $LFS getstripe -R $dir
5192                 error "'$cmd' wrong: found $nums, expected $expected"
5193         }
5194
5195         expected=$((NUMDIRS + onestripe))
5196         cmd="$LFS find -stripe-count +0 -type f $dir"
5197         nums=$($cmd | wc -l)
5198         [ $nums -eq $expected ] || {
5199                 $LFS getstripe -R $dir
5200                 error "'$cmd' wrong: found $nums, expected $expected"
5201         }
5202
5203         expected=$onestripe
5204         cmd="$LFS find -stripe-count 1 -type f $dir"
5205         nums=$($cmd | wc -l)
5206         [ $nums -eq $expected ] || {
5207                 $LFS getstripe -R $dir
5208                 error "'$cmd' wrong: found $nums, expected $expected"
5209         }
5210
5211         cmd="$LFS find -stripe-count -2 -type f $dir"
5212         nums=$($cmd | wc -l)
5213         [ $nums -eq $expected ] || {
5214                 $LFS getstripe -R $dir
5215                 error "'$cmd' wrong: found $nums, expected $expected"
5216         }
5217
5218         expected=0
5219         cmd="$LFS find -stripe-count $((OSTCOUNT + 1)) -type f $dir"
5220         nums=$($cmd | wc -l)
5221         [ $nums -eq $expected ] || {
5222                 $LFS getstripe -R $dir
5223                 error "'$cmd' wrong: found $nums, expected $expected"
5224         }
5225 }
5226 run_test 56s "check lfs find -stripe-count works"
5227
5228 test_56t() { # LU-611 #LU-9369
5229         local dir=$DIR/$tdir
5230
5231         setup_56 $dir 0 $NUMDIRS
5232         for i in $(seq $NUMDIRS); do
5233                 $LFS setstripe -S 8M $dir/dir$i/$tfile
5234         done
5235
5236         local expected=$NUMDIRS
5237         local cmd="$LFS find -S 8M $dir"
5238         local nums=$($cmd | wc -l)
5239
5240         [ $nums -eq $expected ] || {
5241                 $LFS getstripe -R $dir
5242                 error "'$cmd' wrong: found $nums, expected $expected"
5243         }
5244         rm -rf $dir
5245
5246         setup_56 $dir $NUMFILES $NUMDIRS "--stripe-size 512k"
5247
5248         $LFS setstripe -S 256k $dir/$tfile.{0,1,2,3}
5249
5250         expected=$(((NUMDIRS + 1) * NUMFILES))
5251         cmd="$LFS find -stripe-size 512k -type f $dir"
5252         nums=$($cmd | wc -l)
5253         [ $nums -eq $expected ] ||
5254                 error "'$cmd' wrong: found $nums, expected $expected"
5255
5256         cmd="$LFS find -stripe-size +320k -type f $dir"
5257         nums=$($cmd | wc -l)
5258         [ $nums -eq $expected ] ||
5259                 error "'$cmd' wrong: found $nums, expected $expected"
5260
5261         expected=$(((NUMDIRS + 1) * NUMFILES + 4))
5262         cmd="$LFS find -stripe-size +200k -type f $dir"
5263         nums=$($cmd | wc -l)
5264         [ $nums -eq $expected ] ||
5265                 error "'$cmd' wrong: found $nums, expected $expected"
5266
5267         cmd="$LFS find -stripe-size -640k -type f $dir"
5268         nums=$($cmd | wc -l)
5269         [ $nums -eq $expected ] ||
5270                 error "'$cmd' wrong: found $nums, expected $expected"
5271
5272         expected=4
5273         cmd="$LFS find -stripe-size 256k -type f $dir"
5274         nums=$($cmd | wc -l)
5275         [ $nums -eq $expected ] ||
5276                 error "'$cmd' wrong: found $nums, expected $expected"
5277
5278         cmd="$LFS find -stripe-size -320k -type f $dir"
5279         nums=$($cmd | wc -l)
5280         [ $nums -eq $expected ] ||
5281                 error "'$cmd' wrong: found $nums, expected $expected"
5282
5283         expected=0
5284         cmd="$LFS find -stripe-size 1024k -type f $dir"
5285         nums=$($cmd | wc -l)
5286         [ $nums -eq $expected ] ||
5287                 error "'$cmd' wrong: found $nums, expected $expected"
5288 }
5289 run_test 56t "check lfs find -stripe-size works"
5290
5291 test_56u() { # LU-611
5292         local dir=$DIR/$tdir
5293
5294         setup_56 $dir $NUMFILES $NUMDIRS "-i 0 -c 1"
5295
5296         if [[ $OSTCOUNT -gt 1 ]]; then
5297                 $LFS setstripe -i 1 -c 1 $dir/$tfile.{0,1,2,3}
5298                 onestripe=4
5299         else
5300                 onestripe=0
5301         fi
5302
5303         local expected=$(((NUMDIRS + 1) * NUMFILES))
5304         local cmd="$LFS find -stripe-index 0 -type f $dir"
5305         local nums=$($cmd | wc -l)
5306
5307         [ $nums -eq $expected ] ||
5308                 error "'$cmd' wrong: found $nums, expected $expected"
5309
5310         expected=$onestripe
5311         cmd="$LFS find -stripe-index 1 -type f $dir"
5312         nums=$($cmd | wc -l)
5313         [ $nums -eq $expected ] ||
5314                 error "'$cmd' wrong: found $nums, expected $expected"
5315
5316         cmd="$LFS find ! -stripe-index 0 -type f $dir"
5317         nums=$($cmd | wc -l)
5318         [ $nums -eq $expected ] ||
5319                 error "'$cmd' wrong: found $nums, expected $expected"
5320
5321         expected=0
5322         # This should produce an error and not return any files
5323         cmd="$LFS find -stripe-index $OSTCOUNT -type f $dir"
5324         nums=$($cmd 2>/dev/null | wc -l)
5325         [ $nums -eq $expected ] ||
5326                 error "'$cmd' wrong: found $nums, expected $expected"
5327
5328         if [[ $OSTCOUNT -gt 1 ]]; then
5329                 expected=$(((NUMDIRS + 1) * NUMFILES + onestripe))
5330                 cmd="$LFS find -stripe-index 0,1 -type f $dir"
5331                 nums=$($cmd | wc -l)
5332                 [ $nums -eq $expected ] ||
5333                         error "'$cmd' wrong: found $nums, expected $expected"
5334         fi
5335 }
5336 run_test 56u "check lfs find -stripe-index works"
5337
5338 test_56v() {
5339         local mdt_idx=0
5340         local dir=$DIR/$tdir
5341
5342         setup_56 $dir $NUMFILES $NUMDIRS
5343
5344         UUID=$(mdtuuid_from_index $mdt_idx $dir)
5345         [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT $mdt_idx"
5346
5347         for file in $($LFS find -m $UUID $dir); do
5348                 file_midx=$($LFS getstripe -m $file)
5349                 [ $file_midx -eq $mdt_idx ] ||
5350                         error "lfs find -m $UUID != getstripe -m $file_midx"
5351         done
5352 }
5353 run_test 56v "check 'lfs find -m match with lfs getstripe -m'"
5354
5355 test_56w() {
5356         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5357         [ $PARALLEL == "yes" ] && skip "skip parallel run"
5358
5359         local dir=$DIR/$tdir
5360
5361         setup_56 $dir $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5362
5363         local stripe_size=$($LFS getstripe -S -d $dir) ||
5364                 error "$LFS getstripe -S -d $dir failed"
5365         stripe_size=${stripe_size%% *}
5366
5367         local file_size=$((stripe_size * OSTCOUNT))
5368         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5369         local required_space=$((file_num * file_size))
5370         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5371                            head -n1)
5372         [[ $free_space -le $((required_space / 1024)) ]] &&
5373                 skip_env "need $required_space, have $free_space kbytes"
5374
5375         local dd_bs=65536
5376         local dd_count=$((file_size / dd_bs))
5377
5378         # write data into the files
5379         local i
5380         local j
5381         local file
5382
5383         for i in $(seq $NUMFILES); do
5384                 file=$dir/file$i
5385                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5386                         error "write data into $file failed"
5387         done
5388         for i in $(seq $NUMDIRS); do
5389                 for j in $(seq $NUMFILES); do
5390                         file=$dir/dir$i/file$j
5391                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5392                                 error "write data into $file failed"
5393                 done
5394         done
5395
5396         # $LFS_MIGRATE will fail if hard link migration is unsupported
5397         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5398                 createmany -l$dir/dir1/file1 $dir/dir1/link 200 ||
5399                         error "creating links to $dir/dir1/file1 failed"
5400         fi
5401
5402         local expected=-1
5403
5404         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5405
5406         # lfs_migrate file
5407         local cmd="$LFS_MIGRATE -y -c $expected $dir/file1"
5408
5409         echo "$cmd"
5410         eval $cmd || error "$cmd failed"
5411
5412         check_stripe_count $dir/file1 $expected
5413
5414         if [ $MDS1_VERSION -ge $(version_code 2.6.90) ];
5415         then
5416                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5417                 # OST 1 if it is on OST 0. This file is small enough to
5418                 # be on only one stripe.
5419                 file=$dir/migr_1_ost
5420                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5421                         error "write data into $file failed"
5422                 local obdidx=$($LFS getstripe -i $file)
5423                 local oldmd5=$(md5sum $file)
5424                 local newobdidx=0
5425
5426                 [[ $obdidx -eq 0 ]] && newobdidx=1
5427                 cmd="$LFS migrate -i $newobdidx $file"
5428                 echo $cmd
5429                 eval $cmd || error "$cmd failed"
5430
5431                 local realobdix=$($LFS getstripe -i $file)
5432                 local newmd5=$(md5sum $file)
5433
5434                 [[ $newobdidx -ne $realobdix ]] &&
5435                         error "new OST is different (was=$obdidx, "\
5436                               "wanted=$newobdidx, got=$realobdix)"
5437                 [[ "$oldmd5" != "$newmd5" ]] &&
5438                         error "md5sum differ: $oldmd5, $newmd5"
5439         fi
5440
5441         # lfs_migrate dir
5442         cmd="$LFS_MIGRATE -y -c $expected $dir/dir1"
5443         echo "$cmd"
5444         eval $cmd || error "$cmd failed"
5445
5446         for j in $(seq $NUMFILES); do
5447                 check_stripe_count $dir/dir1/file$j $expected
5448         done
5449
5450         # lfs_migrate works with lfs find
5451         cmd="$LFS find -stripe_count $OSTCOUNT -type f $dir |
5452              $LFS_MIGRATE -y -c $expected"
5453         echo "$cmd"
5454         eval $cmd || error "$cmd failed"
5455
5456         for i in $(seq 2 $NUMFILES); do
5457                 check_stripe_count $dir/file$i $expected
5458         done
5459         for i in $(seq 2 $NUMDIRS); do
5460                 for j in $(seq $NUMFILES); do
5461                 check_stripe_count $dir/dir$i/file$j $expected
5462                 done
5463         done
5464 }
5465 run_test 56w "check lfs_migrate -c stripe_count works"
5466
5467 test_56wb() {
5468         local file1=$DIR/$tdir/file1
5469         local create_pool=false
5470         local initial_pool=$($LFS getstripe -p $DIR)
5471         local pool_list=()
5472         local pool=""
5473
5474         echo -n "Creating test dir..."
5475         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5476         echo "done."
5477
5478         echo -n "Creating test file..."
5479         touch $file1 || error "cannot create file"
5480         echo "done."
5481
5482         echo -n "Detecting existing pools..."
5483         pool_list=($($LFS pool_list $FSNAME | grep "$FSNAME\." | cut -d. -f2))
5484
5485         if [ ${#pool_list[@]} -gt 0 ]; then
5486                 echo "${pool_list[@]}"
5487                 for thispool in "${pool_list[@]}"; do
5488                         if [[ -z "$initial_pool" ||
5489                               "$initial_pool" != "$thispool" ]]; then
5490                                 pool="$thispool"
5491                                 echo "Using existing pool '$pool'"
5492                                 break
5493                         fi
5494                 done
5495         else
5496                 echo "none detected."
5497         fi
5498         if [ -z "$pool" ]; then
5499                 pool=${POOL:-testpool}
5500                 [ "$initial_pool" = "$pool" ] && pool="testpool2"
5501                 echo -n "Creating pool '$pool'..."
5502                 create_pool=true
5503                 pool_add $pool &> /dev/null ||
5504                         error "pool_add failed"
5505                 echo "done."
5506
5507                 echo -n "Adding target to pool..."
5508                 pool_add_targets $pool 0 0 1 &> /dev/null ||
5509                         error "pool_add_targets failed"
5510                 echo "done."
5511         fi
5512
5513         echo -n "Setting pool using -p option..."
5514         $LFS_MIGRATE -y -q --no-rsync -p $pool $file1 &> /dev/null ||
5515                 error "migrate failed rc = $?"
5516         echo "done."
5517
5518         echo -n "Verifying test file is in pool after migrating..."
5519         [ "$($LFS getstripe -p $file1)" = $pool ] ||
5520                 error "file was not migrated to pool $pool"
5521         echo "done."
5522
5523         echo -n "Removing test file from pool '$pool'..."
5524         $LFS migrate $file1 &> /dev/null ||
5525                 error "cannot remove from pool"
5526         [ "$($LFS getstripe -p $file1)" ] &&
5527                 error "pool still set"
5528         echo "done."
5529
5530         echo -n "Setting pool using --pool option..."
5531         $LFS_MIGRATE -y -q --no-rsync --pool $pool $file1 &> /dev/null ||
5532                 error "migrate failed rc = $?"
5533         echo "done."
5534
5535         # Clean up
5536         rm -f $file1
5537         if $create_pool; then
5538                 destroy_test_pools 2> /dev/null ||
5539                         error "destroy test pools failed"
5540         fi
5541 }
5542 run_test 56wb "check lfs_migrate pool support"
5543
5544 test_56wc() {
5545         local file1="$DIR/$tdir/file1"
5546
5547         echo -n "Creating test dir..."
5548         test_mkdir $DIR/$tdir &> /dev/null || error "cannot create dir"
5549         local def_stripe_size=$($LFS getstripe -S $DIR/$tdir 2>/dev/null)
5550         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5551                 error "cannot set stripe"
5552         echo "done"
5553
5554         echo -n "Setting initial stripe for test file..."
5555         $LFS setstripe -S 512K -c 1 "$file1" &> /dev/null ||
5556                 error "cannot set stripe"
5557         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5558                 error "stripe size not set"
5559         echo "done."
5560
5561         # File currently set to -S 512K -c 1
5562
5563         # Ensure -c and -S options are rejected when -R is set
5564         echo -n "Verifying incompatible options are detected..."
5565         $LFS_MIGRATE -y -R -c 1 "$file1" &> /dev/null &&
5566                 error "incompatible -c and -R options not detected"
5567         $LFS_MIGRATE -y -R -S 1M "$file1" &> /dev/null &&
5568                 error "incompatible -S and -R options not detected"
5569         echo "done."
5570
5571         # Ensure unrecognized options are passed through to 'lfs migrate'
5572         echo -n "Verifying -S option is passed through to lfs migrate..."
5573         $LFS_MIGRATE -y -S 1M "$file1" &> /dev/null ||
5574                 error "migration failed"
5575         [ $($LFS getstripe -S "$file1") -eq 1048576 ] ||
5576                 error "file was not restriped"
5577         echo "done."
5578
5579         # File currently set to -S 1M -c 1
5580
5581         # Ensure long options are supported
5582         echo -n "Verifying long options supported..."
5583         $LFS_MIGRATE -y --non-block "$file1" &> /dev/null ||
5584                 error "long option without argument not supported"
5585         $LFS_MIGRATE -y --stripe-size 512K "$file1" &> /dev/null ||
5586                 error "long option with argument not supported"
5587         [ $($LFS getstripe -S "$file1") -eq 524288 ] ||
5588                 error "file not restriped with --stripe-size option"
5589         echo "done."
5590
5591         # File currently set to -S 512K -c 1
5592
5593         if [ "$OSTCOUNT" -gt 1 ]; then
5594                 echo -n "Verifying explicit stripe count can be set..."
5595                 $LFS_MIGRATE -y -c 2 "$file1" &> /dev/null ||
5596                         error "migrate failed"
5597                 [ $($LFS getstripe -c "$file1") -eq 2 ] ||
5598                         error "file not restriped to explicit count"
5599                 echo "done."
5600         fi
5601
5602         # File currently set to -S 512K -c 1 or -S 512K -c 2
5603
5604         # Ensure parent striping is used if -R is set, and no stripe
5605         # count or size is specified
5606         echo -n "Setting stripe for parent directory..."
5607         $LFS setstripe -S 1M -c 1 "$DIR/$tdir" &> /dev/null ||
5608                 error "cannot set stripe"
5609         echo "done."
5610
5611         echo -n "Verifying restripe option uses parent stripe settings..."
5612         $LFS_MIGRATE -y -R "$file1" &> /dev/null ||
5613                 error "migrate failed"
5614         [ $($LFS getstripe -S "$file1") -eq $def_stripe_size ] ||
5615                 error "file not restriped to parent settings"
5616         [ $($LFS getstripe -c "$file1") -eq 1 ] ||
5617                 error "file not restriped to parent settings"
5618         echo "done."
5619
5620         # File currently set to -S 1M -c 1
5621
5622         # Ensure striping is preserved if -R is not set, and no stripe
5623         # count or size is specified
5624         echo -n "Verifying striping size preserved when not specified..."
5625         local orig_stripe_size=$($LFS getstripe -S "$file1" 2>/dev/null)
5626         $LFS setstripe -S 2M -c 1 "$DIR/$tdir" &> /dev/null ||
5627                 error "cannot set stripe on parent directory"
5628         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5629                 error "migrate failed"
5630         [ $($LFS getstripe -S "$file1") -eq $orig_stripe_size ] ||
5631                 error "file was restriped"
5632         echo "done."
5633
5634         # Ensure file name properly detected when final option has no argument
5635         echo -n "Verifying file name properly detected..."
5636         $LFS_MIGRATE -y "$file1" &> /dev/null ||
5637                 error "file name interpreted as option argument"
5638         echo "done."
5639
5640         # Clean up
5641         rm -f "$file1"
5642 }
5643 run_test 56wc "check unrecognized options for lfs_migrate are passed through"
5644
5645 test_56wd() {
5646         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5647
5648         local file1=$DIR/$tdir/file1
5649
5650         echo -n "Creating test dir..."
5651         test_mkdir $DIR/$tdir || error "cannot create dir"
5652         echo "done."
5653
5654         echo -n "Creating test file..."
5655         touch $file1
5656         echo "done."
5657
5658         # Ensure 'lfs migrate' will fail by using a non-existent option,
5659         # and make sure rsync is not called to recover
5660         echo -n "Make sure --no-rsync option works..."
5661         $LFS_MIGRATE -y --no-rsync --invalid-opt $file1 2>&1 |
5662                 grep -q 'refusing to fall back to rsync' ||
5663                 error "rsync was called with --no-rsync set"
5664         echo "done."
5665
5666         # Ensure rsync is called without trying 'lfs migrate' first
5667         echo -n "Make sure --rsync option works..."
5668         $LFS_MIGRATE -y --rsync --invalid-opt $file1 2>&1 |
5669                 grep -q 'falling back to rsync' &&
5670                 error "lfs migrate was called with --rsync set"
5671         echo "done."
5672
5673         echo -n "Make sure --rsync and --no-rsync options are exclusive..."
5674         $LFS_MIGRATE -y --rsync --no-rsync $file1 2>&1 |
5675                 grep -q 'at the same time' ||
5676                 error "--rsync and --no-rsync accepted concurrently"
5677         echo "done."
5678
5679         # Clean up
5680         rm -f $file1
5681 }
5682 run_test 56wd "check lfs_migrate --rsync and --no-rsync work"
5683
5684 test_56x() {
5685         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5686         check_swap_layouts_support
5687
5688         local dir=$DIR/$tdir
5689         local ref1=/etc/passwd
5690         local file1=$dir/file1
5691
5692         test_mkdir $dir || error "creating dir $dir"
5693         $LFS setstripe -c 2 $file1
5694         cp $ref1 $file1
5695         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5696         stripe=$($LFS getstripe -c $file1)
5697         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5698         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5699
5700         # clean up
5701         rm -f $file1
5702 }
5703 run_test 56x "lfs migration support"
5704
5705 test_56xa() {
5706         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5707         check_swap_layouts_support
5708
5709         local dir=$DIR/$tdir/$testnum
5710
5711         test_mkdir -p $dir
5712
5713         local ref1=/etc/passwd
5714         local file1=$dir/file1
5715
5716         $LFS setstripe -c 2 $file1
5717         cp $ref1 $file1
5718         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5719
5720         local stripe=$($LFS getstripe -c $file1)
5721
5722         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5723         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5724
5725         # clean up
5726         rm -f $file1
5727 }
5728 run_test 56xa "lfs migration --block support"
5729
5730 check_migrate_links() {
5731         local dir="$1"
5732         local file1="$dir/file1"
5733         local begin="$2"
5734         local count="$3"
5735         local total_count=$(($begin + $count - 1))
5736         local symlink_count=10
5737         local uniq_count=10
5738
5739         if [ ! -f "$file1" ]; then
5740                 echo -n "creating initial file..."
5741                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5742                         error "cannot setstripe initial file"
5743                 echo "done"
5744
5745                 echo -n "creating symlinks..."
5746                 for s in $(seq 1 $symlink_count); do
5747                         ln -s "$file1" "$dir/slink$s" ||
5748                                 error "cannot create symlinks"
5749                 done
5750                 echo "done"
5751
5752                 echo -n "creating nonlinked files..."
5753                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5754                         error "cannot create nonlinked files"
5755                 echo "done"
5756         fi
5757
5758         # create hard links
5759         if [ ! -f "$dir/file$total_count" ]; then
5760                 echo -n "creating hard links $begin:$total_count..."
5761                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5762                         /dev/null || error "cannot create hard links"
5763                 echo "done"
5764         fi
5765
5766         echo -n "checking number of hard links listed in xattrs..."
5767         local fid=$($LFS getstripe -F "$file1")
5768         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5769
5770         echo "${#paths[*]}"
5771         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5772                         skip "hard link list has unexpected size, skipping test"
5773         fi
5774         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5775                         error "link names should exceed xattrs size"
5776         fi
5777
5778         echo -n "migrating files..."
5779         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5780         local rc=$?
5781         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5782         echo "done"
5783
5784         # make sure all links have been properly migrated
5785         echo -n "verifying files..."
5786         fid=$($LFS getstripe -F "$file1") ||
5787                 error "cannot get fid for file $file1"
5788         for i in $(seq 2 $total_count); do
5789                 local fid2=$($LFS getstripe -F $dir/file$i)
5790
5791                 [ "$fid2" == "$fid" ] ||
5792                         error "migrated hard link has mismatched FID"
5793         done
5794
5795         # make sure hard links were properly detected, and migration was
5796         # performed only once for the entire link set; nonlinked files should
5797         # also be migrated
5798         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5799         local expected=$(($uniq_count + 1))
5800
5801         [ "$actual" -eq  "$expected" ] ||
5802                 error "hard links individually migrated ($actual != $expected)"
5803
5804         # make sure the correct number of hard links are present
5805         local hardlinks=$(stat -c '%h' "$file1")
5806
5807         [ $hardlinks -eq $total_count ] ||
5808                 error "num hard links $hardlinks != $total_count"
5809         echo "done"
5810
5811         return 0
5812 }
5813
5814 test_56xb() {
5815         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
5816                 skip "Need MDS version at least 2.10.55"
5817
5818         local dir="$DIR/$tdir"
5819
5820         test_mkdir "$dir" || error "cannot create dir $dir"
5821
5822         echo "testing lfs migrate mode when all links fit within xattrs"
5823         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 2 99
5824
5825         echo "testing rsync mode when all links fit within xattrs"
5826         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 2 99
5827
5828         echo "testing lfs migrate mode when all links do not fit within xattrs"
5829         LFS_MIGRATE_RSYNC_MODE=false check_migrate_links "$dir" 101 100
5830
5831         echo "testing rsync mode when all links do not fit within xattrs"
5832         LFS_MIGRATE_RSYNC_MODE=true check_migrate_links "$dir" 101 100
5833
5834
5835         # clean up
5836         rm -rf $dir
5837 }
5838 run_test 56xb "lfs migration hard link support"
5839
5840 test_56xc() {
5841         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
5842
5843         local dir="$DIR/$tdir"
5844
5845         test_mkdir "$dir" || error "cannot create dir $dir"
5846
5847         # Test 1: ensure file < 1 GB is always migrated with 1 stripe
5848         echo -n "Setting initial stripe for 20MB test file..."
5849         $LFS setstripe -c 2 -i 0 "$dir/20mb" || error "cannot setstripe"
5850         echo "done"
5851         echo -n "Sizing 20MB test file..."
5852         truncate "$dir/20mb" 20971520 || error "cannot create 20MB test file"
5853         echo "done"
5854         echo -n "Verifying small file autostripe count is 1..."
5855         $LFS_MIGRATE -y -A -C 1 "$dir/20mb" &> /dev/null ||
5856                 error "cannot migrate 20MB file"
5857         local stripe_count=$($LFS getstripe -c "$dir/20mb") ||
5858                 error "cannot get stripe for $dir/20mb"
5859         [ $stripe_count -eq 1 ] ||
5860                 error "unexpected stripe count $stripe_count for 20MB file"
5861         rm -f "$dir/20mb"
5862         echo "done"
5863
5864         # Test 2: File is small enough to fit within the available space on
5865         # sqrt(size_in_gb) + 1 OSTs but is larger than 1GB.  The file must
5866         # have at least an additional 1KB for each desired stripe for test 3
5867         echo -n "Setting stripe for 1GB test file..."
5868         $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe"
5869         echo "done"
5870         echo -n "Sizing 1GB test file..."
5871         # File size is 1GB + 3KB
5872         truncate "$dir/1gb" 1073744896 &> /dev/null ||
5873                 error "cannot create 1GB test file"
5874         echo "done"
5875         echo -n "Migrating 1GB file..."
5876         $LFS_MIGRATE -y -A -C 1 "$dir/1gb" &> /dev/null ||
5877                 error "cannot migrate file"
5878         echo "done"
5879         echo -n "Verifying autostripe count is sqrt(n) + 1..."
5880         stripe_count=$($LFS getstripe -c "$dir/1gb") ||
5881                 error "cannot get stripe for $dir/1gb"
5882         [ $stripe_count -eq 2 ] ||
5883                 error "unexpected stripe count $stripe_count (expected 2)"
5884         echo "done"
5885
5886         # Test 3: File is too large to fit within the available space on
5887         # sqrt(n) + 1 OSTs.  Simulate limited available space with -X
5888         if [ $OSTCOUNT -ge 3 ]; then
5889                 # The required available space is calculated as
5890                 # file size (1GB + 3KB) / OST count (3).
5891                 local kb_per_ost=349526
5892
5893                 echo -n "Migrating 1GB file..."
5894                 $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" &>> \
5895                         /dev/null || error "cannot migrate file"
5896                 echo "done"
5897
5898                 stripe_count=$($LFS getstripe -c "$dir/1gb")
5899                 echo -n "Verifying autostripe count with limited space..."
5900                 [ "$stripe_count" -a $stripe_count -eq 3 ] ||
5901                         error "unexpected stripe count $stripe_count (wanted 3)"
5902                 echo "done"
5903         fi
5904
5905         # clean up
5906         rm -rf $dir
5907 }
5908 run_test 56xc "lfs migration autostripe"
5909
5910 test_56y() {
5911         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
5912                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
5913
5914         local res=""
5915         local dir=$DIR/$tdir
5916         local f1=$dir/file1
5917         local f2=$dir/file2
5918
5919         test_mkdir -p $dir || error "creating dir $dir"
5920         touch $f1 || error "creating std file $f1"
5921         $MULTIOP $f2 H2c || error "creating released file $f2"
5922
5923         # a directory can be raid0, so ask only for files
5924         res=$($LFS find $dir -L raid0 -type f | wc -l)
5925         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5926
5927         res=$($LFS find $dir \! -L raid0 -type f | wc -l)
5928         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5929
5930         # only files can be released, so no need to force file search
5931         res=$($LFS find $dir -L released)
5932         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5933
5934         res=$($LFS find $dir -type f \! -L released)
5935         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5936 }
5937 run_test 56y "lfs find -L raid0|released"
5938
5939 test_56z() { # LU-4824
5940         # This checks to make sure 'lfs find' continues after errors
5941         # There are two classes of errors that should be caught:
5942         # - If multiple paths are provided, all should be searched even if one
5943         #   errors out
5944         # - If errors are encountered during the search, it should not terminate
5945         #   early
5946         local dir=$DIR/$tdir
5947         local i
5948
5949         test_mkdir $dir
5950         for i in d{0..9}; do
5951                 test_mkdir $dir/$i
5952         done
5953         touch $dir/d{0..9}/$tfile
5954         $LFS find $DIR/non_existent_dir $dir &&
5955                 error "$LFS find did not return an error"
5956         # Make a directory unsearchable. This should NOT be the last entry in
5957         # directory order.  Arbitrarily pick the 6th entry
5958         chmod 700 $($LFS find $dir -type d | sed '6!d')
5959
5960         local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
5961
5962         # The user should be able to see 10 directories and 9 files
5963         [ $count == 19 ] || error "$LFS find did not continue after error"
5964 }
5965 run_test 56z "lfs find should continue after an error"
5966
5967 test_56aa() { # LU-5937
5968         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
5969
5970         local dir=$DIR/$tdir
5971
5972         mkdir $dir
5973         $LFS setdirstripe -c$MDSCOUNT $dir/striped_dir
5974
5975         createmany -o $dir/striped_dir/${tfile}- 1024
5976         local dirs=$($LFS find --size +8k $dir/)
5977
5978         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5979 }
5980 run_test 56aa "lfs find --size under striped dir"
5981
5982 test_56ab() { # LU-10705
5983         test_mkdir $DIR/$tdir
5984         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=8k count=1 seek=2k
5985         dd if=/dev/zero of=$DIR/$tdir/$tfile.2 bs=4k count=1 seek=4k
5986         dd if=/dev/zero of=$DIR/$tdir/$tfile.3 bs=1M count=2 seek=16
5987         # Flush writes to ensure valid blocks.  Need to be more thorough for
5988         # ZFS, since blocks are not allocated/returned to client immediately.
5989         sync_all_data
5990         wait_zfs_commit ost1 2
5991         cancel_lru_locks osc
5992         ls -ls $DIR/$tdir
5993
5994         local files=$($LFS find --size +16M $DIR/$tdir | wc -l)
5995
5996         [[ $files == 3 ]] || error ">16M size files $files isn't 3 as expected"
5997
5998         files=$($LFS find --blocks +1M $DIR/$tdir | wc -l)
5999         [[ $files == 1 ]] || error ">1M blocks files $files isn't 1 as expected"
6000
6001         rm -f $DIR/$tdir/$tfile.[123]
6002 }
6003 run_test 56ab "lfs find --blocks"
6004
6005 test_56ba() {
6006         [ $MDS1_VERSION -lt $(version_code 2.10.50) ] &&
6007                 skip "Need MDS version at least 2.10.50"
6008
6009         # Create composite files with one component
6010         local dir=$DIR/$tdir
6011
6012         setup_56 $dir/1Mfiles 5 1 "-S 1M --component-end 1M"
6013         # Create composite files with three components
6014         setup_56 $dir/2Mfiles 5 2 "-E 2M -S 1M -E 4M -E 6M"
6015         # Create non-composite files
6016         createmany -o $dir/${tfile}- 10
6017
6018         local nfiles=$($LFS find --component-end 1M --type f $dir | wc -l)
6019
6020         [[ $nfiles == 10 ]] ||
6021                 error "lfs find -E 1M found $nfiles != 10 files"
6022
6023         nfiles=$($LFS find ! -E 1M --type f $dir | wc -l)
6024         [[ $nfiles == 25 ]] ||
6025                 error "lfs find ! -E 1M found $nfiles != 25 files"
6026
6027         # All files have a component that starts at 0
6028         nfiles=$($LFS find --component-start 0 --type f $dir | wc -l)
6029         [[ $nfiles == 35 ]] ||
6030                 error "lfs find --component-start 0 - $nfiles != 35 files"
6031
6032         nfiles=$($LFS find --component-start 2M --type f $dir | wc -l)
6033         [[ $nfiles == 15 ]] ||
6034                 error "lfs find --component-start 2M - $nfiles != 15 files"
6035
6036         # All files created here have a componenet that does not starts at 2M
6037         nfiles=$($LFS find ! --component-start 2M --type f $dir | wc -l)
6038         [[ $nfiles == 35 ]] ||
6039                 error "lfs find ! --component-start 2M - $nfiles != 35 files"
6040
6041         # Find files with a specified number of components
6042         local nfiles=$($LFS find --component-count 3 --type f $dir | wc -l)
6043         [[ $nfiles == 15 ]] ||
6044                 error "lfs find --component-count 3 - $nfiles != 15 files"
6045
6046         # Remember non-composite files have a component count of zero
6047         local nfiles=$($LFS find --component-count 0 --type f $dir | wc -l)
6048         [[ $nfiles == 10 ]] ||
6049                 error "lfs find --component-count 0 - $nfiles != 10 files"
6050
6051         nfiles=$($LFS find ! --component-count 3 --type f $dir | wc -l)
6052         [[ $nfiles == 20 ]] ||
6053                 error "lfs find ! --component-count 3 - $nfiles != 20 files"
6054
6055         # All files have a flag called "init"
6056         local nfiles=$($LFS find --component-flags init --type f $dir | wc -l)
6057         [[ $nfiles == 35 ]] ||
6058                 error "lfs find --component-flags init - $nfiles != 35 files"
6059
6060         # Multi-component files will have a component not initialized
6061         local nfiles=$($LFS find ! --component-flags init --type f $dir | wc -l)
6062         [[ $nfiles == 15 ]] ||
6063                 error "lfs find !--component-flags init - $nfiles != 15 files"
6064
6065         rm -rf $dir
6066
6067 }
6068 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
6069
6070 test_56ca() {
6071         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
6072                 skip "Need MDS version at least 2.10.57"
6073
6074         local td=$DIR/$tdir
6075         local tf=$td/$tfile
6076         local dir
6077         local nfiles
6078         local cmd
6079         local i
6080         local j
6081
6082         # create mirrored directories and mirrored files
6083         mkdir $td || error "mkdir $td failed"
6084         $LFS mirror create -N3 $td || error "create mirrored dir $td failed"
6085         createmany -o $tf- 10 || error "create $tf- failed"
6086
6087         for i in $(seq 2); do
6088                 dir=$td/dir$i
6089                 mkdir $dir || error "mkdir $dir failed"
6090                 $LFS mirror create -N$((3 + i)) $dir ||
6091                         error "create mirrored dir $dir failed"
6092                 createmany -o $dir/$tfile- 10 ||
6093                         error "create $dir/$tfile- failed"
6094         done
6095
6096         # change the states of some mirrored files
6097         echo foo > $tf-6
6098         for i in $(seq 2); do
6099                 dir=$td/dir$i
6100                 for j in $(seq 4 9); do
6101                         echo foo > $dir/$tfile-$j
6102                 done
6103         done
6104
6105         # find mirrored files with specific mirror count
6106         cmd="$LFS find --mirror-count 3 --type f $td"
6107         nfiles=$($cmd | wc -l)
6108         [[ $nfiles = 10 ]] || error "$cmd: $nfiles != 10 files"
6109
6110         cmd="$LFS find ! --mirror-count 3 --type f $td"
6111         nfiles=$($cmd | wc -l)
6112         [[ $nfiles = 20 ]] || error "$cmd: $nfiles != 20 files"
6113
6114         cmd="$LFS find --mirror-count +2 --type f $td"
6115         nfiles=$($cmd | wc -l)
6116         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6117
6118         cmd="$LFS find --mirror-count -6 --type f $td"
6119         nfiles=$($cmd | wc -l)
6120         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6121
6122         # find mirrored files with specific file state
6123         cmd="$LFS find --maxdepth 1 --mirror-state=^ro --type f $td"
6124         [[ $($cmd) = $tf-6 ]] || error "$cmd: didn't return $tf-6"
6125
6126         cmd="$LFS find --mirror-state=ro --type f $td"
6127         nfiles=$($cmd | wc -l)
6128         [[ $nfiles = 17 ]] || error "$cmd: $nfiles != 17 files"
6129
6130         cmd="$LFS find ! --mirror-state=ro --type f $td"
6131         nfiles=$($cmd | wc -l)
6132         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6133
6134         cmd="$LFS find --mirror-state=wp --type f $td"
6135         nfiles=$($cmd | wc -l)
6136         [[ $nfiles = 13 ]] || error "$cmd: $nfiles != 13 files"
6137
6138         cmd="$LFS find ! --mirror-state=sp --type f $td"
6139         nfiles=$($cmd | wc -l)
6140         [[ $nfiles = 30 ]] || error "$cmd: $nfiles != 30 files"
6141 }
6142 run_test 56ca "check lfs find --mirror-count|-N and --mirror-state"
6143
6144 test_57a() {
6145         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6146         # note test will not do anything if MDS is not local
6147         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6148                 skip_env "ldiskfs only test"
6149         fi
6150         remote_mds_nodsh && skip "remote MDS with nodsh"
6151
6152         local MNTDEV="osd*.*MDT*.mntdev"
6153         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
6154         [ -z "$DEV" ] && error "can't access $MNTDEV"
6155         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
6156                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
6157                         error "can't access $DEV"
6158                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
6159                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
6160                 rm $TMP/t57a.dump
6161         done
6162 }
6163 run_test 57a "verify MDS filesystem created with large inodes =="
6164
6165 test_57b() {
6166         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6167         if [ "$mds1_FSTYPE" != ldiskfs ]; then
6168                 skip_env "ldiskfs only test"
6169         fi
6170         remote_mds_nodsh && skip "remote MDS with nodsh"
6171
6172         local dir=$DIR/$tdir
6173         local filecount=100
6174         local file1=$dir/f1
6175         local fileN=$dir/f$filecount
6176
6177         rm -rf $dir || error "removing $dir"
6178         test_mkdir -c1 $dir
6179         local mdtidx=$($LFS getstripe -m $dir)
6180         local mdtname=MDT$(printf %04x $mdtidx)
6181         local facet=mds$((mdtidx + 1))
6182
6183         echo "mcreating $filecount files"
6184         createmany -m $dir/f 1 $filecount || error "creating files in $dir"
6185
6186         # verify that files do not have EAs yet
6187         $LFS getstripe $file1 2>&1 | grep -q "no stripe" ||
6188                 error "$file1 has an EA"
6189         $LFS getstripe $fileN 2>&1 | grep -q "no stripe" ||
6190                 error "$fileN has an EA"
6191
6192         sync
6193         sleep 1
6194         df $dir  #make sure we get new statfs data
6195         local mdsfree=$(do_facet $facet \
6196                         lctl get_param -n osd*.*$mdtname.kbytesfree)
6197         local mdcfree=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6198         local file
6199
6200         echo "opening files to create objects/EAs"
6201         for file in $(seq -f $dir/f%g 1 $filecount); do
6202                 $OPENFILE -f O_RDWR $file > /dev/null 2>&1 ||
6203                         error "opening $file"
6204         done
6205
6206         # verify that files have EAs now
6207         $LFS getstripe $file1 | grep -q "obdidx" || error "$file1 missing EA"
6208         $LFS getstripe $fileN | grep -q "obdidx" || error "$fileN missing EA"
6209
6210         sleep 1  #make sure we get new statfs data
6211         df $dir
6212         local mdsfree2=$(do_facet $facet \
6213                          lctl get_param -n osd*.*$mdtname.kbytesfree)
6214         local mdcfree2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
6215
6216         if [[ $mdcfree2 -lt $((mdcfree - 16)) ]]; then
6217                 if [ "$mdsfree" != "$mdsfree2" ]; then
6218                         error "MDC before $mdcfree != after $mdcfree2"
6219                 else
6220                         echo "MDC before $mdcfree != after $mdcfree2"
6221                         echo "unable to confirm if MDS has large inodes"
6222                 fi
6223         fi
6224         rm -rf $dir
6225 }
6226 run_test 57b "default LOV EAs are stored inside large inodes ==="
6227
6228 test_58() {
6229         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6230         [ -z "$(which wiretest 2>/dev/null)" ] &&
6231                         skip_env "could not find wiretest"
6232
6233         wiretest
6234 }
6235 run_test 58 "verify cross-platform wire constants =============="
6236
6237 test_59() {
6238         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6239
6240         echo "touch 130 files"
6241         createmany -o $DIR/f59- 130
6242         echo "rm 130 files"
6243         unlinkmany $DIR/f59- 130
6244         sync
6245         # wait for commitment of removal
6246         wait_delete_completed
6247 }
6248 run_test 59 "verify cancellation of llog records async ========="
6249
6250 TEST60_HEAD="test_60 run $RANDOM"
6251 test_60a() {
6252         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6253         remote_mgs_nodsh && skip "remote MGS with nodsh"
6254         do_facet mgs "! which run-llog.sh &> /dev/null" &&
6255                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
6256                         skip_env "missing subtest run-llog.sh"
6257
6258         log "$TEST60_HEAD - from kernel mode"
6259         do_facet mgs "$LCTL dk > /dev/null"
6260         do_facet mgs "bash run-llog.sh" || error "run-llog.sh failed"
6261         do_facet mgs $LCTL dk > $TMP/$tfile
6262
6263         # LU-6388: test llog_reader
6264         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
6265         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
6266         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
6267                         skip_env "missing llog_reader"
6268         local fstype=$(facet_fstype mgs)
6269         [ $fstype != ldiskfs -a $fstype != zfs ] &&
6270                 skip_env "Only for ldiskfs or zfs type mgs"
6271
6272         local mntpt=$(facet_mntpt mgs)
6273         local mgsdev=$(mgsdevname 1)
6274         local fid_list
6275         local fid
6276         local rec_list
6277         local rec
6278         local rec_type
6279         local obj_file
6280         local path
6281         local seq
6282         local oid
6283         local pass=true
6284
6285         #get fid and record list
6286         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
6287                 tail -n 4))
6288         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
6289                 tail -n 4))
6290         #remount mgs as ldiskfs or zfs type
6291         stop mgs || error "stop mgs failed"
6292         mount_fstype mgs || error "remount mgs failed"
6293         for ((i = 0; i < ${#fid_list[@]}; i++)); do
6294                 fid=${fid_list[i]}
6295                 rec=${rec_list[i]}
6296                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
6297                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
6298                 oid=$((16#$oid))
6299
6300                 case $fstype in
6301                         ldiskfs )
6302                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
6303                         zfs )
6304                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
6305                 esac
6306                 echo "obj_file is $obj_file"
6307                 do_facet mgs $llog_reader $obj_file
6308
6309                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
6310                         awk '{ print $3 }' | sed -e "s/^type=//g")
6311                 if [ $rec_type != $rec ]; then
6312                         echo "FAILED test_60a wrong record type $rec_type," \
6313                               "should be $rec"
6314                         pass=false
6315                         break
6316                 fi
6317
6318                 #check obj path if record type is LLOG_LOGID_MAGIC
6319                 if [ "$rec" == "1064553b" ]; then
6320                         path=$(do_facet mgs $llog_reader $obj_file |
6321                                 grep "path=" | awk '{ print $NF }' |
6322                                 sed -e "s/^path=//g")
6323                         if [ $obj_file != $mntpt/$path ]; then
6324                                 echo "FAILED test_60a wrong obj path" \
6325                                       "$montpt/$path, should be $obj_file"
6326                                 pass=false
6327                                 break
6328                         fi
6329                 fi
6330         done
6331         rm -f $TMP/$tfile
6332         #restart mgs before "error", otherwise it will block the next test
6333         stop mgs || error "stop mgs failed"
6334         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
6335         $pass || error "test failed, see FAILED test_60a messages for specifics"
6336 }
6337 run_test 60a "llog_test run from kernel module and test llog_reader"
6338
6339 test_60b() { # bug 6411
6340         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6341
6342         dmesg > $DIR/$tfile
6343         LLOG_COUNT=$(do_facet mgs dmesg |
6344                      awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
6345                           /llog_[a-z]*.c:[0-9]/ {
6346                                 if (marker)
6347                                         from_marker++
6348                                 from_begin++
6349                           }
6350                           END {
6351                                 if (marker)
6352                                         print from_marker
6353                                 else
6354                                         print from_begin
6355                           }")
6356
6357         [[ $LLOG_COUNT -gt 120 ]] &&
6358                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
6359 }
6360 run_test 60b "limit repeated messages from CERROR/CWARN"
6361
6362 test_60c() {
6363         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6364
6365         echo "create 5000 files"
6366         createmany -o $DIR/f60c- 5000
6367 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
6368         lctl set_param fail_loc=0x80000137
6369         unlinkmany $DIR/f60c- 5000
6370         lctl set_param fail_loc=0
6371 }
6372 run_test 60c "unlink file when mds full"
6373
6374 test_60d() {
6375         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6376
6377         SAVEPRINTK=$(lctl get_param -n printk)
6378         # verify "lctl mark" is even working"
6379         MESSAGE="test message ID $RANDOM $$"
6380         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6381         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
6382
6383         lctl set_param printk=0 || error "set lnet.printk failed"
6384         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
6385         MESSAGE="new test message ID $RANDOM $$"
6386         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
6387         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
6388         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
6389
6390         lctl set_param -n printk="$SAVEPRINTK"
6391 }
6392 run_test 60d "test printk console message masking"
6393
6394 test_60e() {
6395         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6396         remote_mds_nodsh && skip "remote MDS with nodsh"
6397
6398         touch $DIR/$tfile
6399 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
6400         do_facet mds1 lctl set_param fail_loc=0x15b
6401         rm $DIR/$tfile
6402 }
6403 run_test 60e "no space while new llog is being created"
6404
6405 test_60g() {
6406         local pid
6407
6408         test_mkdir -c $MDSCOUNT $DIR/$tdir
6409         $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
6410
6411         (
6412                 local index=0
6413                 while true; do
6414                         mkdir $DIR/$tdir/subdir$index 2>/dev/null
6415                         rmdir $DIR/$tdir/subdir$index 2>/dev/null
6416                         index=$((index + 1))
6417                 done
6418         ) &
6419
6420         pid=$!
6421
6422         for i in $(seq 100); do 
6423                 # define OBD_FAIL_OSD_TXN_START    0x19a
6424                 do_facet mds1 lctl set_param fail_loc=0x8000019a
6425                 usleep 100
6426         done
6427
6428         kill -9 $pid
6429
6430         mkdir $DIR/$tdir/new || error "mkdir failed"
6431         rmdir $DIR/$tdir/new || error "rmdir failed"
6432 }
6433 run_test 60g "transaction abort won't cause MDT hung"
6434
6435 test_61() {
6436         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6437
6438         f="$DIR/f61"
6439         dd if=/dev/zero of=$f bs=$PAGE_SIZE count=1 || error "dd $f failed"
6440         cancel_lru_locks osc
6441         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
6442         sync
6443 }
6444 run_test 61 "mmap() writes don't make sync hang ================"
6445
6446 # bug 2330 - insufficient obd_match error checking causes LBUG
6447 test_62() {
6448         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6449
6450         f="$DIR/f62"
6451         echo foo > $f
6452         cancel_lru_locks osc
6453         lctl set_param fail_loc=0x405
6454         cat $f && error "cat succeeded, expect -EIO"
6455         lctl set_param fail_loc=0
6456 }
6457 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
6458 # match every page all of the time.
6459 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
6460
6461 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
6462 # Though this test is irrelevant anymore, it helped to reveal some
6463 # other grant bugs (LU-4482), let's keep it.
6464 test_63a() {   # was test_63
6465         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6466
6467         MAX_DIRTY_MB=$(lctl get_param -n osc.*.max_dirty_mb | head -n 1)
6468
6469         for i in `seq 10` ; do
6470                 dd if=/dev/zero of=$DIR/f63 bs=8k &
6471                 sleep 5
6472                 kill $!
6473                 sleep 1
6474         done
6475
6476         rm -f $DIR/f63 || true
6477 }
6478 run_test 63a "Verify oig_wait interruption does not crash ======="
6479
6480 # bug 2248 - async write errors didn't return to application on sync
6481 # bug 3677 - async write errors left page locked
6482 test_63b() {
6483         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6484
6485         debugsave
6486         lctl set_param debug=-1
6487
6488         # ensure we have a grant to do async writes
6489         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
6490         rm $DIR/$tfile
6491
6492         sync    # sync lest earlier test intercept the fail_loc
6493
6494         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6495         lctl set_param fail_loc=0x80000406
6496         $MULTIOP $DIR/$tfile Owy && \
6497                 error "sync didn't return ENOMEM"
6498         sync; sleep 2; sync     # do a real sync this time to flush page
6499         lctl get_param -n llite.*.dump_page_cache | grep locked && \
6500                 error "locked page left in cache after async error" || true
6501         debugrestore
6502 }
6503 run_test 63b "async write errors should be returned to fsync ==="
6504
6505 test_64a () {
6506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6507
6508         df $DIR
6509         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
6510 }
6511 run_test 64a "verify filter grant calculations (in kernel) ====="
6512
6513 test_64b () {
6514         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6515
6516         sh oos.sh $MOUNT || error "oos.sh failed: $?"
6517 }
6518 run_test 64b "check out-of-space detection on client"
6519
6520 test_64c() {
6521         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
6522 }
6523 run_test 64c "verify grant shrink"
6524
6525 # this does exactly what osc_request.c:osc_announce_cached() does in
6526 # order to calculate max amount of grants to ask from server
6527 want_grant() {
6528         local tgt=$1
6529
6530         local nrpages=$($LCTL get_param -n osc.${tgt}.max_pages_per_rpc)
6531         local rpc_in_flight=$($LCTL get_param -n osc.${tgt}.max_rpcs_in_flight)
6532
6533         ((rpc_in_flight ++));
6534         nrpages=$((nrpages * rpc_in_flight))
6535
6536         local dirty_max_pages=$($LCTL get_param -n osc.${tgt}.max_dirty_mb)
6537
6538         dirty_max_pages=$((dirty_max_pages * 1024 * 1024 / PAGE_SIZE))
6539
6540         [[ $dirty_max_pages -gt $nrpages ]] && nrpages=$dirty_max_pages
6541         local undirty=$((nrpages * PAGE_SIZE))
6542
6543         local max_extent_pages
6544         max_extent_pages=$($LCTL get_param osc.${tgt}.import |
6545             grep grant_max_extent_size | awk '{print $2}')
6546         max_extent_pages=$((max_extent_pages / PAGE_SIZE))
6547         local nrextents=$(((nrpages + max_extent_pages - 1) / max_extent_pages))
6548         local grant_extent_tax
6549         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6550             grep grant_extent_tax | awk '{print $2}')
6551
6552         undirty=$((undirty + nrextents * grant_extent_tax))
6553
6554         echo $undirty
6555 }
6556
6557 # this is size of unit for grant allocation. It should be equal to
6558 # what tgt_grant.c:tgt_grant_chunk() calculates
6559 grant_chunk() {
6560         local tgt=$1
6561         local max_brw_size
6562         local grant_extent_tax
6563
6564         max_brw_size=$($LCTL get_param osc.${tgt}.import |
6565             grep max_brw_size | awk '{print $2}')
6566
6567         grant_extent_tax=$($LCTL get_param osc.${tgt}.import |
6568             grep grant_extent_tax | awk '{print $2}')
6569
6570         echo $(((max_brw_size + grant_extent_tax) * 2))
6571 }
6572
6573 test_64d() {
6574         [ $OST1_VERSION -lt $(version_code 2.10.56) ] &&
6575                 skip "OST < 2.10.55 doesn't limit grants enough"
6576
6577         local tgt=$($LCTL dl | grep "0000-osc-[^mM]" | awk '{print $4}')
6578         local file=$DIR/$tfile
6579
6580         [[ $($LCTL get_param osc.${tgt}.import |
6581              grep "connect_flags:.*grant_param") ]] ||
6582                 skip "no grant_param connect flag"
6583
6584         local olddebug=$($LCTL get_param -n debug 2> /dev/null)
6585
6586         $LCTL set_param debug="$OLDDEBUG" 2> /dev/null || true
6587
6588         local max_cur_granted=$(($(want_grant $tgt) + $(grant_chunk $tgt)))
6589         stack_trap "rm -f $file" EXIT
6590
6591         $LFS setstripe $file -i 0 -c 1
6592         dd if=/dev/zero of=$file bs=1M count=1000 &
6593         ddpid=$!
6594
6595         while true
6596         do
6597                 local cur_grant=$($LCTL get_param -n osc.${tgt}.cur_grant_bytes)
6598                 if [[ $cur_grant -gt $max_cur_granted ]]
6599                 then
6600                         kill $ddpid
6601                         error "cur_grant $cur_grant > $max_cur_granted"
6602                 fi
6603                 kill -0 $ddpid
6604                 [[ $? -ne 0 ]] && break;
6605                 sleep 2
6606         done
6607
6608         rm -f $DIR/$tfile
6609         wait_delete_completed
6610         $LCTL set_param debug="$olddebug" 2> /dev/null || true
6611 }
6612 run_test 64d "check grant limit exceed"
6613
6614 # bug 1414 - set/get directories' stripe info
6615 test_65a() {
6616         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6617
6618         test_mkdir $DIR/$tdir
6619         touch $DIR/$tdir/f1
6620         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
6621 }
6622 run_test 65a "directory with no stripe info"
6623
6624 test_65b() {
6625         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6626
6627         test_mkdir $DIR/$tdir
6628         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6629
6630         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6631                                                 error "setstripe"
6632         touch $DIR/$tdir/f2
6633         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
6634 }
6635 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
6636
6637 test_65c() {
6638         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6639         [ $OSTCOUNT -lt 2 ] && skip_env "need at least 2 OSTs"
6640
6641         test_mkdir $DIR/$tdir
6642         local stripesize=$($LFS getstripe -S $DIR/$tdir)
6643
6644         $LFS setstripe -S $((stripesize * 4)) -i 1 \
6645                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
6646         touch $DIR/$tdir/f3
6647         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
6648 }
6649 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
6650
6651 test_65d() {
6652         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6653
6654         test_mkdir $DIR/$tdir
6655         local STRIPECOUNT=$($LFS getstripe -c $DIR/$tdir)
6656         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6657
6658         if [[ $STRIPECOUNT -le 0 ]]; then
6659                 sc=1
6660         elif [[ $STRIPECOUNT -gt 2000 ]]; then
6661 #LOV_MAX_STRIPE_COUNT is 2000
6662                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
6663         else
6664                 sc=$(($STRIPECOUNT - 1))
6665         fi
6666         $LFS setstripe -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
6667         touch $DIR/$tdir/f4 $DIR/$tdir/f5
6668         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
6669                 error "lverify failed"
6670 }
6671 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
6672
6673 test_65e() {
6674         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6675
6676         test_mkdir $DIR/$tdir
6677
6678         $LFS setstripe $DIR/$tdir || error "setstripe"
6679         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6680                                         error "no stripe info failed"
6681         touch $DIR/$tdir/f6
6682         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
6683 }
6684 run_test 65e "directory setstripe defaults"
6685
6686 test_65f() {
6687         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6688
6689         test_mkdir $DIR/${tdir}f
6690         $RUNAS $LFS setstripe $DIR/${tdir}f &&
6691                 error "setstripe succeeded" || true
6692 }
6693 run_test 65f "dir setstripe permission (should return error) ==="
6694
6695 test_65g() {
6696         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6697
6698         test_mkdir $DIR/$tdir
6699         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6700
6701         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6702                 error "setstripe -S failed"
6703         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
6704         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
6705                 error "delete default stripe failed"
6706 }
6707 run_test 65g "directory setstripe -d"
6708
6709 test_65h() {
6710         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6711
6712         test_mkdir $DIR/$tdir
6713         local STRIPESIZE=$($LFS getstripe -S $DIR/$tdir)
6714
6715         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
6716                 error "setstripe -S failed"
6717         test_mkdir $DIR/$tdir/dd1
6718         [ $($LFS getstripe -c $DIR/$tdir) = $($LFS getstripe -c $DIR/$tdir/dd1) ] ||
6719                 error "stripe info inherit failed"
6720 }
6721 run_test 65h "directory stripe info inherit ===================="
6722
6723 test_65i() {
6724         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6725
6726         save_layout_restore_at_exit $MOUNT
6727
6728         # bug6367: set non-default striping on root directory
6729         $LFS setstripe -S 65536 -c -1 $MOUNT || error "error setting stripe"
6730
6731         # bug12836: getstripe on -1 default directory striping
6732         $LFS getstripe $MOUNT || error "getstripe $MOUNT failed"
6733
6734         # bug12836: getstripe -v on -1 default directory striping
6735         $LFS getstripe -v $MOUNT || error "getstripe -v $MOUNT failed"
6736
6737         # bug12836: new find on -1 default directory striping
6738         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
6739 }
6740 run_test 65i "various tests to set root directory striping"
6741
6742 test_65j() { # bug6367
6743         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6744
6745         sync; sleep 1
6746
6747         # if we aren't already remounting for each test, do so for this test
6748         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
6749                 cleanup || error "failed to unmount"
6750                 setup
6751         fi
6752
6753         save_layout_restore_at_exit $MOUNT
6754
6755         $LFS setstripe -d $MOUNT || error "setstripe failed"
6756 }
6757 run_test 65j "set default striping on root directory (bug 6367)="
6758
6759 cleanup_65k() {
6760         rm -rf $DIR/$tdir
6761         wait_delete_completed
6762         do_facet $SINGLEMDS "lctl set_param -n \
6763                 osp.$ost*MDT0000.max_create_count=$max_count"
6764         do_facet $SINGLEMDS "lctl set_param -n \
6765                 osp.$ost*MDT0000.create_count=$count"
6766         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6767         echo $INACTIVE_OSC "is Activate"
6768
6769         wait_osc_import_state mds ost$ostnum FULL
6770 }
6771
6772 test_65k() { # bug11679
6773         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6774         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
6775         remote_mds_nodsh && skip "remote MDS with nodsh"
6776
6777         local disable_precreate=true
6778         [ $MDS1_VERSION -le $(version_code 2.8.54) ] &&
6779                 disable_precreate=false
6780
6781         echo "Check OST status: "
6782         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
6783                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
6784
6785         for OSC in $MDS_OSCS; do
6786                 echo $OSC "is active"
6787                 do_facet $SINGLEMDS lctl --device %$OSC activate
6788         done
6789
6790         for INACTIVE_OSC in $MDS_OSCS; do
6791                 local ost=$(osc_to_ost $INACTIVE_OSC)
6792                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
6793                                lov.*md*.target_obd |
6794                                awk -F: /$ost/'{ print $1 }' | head -n 1)
6795
6796                 mkdir -p $DIR/$tdir
6797                 $LFS setstripe -i $ostnum -c 1 $DIR/$tdir
6798                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
6799
6800                 echo "Deactivate: " $INACTIVE_OSC
6801                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
6802
6803                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
6804                               osp.$ost*MDT0000.create_count")
6805                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
6806                                   osp.$ost*MDT0000.max_create_count")
6807                 $disable_precreate &&
6808                         do_facet $SINGLEMDS "lctl set_param -n \
6809                                 osp.$ost*MDT0000.max_create_count=0"
6810
6811                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
6812                         [ -f $DIR/$tdir/$idx ] && continue
6813                         echo "$LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx"
6814                         $LFS setstripe -i $idx -c 1 $DIR/$tdir/$idx ||
6815                                 { cleanup_65k;
6816                                   error "setstripe $idx should succeed"; }
6817                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
6818                 done
6819                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
6820                 rmdir $DIR/$tdir
6821
6822                 do_facet $SINGLEMDS "lctl set_param -n \
6823                         osp.$ost*MDT0000.max_create_count=$max_count"
6824                 do_facet $SINGLEMDS "lctl set_param -n \
6825                         osp.$ost*MDT0000.create_count=$count"
6826                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
6827                 echo $INACTIVE_OSC "is Activate"
6828
6829                 wait_osc_import_state mds ost$ostnum FULL
6830         done
6831 }
6832 run_test 65k "validate manual striping works properly with deactivated OSCs"
6833
6834 test_65l() { # bug 12836
6835         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6836
6837         test_mkdir -p $DIR/$tdir/test_dir
6838         $LFS setstripe -c -1 $DIR/$tdir/test_dir
6839         $LFS find -mtime -1 $DIR/$tdir >/dev/null
6840 }
6841 run_test 65l "lfs find on -1 stripe dir ========================"
6842
6843 test_65m() {
6844         local layout=$(save_layout $MOUNT)
6845         $RUNAS $LFS setstripe -c 2 $MOUNT && {
6846                 restore_layout $MOUNT $layout
6847                 error "setstripe should fail by non-root users"
6848         }
6849         true
6850 }
6851 run_test 65m "normal user can't set filesystem default stripe"
6852
6853 test_65n() {
6854         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
6855         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.12.50) ]] ||
6856                 skip "Need MDS version at least 2.12.50"
6857         [[ $PARALLEL != "yes" ]] || skip "skip parallel run"
6858
6859         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
6860         which getfattr > /dev/null 2>&1 || skip_env "no getfattr command"
6861         which setfattr > /dev/null 2>&1 || skip_env "no setfattr command"
6862
6863         local root_layout=$(save_layout $MOUNT)
6864         stack_trap "restore_layout $MOUNT $root_layout" EXIT
6865
6866         # new subdirectory under root directory should not inherit
6867         # the default layout from root
6868         local dir1=$MOUNT/$tdir-1
6869         mkdir $dir1 || error "mkdir $dir1 failed"
6870         ! getfattr -n trusted.lov $dir1 &> /dev/null ||
6871                 error "$dir1 shouldn't have LOV EA"
6872
6873         # delete the default layout on root directory
6874         $LFS setstripe -d $MOUNT || error "delete root default layout failed"
6875
6876         local dir2=$MOUNT/$tdir-2
6877         mkdir $dir2 || error "mkdir $dir2 failed"
6878         ! getfattr -n trusted.lov $dir2 &> /dev/null ||
6879                 error "$dir2 shouldn't have LOV EA"
6880
6881         # set a new striping pattern on root directory
6882         local def_stripe_size=$($LFS getstripe -S $MOUNT)
6883         local new_def_stripe_size=$((def_stripe_size * 2))
6884         $LFS setstripe -S $new_def_stripe_size $MOUNT ||
6885                 error "set stripe size on $MOUNT failed"
6886
6887         # new file created in $dir2 should inherit the new stripe size from
6888         # the filesystem default
6889         local file2=$dir2/$tfile-2
6890         touch $file2 || error "touch $file2 failed"
6891
6892         local file2_stripe_size=$($LFS getstripe -S $file2)
6893         [[ $file2_stripe_size -eq $new_def_stripe_size ]] ||
6894                 error "$file2 didn't inherit stripe size $new_def_stripe_size"
6895
6896         local dir3=$MOUNT/$tdir-3
6897         mkdir $dir3 || error "mkdir $dir3 failed"
6898         ! getfattr -n trusted.lov $dir3 &> /dev/null ||
6899                 error "$dir3 shouldn't have LOV EA"
6900
6901         # set OST pool on root directory
6902         local pool=$TESTNAME
6903         pool_add $pool || error "add $pool failed"
6904         pool_add_targets $pool 0 $((OSTCOUNT - 1)) 1 ||
6905                 error "add targets to $pool failed"
6906
6907         $LFS setstripe -p $pool $MOUNT ||
6908                 error "set OST pool on $MOUNT failed"
6909
6910         # new file created in $dir3 should inherit the pool from
6911         # the filesystem default
6912         local file3=$dir3/$tfile-3
6913         touch $file3 || error "touch $file3 failed"
6914
6915         local file3_pool=$($LFS getstripe -p $file3)
6916         [[ "$file3_pool" = "$pool" ]] ||
6917                 error "$file3 didn't inherit OST pool $pool"
6918
6919         local dir4=$MOUNT/$tdir-4
6920         mkdir $dir4 || error "mkdir $dir4 failed"
6921         ! getfattr -n trusted.lov $dir4 &> /dev/null ||
6922                 error "$dir4 shouldn't have LOV EA"
6923
6924         # new file created in $dir4 should inherit the pool from
6925         # the filesystem default
6926         local file4=$dir4/$tfile-4
6927         touch $file4 || error "touch $file4 failed"
6928
6929         local file4_pool=$($LFS getstripe -p $file4)
6930         [[ "$file4_pool" = "$pool" ]] ||
6931                 error "$file4 didn't inherit OST pool $pool"
6932
6933         # new subdirectory under non-root directory should inherit
6934         # the default layout from its parent directory
6935         $LFS setstripe -S $new_def_stripe_size -p $pool $dir4 ||
6936                 error "set directory layout on $dir4 failed"
6937
6938         local dir5=$dir4/$tdir-5
6939         mkdir $dir5 || error "mkdir $dir5 failed"
6940
6941         local dir4_layout=$(get_layout_param $dir4)
6942         local dir5_layout=$(get_layout_param $dir5)
6943         [[ "$dir4_layout" = "$dir5_layout" ]] ||
6944                 error "$dir5 should inherit the default layout from $dir4"
6945 }
6946 run_test 65n "don't inherit default layout from root for new subdirectories"
6947
6948 # bug 2543 - update blocks count on client
6949 test_66() {
6950         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6951
6952         COUNT=${COUNT:-8}
6953         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6954         sync; sync_all_data; sync; sync_all_data
6955         cancel_lru_locks osc
6956         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6957         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6958 }
6959 run_test 66 "update inode blocks count on client ==============="
6960
6961 meminfo() {
6962         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6963 }
6964
6965 swap_used() {
6966         swapon -s | awk '($1 == "'$1'") { print $4 }'
6967 }
6968
6969 # bug5265, obdfilter oa2dentry return -ENOENT
6970 # #define OBD_FAIL_SRV_ENOENT 0x217
6971 test_69() {
6972         [ $PARALLEL == "yes" ] && skip "skip parallel run"
6973         remote_ost_nodsh && skip "remote OST with nodsh"
6974
6975         f="$DIR/$tfile"
6976         $LFS setstripe -c 1 -i 0 $f
6977
6978         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6979
6980         do_facet ost1 lctl set_param fail_loc=0x217
6981         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6982         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6983
6984         do_facet ost1 lctl set_param fail_loc=0
6985         $DIRECTIO write $f 0 2 || error "write error"
6986
6987         cancel_lru_locks osc
6988         $DIRECTIO read $f 0 1 || error "read error"
6989
6990         do_facet ost1 lctl set_param fail_loc=0x217
6991         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6992
6993         do_facet ost1 lctl set_param fail_loc=0
6994         rm -f $f
6995 }
6996 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6997
6998 test_71() {
6999         test_mkdir $DIR/$tdir
7000         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
7001         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
7002 }
7003 run_test 71 "Running dbench on lustre (don't segment fault) ===="
7004
7005 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
7006         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7007         [ "$RUNAS_ID" = "$UID" ] &&
7008                 skip_env "RUNAS_ID = UID = $UID -- skipping"
7009         # Check that testing environment is properly set up. Skip if not
7010         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS ||
7011                 skip_env "User $RUNAS_ID does not exist - skipping"
7012
7013         touch $DIR/$tfile
7014         chmod 777 $DIR/$tfile
7015         chmod ug+s $DIR/$tfile
7016         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
7017                 error "$RUNAS dd $DIR/$tfile failed"
7018         # See if we are still setuid/sgid
7019         test -u $DIR/$tfile -o -g $DIR/$tfile &&
7020                 error "S/gid is not dropped on write"
7021         # Now test that MDS is updated too
7022         cancel_lru_locks mdc
7023         test -u $DIR/$tfile -o -g $DIR/$tfile &&
7024                 error "S/gid is not dropped on MDS"
7025         rm -f $DIR/$tfile
7026 }
7027 run_test 72a "Test that remove suid works properly (bug5695) ===="
7028
7029 test_72b() { # bug 24226 -- keep mode setting when size is not changing
7030         local perm
7031
7032         [ "$RUNAS_ID" = "$UID" ] &&
7033                 skip_env "RUNAS_ID = UID = $UID -- skipping"
7034         [ "$RUNAS_ID" -eq 0 ] &&
7035                 skip_env "RUNAS_ID = 0 -- skipping"
7036         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7037         # Check that testing environment is properly set up. Skip if not
7038         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS ||
7039                 skip_env "User $RUNAS_ID does not exist - skipping"
7040
7041         touch $DIR/${tfile}-f{g,u}
7042         test_mkdir $DIR/${tfile}-dg
7043         test_mkdir $DIR/${tfile}-du
7044         chmod 770 $DIR/${tfile}-{f,d}{g,u}
7045         chmod g+s $DIR/${tfile}-{f,d}g
7046         chmod u+s $DIR/${tfile}-{f,d}u
7047         for perm in 777 2777 4777; do
7048                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
7049                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
7050                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
7051                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
7052         done
7053         true
7054 }
7055 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
7056
7057 # bug 3462 - multiple simultaneous MDC requests
7058 test_73() {
7059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7060
7061         test_mkdir $DIR/d73-1
7062         test_mkdir $DIR/d73-2
7063         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
7064         pid1=$!
7065
7066         lctl set_param fail_loc=0x80000129
7067         $MULTIOP $DIR/d73-1/f73-2 Oc &
7068         sleep 1
7069         lctl set_param fail_loc=0
7070
7071         $MULTIOP $DIR/d73-2/f73-3 Oc &
7072         pid3=$!
7073
7074         kill -USR1 $pid1
7075         wait $pid1 || return 1
7076
7077         sleep 25
7078
7079         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
7080         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
7081         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
7082
7083         rm -rf $DIR/d73-*
7084 }
7085 run_test 73 "multiple MDC requests (should not deadlock)"
7086
7087 test_74a() { # bug 6149, 6184
7088         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7089
7090         touch $DIR/f74a
7091         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7092         #
7093         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7094         # will spin in a tight reconnection loop
7095         $LCTL set_param fail_loc=0x8000030e
7096         # get any lock that won't be difficult - lookup works.
7097         ls $DIR/f74a
7098         $LCTL set_param fail_loc=0
7099         rm -f $DIR/f74a
7100         true
7101 }
7102 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
7103
7104 test_74b() { # bug 13310
7105         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7106
7107         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
7108         #
7109         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
7110         # will spin in a tight reconnection loop
7111         $LCTL set_param fail_loc=0x8000030e
7112         # get a "difficult" lock
7113         touch $DIR/f74b
7114         $LCTL set_param fail_loc=0
7115         rm -f $DIR/f74b
7116         true
7117 }
7118 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
7119
7120 test_74c() {
7121         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7122
7123         #define OBD_FAIL_LDLM_NEW_LOCK
7124         $LCTL set_param fail_loc=0x319
7125         touch $DIR/$tfile && error "touch successful"
7126         $LCTL set_param fail_loc=0
7127         true
7128 }
7129 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
7130
7131 num_inodes() {
7132         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
7133 }
7134
7135 test_76() { # Now for bug 20433, added originally in bug 1443
7136         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7137
7138         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
7139
7140         cancel_lru_locks osc
7141         BEFORE_INODES=$(num_inodes)
7142         echo "before inodes: $BEFORE_INODES"
7143         local COUNT=1000
7144         [ "$SLOW" = "no" ] && COUNT=100
7145         for i in $(seq $COUNT); do
7146                 touch $DIR/$tfile
7147                 rm -f $DIR/$tfile
7148         done
7149         cancel_lru_locks osc
7150         AFTER_INODES=$(num_inodes)
7151         echo "after inodes: $AFTER_INODES"
7152         local wait=0
7153         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
7154                 sleep 2
7155                 AFTER_INODES=$(num_inodes)
7156                 wait=$((wait+2))
7157                 echo "wait $wait seconds inodes: $AFTER_INODES"
7158                 if [ $wait -gt 30 ]; then
7159                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
7160                 fi
7161         done
7162 }
7163 run_test 76 "confirm clients recycle inodes properly ===="
7164
7165
7166 export ORIG_CSUM=""
7167 set_checksums()
7168 {
7169         # Note: in sptlrpc modes which enable its own bulk checksum, the
7170         # original crc32_le bulk checksum will be automatically disabled,
7171         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
7172         # will be checked by sptlrpc code against sptlrpc bulk checksum.
7173         # In this case set_checksums() will not be no-op, because sptlrpc
7174         # bulk checksum will be enabled all through the test.
7175
7176         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
7177         lctl set_param -n osc.*.checksums $1
7178         return 0
7179 }
7180
7181 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7182                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
7183 CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
7184                              tr -d [] | head -n1)}
7185 set_checksum_type()
7186 {
7187         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
7188         log "set checksum type to $1"
7189         return 0
7190 }
7191 F77_TMP=$TMP/f77-temp
7192 F77SZ=8
7193 setup_f77() {
7194         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
7195                 error "error writing to $F77_TMP"
7196 }
7197
7198 test_77a() { # bug 10889
7199         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7200         $GSS && skip_env "could not run with gss"
7201
7202         [ ! -f $F77_TMP ] && setup_f77
7203         set_checksums 1
7204         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
7205         set_checksums 0
7206         rm -f $DIR/$tfile
7207 }
7208 run_test 77a "normal checksum read/write operation"
7209
7210 test_77b() { # bug 10889
7211         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7212         $GSS && skip_env "could not run with gss"
7213
7214         [ ! -f $F77_TMP ] && setup_f77
7215         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7216         $LCTL set_param fail_loc=0x80000409
7217         set_checksums 1
7218
7219         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7220                 error "dd error: $?"
7221         $LCTL set_param fail_loc=0
7222
7223         for algo in $CKSUM_TYPES; do
7224                 cancel_lru_locks osc
7225                 set_checksum_type $algo
7226                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7227                 $LCTL set_param fail_loc=0x80000408
7228                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
7229                 $LCTL set_param fail_loc=0
7230         done
7231         set_checksums 0
7232         set_checksum_type $ORIG_CSUM_TYPE
7233         rm -f $DIR/$tfile
7234 }
7235 run_test 77b "checksum error on client write, read"
7236
7237 cleanup_77c() {
7238         trap 0
7239         set_checksums 0
7240         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
7241         $check_ost &&
7242                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
7243         [ -n "$osc_file_prefix" ] && rm -f ${osc_file_prefix}*
7244         $check_ost && [ -n "$ost_file_prefix" ] &&
7245                 do_facet ost1 rm -f ${ost_file_prefix}\*
7246 }
7247
7248 test_77c() {
7249         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7250         $GSS && skip_env "could not run with gss"
7251         remote_ost_nodsh && skip "remote OST with nodsh"
7252
7253         local bad1
7254         local osc_file_prefix
7255         local osc_file
7256         local check_ost=false
7257         local ost_file_prefix
7258         local ost_file
7259         local orig_cksum
7260         local dump_cksum
7261         local fid
7262
7263         # ensure corruption will occur on first OSS/OST
7264         $LFS setstripe -i 0 $DIR/$tfile
7265
7266         [ ! -f $F77_TMP ] && setup_f77
7267         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
7268                 error "dd write error: $?"
7269         fid=$($LFS path2fid $DIR/$tfile)
7270
7271         if [ $OST1_VERSION -ge $(version_code 2.9.57) ]
7272         then
7273                 check_ost=true
7274                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
7275                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
7276         else
7277                 echo "OSS do not support bulk pages dump upon error"
7278         fi
7279
7280         osc_file_prefix=$($LCTL get_param -n debug_path)
7281         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
7282
7283         trap cleanup_77c EXIT
7284
7285         set_checksums 1
7286         # enable bulk pages dump upon error on Client
7287         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
7288         # enable bulk pages dump upon error on OSS
7289         $check_ost &&
7290                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
7291
7292         # flush Client cache to allow next read to reach OSS
7293         cancel_lru_locks osc
7294
7295         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
7296         $LCTL set_param fail_loc=0x80000408
7297         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
7298         $LCTL set_param fail_loc=0
7299
7300         rm -f $DIR/$tfile
7301
7302         # check cksum dump on Client
7303         osc_file=$(ls ${osc_file_prefix}*)
7304         [ -n "$osc_file" ] || error "no checksum dump file on Client"
7305         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
7306         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
7307         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
7308         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
7309                      cksum)
7310         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
7311         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7312                 error "dump content does not match on Client"
7313
7314         $check_ost || skip "No need to check cksum dump on OSS"
7315
7316         # check cksum dump on OSS
7317         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
7318         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
7319         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
7320         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
7321         [[ "$orig_cksum" == "$dump_cksum" ]] ||
7322                 error "dump content does not match on OSS"
7323
7324         cleanup_77c
7325 }
7326 run_test 77c "checksum error on client read with debug"
7327
7328 test_77d() { # bug 10889
7329         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7330         $GSS && skip_env "could not run with gss"
7331
7332         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7333         $LCTL set_param fail_loc=0x80000409
7334         set_checksums 1
7335         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7336                 error "direct write: rc=$?"
7337         $LCTL set_param fail_loc=0
7338         set_checksums 0
7339
7340         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
7341         $LCTL set_param fail_loc=0x80000408
7342         set_checksums 1
7343         cancel_lru_locks osc
7344         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
7345                 error "direct read: rc=$?"
7346         $LCTL set_param fail_loc=0
7347         set_checksums 0
7348 }
7349 run_test 77d "checksum error on OST direct write, read"
7350
7351 test_77f() { # bug 10889
7352         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7353         $GSS && skip_env "could not run with gss"
7354
7355         set_checksums 1
7356         for algo in $CKSUM_TYPES; do
7357                 cancel_lru_locks osc
7358                 set_checksum_type $algo
7359                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
7360                 $LCTL set_param fail_loc=0x409
7361                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
7362                         error "direct write succeeded"
7363                 $LCTL set_param fail_loc=0
7364         done
7365         set_checksum_type $ORIG_CSUM_TYPE
7366         set_checksums 0
7367 }
7368 run_test 77f "repeat checksum error on write (expect error)"
7369
7370 test_77g() { # bug 10889
7371         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7372         $GSS && skip_env "could not run with gss"
7373         remote_ost_nodsh && skip "remote OST with nodsh"
7374
7375         [ ! -f $F77_TMP ] && setup_f77
7376
7377         local file=$DIR/$tfile
7378         stack_trap "rm -f $file" EXIT
7379
7380         $LFS setstripe -c 1 -i 0 $file
7381         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
7382         do_facet ost1 lctl set_param fail_loc=0x8000021a
7383         set_checksums 1
7384         dd if=$F77_TMP of=$file bs=1M count=$F77SZ ||
7385                 error "write error: rc=$?"
7386         do_facet ost1 lctl set_param fail_loc=0
7387         set_checksums 0
7388
7389         cancel_lru_locks osc
7390         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
7391         do_facet ost1 lctl set_param fail_loc=0x8000021b
7392         set_checksums 1
7393         cmp $F77_TMP $file || error "file compare failed"
7394         do_facet ost1 lctl set_param fail_loc=0
7395         set_checksums 0
7396 }
7397 run_test 77g "checksum error on OST write, read"
7398
7399 test_77k() { # LU-10906
7400         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7401         $GSS && skip_env "could not run with gss"
7402
7403         local cksum_param="osc.$FSNAME*.checksums"
7404         local get_checksum="$LCTL get_param -n $cksum_param | head -n1"
7405         local checksum
7406         local i
7407
7408         [ "$ORIG_CSUM" ] || ORIG_CSUM=$(eval $get_checksum)
7409         stack_trap "wait_update $HOSTNAME '$get_checksum' $ORIG_CSUM" EXIT
7410         stack_trap "do_facet mgs $LCTL set_param -P $cksum_param=$ORIG_CSUM" \
7411                 EXIT
7412
7413         for i in 0 1; do
7414                 do_facet mgs $LCTL set_param -P $cksum_param=$i ||
7415                         error "failed to set checksum=$i on MGS"
7416                 wait_update $HOSTNAME "$get_checksum" $i
7417                 #remount
7418                 echo "remount client, checksum should be $i"
7419                 remount_client $MOUNT || "failed to remount client"
7420                 checksum=$(eval $get_checksum)
7421                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7422         done
7423         # remove persistent param to avoid races with checksum mountopt below
7424         do_facet mgs $LCTL set_param -P -d $cksum_param ||
7425                 error "failed to delete checksum on MGS"
7426
7427         for opt in "checksum" "nochecksum"; do
7428                 #remount with mount option
7429                 echo "remount client with option $opt, checksum should be $i"
7430                 umount_client $MOUNT || "failed to umount client"
7431                 mount_client $MOUNT "$MOUNT_OPTS,$opt" ||
7432                         "failed to mount client with option '$opt'"
7433                 checksum=$(eval $get_checksum)
7434                 [ $checksum -eq $i ] || error "checksum($checksum) != $i"
7435                 i=$((i - 1))
7436         done
7437
7438         remount_client $MOUNT || "failed to remount client"
7439 }
7440 run_test 77k "enable/disable checksum correctly"
7441
7442 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
7443 rm -f $F77_TMP
7444 unset F77_TMP
7445
7446 cleanup_test_78() {
7447         trap 0
7448         rm -f $DIR/$tfile
7449 }
7450
7451 test_78() { # bug 10901
7452         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7453         remote_ost || skip_env "local OST"
7454
7455         NSEQ=5
7456         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
7457         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
7458         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
7459         echo "MemTotal: $MEMTOTAL"
7460
7461         # reserve 256MB of memory for the kernel and other running processes,
7462         # and then take 1/2 of the remaining memory for the read/write buffers.
7463         if [ $MEMTOTAL -gt 512 ] ;then
7464                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
7465         else
7466                 # for those poor memory-starved high-end clusters...
7467                 MEMTOTAL=$((MEMTOTAL / 2))
7468         fi
7469         echo "Mem to use for directio: $MEMTOTAL"
7470
7471         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
7472         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
7473         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
7474         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
7475                 head -n1)
7476         echo "Smallest OST: $SMALLESTOST"
7477         [[ $SMALLESTOST -lt 10240 ]] &&
7478                 skip "too small OSTSIZE, useless to run large O_DIRECT test"
7479
7480         trap cleanup_test_78 EXIT
7481
7482         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
7483                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
7484
7485         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
7486         echo "File size: $F78SIZE"
7487         $LFS setstripe -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
7488         for i in $(seq 1 $NSEQ); do
7489                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
7490                 echo directIO rdwr round $i of $NSEQ
7491                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
7492         done
7493
7494         cleanup_test_78
7495 }
7496 run_test 78 "handle large O_DIRECT writes correctly ============"
7497
7498 test_79() { # bug 12743
7499         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7500
7501         wait_delete_completed
7502
7503         BKTOTAL=$(calc_osc_kbytes kbytestotal)
7504         BKFREE=$(calc_osc_kbytes kbytesfree)
7505         BKAVAIL=$(calc_osc_kbytes kbytesavail)
7506
7507         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
7508         DFTOTAL=`echo $STRING | cut -d, -f1`
7509         DFUSED=`echo $STRING  | cut -d, -f2`
7510         DFAVAIL=`echo $STRING | cut -d, -f3`
7511         DFFREE=$(($DFTOTAL - $DFUSED))
7512
7513         ALLOWANCE=$((64 * $OSTCOUNT))
7514
7515         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
7516            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
7517                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
7518         fi
7519         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
7520            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
7521                 error "df free($DFFREE) mismatch OST free($BKFREE)"
7522         fi
7523         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
7524            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
7525                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
7526         fi
7527 }
7528 run_test 79 "df report consistency check ======================="
7529
7530 test_80() { # bug 10718
7531         remote_ost_nodsh && skip "remote OST with nodsh"
7532         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7533
7534         # relax strong synchronous semantics for slow backends like ZFS
7535         local soc="obdfilter.*.sync_on_lock_cancel"
7536         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
7537         local hosts=
7538         if [ "$soc_old" != "never" ] &&
7539                 [ "$ost1_FSTYPE" != "ldiskfs" ]; then
7540                         hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
7541                                 facet_active_host $host; done | sort -u)
7542                         do_nodes $hosts lctl set_param $soc=never
7543         fi
7544
7545         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
7546         sync; sleep 1; sync
7547         local BEFORE=`date +%s`
7548         cancel_lru_locks osc
7549         local AFTER=`date +%s`
7550         local DIFF=$((AFTER-BEFORE))
7551         if [ $DIFF -gt 1 ] ; then
7552                 error "elapsed for 1M@1T = $DIFF"
7553         fi
7554
7555         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
7556
7557         rm -f $DIR/$tfile
7558 }
7559 run_test 80 "Page eviction is equally fast at high offsets too  ===="
7560
7561 test_81a() { # LU-456
7562         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7563         remote_ost_nodsh && skip "remote OST with nodsh"
7564
7565         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7566         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
7567         do_facet ost1 lctl set_param fail_loc=0x80000228
7568
7569         # write should trigger a retry and success
7570         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7571         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7572         RC=$?
7573         if [ $RC -ne 0 ] ; then
7574                 error "write should success, but failed for $RC"
7575         fi
7576 }
7577 run_test 81a "OST should retry write when get -ENOSPC ==============="
7578
7579 test_81b() { # LU-456
7580         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7581         remote_ost_nodsh && skip "remote OST with nodsh"
7582
7583         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
7584         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
7585         do_facet ost1 lctl set_param fail_loc=0x228
7586
7587         # write should retry several times and return -ENOSPC finally
7588         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7589         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7590         RC=$?
7591         ENOSPC=28
7592         if [ $RC -ne $ENOSPC ] ; then
7593                 error "dd should fail for -ENOSPC, but succeed."
7594         fi
7595 }
7596 run_test 81b "OST should return -ENOSPC when retry still fails ======="
7597
7598 test_82() { # LU-1031
7599         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
7600         local gid1=14091995
7601         local gid2=16022000
7602
7603         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
7604         local MULTIPID1=$!
7605         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
7606         local MULTIPID2=$!
7607         kill -USR1 $MULTIPID2
7608         sleep 2
7609         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
7610                 error "First grouplock does not block second one"
7611         else
7612                 echo "Second grouplock blocks first one"
7613         fi
7614         kill -USR1 $MULTIPID1
7615         wait $MULTIPID1
7616         wait $MULTIPID2
7617 }
7618 run_test 82 "Basic grouplock test"
7619
7620 test_99() {
7621         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs"
7622
7623         test_mkdir $DIR/$tdir.cvsroot
7624         chown $RUNAS_ID $DIR/$tdir.cvsroot
7625
7626         cd $TMP
7627         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
7628
7629         cd /etc/init.d
7630         # some versions of cvs import exit(1) when asked to import links or
7631         # files they can't read.  ignore those files.
7632         local toignore=$(find . -type l -printf '-I %f\n' -o \
7633                          ! -perm /4 -printf '-I %f\n')
7634         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
7635                 $tdir.reposname vtag rtag
7636
7637         cd $DIR
7638         test_mkdir $DIR/$tdir.reposname
7639         chown $RUNAS_ID $DIR/$tdir.reposname
7640         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
7641
7642         cd $DIR/$tdir.reposname
7643         $RUNAS touch foo99
7644         $RUNAS cvs add -m 'addmsg' foo99
7645         $RUNAS cvs update
7646         $RUNAS cvs commit -m 'nomsg' foo99
7647         rm -fr $DIR/$tdir.cvsroot
7648 }
7649 run_test 99 "cvs strange file/directory operations"
7650
7651 test_100() {
7652         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7653         [[ "$NETTYPE" =~ tcp ]] ||
7654                 skip_env "TCP secure port test, not useful for NETTYPE=$NETTYPE"
7655         remote_ost_nodsh && skip "remote OST with nodsh"
7656         remote_mds_nodsh && skip "remote MDS with nodsh"
7657         remote_servers ||
7658                 skip "useless for local single node setup"
7659
7660         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
7661                 [ "$PROT" != "tcp" ] && continue
7662                 RPORT=$(echo $REMOTE | cut -d: -f2)
7663                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
7664
7665                 rc=0
7666                 LPORT=`echo $LOCAL | cut -d: -f2`
7667                 if [ $LPORT -ge 1024 ]; then
7668                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
7669                         netstat -tna
7670                         error_exit "local: $LPORT > 1024, remote: $RPORT"
7671                 fi
7672         done
7673         [ "$rc" = 0 ] || error_exit "privileged port not found" )
7674 }
7675 run_test 100 "check local port using privileged port ==========="
7676
7677 function get_named_value()
7678 {
7679     local tag
7680
7681     tag=$1
7682     while read ;do
7683         line=$REPLY
7684         case $line in
7685         $tag*)
7686             echo $line | sed "s/^$tag[ ]*//"
7687             break
7688             ;;
7689         esac
7690     done
7691 }
7692
7693 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
7694                    awk '/^max_cached_mb/ { print $2 }')
7695
7696 cleanup_101a() {
7697         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
7698         trap 0
7699 }
7700
7701 test_101a() {
7702         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7703         [ $MDSCOUNT -ge 2 ] && skip_env "needs < 2 MDTs" #LU-4322
7704
7705         local s
7706         local discard
7707         local nreads=10000
7708         local cache_limit=32
7709
7710         $LCTL set_param -n osc.*-osc*.rpc_stats 0
7711         trap cleanup_101a EXIT
7712         $LCTL set_param -n llite.*.read_ahead_stats 0
7713         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
7714
7715         #
7716         # randomly read 10000 of 64K chunks from file 3x 32MB in size
7717         #
7718         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
7719         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
7720
7721         discard=0
7722         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
7723                 get_named_value 'read but discarded' | cut -d" " -f1); do
7724                         discard=$(($discard + $s))
7725         done
7726         cleanup_101a
7727
7728         if [[ $(($discard * 10)) -gt $nreads ]]; then
7729                 $LCTL get_param osc.*-osc*.rpc_stats
7730                 $LCTL get_param llite.*.read_ahead_stats
7731                 error "too many ($discard) discarded pages"
7732         fi
7733         rm -f $DIR/$tfile || true
7734 }
7735 run_test 101a "check read-ahead for random reads"
7736
7737 setup_test101bc() {
7738         test_mkdir $DIR/$tdir
7739         local ssize=$1
7740         local FILE_LENGTH=$2
7741         STRIPE_OFFSET=0
7742
7743         local FILE_SIZE_MB=$((FILE_LENGTH / ssize))
7744
7745         local list=$(comma_list $(osts_nodes))
7746         set_osd_param $list '' read_cache_enable 0
7747         set_osd_param $list '' writethrough_cache_enable 0
7748
7749         trap cleanup_test101bc EXIT
7750         # prepare the read-ahead file
7751         $LFS setstripe -S $ssize -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
7752
7753         dd if=/dev/zero of=$DIR/$tfile bs=$ssize \
7754                                 count=$FILE_SIZE_MB 2> /dev/null
7755
7756 }
7757
7758 cleanup_test101bc() {
7759         trap 0
7760         rm -rf $DIR/$tdir
7761         rm -f $DIR/$tfile
7762
7763         local list=$(comma_list $(osts_nodes))
7764         set_osd_param $list '' read_cache_enable 1
7765         set_osd_param $list '' writethrough_cache_enable 1
7766 }
7767
7768 calc_total() {
7769         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
7770 }
7771
7772 ra_check_101() {
7773         local READ_SIZE=$1
7774         local STRIPE_SIZE=$2
7775         local FILE_LENGTH=$3
7776         local RA_INC=1048576
7777         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
7778         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
7779                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
7780         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
7781                         get_named_value 'read but discarded' |
7782                         cut -d" " -f1 | calc_total)
7783         if [[ $DISCARD -gt $discard_limit ]]; then
7784                 $LCTL get_param llite.*.read_ahead_stats
7785                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
7786         else
7787                 echo "Read-ahead success for size ${READ_SIZE}"
7788         fi
7789 }
7790
7791 test_101b() {
7792         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7793         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
7794
7795         local STRIPE_SIZE=1048576
7796         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
7797
7798         if [ $SLOW == "yes" ]; then
7799                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
7800         else
7801                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
7802         fi
7803
7804         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
7805
7806         # prepare the read-ahead file
7807         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7808         cancel_lru_locks osc
7809         for BIDX in 2 4 8 16 32 64 128 256
7810         do
7811                 local BSIZE=$((BIDX*4096))
7812                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
7813                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
7814                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
7815                 $LCTL set_param -n llite.*.read_ahead_stats 0
7816                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
7817                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
7818                 cancel_lru_locks osc
7819                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
7820         done
7821         cleanup_test101bc
7822         true
7823 }
7824 run_test 101b "check stride-io mode read-ahead ================="
7825
7826 test_101c() {
7827         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7828
7829         local STRIPE_SIZE=1048576
7830         local FILE_LENGTH=$((STRIPE_SIZE*100))
7831         local nreads=10000
7832         local rsize=65536
7833         local osc_rpc_stats
7834
7835         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
7836
7837         cancel_lru_locks osc
7838         $LCTL set_param osc.*.rpc_stats 0
7839         $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
7840         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
7841                 local stats=$($LCTL get_param -n $osc_rpc_stats)
7842                 local lines=$(echo "$stats" | awk 'END {print NR;}')
7843                 local size
7844
7845                 if [ $lines -le 20 ]; then
7846                         continue
7847                 fi
7848                 for size in 1 2 4 8; do
7849                         local rpc=$(echo "$stats" |
7850                                     awk '($1 == "'$size':") {print $2; exit; }')
7851                         [ $rpc != 0 ] && ((size * PAGE_SIZE < rsize)) &&
7852                                 error "Small $((size*PAGE_SIZE)) read IO $rpc!"
7853                 done
7854                 echo "$osc_rpc_stats check passed!"
7855         done
7856         cleanup_test101bc
7857         true
7858 }
7859 run_test 101c "check stripe_size aligned read-ahead ================="
7860
7861 set_read_ahead() {
7862         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
7863         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
7864 }
7865
7866 test_101d() {
7867         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7868
7869         local file=$DIR/$tfile
7870         local sz_MB=${FILESIZE_101d:-500}
7871         local ra_MB=${READAHEAD_MB:-40}
7872
7873         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
7874         [ $free_MB -lt $sz_MB ] &&
7875                 skip "Need free space ${sz_MB}M, have ${free_MB}M"
7876
7877         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
7878         $LFS setstripe -c -1 $file || error "setstripe failed"
7879
7880         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
7881         echo Cancel LRU locks on lustre client to flush the client cache
7882         cancel_lru_locks osc
7883
7884         echo Disable read-ahead
7885         local old_READAHEAD=$(set_read_ahead 0)
7886
7887         echo Reading the test file $file with read-ahead disabled
7888         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7889
7890         echo Cancel LRU locks on lustre client to flush the client cache
7891         cancel_lru_locks osc
7892         echo Enable read-ahead with ${ra_MB}MB
7893         set_read_ahead $ra_MB
7894
7895         echo Reading the test file $file with read-ahead enabled
7896         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
7897
7898         echo "read-ahead disabled time read $raOFF"
7899         echo "read-ahead enabled  time read $raON"
7900
7901         set_read_ahead $old_READAHEAD
7902         rm -f $file
7903         wait_delete_completed
7904
7905         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
7906                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
7907 }
7908 run_test 101d "file read with and without read-ahead enabled"
7909
7910 test_101e() {
7911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
7912
7913         local file=$DIR/$tfile
7914         local size_KB=500  #KB
7915         local count=100
7916         local bsize=1024
7917
7918         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
7919         local need_KB=$((count * size_KB))
7920         [[ $free_KB -le $need_KB ]] &&
7921                 skip_env "Need free space $need_KB, have $free_KB"
7922
7923         echo "Creating $count ${size_KB}K test files"
7924         for ((i = 0; i < $count; i++)); do
7925                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
7926         done
7927
7928         echo "Cancel LRU locks on lustre client to flush the client cache"
7929         cancel_lru_locks $OSC
7930
7931         echo "Reset readahead stats"
7932         $LCTL set_param -n llite.*.read_ahead_stats 0
7933
7934         for ((i = 0; i < $count; i++)); do
7935                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
7936         done
7937
7938         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7939                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
7940
7941         for ((i = 0; i < $count; i++)); do
7942                 rm -rf $file.$i 2>/dev/null
7943         done
7944
7945         #10000 means 20% reads are missing in readahead
7946         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
7947 }
7948 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
7949
7950 test_101f() {
7951         which iozone || skip_env "no iozone installed"
7952
7953         local old_debug=$($LCTL get_param debug)
7954         old_debug=${old_debug#*=}
7955         $LCTL set_param debug="reada mmap"
7956
7957         # create a test file
7958         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
7959
7960         echo Cancel LRU locks on lustre client to flush the client cache
7961         cancel_lru_locks osc
7962
7963         echo Reset readahead stats
7964         $LCTL set_param -n llite.*.read_ahead_stats 0
7965
7966         echo mmap read the file with small block size
7967         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
7968                 > /dev/null 2>&1
7969
7970         echo checking missing pages
7971         $LCTL get_param llite.*.read_ahead_stats
7972         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
7973                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7974
7975         $LCTL set_param debug="$old_debug"
7976         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7977         rm -f $DIR/$tfile
7978 }
7979 run_test 101f "check mmap read performance"
7980
7981 test_101g_brw_size_test() {
7982         local mb=$1
7983         local pages=$((mb * 1048576 / PAGE_SIZE))
7984         local file=$DIR/$tfile
7985
7986         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7987                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7988         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7989                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7990                         return 2
7991         done
7992
7993         stack_trap "rm -f $file" EXIT
7994         $LCTL set_param -n osc.*.rpc_stats=0
7995
7996         # 10 RPCs should be enough for the test
7997         local count=10
7998         dd if=/dev/zero of=$file bs=${mb}M count=$count ||
7999                 { error "dd write ${mb} MB blocks failed"; return 3; }
8000         cancel_lru_locks osc
8001         dd of=/dev/null if=$file bs=${mb}M count=$count ||
8002                 { error "dd write ${mb} MB blocks failed"; return 4; }
8003
8004         # calculate number of full-sized read and write RPCs
8005         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
8006                 sed -n '/pages per rpc/,/^$/p' |
8007                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
8008                 END { print reads,writes }'))
8009         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
8010                 return 5
8011         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
8012                 return 6
8013
8014         return 0
8015 }
8016
8017 test_101g() {
8018         remote_ost_nodsh && skip "remote OST with nodsh"
8019
8020         local rpcs
8021         local osts=$(get_facets OST)
8022         local list=$(comma_list $(osts_nodes))
8023         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
8024         local brw_size="obdfilter.*.brw_size"
8025
8026         $LFS setstripe -i 0 -c 1 $DIR/$tfile
8027
8028         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
8029         if [ $OST1_VERSION -ge $(version_code 2.8.52) -o \
8030              \( $OST1_VERSION -ge $(version_code 2.7.17) -a \
8031                 $OST1_VERSION -lt $(version_code 2.7.50) \) ] &&
8032            [ $CLIENT_VERSION -ge $(version_code 2.8.52) -o \
8033              \( $CLIENT_VERSION -ge $(version_code 2.7.17) -a \
8034                 $CLIENT_VERSION -lt $(version_code 2.7.50) \) ]; then
8035                 [ $OST1_VERSION -ge $(version_code 2.9.52) ] && suffix="M"
8036                 if [[ $orig_mb -lt 16 ]]; then
8037                         save_lustre_params $osts "$brw_size" > $p
8038                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
8039                                 error "set 16MB RPC size failed"
8040
8041                         echo "remount client to enable new RPC size"
8042                         remount_client $MOUNT || error "remount_client failed"
8043                 fi
8044
8045                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
8046                 # should be able to set brw_size=12, but no rpc_stats for that
8047                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
8048         fi
8049
8050         test_101g_brw_size_test 4 || error "4MB RPC test failed"
8051
8052         if [[ $orig_mb -lt 16 ]]; then
8053                 restore_lustre_params < $p
8054                 remount_client $MOUNT || error "remount_client restore failed"
8055         fi
8056
8057         rm -f $p $DIR/$tfile
8058 }
8059 run_test 101g "Big bulk(4/16 MiB) readahead"
8060
8061 setup_test102() {
8062         test_mkdir $DIR/$tdir
8063         chown $RUNAS_ID $DIR/$tdir
8064         STRIPE_SIZE=65536
8065         STRIPE_OFFSET=1
8066         STRIPE_COUNT=$OSTCOUNT
8067         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
8068
8069         trap cleanup_test102 EXIT
8070         cd $DIR
8071         $1 $LFS setstripe -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
8072         cd $DIR/$tdir
8073         for num in 1 2 3 4; do
8074                 for count in $(seq 1 $STRIPE_COUNT); do
8075                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
8076                                 local size=`expr $STRIPE_SIZE \* $num`
8077                                 local file=file"$num-$idx-$count"
8078                                 $1 $LFS setstripe -S $size -i $idx -c $count $file
8079                         done
8080                 done
8081         done
8082
8083         cd $DIR
8084         $1 tar cf $TMP/f102.tar $tdir --xattrs
8085 }
8086
8087 cleanup_test102() {
8088         trap 0
8089         rm -f $TMP/f102.tar
8090         rm -rf $DIR/d0.sanity/d102
8091 }
8092
8093 test_102a() {
8094         [ "$UID" != 0 ] && skip "must run as root"
8095         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
8096                 skip_env "must have user_xattr"
8097
8098         [ -z "$(which setfattr 2>/dev/null)" ] &&
8099                 skip_env "could not find setfattr"
8100
8101         local testfile=$DIR/$tfile
8102
8103         touch $testfile
8104         echo "set/get xattr..."
8105         setfattr -n trusted.name1 -v value1 $testfile ||
8106                 error "setfattr -n trusted.name1=value1 $testfile failed"
8107         getfattr -n trusted.name1 $testfile 2> /dev/null |
8108           grep "trusted.name1=.value1" ||
8109                 error "$testfile missing trusted.name1=value1"
8110
8111         setfattr -n user.author1 -v author1 $testfile ||
8112                 error "setfattr -n user.author1=author1 $testfile failed"
8113         getfattr -n user.author1 $testfile 2> /dev/null |
8114           grep "user.author1=.author1" ||
8115                 error "$testfile missing trusted.author1=author1"
8116
8117         echo "listxattr..."
8118         setfattr -n trusted.name2 -v value2 $testfile ||
8119                 error "$testfile unable to set trusted.name2"
8120         setfattr -n trusted.name3 -v value3 $testfile ||
8121                 error "$testfile unable to set trusted.name3"
8122         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
8123             grep "trusted.name" | wc -l) -eq 3 ] ||
8124                 error "$testfile missing 3 trusted.name xattrs"
8125
8126         setfattr -n user.author2 -v author2 $testfile ||
8127                 error "$testfile unable to set user.author2"
8128         setfattr -n user.author3 -v author3 $testfile ||
8129                 error "$testfile unable to set user.author3"
8130         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
8131             grep "user.author" | wc -l) -eq 3 ] ||
8132                 error "$testfile missing 3 user.author xattrs"
8133
8134         echo "remove xattr..."
8135         setfattr -x trusted.name1 $testfile ||
8136                 error "$testfile error deleting trusted.name1"
8137         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
8138                 error "$testfile did not delete trusted.name1 xattr"
8139
8140         setfattr -x user.author1 $testfile ||
8141                 error "$testfile error deleting user.author1"
8142         echo "set lustre special xattr ..."
8143         $LFS setstripe -c1 $testfile
8144         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
8145                 awk -F "=" '/trusted.lov/ { print $2 }' )
8146         setfattr -n "trusted.lov" -v $lovea $testfile ||
8147                 error "$testfile doesn't ignore setting trusted.lov again"
8148         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
8149                 error "$testfile allow setting invalid trusted.lov"
8150         rm -f $testfile
8151 }
8152 run_test 102a "user xattr test =================================="
8153
8154 test_102b() {
8155         [ -z "$(which setfattr 2>/dev/null)" ] &&
8156                 skip_env "could not find setfattr"
8157         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8158
8159         # b10930: get/set/list trusted.lov xattr
8160         echo "get/set/list trusted.lov xattr ..."
8161         local testfile=$DIR/$tfile
8162         $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8163                 error "setstripe failed"
8164         local STRIPECOUNT=$($LFS getstripe -c $testfile) ||
8165                 error "getstripe failed"
8166         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
8167                 error "can't get trusted.lov from $testfile"
8168
8169         local testfile2=${testfile}2
8170         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
8171                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
8172
8173         $MCREATE $testfile2
8174         setfattr -n trusted.lov -v $value $testfile2
8175         local stripe_size=$($LFS getstripe -S $testfile2)
8176         local stripe_count=$($LFS getstripe -c $testfile2)
8177         [[ $stripe_size -eq 65536 ]] ||
8178                 error "stripe size $stripe_size != 65536"
8179         [[ $stripe_count -eq $STRIPECOUNT ]] ||
8180                 error "stripe count $stripe_count != $STRIPECOUNT"
8181         rm -f $DIR/$tfile
8182 }
8183 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
8184
8185 test_102c() {
8186         [ -z "$(which setfattr 2>/dev/null)" ] &&
8187                 skip_env "could not find setfattr"
8188         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8189
8190         # b10930: get/set/list lustre.lov xattr
8191         echo "get/set/list lustre.lov xattr ..."
8192         test_mkdir $DIR/$tdir
8193         chown $RUNAS_ID $DIR/$tdir
8194         local testfile=$DIR/$tdir/$tfile
8195         $RUNAS $LFS setstripe -S 65536 -i 1 -c $OSTCOUNT $testfile ||
8196                 error "setstripe failed"
8197         local STRIPECOUNT=$($RUNAS $LFS getstripe -c $testfile) ||
8198                 error "getstripe failed"
8199         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
8200         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
8201
8202         local testfile2=${testfile}2
8203         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
8204                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
8205
8206         $RUNAS $MCREATE $testfile2
8207         $RUNAS setfattr -n lustre.lov -v $value $testfile2
8208         local stripe_size=$($RUNAS $LFS getstripe -S $testfile2)
8209         local stripe_count=$($RUNAS $LFS getstripe -c $testfile2)
8210         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
8211         [ $stripe_count -eq $STRIPECOUNT ] ||
8212                 error "stripe count $stripe_count != $STRIPECOUNT"
8213 }
8214 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
8215
8216 compare_stripe_info1() {
8217         local stripe_index_all_zero=true
8218
8219         for num in 1 2 3 4; do
8220                 for count in $(seq 1 $STRIPE_COUNT); do
8221                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
8222                                 local size=$((STRIPE_SIZE * num))
8223                                 local file=file"$num-$offset-$count"
8224                                 stripe_size=$($LFS getstripe -S $PWD/$file)
8225                                 [[ $stripe_size -ne $size ]] &&
8226                                     error "$file: size $stripe_size != $size"
8227                                 stripe_count=$($LFS getstripe -c $PWD/$file)
8228                                 # allow fewer stripes to be created, ORI-601
8229                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
8230                                     error "$file: count $stripe_count != $count"
8231                                 stripe_index=$($LFS getstripe -i $PWD/$file)
8232                                 [[ $stripe_index -ne 0 ]] &&
8233                                         stripe_index_all_zero=false
8234                         done
8235                 done
8236         done
8237         $stripe_index_all_zero &&
8238                 error "all files are being extracted starting from OST index 0"
8239         return 0
8240 }
8241
8242 have_xattrs_include() {
8243         tar --help | grep -q xattrs-include &&
8244                 echo --xattrs-include="lustre.*"
8245 }
8246
8247 test_102d() {
8248         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8249         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8250
8251         XINC=$(have_xattrs_include)
8252         setup_test102
8253         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8254         cd $DIR/$tdir/$tdir
8255         compare_stripe_info1
8256 }
8257 run_test 102d "tar restore stripe info from tarfile,not keep osts"
8258
8259 test_102f() {
8260         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8261         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8262
8263         XINC=$(have_xattrs_include)
8264         setup_test102
8265         test_mkdir $DIR/$tdir.restore
8266         cd $DIR
8267         tar cf - --xattrs $tdir | tar xf - \
8268                 -C $DIR/$tdir.restore --xattrs $XINC
8269         cd $DIR/$tdir.restore/$tdir
8270         compare_stripe_info1
8271 }
8272 run_test 102f "tar copy files, not keep osts"
8273
8274 grow_xattr() {
8275         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
8276                 skip "must have user_xattr"
8277         [ -z "$(which setfattr 2>/dev/null)" ] &&
8278                 skip_env "could not find setfattr"
8279         [ -z "$(which getfattr 2>/dev/null)" ] &&
8280                 skip_env "could not find getfattr"
8281
8282         local xsize=${1:-1024}  # in bytes
8283         local file=$DIR/$tfile
8284         local value="$(generate_string $xsize)"
8285         local xbig=trusted.big
8286
8287         touch $file
8288         log "save $xbig on $file"
8289         setfattr -n $xbig -v $value $file ||
8290                 error "saving $xbig on $file failed"
8291
8292         local orig=$(get_xattr_value $xbig $file)
8293         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
8294
8295         local xsml=trusted.sml
8296         log "save $xsml on $file"
8297         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
8298
8299         local new=$(get_xattr_value $xbig $file)
8300         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
8301
8302         log "grow $xsml on $file"
8303         setfattr -n $xsml -v "$value" $file ||
8304                 error "growing $xsml on $file failed"
8305
8306         new=$(get_xattr_value $xbig $file)
8307         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
8308         log "$xbig still valid after growing $xsml"
8309
8310         rm -f $file
8311 }
8312
8313 test_102h() { # bug 15777
8314         grow_xattr 1024
8315 }
8316 run_test 102h "grow xattr from inside inode to external block"
8317
8318 test_102ha() {
8319         large_xattr_enabled || skip_env "ea_inode feature disabled"
8320
8321         grow_xattr $(max_xattr_size)
8322 }
8323 run_test 102ha "grow xattr from inside inode to external inode"
8324
8325 test_102i() { # bug 17038
8326         [ -z "$(which getfattr 2>/dev/null)" ] &&
8327                 skip "could not find getfattr"
8328
8329         touch $DIR/$tfile
8330         ln -s $DIR/$tfile $DIR/${tfile}link
8331         getfattr -n trusted.lov $DIR/$tfile ||
8332                 error "lgetxattr on $DIR/$tfile failed"
8333         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
8334                 grep -i "no such attr" ||
8335                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
8336         rm -f $DIR/$tfile $DIR/${tfile}link
8337 }
8338 run_test 102i "lgetxattr test on symbolic link ============"
8339
8340 test_102j() {
8341         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8342         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
8343
8344         XINC=$(have_xattrs_include)
8345         setup_test102 "$RUNAS"
8346         chown $RUNAS_ID $DIR/$tdir
8347         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
8348         cd $DIR/$tdir/$tdir
8349         compare_stripe_info1 "$RUNAS"
8350 }
8351 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
8352
8353 test_102k() {
8354         [ -z "$(which setfattr 2>/dev/null)" ] &&
8355                 skip "could not find setfattr"
8356
8357         touch $DIR/$tfile
8358         # b22187 just check that does not crash for regular file.
8359         setfattr -n trusted.lov $DIR/$tfile
8360         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
8361         local test_kdir=$DIR/$tdir
8362         test_mkdir $test_kdir
8363         local default_size=$($LFS getstripe -S $test_kdir)
8364         local default_count=$($LFS getstripe -c $test_kdir)
8365         local default_offset=$($LFS getstripe -i $test_kdir)
8366         $LFS setstripe -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
8367                 error 'dir setstripe failed'
8368         setfattr -n trusted.lov $test_kdir
8369         local stripe_size=$($LFS getstripe -S $test_kdir)
8370         local stripe_count=$($LFS getstripe -c $test_kdir)
8371         local stripe_offset=$($LFS getstripe -i $test_kdir)
8372         [ $stripe_size -eq $default_size ] ||
8373                 error "stripe size $stripe_size != $default_size"
8374         [ $stripe_count -eq $default_count ] ||
8375                 error "stripe count $stripe_count != $default_count"
8376         [ $stripe_offset -eq $default_offset ] ||
8377                 error "stripe offset $stripe_offset != $default_offset"
8378         rm -rf $DIR/$tfile $test_kdir
8379 }
8380 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
8381
8382 test_102l() {
8383         [ -z "$(which getfattr 2>/dev/null)" ] &&
8384                 skip "could not find getfattr"
8385
8386         # LU-532 trusted. xattr is invisible to non-root
8387         local testfile=$DIR/$tfile
8388
8389         touch $testfile
8390
8391         echo "listxattr as user..."
8392         chown $RUNAS_ID $testfile
8393         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
8394             grep -q "trusted" &&
8395                 error "$testfile trusted xattrs are user visible"
8396
8397         return 0;
8398 }
8399 run_test 102l "listxattr size test =================================="
8400
8401 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
8402         local path=$DIR/$tfile
8403         touch $path
8404
8405         listxattr_size_check $path || error "listattr_size_check $path failed"
8406 }
8407 run_test 102m "Ensure listxattr fails on small bufffer ========"
8408
8409 cleanup_test102
8410
8411 getxattr() { # getxattr path name
8412         # Return the base64 encoding of the value of xattr name on path.
8413         local path=$1
8414         local name=$2
8415
8416         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
8417         # file: $path
8418         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8419         #
8420         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
8421
8422         getfattr --absolute-names --encoding=base64 --name=$name $path |
8423                 awk -F= -v name=$name '$1 == name {
8424                         print substr($0, index($0, "=") + 1);
8425         }'
8426 }
8427
8428 test_102n() { # LU-4101 mdt: protect internal xattrs
8429         [ -z "$(which setfattr 2>/dev/null)" ] &&
8430                 skip "could not find setfattr"
8431         if [ $MDS1_VERSION -lt $(version_code 2.5.50) ]
8432         then
8433                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
8434         fi
8435
8436         local file0=$DIR/$tfile.0
8437         local file1=$DIR/$tfile.1
8438         local xattr0=$TMP/$tfile.0
8439         local xattr1=$TMP/$tfile.1
8440         local namelist="lov lma lmv link fid version som hsm"
8441         local name
8442         local value
8443
8444         rm -rf $file0 $file1 $xattr0 $xattr1
8445         touch $file0 $file1
8446
8447         # Get 'before' xattrs of $file1.
8448         getfattr --absolute-names --dump --match=- $file1 > $xattr0
8449
8450         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
8451                 namelist+=" lfsck_namespace"
8452         for name in $namelist; do
8453                 # Try to copy xattr from $file0 to $file1.
8454                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8455
8456                 setfattr --name=trusted.$name --value="$value" $file1 ||
8457                         error "setxattr 'trusted.$name' failed"
8458
8459                 # Try to set a garbage xattr.
8460                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8461
8462                 if [[ x$name == "xlov" ]]; then
8463                         setfattr --name=trusted.lov --value="$value" $file1 &&
8464                         error "setxattr invalid 'trusted.lov' success"
8465                 else
8466                         setfattr --name=trusted.$name --value="$value" $file1 ||
8467                                 error "setxattr invalid 'trusted.$name' failed"
8468                 fi
8469
8470                 # Try to remove the xattr from $file1. We don't care if this
8471                 # appears to succeed or fail, we just don't want there to be
8472                 # any changes or crashes.
8473                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8474         done
8475
8476         if [ $MDS1_VERSION -gt $(version_code 2.6.50) ]
8477         then
8478                 name="lfsck_ns"
8479                 # Try to copy xattr from $file0 to $file1.
8480                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
8481
8482                 setfattr --name=trusted.$name --value="$value" $file1 ||
8483                         error "setxattr 'trusted.$name' failed"
8484
8485                 # Try to set a garbage xattr.
8486                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
8487
8488                 setfattr --name=trusted.$name --value="$value" $file1 ||
8489                         error "setxattr 'trusted.$name' failed"
8490
8491                 # Try to remove the xattr from $file1. We don't care if this
8492                 # appears to succeed or fail, we just don't want there to be
8493                 # any changes or crashes.
8494                 setfattr --remove=$trusted.$name $file1 2> /dev/null
8495         fi
8496
8497         # Get 'after' xattrs of file1.
8498         getfattr --absolute-names --dump --match=- $file1 > $xattr1
8499
8500         if ! diff $xattr0 $xattr1; then
8501                 error "before and after xattrs of '$file1' differ"
8502         fi
8503
8504         rm -rf $file0 $file1 $xattr0 $xattr1
8505
8506         return 0
8507 }
8508 run_test 102n "silently ignore setxattr on internal trusted xattrs"
8509
8510 test_102p() { # LU-4703 setxattr did not check ownership
8511         [ $MDS1_VERSION -lt $(version_code 2.5.56) ] &&
8512                 skip "MDS needs to be at least 2.5.56"
8513
8514         local testfile=$DIR/$tfile
8515
8516         touch $testfile
8517
8518         echo "setfacl as user..."
8519         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
8520         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
8521
8522         echo "setfattr as user..."
8523         setfacl -m "u:$RUNAS_ID:---" $testfile
8524         $RUNAS setfattr -x system.posix_acl_access $testfile
8525         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
8526 }
8527 run_test 102p "check setxattr(2) correctly fails without permission"
8528
8529 test_102q() {
8530         [ $MDS1_VERSION -lt $(version_code 2.6.92) ] &&
8531                 skip "MDS needs to be at least 2.6.92"
8532
8533         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
8534 }
8535 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
8536
8537 test_102r() {
8538         [ $MDS1_VERSION -lt $(version_code 2.6.93) ] &&
8539                 skip "MDS needs to be at least 2.6.93"
8540
8541         touch $DIR/$tfile || error "touch"
8542         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
8543         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
8544         rm $DIR/$tfile || error "rm"
8545
8546         #normal directory
8547         mkdir -p $DIR/$tdir || error "mkdir"
8548         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8549         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8550         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8551                 error "$testfile error deleting user.author1"
8552         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8553                 grep "user.$(basename $tdir)" &&
8554                 error "$tdir did not delete user.$(basename $tdir)"
8555         rmdir $DIR/$tdir || error "rmdir"
8556
8557         #striped directory
8558         test_mkdir $DIR/$tdir
8559         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
8560         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
8561         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
8562                 error "$testfile error deleting user.author1"
8563         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
8564                 grep "user.$(basename $tdir)" &&
8565                 error "$tdir did not delete user.$(basename $tdir)"
8566         rmdir $DIR/$tdir || error "rm striped dir"
8567 }
8568 run_test 102r "set EAs with empty values"
8569
8570 test_102s() {
8571         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8572                 skip "MDS needs to be at least 2.11.52"
8573
8574         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8575
8576         save_lustre_params client "llite.*.xattr_cache" > $save
8577
8578         for cache in 0 1; do
8579                 lctl set_param llite.*.xattr_cache=$cache
8580
8581                 rm -f $DIR/$tfile
8582                 touch $DIR/$tfile || error "touch"
8583                 for prefix in lustre security system trusted user; do
8584                         # Note getxattr() may fail with 'Operation not
8585                         # supported' or 'No such attribute' depending
8586                         # on prefix and cache.
8587                         getfattr -n $prefix.n102s $DIR/$tfile &&
8588                                 error "getxattr '$prefix.n102s' should fail (cache = $cache)"
8589                 done
8590         done
8591
8592         restore_lustre_params < $save
8593 }
8594 run_test 102s "getting nonexistent xattrs should fail"
8595
8596 test_102t() {
8597         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
8598                 skip "MDS needs to be at least 2.11.52"
8599
8600         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
8601
8602         save_lustre_params client "llite.*.xattr_cache" > $save
8603
8604         for cache in 0 1; do
8605                 lctl set_param llite.*.xattr_cache=$cache
8606
8607                 for buf_size in 0 256; do
8608                         rm -f $DIR/$tfile
8609                         touch $DIR/$tfile || error "touch"
8610                         setfattr -n user.multiop $DIR/$tfile
8611                         $MULTIOP $DIR/$tfile oa$buf_size ||
8612                                 error "cannot get zero length xattr value (buf_size = $buf_size)"
8613                 done
8614         done
8615
8616         restore_lustre_params < $save
8617 }
8618 run_test 102t "zero length xattr values handled correctly"
8619
8620 run_acl_subtest()
8621 {
8622     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
8623     return $?
8624 }
8625
8626 test_103a() {
8627         [ "$UID" != 0 ] && skip "must run as root"
8628         $GSS && skip_env "could not run under gss"
8629         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
8630                 skip_env "must have acl enabled"
8631         [ -z "$(which setfacl 2>/dev/null)" ] &&
8632                 skip_env "could not find setfacl"
8633         remote_mds_nodsh && skip "remote MDS with nodsh"
8634
8635         gpasswd -a daemon bin                           # LU-5641
8636         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
8637
8638         declare -a identity_old
8639
8640         for num in $(seq $MDSCOUNT); do
8641                 switch_identity $num true || identity_old[$num]=$?
8642         done
8643
8644         SAVE_UMASK=$(umask)
8645         umask 0022
8646         mkdir -p $DIR/$tdir
8647         cd $DIR/$tdir
8648
8649         echo "performing cp ..."
8650         run_acl_subtest cp || error "run_acl_subtest cp failed"
8651         echo "performing getfacl-noacl..."
8652         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
8653         echo "performing misc..."
8654         run_acl_subtest misc || error  "misc test failed"
8655         echo "performing permissions..."
8656         run_acl_subtest permissions || error "permissions failed"
8657         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
8658         if [ $MDS1_VERSION -gt $(version_code 2.8.55) -o \
8659              \( $MDS1_VERSION -lt $(version_code 2.6) -a \
8660              $MDS1_VERSION -ge $(version_code 2.5.29) \) ]
8661         then
8662                 echo "performing permissions xattr..."
8663                 run_acl_subtest permissions_xattr ||
8664                         error "permissions_xattr failed"
8665         fi
8666         echo "performing setfacl..."
8667         run_acl_subtest setfacl || error  "setfacl test failed"
8668
8669         # inheritance test got from HP
8670         echo "performing inheritance..."
8671         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
8672         chmod +x make-tree || error "chmod +x failed"
8673         run_acl_subtest inheritance || error "inheritance test failed"
8674         rm -f make-tree
8675
8676         echo "LU-974 ignore umask when acl is enabled..."
8677         run_acl_subtest 974 || error "LU-974 umask test failed"
8678         if [ $MDSCOUNT -ge 2 ]; then
8679                 run_acl_subtest 974_remote ||
8680                         error "LU-974 umask test failed under remote dir"
8681         fi
8682
8683         echo "LU-2561 newly created file is same size as directory..."
8684         if [ "$mds1_FSTYPE" != "zfs" ]; then
8685                 run_acl_subtest 2561 || error "LU-2561 test failed"
8686         else
8687                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
8688         fi
8689
8690         run_acl_subtest 4924 || error "LU-4924 test failed"
8691
8692         cd $SAVE_PWD
8693         umask $SAVE_UMASK
8694
8695         for num in $(seq $MDSCOUNT); do
8696                 if [ "${identity_old[$num]}" = 1 ]; then
8697                         switch_identity $num false || identity_old[$num]=$?
8698                 fi
8699         done
8700 }
8701 run_test 103a "acl test"
8702
8703 test_103b() {
8704         declare -a pids
8705         local U
8706
8707         for U in {0..511}; do
8708                 {
8709                 local O=$(printf "%04o" $U)
8710
8711                 umask $(printf "%04o" $((511 ^ $O)))
8712                 $LFS setstripe -c 1 $DIR/$tfile.s$O
8713                 local S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.s$O))
8714
8715                 (( $S == ($O & 0666) )) ||
8716                         error "lfs setstripe $DIR/$tfile.s$O '$S' != '$O'"
8717
8718                 $LFS setstripe -E16M -c 1 -E1G -S4M $DIR/$tfile.p$O
8719                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.p$O))
8720                 (( $S == ($O & 0666) )) ||
8721                         error "lfs setstripe -E $DIR/$tfile.p$O '$S' != '$O'"
8722
8723                 $LFS setstripe -N2 -c 1 $DIR/$tfile.m$O
8724                 S=$(printf "%04o" 0$(stat -c%a $DIR/$tfile.m$O))
8725                 (( $S == ($O & 0666) )) ||
8726                         error "lfs setstripe -N2 $DIR/$tfile.m$O '$S' != '$O'"
8727                 rm -f $DIR/$tfile.[smp]$0
8728                 } &
8729                 local pid=$!
8730
8731                 # limit the concurrently running threads to 64. LU-11878
8732                 local idx=$((U % 64))
8733                 [ -z "${pids[idx]}" ] || wait ${pids[idx]}
8734                 pids[idx]=$pid
8735         done
8736         wait
8737 }
8738 run_test 103b "umask lfs setstripe"
8739
8740 test_103c() {
8741         mkdir -p $DIR/$tdir
8742         cp -rp $DIR/$tdir $DIR/$tdir.bak
8743
8744         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
8745                 error "$DIR/$tdir shouldn't contain default ACL"
8746         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
8747                 error "$DIR/$tdir.bak shouldn't contain default ACL"
8748         true
8749 }
8750 run_test 103c "'cp -rp' won't set empty acl"
8751
8752 test_104a() {
8753         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8754
8755         touch $DIR/$tfile
8756         lfs df || error "lfs df failed"
8757         lfs df -ih || error "lfs df -ih failed"
8758         lfs df -h $DIR || error "lfs df -h $DIR failed"
8759         lfs df -i $DIR || error "lfs df -i $DIR failed"
8760         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
8761         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
8762
8763         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
8764         lctl --device %$OSC deactivate
8765         lfs df || error "lfs df with deactivated OSC failed"
8766         lctl --device %$OSC activate
8767         # wait the osc back to normal
8768         wait_osc_import_ready client ost
8769
8770         lfs df || error "lfs df with reactivated OSC failed"
8771         rm -f $DIR/$tfile
8772 }
8773 run_test 104a "lfs df [-ih] [path] test ========================="
8774
8775 test_104b() {
8776         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8777         [ $RUNAS_ID -eq $UID ] &&
8778                 skip_env "RUNAS_ID = UID = $UID -- skipping"
8779
8780         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
8781                         grep "Permission denied" | wc -l)))
8782         if [ $denied_cnt -ne 0 ]; then
8783                 error "lfs check servers test failed"
8784         fi
8785 }
8786 run_test 104b "$RUNAS lfs check servers test ===================="
8787
8788 test_105a() {
8789         # doesn't work on 2.4 kernels
8790         touch $DIR/$tfile
8791         if $(flock_is_enabled); then
8792                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
8793         else
8794                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
8795         fi
8796         rm -f $DIR/$tfile
8797 }
8798 run_test 105a "flock when mounted without -o flock test ========"
8799
8800 test_105b() {
8801         touch $DIR/$tfile
8802         if $(flock_is_enabled); then
8803                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
8804         else
8805                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
8806         fi
8807         rm -f $DIR/$tfile
8808 }
8809 run_test 105b "fcntl when mounted without -o flock test ========"
8810
8811 test_105c() {
8812         touch $DIR/$tfile
8813         if $(flock_is_enabled); then
8814                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
8815         else
8816                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
8817         fi
8818         rm -f $DIR/$tfile
8819 }
8820 run_test 105c "lockf when mounted without -o flock test"
8821
8822 test_105d() { # bug 15924
8823         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8824
8825         test_mkdir $DIR/$tdir
8826         flock_is_enabled || skip_env "mount w/o flock enabled"
8827         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
8828         $LCTL set_param fail_loc=0x80000315
8829         flocks_test 2 $DIR/$tdir
8830 }
8831 run_test 105d "flock race (should not freeze) ========"
8832
8833 test_105e() { # bug 22660 && 22040
8834         flock_is_enabled || skip_env "mount w/o flock enabled"
8835
8836         touch $DIR/$tfile
8837         flocks_test 3 $DIR/$tfile
8838 }
8839 run_test 105e "Two conflicting flocks from same process"
8840
8841 test_106() { #bug 10921
8842         test_mkdir $DIR/$tdir
8843         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
8844         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
8845 }
8846 run_test 106 "attempt exec of dir followed by chown of that dir"
8847
8848 test_107() {
8849         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8850
8851         CDIR=`pwd`
8852         local file=core
8853
8854         cd $DIR
8855         rm -f $file
8856
8857         local save_pattern=$(sysctl -n kernel.core_pattern)
8858         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
8859         sysctl -w kernel.core_pattern=$file
8860         sysctl -w kernel.core_uses_pid=0
8861
8862         ulimit -c unlimited
8863         sleep 60 &
8864         SLEEPPID=$!
8865
8866         sleep 1
8867
8868         kill -s 11 $SLEEPPID
8869         wait $SLEEPPID
8870         if [ -e $file ]; then
8871                 size=`stat -c%s $file`
8872                 [ $size -eq 0 ] && error "Fail to create core file $file"
8873         else
8874                 error "Fail to create core file $file"
8875         fi
8876         rm -f $file
8877         sysctl -w kernel.core_pattern=$save_pattern
8878         sysctl -w kernel.core_uses_pid=$save_uses_pid
8879         cd $CDIR
8880 }
8881 run_test 107 "Coredump on SIG"
8882
8883 test_110() {
8884         test_mkdir $DIR/$tdir
8885         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
8886         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
8887                 error "mkdir with 256 char should fail, but did not"
8888         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
8889                 error "create with 255 char failed"
8890         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
8891                 error "create with 256 char should fail, but did not"
8892
8893         ls -l $DIR/$tdir
8894         rm -rf $DIR/$tdir
8895 }
8896 run_test 110 "filename length checking"
8897
8898 #
8899 # Purpose: To verify dynamic thread (OSS) creation.
8900 #
8901 test_115() {
8902         [ $PARALLEL == "yes" ] && skip "skip parallel run"
8903         remote_ost_nodsh && skip "remote OST with nodsh"
8904
8905         # Lustre does not stop service threads once they are started.
8906         # Reset number of running threads to default.
8907         stopall
8908         setupall
8909
8910         local OSTIO_pre
8911         local save_params="$TMP/sanity-$TESTNAME.parameters"
8912
8913         # Get ll_ost_io count before I/O
8914         OSTIO_pre=$(do_facet ost1 \
8915                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
8916         # Exit if lustre is not running (ll_ost_io not running).
8917         [ -z "$OSTIO_pre" ] && error "no OSS threads"
8918
8919         echo "Starting with $OSTIO_pre threads"
8920         local thread_max=$((OSTIO_pre * 2))
8921         local rpc_in_flight=$((thread_max * 2))
8922         # Number of I/O Process proposed to be started.
8923         local nfiles
8924         local facets=$(get_facets OST)
8925
8926         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
8927         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
8928
8929         # Set in_flight to $rpc_in_flight
8930         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
8931                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
8932         nfiles=${rpc_in_flight}
8933         # Set ost thread_max to $thread_max
8934         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
8935
8936         # 5 Minutes should be sufficient for max number of OSS
8937         # threads(thread_max) to be created.
8938         local timeout=300
8939
8940         # Start I/O.
8941         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
8942         test_mkdir $DIR/$tdir
8943         for i in $(seq $nfiles); do
8944                 local file=$DIR/$tdir/${tfile}-$i
8945                 $LFS setstripe -c -1 -i 0 $file
8946                 ($WTL $file $timeout)&
8947         done
8948
8949         # I/O Started - Wait for thread_started to reach thread_max or report
8950         # error if thread_started is more than thread_max.
8951         echo "Waiting for thread_started to reach thread_max"
8952         local thread_started=0
8953         local end_time=$((SECONDS + timeout))
8954
8955         while [ $SECONDS -le $end_time ] ; do
8956                 echo -n "."
8957                 # Get ost i/o thread_started count.
8958                 thread_started=$(do_facet ost1 \
8959                         "$LCTL get_param \
8960                         ost.OSS.ost_io.threads_started | cut -d= -f2")
8961                 # Break out if thread_started is equal/greater than thread_max
8962                 if [[ $thread_started -ge $thread_max ]]; then
8963                         echo ll_ost_io thread_started $thread_started, \
8964                                 equal/greater than thread_max $thread_max
8965                         break
8966                 fi
8967                 sleep 1
8968         done
8969
8970         # Cleanup - We have the numbers, Kill i/o jobs if running.
8971         jobcount=($(jobs -p))
8972         for i in $(seq 0 $((${#jobcount[@]}-1)))
8973         do
8974                 kill -9 ${jobcount[$i]}
8975                 if [ $? -ne 0 ] ; then
8976                         echo Warning: \
8977                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
8978                 fi
8979         done
8980
8981         # Cleanup files left by WTL binary.
8982         for i in $(seq $nfiles); do
8983                 local file=$DIR/$tdir/${tfile}-$i
8984                 rm -rf $file
8985                 if [ $? -ne 0 ] ; then
8986                         echo "Warning: Failed to delete file $file"
8987                 fi
8988         done
8989
8990         restore_lustre_params <$save_params
8991         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
8992
8993         # Error out if no new thread has started or Thread started is greater
8994         # than thread max.
8995         if [[ $thread_started -le $OSTIO_pre ||
8996                         $thread_started -gt $thread_max ]]; then
8997                 error "ll_ost_io: thread_started $thread_started" \
8998                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
8999                       "No new thread started or thread started greater " \
9000                       "than thread_max."
9001         fi
9002 }
9003 run_test 115 "verify dynamic thread creation===================="
9004
9005 free_min_max () {
9006         wait_delete_completed
9007         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
9008         echo "OST kbytes available: ${AVAIL[@]}"
9009         MAXV=${AVAIL[0]}
9010         MAXI=0
9011         MINV=${AVAIL[0]}
9012         MINI=0
9013         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
9014                 #echo OST $i: ${AVAIL[i]}kb
9015                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
9016                         MAXV=${AVAIL[i]}
9017                         MAXI=$i
9018                 fi
9019                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
9020                         MINV=${AVAIL[i]}
9021                         MINI=$i
9022                 fi
9023         done
9024         echo "Min free space: OST $MINI: $MINV"
9025         echo "Max free space: OST $MAXI: $MAXV"
9026 }
9027
9028 test_116a() { # was previously test_116()
9029         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9030         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9031         remote_mds_nodsh && skip "remote MDS with nodsh"
9032
9033         echo -n "Free space priority "
9034         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
9035                 head -n1
9036         declare -a AVAIL
9037         free_min_max
9038
9039         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip"
9040         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip"
9041         trap simple_cleanup_common EXIT
9042
9043         # Check if we need to generate uneven OSTs
9044         test_mkdir -p $DIR/$tdir/OST${MINI}
9045         local FILL=$((MINV / 4))
9046         local DIFF=$((MAXV - MINV))
9047         local DIFF2=$((DIFF * 100 / MINV))
9048
9049         local threshold=$(do_facet $SINGLEMDS \
9050                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
9051         threshold=${threshold%%%}
9052         echo -n "Check for uneven OSTs: "
9053         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
9054
9055         if [[ $DIFF2 -gt $threshold ]]; then
9056                 echo "ok"
9057                 echo "Don't need to fill OST$MINI"
9058         else
9059                 # generate uneven OSTs. Write 2% over the QOS threshold value
9060                 echo "no"
9061                 DIFF=$((threshold - DIFF2 + 2))
9062                 DIFF2=$((MINV * DIFF / 100))
9063                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
9064                 $LFS setstripe -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
9065                         error "setstripe failed"
9066                 DIFF=$((DIFF2 / 2048))
9067                 i=0
9068                 while [ $i -lt $DIFF ]; do
9069                         i=$((i + 1))
9070                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
9071                                 bs=2M count=1 2>/dev/null
9072                         echo -n .
9073                 done
9074                 echo .
9075                 sync
9076                 sleep_maxage
9077                 free_min_max
9078         fi
9079
9080         DIFF=$((MAXV - MINV))
9081         DIFF2=$((DIFF * 100 / MINV))
9082         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
9083         if [ $DIFF2 -gt $threshold ]; then
9084                 echo "ok"
9085         else
9086                 echo "failed - QOS mode won't be used"
9087                 simple_cleanup_common
9088                 skip "QOS imbalance criteria not met"
9089         fi
9090
9091         MINI1=$MINI
9092         MINV1=$MINV
9093         MAXI1=$MAXI
9094         MAXV1=$MAXV
9095
9096         # now fill using QOS
9097         $LFS setstripe -c 1 $DIR/$tdir
9098         FILL=$((FILL / 200))
9099         if [ $FILL -gt 600 ]; then
9100                 FILL=600
9101         fi
9102         echo "writing $FILL files to QOS-assigned OSTs"
9103         i=0
9104         while [ $i -lt $FILL ]; do
9105                 i=$((i + 1))
9106                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
9107                         count=1 2>/dev/null
9108                 echo -n .
9109         done
9110         echo "wrote $i 200k files"
9111         sync
9112         sleep_maxage
9113
9114         echo "Note: free space may not be updated, so measurements might be off"
9115         free_min_max
9116         DIFF2=$((MAXV - MINV))
9117         echo "free space delta: orig $DIFF final $DIFF2"
9118         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
9119         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
9120         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
9121         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
9122         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
9123         if [[ $DIFF -gt 0 ]]; then
9124                 FILL=$((DIFF2 * 100 / DIFF - 100))
9125                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
9126         fi
9127
9128         # Figure out which files were written where
9129         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9130                awk '/'$MINI1': / {print $2; exit}')
9131         echo $UUID
9132         MINC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9133         echo "$MINC files created on smaller OST $MINI1"
9134         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
9135                awk '/'$MAXI1': / {print $2; exit}')
9136         echo $UUID
9137         MAXC=$($LFS getstripe --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
9138         echo "$MAXC files created on larger OST $MAXI1"
9139         if [[ $MINC -gt 0 ]]; then
9140                 FILL=$((MAXC * 100 / MINC - 100))
9141                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
9142         fi
9143         [[ $MAXC -gt $MINC ]] ||
9144                 error_ignore LU-9 "stripe QOS didn't balance free space"
9145         simple_cleanup_common
9146 }
9147 run_test 116a "stripe QOS: free space balance ==================="
9148
9149 test_116b() { # LU-2093
9150         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9151         remote_mds_nodsh && skip "remote MDS with nodsh"
9152
9153 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
9154         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
9155                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
9156         [ -z "$old_rr" ] && skip "no QOS"
9157         do_facet $SINGLEMDS lctl set_param \
9158                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
9159         mkdir -p $DIR/$tdir
9160         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
9161         createmany -o $DIR/$tdir/f- 20 || error "can't create"
9162         do_facet $SINGLEMDS lctl set_param fail_loc=0
9163         rm -rf $DIR/$tdir
9164         do_facet $SINGLEMDS lctl set_param \
9165                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
9166 }
9167 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
9168
9169 test_117() # bug 10891
9170 {
9171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9172
9173         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
9174         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
9175         lctl set_param fail_loc=0x21e
9176         > $DIR/$tfile || error "truncate failed"
9177         lctl set_param fail_loc=0
9178         echo "Truncate succeeded."
9179         rm -f $DIR/$tfile
9180 }
9181 run_test 117 "verify osd extend =========="
9182
9183 NO_SLOW_RESENDCOUNT=4
9184 export OLD_RESENDCOUNT=""
9185 set_resend_count () {
9186         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
9187         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
9188         lctl set_param -n $PROC_RESENDCOUNT $1
9189         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
9190 }
9191
9192 # for reduce test_118* time (b=14842)
9193 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9194
9195 # Reset async IO behavior after error case
9196 reset_async() {
9197         FILE=$DIR/reset_async
9198
9199         # Ensure all OSCs are cleared
9200         $LFS setstripe -c -1 $FILE
9201         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
9202         sync
9203         rm $FILE
9204 }
9205
9206 test_118a() #bug 11710
9207 {
9208         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9209
9210         reset_async
9211
9212         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9213         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9214         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9215
9216         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9217                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9218                 return 1;
9219         fi
9220         rm -f $DIR/$tfile
9221 }
9222 run_test 118a "verify O_SYNC works =========="
9223
9224 test_118b()
9225 {
9226         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9227         remote_ost_nodsh && skip "remote OST with nodsh"
9228
9229         reset_async
9230
9231         #define OBD_FAIL_SRV_ENOENT 0x217
9232         set_nodes_failloc "$(osts_nodes)" 0x217
9233         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9234         RC=$?
9235         set_nodes_failloc "$(osts_nodes)" 0
9236         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9237         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9238                     grep -c writeback)
9239
9240         if [[ $RC -eq 0 ]]; then
9241                 error "Must return error due to dropped pages, rc=$RC"
9242                 return 1;
9243         fi
9244
9245         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9246                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9247                 return 1;
9248         fi
9249
9250         echo "Dirty pages not leaked on ENOENT"
9251
9252         # Due to the above error the OSC will issue all RPCs syncronously
9253         # until a subsequent RPC completes successfully without error.
9254         $MULTIOP $DIR/$tfile Ow4096yc
9255         rm -f $DIR/$tfile
9256
9257         return 0
9258 }
9259 run_test 118b "Reclaim dirty pages on fatal error =========="
9260
9261 test_118c()
9262 {
9263         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9264
9265         # for 118c, restore the original resend count, LU-1940
9266         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
9267                                 set_resend_count $OLD_RESENDCOUNT
9268         remote_ost_nodsh && skip "remote OST with nodsh"
9269
9270         reset_async
9271
9272         #define OBD_FAIL_OST_EROFS               0x216
9273         set_nodes_failloc "$(osts_nodes)" 0x216
9274
9275         # multiop should block due to fsync until pages are written
9276         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9277         MULTIPID=$!
9278         sleep 1
9279
9280         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9281                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9282         fi
9283
9284         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9285                     grep -c writeback)
9286         if [[ $WRITEBACK -eq 0 ]]; then
9287                 error "No page in writeback, writeback=$WRITEBACK"
9288         fi
9289
9290         set_nodes_failloc "$(osts_nodes)" 0
9291         wait $MULTIPID
9292         RC=$?
9293         if [[ $RC -ne 0 ]]; then
9294                 error "Multiop fsync failed, rc=$RC"
9295         fi
9296
9297         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9298         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9299                     grep -c writeback)
9300         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9301                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9302         fi
9303
9304         rm -f $DIR/$tfile
9305         echo "Dirty pages flushed via fsync on EROFS"
9306         return 0
9307 }
9308 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
9309
9310 # continue to use small resend count to reduce test_118* time (b=14842)
9311 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
9312
9313 test_118d()
9314 {
9315         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9316         remote_ost_nodsh && skip "remote OST with nodsh"
9317
9318         reset_async
9319
9320         #define OBD_FAIL_OST_BRW_PAUSE_BULK
9321         set_nodes_failloc "$(osts_nodes)" 0x214
9322         # multiop should block due to fsync until pages are written
9323         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9324         MULTIPID=$!
9325         sleep 1
9326
9327         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
9328                 error "Multiop failed to block on fsync, pid=$MULTIPID"
9329         fi
9330
9331         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9332                     grep -c writeback)
9333         if [[ $WRITEBACK -eq 0 ]]; then
9334                 error "No page in writeback, writeback=$WRITEBACK"
9335         fi
9336
9337         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
9338         set_nodes_failloc "$(osts_nodes)" 0
9339
9340         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9341         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9342                     grep -c writeback)
9343         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9344                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9345         fi
9346
9347         rm -f $DIR/$tfile
9348         echo "Dirty pages gaurenteed flushed via fsync"
9349         return 0
9350 }
9351 run_test 118d "Fsync validation inject a delay of the bulk =========="
9352
9353 test_118f() {
9354         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9355
9356         reset_async
9357
9358         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
9359         lctl set_param fail_loc=0x8000040a
9360
9361         # Should simulate EINVAL error which is fatal
9362         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9363         RC=$?
9364         if [[ $RC -eq 0 ]]; then
9365                 error "Must return error due to dropped pages, rc=$RC"
9366         fi
9367
9368         lctl set_param fail_loc=0x0
9369
9370         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9371         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9372         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9373                     grep -c writeback)
9374         if [[ $LOCKED -ne 0 ]]; then
9375                 error "Locked pages remain in cache, locked=$LOCKED"
9376         fi
9377
9378         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9379                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9380         fi
9381
9382         rm -f $DIR/$tfile
9383         echo "No pages locked after fsync"
9384
9385         reset_async
9386         return 0
9387 }
9388 run_test 118f "Simulate unrecoverable OSC side error =========="
9389
9390 test_118g() {
9391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9392
9393         reset_async
9394
9395         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
9396         lctl set_param fail_loc=0x406
9397
9398         # simulate local -ENOMEM
9399         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9400         RC=$?
9401
9402         lctl set_param fail_loc=0
9403         if [[ $RC -eq 0 ]]; then
9404                 error "Must return error due to dropped pages, rc=$RC"
9405         fi
9406
9407         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9408         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9409         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9410                         grep -c writeback)
9411         if [[ $LOCKED -ne 0 ]]; then
9412                 error "Locked pages remain in cache, locked=$LOCKED"
9413         fi
9414
9415         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9416                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9417         fi
9418
9419         rm -f $DIR/$tfile
9420         echo "No pages locked after fsync"
9421
9422         reset_async
9423         return 0
9424 }
9425 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
9426
9427 test_118h() {
9428         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9429         remote_ost_nodsh && skip "remote OST with nodsh"
9430
9431         reset_async
9432
9433         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9434         set_nodes_failloc "$(osts_nodes)" 0x20e
9435         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9436         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9437         RC=$?
9438
9439         set_nodes_failloc "$(osts_nodes)" 0
9440         if [[ $RC -eq 0 ]]; then
9441                 error "Must return error due to dropped pages, rc=$RC"
9442         fi
9443
9444         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9445         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9446         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
9447                     grep -c writeback)
9448         if [[ $LOCKED -ne 0 ]]; then
9449                 error "Locked pages remain in cache, locked=$LOCKED"
9450         fi
9451
9452         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9453                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9454         fi
9455
9456         rm -f $DIR/$tfile
9457         echo "No pages locked after fsync"
9458
9459         return 0
9460 }
9461 run_test 118h "Verify timeout in handling recoverables errors  =========="
9462
9463 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9464
9465 test_118i() {
9466         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9467         remote_ost_nodsh && skip "remote OST with nodsh"
9468
9469         reset_async
9470
9471         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9472         set_nodes_failloc "$(osts_nodes)" 0x20e
9473
9474         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
9475         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
9476         PID=$!
9477         sleep 5
9478         set_nodes_failloc "$(osts_nodes)" 0
9479
9480         wait $PID
9481         RC=$?
9482         if [[ $RC -ne 0 ]]; then
9483                 error "got error, but should be not, rc=$RC"
9484         fi
9485
9486         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9487         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9488         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9489         if [[ $LOCKED -ne 0 ]]; then
9490                 error "Locked pages remain in cache, locked=$LOCKED"
9491         fi
9492
9493         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9494                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9495         fi
9496
9497         rm -f $DIR/$tfile
9498         echo "No pages locked after fsync"
9499
9500         return 0
9501 }
9502 run_test 118i "Fix error before timeout in recoverable error  =========="
9503
9504 [ "$SLOW" = "no" ] && set_resend_count 4
9505
9506 test_118j() {
9507         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9508         remote_ost_nodsh && skip "remote OST with nodsh"
9509
9510         reset_async
9511
9512         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
9513         set_nodes_failloc "$(osts_nodes)" 0x220
9514
9515         # return -EIO from OST
9516         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
9517         RC=$?
9518         set_nodes_failloc "$(osts_nodes)" 0x0
9519         if [[ $RC -eq 0 ]]; then
9520                 error "Must return error due to dropped pages, rc=$RC"
9521         fi
9522
9523         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
9524         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
9525         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
9526         if [[ $LOCKED -ne 0 ]]; then
9527                 error "Locked pages remain in cache, locked=$LOCKED"
9528         fi
9529
9530         # in recoverable error on OST we want resend and stay until it finished
9531         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
9532                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
9533         fi
9534
9535         rm -f $DIR/$tfile
9536         echo "No pages locked after fsync"
9537
9538         return 0
9539 }
9540 run_test 118j "Simulate unrecoverable OST side error =========="
9541
9542 test_118k()
9543 {
9544         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9545         remote_ost_nodsh && skip "remote OSTs with nodsh"
9546
9547         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
9548         set_nodes_failloc "$(osts_nodes)" 0x20e
9549         test_mkdir $DIR/$tdir
9550
9551         for ((i=0;i<10;i++)); do
9552                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
9553                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
9554                 SLEEPPID=$!
9555                 sleep 0.500s
9556                 kill $SLEEPPID
9557                 wait $SLEEPPID
9558         done
9559
9560         set_nodes_failloc "$(osts_nodes)" 0
9561         rm -rf $DIR/$tdir
9562 }
9563 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
9564
9565 test_118l() # LU-646
9566 {
9567         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9568
9569         test_mkdir $DIR/$tdir
9570         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
9571         rm -rf $DIR/$tdir
9572 }
9573 run_test 118l "fsync dir"
9574
9575 test_118m() # LU-3066
9576 {
9577         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9578
9579         test_mkdir $DIR/$tdir
9580         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
9581         rm -rf $DIR/$tdir
9582 }
9583 run_test 118m "fdatasync dir ========="
9584
9585 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
9586
9587 test_118n()
9588 {
9589         local begin
9590         local end
9591
9592         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9593         remote_ost_nodsh && skip "remote OSTs with nodsh"
9594
9595         # Sleep to avoid a cached response.
9596         #define OBD_STATFS_CACHE_SECONDS 1
9597         sleep 2
9598
9599         # Inject a 10 second delay in the OST_STATFS handler.
9600         #define OBD_FAIL_OST_STATFS_DELAY 0x242
9601         set_nodes_failloc "$(osts_nodes)" 0x242
9602
9603         begin=$SECONDS
9604         stat --file-system $MOUNT > /dev/null
9605         end=$SECONDS
9606
9607         set_nodes_failloc "$(osts_nodes)" 0
9608
9609         if ((end - begin > 20)); then
9610             error "statfs took $((end - begin)) seconds, expected 10"
9611         fi
9612 }
9613 run_test 118n "statfs() sends OST_STATFS requests in parallel"
9614
9615 test_119a() # bug 11737
9616 {
9617         BSIZE=$((512 * 1024))
9618         directio write $DIR/$tfile 0 1 $BSIZE
9619         # We ask to read two blocks, which is more than a file size.
9620         # directio will indicate an error when requested and actual
9621         # sizes aren't equeal (a normal situation in this case) and
9622         # print actual read amount.
9623         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
9624         if [ "$NOB" != "$BSIZE" ]; then
9625                 error "read $NOB bytes instead of $BSIZE"
9626         fi
9627         rm -f $DIR/$tfile
9628 }
9629 run_test 119a "Short directIO read must return actual read amount"
9630
9631 test_119b() # bug 11737
9632 {
9633         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
9634
9635         $LFS setstripe -c 2 $DIR/$tfile || error "setstripe failed"
9636         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
9637         sync
9638         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) ||
9639                 error "direct read failed"
9640         rm -f $DIR/$tfile
9641 }
9642 run_test 119b "Sparse directIO read must return actual read amount"
9643
9644 test_119c() # bug 13099
9645 {
9646         BSIZE=1048576
9647         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
9648         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
9649         rm -f $DIR/$tfile
9650 }
9651 run_test 119c "Testing for direct read hitting hole"
9652
9653 test_119d() # bug 15950
9654 {
9655         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9656
9657         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
9658         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
9659         BSIZE=1048576
9660         $LFS setstripe $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
9661         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
9662         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
9663         lctl set_param fail_loc=0x40d
9664         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
9665         pid_dio=$!
9666         sleep 1
9667         cat $DIR/$tfile > /dev/null &
9668         lctl set_param fail_loc=0
9669         pid_reads=$!
9670         wait $pid_dio
9671         log "the DIO writes have completed, now wait for the reads (should not block very long)"
9672         sleep 2
9673         [ -n "`ps h -p $pid_reads -o comm`" ] && \
9674         error "the read rpcs have not completed in 2s"
9675         rm -f $DIR/$tfile
9676         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
9677 }
9678 run_test 119d "The DIO path should try to send a new rpc once one is completed"
9679
9680 test_120a() {
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         # asynchronous object destroy at MDT could cause bl ast to client
9691         cancel_lru_locks osc
9692
9693         stat $DIR/$tdir > /dev/null
9694         can1=$(do_facet $SINGLEMDS \
9695                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9696                awk '/ldlm_cancel/ {print $2}')
9697         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9698                awk '/ldlm_bl_callback/ {print $2}')
9699         test_mkdir -c1 $DIR/$tdir/d1
9700         can2=$(do_facet $SINGLEMDS \
9701                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9702                awk '/ldlm_cancel/ {print $2}')
9703         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9704                awk '/ldlm_bl_callback/ {print $2}')
9705         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9706         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9707         lru_resize_enable mdc
9708         lru_resize_enable osc
9709 }
9710 run_test 120a "Early Lock Cancel: mkdir test"
9711
9712 test_120b() {
9713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9714         remote_mds_nodsh && skip "remote MDS with nodsh"
9715         test_mkdir $DIR/$tdir
9716         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9717                 skip_env "no early lock cancel on server"
9718
9719         lru_resize_disable mdc
9720         lru_resize_disable osc
9721         cancel_lru_locks mdc
9722         stat $DIR/$tdir > /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         touch $DIR/$tdir/f1
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 120b "Early Lock Cancel: create test"
9740
9741 test_120c() {
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 "no early lock cancel on server"
9747
9748         lru_resize_disable mdc
9749         lru_resize_disable osc
9750         test_mkdir -c1 $DIR/$tdir/d1
9751         test_mkdir -c1 $DIR/$tdir/d2
9752         touch $DIR/$tdir/d1/f1
9753         cancel_lru_locks mdc
9754         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
9755         can1=$(do_facet $SINGLEMDS \
9756                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9757                awk '/ldlm_cancel/ {print $2}')
9758         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9759                awk '/ldlm_bl_callback/ {print $2}')
9760         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9761         can2=$(do_facet $SINGLEMDS \
9762                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9763                awk '/ldlm_cancel/ {print $2}')
9764         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9765                awk '/ldlm_bl_callback/ {print $2}')
9766         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9767         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9768         lru_resize_enable mdc
9769         lru_resize_enable osc
9770 }
9771 run_test 120c "Early Lock Cancel: link test"
9772
9773 test_120d() {
9774         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9775         remote_mds_nodsh && skip "remote MDS with nodsh"
9776         test_mkdir -c1 $DIR/$tdir
9777         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9778                 skip_env "no early lock cancel on server"
9779
9780         lru_resize_disable mdc
9781         lru_resize_disable osc
9782         touch $DIR/$tdir
9783         cancel_lru_locks mdc
9784         stat $DIR/$tdir > /dev/null
9785         can1=$(do_facet $SINGLEMDS \
9786                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9787                awk '/ldlm_cancel/ {print $2}')
9788         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9789                awk '/ldlm_bl_callback/ {print $2}')
9790         chmod a+x $DIR/$tdir
9791         can2=$(do_facet $SINGLEMDS \
9792                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9793                awk '/ldlm_cancel/ {print $2}')
9794         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9795                awk '/ldlm_bl_callback/ {print $2}')
9796         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9797         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9798         lru_resize_enable mdc
9799         lru_resize_enable osc
9800 }
9801 run_test 120d "Early Lock Cancel: setattr test"
9802
9803 test_120e() {
9804         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9805         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9806                 skip_env "no early lock cancel on server"
9807         remote_mds_nodsh && skip "remote MDS with nodsh"
9808
9809         local dlmtrace_set=false
9810
9811         test_mkdir -c1 $DIR/$tdir
9812         lru_resize_disable mdc
9813         lru_resize_disable osc
9814         ! $LCTL get_param debug | grep -q dlmtrace &&
9815                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
9816         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
9817         cancel_lru_locks mdc
9818         cancel_lru_locks osc
9819         dd if=$DIR/$tdir/f1 of=/dev/null
9820         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
9821         # XXX client can not do early lock cancel of OST lock
9822         # during unlink (LU-4206), so cancel osc lock now.
9823         sleep 2
9824         cancel_lru_locks osc
9825         can1=$(do_facet $SINGLEMDS \
9826                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9827                awk '/ldlm_cancel/ {print $2}')
9828         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9829                awk '/ldlm_bl_callback/ {print $2}')
9830         unlink $DIR/$tdir/f1
9831         sleep 5
9832         can2=$(do_facet $SINGLEMDS \
9833                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9834                awk '/ldlm_cancel/ {print $2}')
9835         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9836                awk '/ldlm_bl_callback/ {print $2}')
9837         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
9838                 $LCTL dk $TMP/cancel.debug.txt
9839         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
9840                 $LCTL dk $TMP/blocking.debug.txt
9841         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
9842         lru_resize_enable mdc
9843         lru_resize_enable osc
9844 }
9845 run_test 120e "Early Lock Cancel: unlink test"
9846
9847 test_120f() {
9848         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9849         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9850                 skip_env "no early lock cancel on server"
9851         remote_mds_nodsh && skip "remote MDS with nodsh"
9852
9853         test_mkdir -c1 $DIR/$tdir
9854         lru_resize_disable mdc
9855         lru_resize_disable osc
9856         test_mkdir -c1 $DIR/$tdir/d1
9857         test_mkdir -c1 $DIR/$tdir/d2
9858         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
9859         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
9860         cancel_lru_locks mdc
9861         cancel_lru_locks osc
9862         dd if=$DIR/$tdir/d1/f1 of=/dev/null
9863         dd if=$DIR/$tdir/d2/f2 of=/dev/null
9864         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
9865         # XXX client can not do early lock cancel of OST lock
9866         # during rename (LU-4206), so cancel osc lock now.
9867         sleep 2
9868         cancel_lru_locks osc
9869         can1=$(do_facet $SINGLEMDS \
9870                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9871                awk '/ldlm_cancel/ {print $2}')
9872         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9873                awk '/ldlm_bl_callback/ {print $2}')
9874         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
9875         sleep 5
9876         can2=$(do_facet $SINGLEMDS \
9877                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9878                awk '/ldlm_cancel/ {print $2}')
9879         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9880                awk '/ldlm_bl_callback/ {print $2}')
9881         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
9882         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
9883         lru_resize_enable mdc
9884         lru_resize_enable osc
9885 }
9886 run_test 120f "Early Lock Cancel: rename test"
9887
9888 test_120g() {
9889         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9890         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
9891                 skip_env "no early lock cancel on server"
9892         remote_mds_nodsh && skip "remote MDS with nodsh"
9893
9894         lru_resize_disable mdc
9895         lru_resize_disable osc
9896         count=10000
9897         echo create $count files
9898         test_mkdir $DIR/$tdir
9899         cancel_lru_locks mdc
9900         cancel_lru_locks osc
9901         t0=$(date +%s)
9902
9903         can0=$(do_facet $SINGLEMDS \
9904                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9905                awk '/ldlm_cancel/ {print $2}')
9906         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9907                awk '/ldlm_bl_callback/ {print $2}')
9908         createmany -o $DIR/$tdir/f $count
9909         sync
9910         can1=$(do_facet $SINGLEMDS \
9911                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9912                awk '/ldlm_cancel/ {print $2}')
9913         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9914                awk '/ldlm_bl_callback/ {print $2}')
9915         t1=$(date +%s)
9916         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
9917         echo rm $count files
9918         rm -r $DIR/$tdir
9919         sync
9920         can2=$(do_facet $SINGLEMDS \
9921                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
9922                awk '/ldlm_cancel/ {print $2}')
9923         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
9924                awk '/ldlm_bl_callback/ {print $2}')
9925         t2=$(date +%s)
9926         echo total: $count removes in $((t2-t1))
9927         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
9928         sleep 2
9929         # wait for commitment of removal
9930         lru_resize_enable mdc
9931         lru_resize_enable osc
9932 }
9933 run_test 120g "Early Lock Cancel: performance test"
9934
9935 test_121() { #bug #10589
9936         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9937
9938         rm -rf $DIR/$tfile
9939         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
9940 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
9941         lctl set_param fail_loc=0x310
9942         cancel_lru_locks osc > /dev/null
9943         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
9944         lctl set_param fail_loc=0
9945         [[ $reads -eq $writes ]] ||
9946                 error "read $reads blocks, must be $writes blocks"
9947 }
9948 run_test 121 "read cancel race ========="
9949
9950 test_123a() { # was test 123, statahead(bug 11401)
9951         [ $PARALLEL == "yes" ] && skip "skip parallel run"
9952
9953         SLOWOK=0
9954         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
9955                 log "testing UP system. Performance may be lower than expected."
9956                 SLOWOK=1
9957         fi
9958
9959         rm -rf $DIR/$tdir
9960         test_mkdir $DIR/$tdir
9961         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
9962         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
9963         MULT=10
9964         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
9965                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
9966
9967                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9968                 lctl set_param -n llite.*.statahead_max 0
9969                 lctl get_param llite.*.statahead_max
9970                 cancel_lru_locks mdc
9971                 cancel_lru_locks osc
9972                 stime=`date +%s`
9973                 time ls -l $DIR/$tdir | wc -l
9974                 etime=`date +%s`
9975                 delta=$((etime - stime))
9976                 log "ls $i files without statahead: $delta sec"
9977                 lctl set_param llite.*.statahead_max=$max
9978
9979                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9980                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
9981                 cancel_lru_locks mdc
9982                 cancel_lru_locks osc
9983                 stime=`date +%s`
9984                 time ls -l $DIR/$tdir | wc -l
9985                 etime=`date +%s`
9986                 delta_sa=$((etime - stime))
9987                 log "ls $i files with statahead: $delta_sa sec"
9988                 lctl get_param -n llite.*.statahead_stats
9989                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
9990
9991                 [[ $swrong -lt $ewrong ]] &&
9992                         log "statahead was stopped, maybe too many locks held!"
9993                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
9994
9995                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
9996                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
9997                     lctl set_param -n llite.*.statahead_max 0
9998                     lctl get_param llite.*.statahead_max
9999                     cancel_lru_locks mdc
10000                     cancel_lru_locks osc
10001                     stime=`date +%s`
10002                     time ls -l $DIR/$tdir | wc -l
10003                     etime=`date +%s`
10004                     delta=$((etime - stime))
10005                     log "ls $i files again without statahead: $delta sec"
10006                     lctl set_param llite.*.statahead_max=$max
10007                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
10008                         if [  $SLOWOK -eq 0 ]; then
10009                                 error "ls $i files is slower with statahead!"
10010                         else
10011                                 log "ls $i files is slower with statahead!"
10012                         fi
10013                         break
10014                     fi
10015                 fi
10016
10017                 [ $delta -gt 20 ] && break
10018                 [ $delta -gt 8 ] && MULT=$((50 / delta))
10019                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
10020         done
10021         log "ls done"
10022
10023         stime=`date +%s`
10024         rm -r $DIR/$tdir
10025         sync
10026         etime=`date +%s`
10027         delta=$((etime - stime))
10028         log "rm -r $DIR/$tdir/: $delta seconds"
10029         log "rm done"
10030         lctl get_param -n llite.*.statahead_stats
10031 }
10032 run_test 123a "verify statahead work"
10033
10034 test_123b () { # statahead(bug 15027)
10035         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10036
10037         test_mkdir $DIR/$tdir
10038         createmany -o $DIR/$tdir/$tfile-%d 1000
10039
10040         cancel_lru_locks mdc
10041         cancel_lru_locks osc
10042
10043 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
10044         lctl set_param fail_loc=0x80000803
10045         ls -lR $DIR/$tdir > /dev/null
10046         log "ls done"
10047         lctl set_param fail_loc=0x0
10048         lctl get_param -n llite.*.statahead_stats
10049         rm -r $DIR/$tdir
10050         sync
10051
10052 }
10053 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
10054
10055 test_124a() {
10056         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10057         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10058                 skip_env "no lru resize on server"
10059
10060         local NR=2000
10061
10062         test_mkdir $DIR/$tdir
10063
10064         log "create $NR files at $DIR/$tdir"
10065         createmany -o $DIR/$tdir/f $NR ||
10066                 error "failed to create $NR files in $DIR/$tdir"
10067
10068         cancel_lru_locks mdc
10069         ls -l $DIR/$tdir > /dev/null
10070
10071         local NSDIR=""
10072         local LRU_SIZE=0
10073         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
10074                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
10075                 LRU_SIZE=$($LCTL get_param -n $PARAM)
10076                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
10077                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
10078                         log "NSDIR=$NSDIR"
10079                         log "NS=$(basename $NSDIR)"
10080                         break
10081                 fi
10082         done
10083
10084         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
10085                 skip "Not enough cached locks created!"
10086         fi
10087         log "LRU=$LRU_SIZE"
10088
10089         local SLEEP=30
10090
10091         # We know that lru resize allows one client to hold $LIMIT locks
10092         # for 10h. After that locks begin to be killed by client.
10093         local MAX_HRS=10
10094         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
10095         log "LIMIT=$LIMIT"
10096         if [ $LIMIT -lt $LRU_SIZE ]; then
10097                 skip "Limit is too small $LIMIT"
10098         fi
10099
10100         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
10101         # killing locks. Some time was spent for creating locks. This means
10102         # that up to the moment of sleep finish we must have killed some of
10103         # them (10-100 locks). This depends on how fast ther were created.
10104         # Many of them were touched in almost the same moment and thus will
10105         # be killed in groups.
10106         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
10107
10108         # Use $LRU_SIZE_B here to take into account real number of locks
10109         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
10110         local LRU_SIZE_B=$LRU_SIZE
10111         log "LVF=$LVF"
10112         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
10113         log "OLD_LVF=$OLD_LVF"
10114         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
10115
10116         # Let's make sure that we really have some margin. Client checks
10117         # cached locks every 10 sec.
10118         SLEEP=$((SLEEP+20))
10119         log "Sleep ${SLEEP} sec"
10120         local SEC=0
10121         while ((SEC<$SLEEP)); do
10122                 echo -n "..."
10123                 sleep 5
10124                 SEC=$((SEC+5))
10125                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
10126                 echo -n "$LRU_SIZE"
10127         done
10128         echo ""
10129         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
10130         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
10131
10132         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
10133                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
10134                 unlinkmany $DIR/$tdir/f $NR
10135                 return
10136         }
10137
10138         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
10139         log "unlink $NR files at $DIR/$tdir"
10140         unlinkmany $DIR/$tdir/f $NR
10141 }
10142 run_test 124a "lru resize ======================================="
10143
10144 get_max_pool_limit()
10145 {
10146         local limit=$($LCTL get_param \
10147                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
10148         local max=0
10149         for l in $limit; do
10150                 if [[ $l -gt $max ]]; then
10151                         max=$l
10152                 fi
10153         done
10154         echo $max
10155 }
10156
10157 test_124b() {
10158         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10159         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10160                 skip_env "no lru resize on server"
10161
10162         LIMIT=$(get_max_pool_limit)
10163
10164         NR=$(($(default_lru_size)*20))
10165         if [[ $NR -gt $LIMIT ]]; then
10166                 log "Limit lock number by $LIMIT locks"
10167                 NR=$LIMIT
10168         fi
10169
10170         IFree=$(mdsrate_inodes_available)
10171         if [ $IFree -lt $NR ]; then
10172                 log "Limit lock number by $IFree inodes"
10173                 NR=$IFree
10174         fi
10175
10176         lru_resize_disable mdc
10177         test_mkdir -p $DIR/$tdir/disable_lru_resize
10178
10179         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
10180         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
10181         cancel_lru_locks mdc
10182         stime=`date +%s`
10183         PID=""
10184         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10185         PID="$PID $!"
10186         sleep 2
10187         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10188         PID="$PID $!"
10189         sleep 2
10190         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
10191         PID="$PID $!"
10192         wait $PID
10193         etime=`date +%s`
10194         nolruresize_delta=$((etime-stime))
10195         log "ls -la time: $nolruresize_delta seconds"
10196         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10197         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
10198
10199         lru_resize_enable mdc
10200         test_mkdir -p $DIR/$tdir/enable_lru_resize
10201
10202         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
10203         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
10204         cancel_lru_locks mdc
10205         stime=`date +%s`
10206         PID=""
10207         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10208         PID="$PID $!"
10209         sleep 2
10210         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10211         PID="$PID $!"
10212         sleep 2
10213         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
10214         PID="$PID $!"
10215         wait $PID
10216         etime=`date +%s`
10217         lruresize_delta=$((etime-stime))
10218         log "ls -la time: $lruresize_delta seconds"
10219         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
10220
10221         if [ $lruresize_delta -gt $nolruresize_delta ]; then
10222                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
10223         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
10224                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
10225         else
10226                 log "lru resize performs the same with no lru resize"
10227         fi
10228         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
10229 }
10230 run_test 124b "lru resize (performance test) ======================="
10231
10232 test_124c() {
10233         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10234         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
10235                 skip_env "no lru resize on server"
10236
10237         # cache ununsed locks on client
10238         local nr=100
10239         cancel_lru_locks mdc
10240         test_mkdir $DIR/$tdir
10241         createmany -o $DIR/$tdir/f $nr ||
10242                 error "failed to create $nr files in $DIR/$tdir"
10243         ls -l $DIR/$tdir > /dev/null
10244
10245         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10246         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10247         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
10248         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
10249         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
10250
10251         # set lru_max_age to 1 sec
10252         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
10253         echo "sleep $((recalc_p * 2)) seconds..."
10254         sleep $((recalc_p * 2))
10255
10256         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
10257         # restore lru_max_age
10258         $LCTL set_param -n $nsdir.lru_max_age $max_age
10259         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
10260         unlinkmany $DIR/$tdir/f $nr
10261 }
10262 run_test 124c "LRUR cancel very aged locks"
10263
10264 test_125() { # 13358
10265         $LCTL get_param -n llite.*.client_type | grep -q local ||
10266                 skip "must run as local client"
10267         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
10268                 skip_env "must have acl enabled"
10269         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
10270
10271         test_mkdir $DIR/$tdir
10272         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
10273         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
10274         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
10275 }
10276 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
10277
10278 test_126() { # bug 12829/13455
10279         $GSS && skip_env "must run as gss disabled"
10280         $LCTL get_param -n llite.*.client_type | grep -q local ||
10281                 skip "must run as local client"
10282         [ "$UID" != 0 ] && skip "must run as root, not UID $UID"
10283
10284         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
10285         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
10286         rm -f $DIR/$tfile
10287         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
10288 }
10289 run_test 126 "check that the fsgid provided by the client is taken into account"
10290
10291 test_127a() { # bug 15521
10292         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10293
10294         $LFS setstripe -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
10295         $LCTL set_param osc.*.stats=0
10296         FSIZE=$((2048 * 1024))
10297         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
10298         cancel_lru_locks osc
10299         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
10300
10301         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
10302         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
10303                 echo "got $COUNT $NAME"
10304                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
10305                 eval $NAME=$COUNT || error "Wrong proc format"
10306
10307                 case $NAME in
10308                         read_bytes|write_bytes)
10309                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
10310                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
10311                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
10312                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
10313                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
10314                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
10315                                 error "sumsquare is too small: $SUMSQ"
10316                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
10317                                 error "sumsquare is too big: $SUMSQ"
10318                         ;;
10319                         *) ;;
10320                 esac
10321         done < $DIR/${tfile}.tmp
10322
10323         #check that we actually got some stats
10324         [ "$read_bytes" ] || error "Missing read_bytes stats"
10325         [ "$write_bytes" ] || error "Missing write_bytes stats"
10326         [ "$read_bytes" != 0 ] || error "no read done"
10327         [ "$write_bytes" != 0 ] || error "no write done"
10328 }
10329 run_test 127a "verify the client stats are sane"
10330
10331 test_127b() { # bug LU-333
10332         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10333         local name count samp unit min max sum sumsq
10334
10335         $LCTL set_param llite.*.stats=0
10336
10337         # perform 2 reads and writes so MAX is different from SUM.
10338         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10339         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1
10340         cancel_lru_locks osc
10341         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10342         dd if=$DIR/$tfile of=/dev/null bs=$PAGE_SIZE count=1
10343
10344         $LCTL get_param llite.*.stats | grep samples > $TMP/$tfile.tmp
10345         while read name count samp unit min max sum sumsq; do
10346                 echo "got $count $name"
10347                 eval $name=$count || error "Wrong proc format"
10348
10349                 case $name in
10350                 read_bytes)
10351                         [ $count -ne 2 ] && error "count is not 2: $count"
10352                         [ $min -ne $PAGE_SIZE ] &&
10353                                 error "min is not $PAGE_SIZE: $min"
10354                         [ $max -ne $PAGE_SIZE ] &&
10355                                 error "max is incorrect: $max"
10356                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10357                                 error "sum is wrong: $sum"
10358                         ;;
10359                 write_bytes)
10360                         [ $count -ne 2 ] && error "count is not 2: $count"
10361                         [ $min -ne $PAGE_SIZE ] &&
10362                                 error "min is not $PAGE_SIZE: $min"
10363                         [ $max -ne $PAGE_SIZE ] &&
10364                                 error "max is incorrect: $max"
10365                         [ $sum -ne $((PAGE_SIZE * 2)) ] &&
10366                                 error "sum is wrong: $sum"
10367                         ;;
10368                 *) ;;
10369                 esac
10370         done < $TMP/$tfile.tmp
10371
10372         #check that we actually got some stats
10373         [ "$read_bytes" ] || error "Missing read_bytes stats"
10374         [ "$write_bytes" ] || error "Missing write_bytes stats"
10375         [ "$read_bytes" != 0 ] || error "no read done"
10376         [ "$write_bytes" != 0 ] || error "no write done"
10377
10378         rm -f $TMP/${tfile}.tmp
10379 }
10380 run_test 127b "verify the llite client stats are sane"
10381
10382 test_128() { # bug 15212
10383         touch $DIR/$tfile
10384         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
10385                 find $DIR/$tfile
10386                 find $DIR/$tfile
10387         EOF
10388
10389         result=$(grep error $TMP/$tfile.log)
10390         rm -f $DIR/$tfile $TMP/$tfile.log
10391         [ -z "$result" ] ||
10392                 error "consecutive find's under interactive lfs failed"
10393 }
10394 run_test 128 "interactive lfs for 2 consecutive find's"
10395
10396 set_dir_limits () {
10397         local mntdev
10398         local canondev
10399         local node
10400
10401         local ldproc=/proc/fs/ldiskfs
10402         local facets=$(get_facets MDS)
10403
10404         for facet in ${facets//,/ }; do
10405                 canondev=$(ldiskfs_canon \
10406                            *.$(convert_facet2label $facet).mntdev $facet)
10407                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
10408                         ldproc=/sys/fs/ldiskfs
10409                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
10410                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
10411         done
10412 }
10413
10414 check_mds_dmesg() {
10415         local facets=$(get_facets MDS)
10416         for facet in ${facets//,/ }; do
10417                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
10418         done
10419         return 1
10420 }
10421
10422 test_129() {
10423         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10424         [[ $MDS1_VERSION -ge $(version_code 2.5.56) ]] ||
10425                 skip "Need MDS version with at least 2.5.56"
10426         if [ "$mds1_FSTYPE" != ldiskfs ]; then
10427                 skip_env "ldiskfs only test"
10428         fi
10429         remote_mds_nodsh && skip "remote MDS with nodsh"
10430
10431         local ENOSPC=28
10432         local EFBIG=27
10433         local has_warning=false
10434
10435         rm -rf $DIR/$tdir
10436         mkdir -p $DIR/$tdir
10437
10438         # block size of mds1
10439         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
10440         set_dir_limits $maxsize $maxsize
10441         local dirsize=$(stat -c%s "$DIR/$tdir")
10442         local nfiles=0
10443         while [[ $dirsize -le $maxsize ]]; do
10444                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
10445                 rc=$?
10446                 if ! $has_warning; then
10447                         check_mds_dmesg '"is approaching"' && has_warning=true
10448                 fi
10449                 # check two errors:
10450                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
10451                 # EFBIG for previous versions included in ldiskfs series
10452                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
10453                         set_dir_limits 0 0
10454                         echo "return code $rc received as expected"
10455
10456                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
10457                                 error_exit "create failed w/o dir size limit"
10458
10459                         check_mds_dmesg '"has reached"' ||
10460                                 error_exit "reached message should be output"
10461
10462                         [ $has_warning = "false" ] &&
10463                                 error_exit "warning message should be output"
10464
10465                         dirsize=$(stat -c%s "$DIR/$tdir")
10466
10467                         [[ $dirsize -ge $maxsize ]] && return 0
10468                         error_exit "current dir size $dirsize, " \
10469                                    "previous limit $maxsize"
10470                 elif [ $rc -ne 0 ]; then
10471                         set_dir_limits 0 0
10472                         error_exit "return $rc received instead of expected " \
10473                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
10474                 fi
10475                 nfiles=$((nfiles + 1))
10476                 dirsize=$(stat -c%s "$DIR/$tdir")
10477         done
10478
10479         set_dir_limits 0 0
10480         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
10481 }
10482 run_test 129 "test directory size limit ========================"
10483
10484 OLDIFS="$IFS"
10485 cleanup_130() {
10486         trap 0
10487         IFS="$OLDIFS"
10488 }
10489
10490 test_130a() {
10491         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10492         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10493
10494         trap cleanup_130 EXIT RETURN
10495
10496         local fm_file=$DIR/$tfile
10497         $LFS setstripe -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
10498         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
10499                 error "dd failed for $fm_file"
10500
10501         # LU-1795: test filefrag/FIEMAP once, even if unsupported
10502         filefrag -ves $fm_file
10503         RC=$?
10504         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10505                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10506         [ $RC != 0 ] && error "filefrag $fm_file failed"
10507
10508         filefrag_op=$(filefrag -ve -k $fm_file |
10509                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10510         lun=$($LFS getstripe -i $fm_file)
10511
10512         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
10513         IFS=$'\n'
10514         tot_len=0
10515         for line in $filefrag_op
10516         do
10517                 frag_lun=`echo $line | cut -d: -f5`
10518                 ext_len=`echo $line | cut -d: -f4`
10519                 if (( $frag_lun != $lun )); then
10520                         cleanup_130
10521                         error "FIEMAP on 1-stripe file($fm_file) failed"
10522                         return
10523                 fi
10524                 (( tot_len += ext_len ))
10525         done
10526
10527         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
10528                 cleanup_130
10529                 error "FIEMAP on 1-stripe file($fm_file) failed;"
10530                 return
10531         fi
10532
10533         cleanup_130
10534
10535         echo "FIEMAP on single striped file succeeded"
10536 }
10537 run_test 130a "FIEMAP (1-stripe file)"
10538
10539 test_130b() {
10540         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
10541
10542         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10543         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10544
10545         trap cleanup_130 EXIT RETURN
10546
10547         local fm_file=$DIR/$tfile
10548         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10549                         error "setstripe on $fm_file"
10550         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10551                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10552
10553         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
10554                 error "dd failed on $fm_file"
10555
10556         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10557         filefrag_op=$(filefrag -ve -k $fm_file |
10558                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10559
10560         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10561                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10562
10563         IFS=$'\n'
10564         tot_len=0
10565         num_luns=1
10566         for line in $filefrag_op
10567         do
10568                 frag_lun=$(echo $line | cut -d: -f5 |
10569                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10570                 ext_len=$(echo $line | cut -d: -f4)
10571                 if (( $frag_lun != $last_lun )); then
10572                         if (( tot_len != 1024 )); then
10573                                 cleanup_130
10574                                 error "FIEMAP on $fm_file failed; returned " \
10575                                 "len $tot_len for OST $last_lun instead of 1024"
10576                                 return
10577                         else
10578                                 (( num_luns += 1 ))
10579                                 tot_len=0
10580                         fi
10581                 fi
10582                 (( tot_len += ext_len ))
10583                 last_lun=$frag_lun
10584         done
10585         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
10586                 cleanup_130
10587                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10588                         "luns or wrong len for OST $last_lun"
10589                 return
10590         fi
10591
10592         cleanup_130
10593
10594         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
10595 }
10596 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
10597
10598 test_130c() {
10599         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10600
10601         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10602         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10603
10604         trap cleanup_130 EXIT RETURN
10605
10606         local fm_file=$DIR/$tfile
10607         $LFS setstripe -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
10608         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10609                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10610
10611         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
10612                         error "dd failed on $fm_file"
10613
10614         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10615         filefrag_op=$(filefrag -ve -k $fm_file |
10616                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10617
10618         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10619                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10620
10621         IFS=$'\n'
10622         tot_len=0
10623         num_luns=1
10624         for line in $filefrag_op
10625         do
10626                 frag_lun=$(echo $line | cut -d: -f5 |
10627                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10628                 ext_len=$(echo $line | cut -d: -f4)
10629                 if (( $frag_lun != $last_lun )); then
10630                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
10631                         if (( logical != 512 )); then
10632                                 cleanup_130
10633                                 error "FIEMAP on $fm_file failed; returned " \
10634                                 "logical start for lun $logical instead of 512"
10635                                 return
10636                         fi
10637                         if (( tot_len != 512 )); then
10638                                 cleanup_130
10639                                 error "FIEMAP on $fm_file failed; returned " \
10640                                 "len $tot_len for OST $last_lun instead of 1024"
10641                                 return
10642                         else
10643                                 (( num_luns += 1 ))
10644                                 tot_len=0
10645                         fi
10646                 fi
10647                 (( tot_len += ext_len ))
10648                 last_lun=$frag_lun
10649         done
10650         if (( num_luns != 2 || tot_len != 512 )); then
10651                 cleanup_130
10652                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10653                         "luns or wrong len for OST $last_lun"
10654                 return
10655         fi
10656
10657         cleanup_130
10658
10659         echo "FIEMAP on 2-stripe file with hole succeeded"
10660 }
10661 run_test 130c "FIEMAP (2-stripe file with hole)"
10662
10663 test_130d() {
10664         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs"
10665
10666         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10667         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10668
10669         trap cleanup_130 EXIT RETURN
10670
10671         local fm_file=$DIR/$tfile
10672         $LFS setstripe -S 65536 -c $OSTCOUNT $fm_file ||
10673                         error "setstripe on $fm_file"
10674         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10675                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10676
10677         local actual_stripe_count=$($LFS getstripe -c $fm_file)
10678         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
10679                 error "dd failed on $fm_file"
10680
10681         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10682         filefrag_op=$(filefrag -ve -k $fm_file |
10683                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10684
10685         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10686                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10687
10688         IFS=$'\n'
10689         tot_len=0
10690         num_luns=1
10691         for line in $filefrag_op
10692         do
10693                 frag_lun=$(echo $line | cut -d: -f5 |
10694                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10695                 ext_len=$(echo $line | cut -d: -f4)
10696                 if (( $frag_lun != $last_lun )); then
10697                         if (( tot_len != 1024 )); then
10698                                 cleanup_130
10699                                 error "FIEMAP on $fm_file failed; returned " \
10700                                 "len $tot_len for OST $last_lun instead of 1024"
10701                                 return
10702                         else
10703                                 (( num_luns += 1 ))
10704                                 tot_len=0
10705                         fi
10706                 fi
10707                 (( tot_len += ext_len ))
10708                 last_lun=$frag_lun
10709         done
10710         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
10711                 cleanup_130
10712                 error "FIEMAP on $fm_file failed; returned wrong number of " \
10713                         "luns or wrong len for OST $last_lun"
10714                 return
10715         fi
10716
10717         cleanup_130
10718
10719         echo "FIEMAP on N-stripe file succeeded"
10720 }
10721 run_test 130d "FIEMAP (N-stripe file)"
10722
10723 test_130e() {
10724         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs"
10725
10726         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10727         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP"
10728
10729         trap cleanup_130 EXIT RETURN
10730
10731         local fm_file=$DIR/$tfile
10732         $LFS setstripe -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
10733         [ "$(facet_fstype ost$(($($LFS getstripe -i $fm_file) + 1)))" = "zfs" ] &&
10734                 skip_env "ORI-366/LU-1941: FIEMAP unimplemented on ZFS"
10735
10736         NUM_BLKS=512
10737         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
10738         for ((i = 0; i < $NUM_BLKS; i++))
10739         do
10740                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
10741         done
10742
10743         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10744         filefrag_op=$(filefrag -ve -k $fm_file |
10745                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
10746
10747         last_lun=$(echo $filefrag_op | cut -d: -f5 |
10748                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10749
10750         IFS=$'\n'
10751         tot_len=0
10752         num_luns=1
10753         for line in $filefrag_op
10754         do
10755                 frag_lun=$(echo $line | cut -d: -f5 |
10756                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
10757                 ext_len=$(echo $line | cut -d: -f4)
10758                 if (( $frag_lun != $last_lun )); then
10759                         if (( tot_len != $EXPECTED_LEN )); then
10760                                 cleanup_130
10761                                 error "FIEMAP on $fm_file failed; returned " \
10762                                 "len $tot_len for OST $last_lun instead " \
10763                                 "of $EXPECTED_LEN"
10764                                 return
10765                         else
10766                                 (( num_luns += 1 ))
10767                                 tot_len=0
10768                         fi
10769                 fi
10770                 (( tot_len += ext_len ))
10771                 last_lun=$frag_lun
10772         done
10773         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
10774                 cleanup_130
10775                 error "FIEMAP on $fm_file failed; returned wrong number " \
10776                         "of luns or wrong len for OST $last_lun"
10777                 return
10778         fi
10779
10780         cleanup_130
10781
10782         echo "FIEMAP with continuation calls succeeded"
10783 }
10784 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
10785
10786 test_130f() {
10787         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
10788         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP"
10789
10790         local fm_file=$DIR/$tfile
10791         $MULTIOP $fm_file oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T33554432c ||
10792                 error "multiop create with lov_delay_create on $fm_file"
10793
10794         filefrag -ves $fm_file || error "filefrag $fm_file failed"
10795         filefrag_extents=$(filefrag -vek $fm_file |
10796                            awk '/extents? found/ { print $2 }')
10797         if [[ "$filefrag_extents" != "0" ]]; then
10798                 error "FIEMAP on $fm_file failed; " \
10799                       "returned $filefrag_extents expected 0"
10800         fi
10801
10802         rm -f $fm_file
10803 }
10804 run_test 130f "FIEMAP (unstriped file)"
10805
10806 # Test for writev/readv
10807 test_131a() {
10808         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
10809                 error "writev test failed"
10810         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
10811                 error "readv failed"
10812         rm -f $DIR/$tfile
10813 }
10814 run_test 131a "test iov's crossing stripe boundary for writev/readv"
10815
10816 test_131b() {
10817         local fsize=$((524288 + 1048576 + 1572864))
10818         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
10819                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10820                         error "append writev test failed"
10821
10822         ((fsize += 1572864 + 1048576))
10823         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
10824                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
10825                         error "append writev test failed"
10826         rm -f $DIR/$tfile
10827 }
10828 run_test 131b "test append writev"
10829
10830 test_131c() {
10831         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
10832         error "NOT PASS"
10833 }
10834 run_test 131c "test read/write on file w/o objects"
10835
10836 test_131d() {
10837         rwv -f $DIR/$tfile -w -n 1 1572864
10838         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
10839         if [ "$NOB" != 1572864 ]; then
10840                 error "Short read filed: read $NOB bytes instead of 1572864"
10841         fi
10842         rm -f $DIR/$tfile
10843 }
10844 run_test 131d "test short read"
10845
10846 test_131e() {
10847         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
10848         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
10849         error "read hitting hole failed"
10850         rm -f $DIR/$tfile
10851 }
10852 run_test 131e "test read hitting hole"
10853
10854 check_stats() {
10855         local facet=$1
10856         local op=$2
10857         local want=${3:-0}
10858         local res
10859
10860         case $facet in
10861         mds*) res=$(do_facet $facet \
10862                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
10863                  ;;
10864         ost*) res=$(do_facet $facet \
10865                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
10866                  ;;
10867         *) error "Wrong facet '$facet'" ;;
10868         esac
10869         [ "$res" ] || error "The counter for $op on $facet was not incremented"
10870         # if the argument $3 is zero, it means any stat increment is ok.
10871         if [[ $want -gt 0 ]]; then
10872                 local count=$(echo $res | awk '{ print $2 }')
10873                 [[ $count -ne $want ]] &&
10874                         error "The $op counter on $facet is $count, not $want"
10875         fi
10876 }
10877
10878 test_133a() {
10879         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10880         remote_ost_nodsh && skip "remote OST with nodsh"
10881         remote_mds_nodsh && skip "remote MDS with nodsh"
10882         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
10883                 skip_env "MDS doesn't support rename stats"
10884
10885         local testdir=$DIR/${tdir}/stats_testdir
10886
10887         mkdir -p $DIR/${tdir}
10888
10889         # clear stats.
10890         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10891         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10892
10893         # verify mdt stats first.
10894         mkdir ${testdir} || error "mkdir failed"
10895         check_stats $SINGLEMDS "mkdir" 1
10896         touch ${testdir}/${tfile} || error "touch failed"
10897         check_stats $SINGLEMDS "open" 1
10898         check_stats $SINGLEMDS "close" 1
10899         [ $MDS1_VERSION -ge $(version_code 2.8.54) ] && {
10900                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
10901                 check_stats $SINGLEMDS "mknod" 2
10902         }
10903         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
10904         check_stats $SINGLEMDS "unlink" 1
10905         rm -f ${testdir}/${tfile} || error "file remove failed"
10906         check_stats $SINGLEMDS "unlink" 2
10907
10908         # remove working dir and check mdt stats again.
10909         rmdir ${testdir} || error "rmdir failed"
10910         check_stats $SINGLEMDS "rmdir" 1
10911
10912         local testdir1=$DIR/${tdir}/stats_testdir1
10913         mkdir -p ${testdir}
10914         mkdir -p ${testdir1}
10915         touch ${testdir1}/test1
10916         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
10917         check_stats $SINGLEMDS "crossdir_rename" 1
10918
10919         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
10920         check_stats $SINGLEMDS "samedir_rename" 1
10921
10922         rm -rf $DIR/${tdir}
10923 }
10924 run_test 133a "Verifying MDT stats ========================================"
10925
10926 test_133b() {
10927         local res
10928
10929         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10930         remote_ost_nodsh && skip "remote OST with nodsh"
10931         remote_mds_nodsh && skip "remote MDS with nodsh"
10932
10933         local testdir=$DIR/${tdir}/stats_testdir
10934
10935         mkdir -p ${testdir} || error "mkdir failed"
10936         touch ${testdir}/${tfile} || error "touch failed"
10937         cancel_lru_locks mdc
10938
10939         # clear stats.
10940         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10941         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
10942
10943         # extra mdt stats verification.
10944         chmod 444 ${testdir}/${tfile} || error "chmod failed"
10945         check_stats $SINGLEMDS "setattr" 1
10946         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10947         if [ $MDS1_VERSION -ne $(version_code 2.2.0) ]
10948         then            # LU-1740
10949                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
10950                 check_stats $SINGLEMDS "getattr" 1
10951         fi
10952         rm -rf $DIR/${tdir}
10953
10954         # when DNE is enabled, MDT uses STATFS RPC to ping other targets
10955         # so the check below is not reliable
10956         [ $MDSCOUNT -eq 1 ] || return 0
10957
10958         # Sleep to avoid a cached response.
10959         #define OBD_STATFS_CACHE_SECONDS 1
10960         sleep 2
10961         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10962         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10963         $LFS df || error "lfs failed"
10964         check_stats $SINGLEMDS "statfs" 1
10965
10966         # check aggregated statfs (LU-10018)
10967         [ $MDS1_VERSION -lt $(version_code 2.11.54) ] &&
10968                 return 0
10969         [ $CLIENT_VERSION -lt $(version_code 2.11.54) ] &&
10970                 return 0
10971         sleep 2
10972         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
10973         do_facet ost1 $LCTL set_param obdfilter.*.exports.*.stats=clear
10974         df $DIR
10975         check_stats $SINGLEMDS "statfs" 1
10976
10977         # We want to check that the client didn't send OST_STATFS to
10978         # ost1 but the MDT also uses OST_STATFS for precreate. So some
10979         # extra care is needed here.
10980         if remote_mds; then
10981                 local nid=$($LCTL list_nids | head -1 | sed  "s/\./\\\./g")
10982                 local param="obdfilter.$FSNAME-OST0000.exports.'$nid'.stats"
10983
10984                 res=$(do_facet ost1 $LCTL get_param $param | grep statfs)
10985                 [ "$res" ] && error "OST got STATFS"
10986         fi
10987
10988         return 0
10989 }
10990 run_test 133b "Verifying extra MDT stats =================================="
10991
10992 test_133c() {
10993         [ $PARALLEL == "yes" ] && skip "skip parallel run"
10994         remote_ost_nodsh && skip "remote OST with nodsh"
10995         remote_mds_nodsh && skip "remote MDS with nodsh"
10996
10997         local testdir=$DIR/$tdir/stats_testdir
10998
10999         test_mkdir -p $testdir
11000
11001         # verify obdfilter stats.
11002         $LFS setstripe -c 1 -i 0 $testdir/$tfile
11003         sync
11004         cancel_lru_locks osc
11005         wait_delete_completed
11006
11007         # clear stats.
11008         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
11009         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
11010
11011         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
11012                 error "dd failed"
11013         sync
11014         cancel_lru_locks osc
11015         check_stats ost1 "write" 1
11016
11017         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
11018         check_stats ost1 "read" 1
11019
11020         > $testdir/$tfile || error "truncate failed"
11021         check_stats ost1 "punch" 1
11022
11023         rm -f $testdir/$tfile || error "file remove failed"
11024         wait_delete_completed
11025         check_stats ost1 "destroy" 1
11026
11027         rm -rf $DIR/$tdir
11028 }
11029 run_test 133c "Verifying OST stats ========================================"
11030
11031 order_2() {
11032         local value=$1
11033         local orig=$value
11034         local order=1
11035
11036         while [ $value -ge 2 ]; do
11037                 order=$((order*2))
11038                 value=$((value/2))
11039         done
11040
11041         if [ $orig -gt $order ]; then
11042                 order=$((order*2))
11043         fi
11044         echo $order
11045 }
11046
11047 size_in_KMGT() {
11048     local value=$1
11049     local size=('K' 'M' 'G' 'T');
11050     local i=0
11051     local size_string=$value
11052
11053     while [ $value -ge 1024 ]; do
11054         if [ $i -gt 3 ]; then
11055             #T is the biggest unit we get here, if that is bigger,
11056             #just return XXXT
11057             size_string=${value}T
11058             break
11059         fi
11060         value=$((value >> 10))
11061         if [ $value -lt 1024 ]; then
11062             size_string=${value}${size[$i]}
11063             break
11064         fi
11065         i=$((i + 1))
11066     done
11067
11068     echo $size_string
11069 }
11070
11071 get_rename_size() {
11072         local size=$1
11073         local context=${2:-.}
11074         local sample=$(do_facet $SINGLEMDS $LCTL \
11075                 get_param mdt.$FSNAME-MDT0000.rename_stats |
11076                 grep -A1 $context |
11077                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
11078         echo $sample
11079 }
11080
11081 test_133d() {
11082         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11083         remote_ost_nodsh && skip "remote OST with nodsh"
11084         remote_mds_nodsh && skip "remote MDS with nodsh"
11085         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
11086                 skip_env "MDS doesn't support rename stats"
11087
11088         local testdir1=$DIR/${tdir}/stats_testdir1
11089         local testdir2=$DIR/${tdir}/stats_testdir2
11090         mkdir -p $DIR/${tdir}
11091
11092         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11093
11094         lfs mkdir -i 0 -c 1 ${testdir1} || error "mkdir failed"
11095         lfs mkdir -i 0 -c 1 ${testdir2} || error "mkdir failed"
11096
11097         createmany -o $testdir1/test 512 || error "createmany failed"
11098
11099         # check samedir rename size
11100         mv ${testdir1}/test0 ${testdir1}/test_0
11101
11102         local testdir1_size=$(ls -l $DIR/${tdir} |
11103                 awk '/stats_testdir1/ {print $5}')
11104         local testdir2_size=$(ls -l $DIR/${tdir} |
11105                 awk '/stats_testdir2/ {print $5}')
11106
11107         testdir1_size=$(order_2 $testdir1_size)
11108         testdir2_size=$(order_2 $testdir2_size)
11109
11110         testdir1_size=$(size_in_KMGT $testdir1_size)
11111         testdir2_size=$(size_in_KMGT $testdir2_size)
11112
11113         echo "source rename dir size: ${testdir1_size}"
11114         echo "target rename dir size: ${testdir2_size}"
11115
11116         local cmd="do_facet $SINGLEMDS $LCTL "
11117         cmd+="get_param mdt.$FSNAME-MDT0000.rename_stats"
11118
11119         eval $cmd || error "$cmd failed"
11120         local samedir=$($cmd | grep 'same_dir')
11121         local same_sample=$(get_rename_size $testdir1_size)
11122         [ -z "$samedir" ] && error "samedir_rename_size count error"
11123         [[ $same_sample -eq 1 ]] ||
11124                 error "samedir_rename_size error $same_sample"
11125         echo "Check same dir rename stats success"
11126
11127         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
11128
11129         # check crossdir rename size
11130         mv ${testdir1}/test_0 ${testdir2}/test_0
11131
11132         testdir1_size=$(ls -l $DIR/${tdir} |
11133                 awk '/stats_testdir1/ {print $5}')
11134         testdir2_size=$(ls -l $DIR/${tdir} |
11135                 awk '/stats_testdir2/ {print $5}')
11136
11137         testdir1_size=$(order_2 $testdir1_size)
11138         testdir2_size=$(order_2 $testdir2_size)
11139
11140         testdir1_size=$(size_in_KMGT $testdir1_size)
11141         testdir2_size=$(size_in_KMGT $testdir2_size)
11142
11143         echo "source rename dir size: ${testdir1_size}"
11144         echo "target rename dir size: ${testdir2_size}"
11145
11146         eval $cmd || error "$cmd failed"
11147         local crossdir=$($cmd | grep 'crossdir')
11148         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
11149         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
11150         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
11151         [[ $src_sample -eq 1 ]] ||
11152                 error "crossdir_rename_size error $src_sample"
11153         [[ $tgt_sample -eq 1 ]] ||
11154                 error "crossdir_rename_size error $tgt_sample"
11155         echo "Check cross dir rename stats success"
11156         rm -rf $DIR/${tdir}
11157 }
11158 run_test 133d "Verifying rename_stats ========================================"
11159
11160 test_133e() {
11161         remote_mds_nodsh && skip "remote MDS with nodsh"
11162         remote_ost_nodsh && skip "remote OST with nodsh"
11163         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11164
11165         local testdir=$DIR/${tdir}/stats_testdir
11166         local ctr f0 f1 bs=32768 count=42 sum
11167
11168         mkdir -p ${testdir} || error "mkdir failed"
11169
11170         $LFS setstripe -c 1 -i 0 ${testdir}/${tfile}
11171
11172         for ctr in {write,read}_bytes; do
11173                 sync
11174                 cancel_lru_locks osc
11175
11176                 do_facet ost1 $LCTL set_param -n \
11177                         "obdfilter.*.exports.clear=clear"
11178
11179                 if [ $ctr = write_bytes ]; then
11180                         f0=/dev/zero
11181                         f1=${testdir}/${tfile}
11182                 else
11183                         f0=${testdir}/${tfile}
11184                         f1=/dev/null
11185                 fi
11186
11187                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
11188                         error "dd failed"
11189                 sync
11190                 cancel_lru_locks osc
11191
11192                 sum=$(do_facet ost1 $LCTL get_param \
11193                         "obdfilter.*.exports.*.stats" |
11194                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
11195                                 $1 == ctr { sum += $7 }
11196                                 END { printf("%0.0f", sum) }')
11197
11198                 if ((sum != bs * count)); then
11199                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
11200                 fi
11201         done
11202
11203         rm -rf $DIR/${tdir}
11204 }
11205 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
11206
11207 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
11208
11209 # Some versions of find (4.5.11, 4.5.14) included in CentOS 7.3-7.5 do
11210 # not honor the -ignore_readdir_race option correctly. So we call
11211 # error_ignore() rather than error() in these cases. See LU-11152.
11212 error_133() {
11213         if (find --version; do_facet mds1 find --version) |
11214                 grep -q '\b4\.5\.1[1-4]\b'; then
11215                 error_ignore LU-11152 "$@"
11216         else
11217                 error "$@"
11218         fi
11219 }
11220
11221 test_133f() {
11222         # First without trusting modes.
11223         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
11224         echo "proc_dirs='$proc_dirs'"
11225         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
11226         find $proc_dirs -exec cat '{}' \; &> /dev/null
11227
11228         # Second verifying readability.
11229         $LCTL get_param -R '*' &> /dev/null
11230
11231         # Verifing writability with badarea_io.
11232         find $proc_dirs \
11233                 -ignore_readdir_race \
11234                 -type f \
11235                 -not -name force_lbug \
11236                 -not -name changelog_mask \
11237                 -exec badarea_io '{}' \; ||
11238                         error_133 "find $proc_dirs failed"
11239 }
11240 run_test 133f "Check reads/writes of client lustre proc files with bad area io"
11241
11242 test_133g() {
11243         remote_mds_nodsh && skip "remote MDS with nodsh"
11244         remote_ost_nodsh && skip "remote OST with nodsh"
11245
11246         # eventually, this can also be replaced with "lctl get_param -R",
11247         # but not until that option is always available on the server
11248         local facet
11249         for facet in mds1 ost1; do
11250                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
11251                         skip_noexit "Too old lustre on $facet"
11252                 local facet_proc_dirs=$(do_facet $facet \
11253                                         \\\ls -d $proc_regexp 2>/dev/null)
11254                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11255                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11256                 do_facet $facet find $facet_proc_dirs \
11257                         ! -name req_history \
11258                         -exec cat '{}' \\\; &> /dev/null
11259
11260                 do_facet $facet find $facet_proc_dirs \
11261                         ! -name req_history \
11262                         -type f \
11263                         -exec cat '{}' \\\; &> /dev/null ||
11264                                 error "proc file read failed"
11265
11266                 do_facet $facet find $facet_proc_dirs \
11267                         -ignore_readdir_race \
11268                         -type f \
11269                         -not -name force_lbug \
11270                         -not -name changelog_mask \
11271                         -exec badarea_io '{}' \\\; ||
11272                                 error_133 "$facet find $facet_proc_dirs failed"
11273         done
11274
11275         # remount the FS in case writes/reads /proc break the FS
11276         cleanup || error "failed to unmount"
11277         setup || error "failed to setup"
11278         true
11279 }
11280 run_test 133g "Check reads/writes of server lustre proc files with bad area io"
11281
11282 test_133h() {
11283         remote_mds_nodsh && skip "remote MDS with nodsh"
11284         remote_ost_nodsh && skip "remote OST with nodsh"
11285         [[ $MDS1_VERSION -lt $(version_code 2.9.54) ]] &&
11286                 skip "Need MDS version at least 2.9.54"
11287
11288         local facet
11289
11290         for facet in client mds1 ost1; do
11291                 local facet_proc_dirs=$(do_facet $facet \
11292                                         \\\ls -d $proc_regexp 2> /dev/null)
11293                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
11294                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
11295                 # Get the list of files that are missing the terminating newline
11296                 local missing=($(do_facet $facet \
11297                         find ${facet_proc_dirs} -type f \|              \
11298                                 while read F\; do                       \
11299                                         awk -v FS='\v' -v RS='\v\v'     \
11300                                         "'END { if(NR>0 &&              \
11301                                         \\\$NF !~ /.*\\\n\$/)           \
11302                                                 print FILENAME}'"       \
11303                                         '\$F'\;                         \
11304                                 done 2>/dev/null))
11305                 [ ${#missing[*]} -eq 0 ] ||
11306                         error "files do not end with newline: ${missing[*]}"
11307         done
11308 }
11309 run_test 133h "Proc files should end with newlines"
11310
11311 test_134a() {
11312         remote_mds_nodsh && skip "remote MDS with nodsh"
11313         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11314                 skip "Need MDS version at least 2.7.54"
11315
11316         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11317         cancel_lru_locks mdc
11318
11319         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
11320         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11321         [ $unused -eq 0 ] || error "$unused locks are not cleared"
11322
11323         local nr=1000
11324         createmany -o $DIR/$tdir/f $nr ||
11325                 error "failed to create $nr files in $DIR/$tdir"
11326         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
11327
11328         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
11329         do_facet mds1 $LCTL set_param fail_loc=0x327
11330         do_facet mds1 $LCTL set_param fail_val=500
11331         touch $DIR/$tdir/m
11332
11333         echo "sleep 10 seconds ..."
11334         sleep 10
11335         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
11336
11337         do_facet mds1 $LCTL set_param fail_loc=0
11338         do_facet mds1 $LCTL set_param fail_val=0
11339         [ $lck_cnt -lt $unused ] ||
11340                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
11341
11342         rm $DIR/$tdir/m
11343         unlinkmany $DIR/$tdir/f $nr
11344 }
11345 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
11346
11347 test_134b() {
11348         remote_mds_nodsh && skip "remote MDS with nodsh"
11349         [[ $MDS1_VERSION -lt $(version_code 2.7.54) ]] &&
11350                 skip "Need MDS version at least 2.7.54"
11351
11352         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
11353         cancel_lru_locks mdc
11354
11355         local low_wm=$(do_facet mds1 $LCTL get_param -n \
11356                         ldlm.lock_reclaim_threshold_mb)
11357         # disable reclaim temporarily
11358         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
11359
11360         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
11361         do_facet mds1 $LCTL set_param fail_loc=0x328
11362         do_facet mds1 $LCTL set_param fail_val=500
11363
11364         $LCTL set_param debug=+trace
11365
11366         local nr=600
11367         createmany -o $DIR/$tdir/f $nr &
11368         local create_pid=$!
11369
11370         echo "Sleep $TIMEOUT seconds ..."
11371         sleep $TIMEOUT
11372         if ! ps -p $create_pid  > /dev/null 2>&1; then
11373                 do_facet mds1 $LCTL set_param fail_loc=0
11374                 do_facet mds1 $LCTL set_param fail_val=0
11375                 do_facet mds1 $LCTL set_param \
11376                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
11377                 error "createmany finished incorrectly!"
11378         fi
11379         do_facet mds1 $LCTL set_param fail_loc=0
11380         do_facet mds1 $LCTL set_param fail_val=0
11381         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
11382         wait $create_pid || return 1
11383
11384         unlinkmany $DIR/$tdir/f $nr
11385 }
11386 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
11387
11388 test_140() { #bug-17379
11389         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11390
11391         test_mkdir $DIR/$tdir
11392         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
11393         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
11394
11395         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
11396         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
11397         local i=0
11398         while i=$((i + 1)); do
11399                 test_mkdir $i
11400                 cd $i || error "Changing to $i"
11401                 ln -s ../stat stat || error "Creating stat symlink"
11402                 # Read the symlink until ELOOP present,
11403                 # not LBUGing the system is considered success,
11404                 # we didn't overrun the stack.
11405                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
11406                 if [ $ret -ne 0 ]; then
11407                         if [ $ret -eq 40 ]; then
11408                                 break  # -ELOOP
11409                         else
11410                                 error "Open stat symlink"
11411                                         return
11412                         fi
11413                 fi
11414         done
11415         i=$((i - 1))
11416         echo "The symlink depth = $i"
11417         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
11418                                         error "Invalid symlink depth"
11419
11420         # Test recursive symlink
11421         ln -s symlink_self symlink_self
11422         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
11423         echo "open symlink_self returns $ret"
11424         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
11425 }
11426 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
11427
11428 test_150() {
11429         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11430
11431         local TF="$TMP/$tfile"
11432
11433         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11434         cp $TF $DIR/$tfile
11435         cancel_lru_locks $OSC
11436         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
11437         remount_client $MOUNT
11438         df -P $MOUNT
11439         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
11440
11441         $TRUNCATE $TF 6000
11442         $TRUNCATE $DIR/$tfile 6000
11443         cancel_lru_locks $OSC
11444         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
11445
11446         echo "12345" >>$TF
11447         echo "12345" >>$DIR/$tfile
11448         cancel_lru_locks $OSC
11449         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
11450
11451         echo "12345" >>$TF
11452         echo "12345" >>$DIR/$tfile
11453         cancel_lru_locks $OSC
11454         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
11455
11456         rm -f $TF
11457         true
11458 }
11459 run_test 150 "truncate/append tests"
11460
11461 #LU-2902 roc_hit was not able to read all values from lproc
11462 function roc_hit_init() {
11463         local list=$(comma_list $(osts_nodes))
11464         local dir=$DIR/$tdir-check
11465         local file=$dir/$tfile
11466         local BEFORE
11467         local AFTER
11468         local idx
11469
11470         test_mkdir $dir
11471         #use setstripe to do a write to every ost
11472         for i in $(seq 0 $((OSTCOUNT-1))); do
11473                 $LFS setstripe -c 1 -i $i $dir || error "$LFS setstripe $file failed"
11474                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
11475                 idx=$(printf %04x $i)
11476                 BEFORE=$(get_osd_param $list *OST*$idx stats |
11477                         awk '$1 == "cache_access" {sum += $7}
11478                                 END { printf("%0.0f", sum) }')
11479
11480                 cancel_lru_locks osc
11481                 cat $file >/dev/null
11482
11483                 AFTER=$(get_osd_param $list *OST*$idx stats |
11484                         awk '$1 == "cache_access" {sum += $7}
11485                                 END { printf("%0.0f", sum) }')
11486
11487                 echo BEFORE:$BEFORE AFTER:$AFTER
11488                 if ! let "AFTER - BEFORE == 4"; then
11489                         rm -rf $dir
11490                         error "roc_hit is not safe to use"
11491                 fi
11492                 rm $file
11493         done
11494
11495         rm -rf $dir
11496 }
11497
11498 function roc_hit() {
11499         local list=$(comma_list $(osts_nodes))
11500         echo $(get_osd_param $list '' stats |
11501                 awk '$1 == "cache_hit" {sum += $7}
11502                         END { printf("%0.0f", sum) }')
11503 }
11504
11505 function set_cache() {
11506         local on=1
11507
11508         if [ "$2" == "off" ]; then
11509                 on=0;
11510         fi
11511         local list=$(comma_list $(osts_nodes))
11512         set_osd_param $list '' $1_cache_enable $on
11513
11514         cancel_lru_locks osc
11515 }
11516
11517 test_151() {
11518         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11519         remote_ost_nodsh && skip "remote OST with nodsh"
11520
11521         local CPAGES=3
11522         local list=$(comma_list $(osts_nodes))
11523
11524         # check whether obdfilter is cache capable at all
11525         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
11526                 skip "not cache-capable obdfilter"
11527         fi
11528
11529         # check cache is enabled on all obdfilters
11530         if get_osd_param $list '' read_cache_enable | grep 0; then
11531                 skip "oss cache is disabled"
11532         fi
11533
11534         set_osd_param $list '' writethrough_cache_enable 1
11535
11536         # check write cache is enabled on all obdfilters
11537         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
11538                 skip "oss write cache is NOT enabled"
11539         fi
11540
11541         roc_hit_init
11542
11543         #define OBD_FAIL_OBD_NO_LRU  0x609
11544         do_nodes $list $LCTL set_param fail_loc=0x609
11545
11546         # pages should be in the case right after write
11547         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
11548                 error "dd failed"
11549
11550         local BEFORE=$(roc_hit)
11551         cancel_lru_locks osc
11552         cat $DIR/$tfile >/dev/null
11553         local AFTER=$(roc_hit)
11554
11555         do_nodes $list $LCTL set_param fail_loc=0
11556
11557         if ! let "AFTER - BEFORE == CPAGES"; then
11558                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11559         fi
11560
11561         # the following read invalidates the cache
11562         cancel_lru_locks osc
11563         set_osd_param $list '' read_cache_enable 0
11564         cat $DIR/$tfile >/dev/null
11565
11566         # now data shouldn't be found in the cache
11567         BEFORE=$(roc_hit)
11568         cancel_lru_locks osc
11569         cat $DIR/$tfile >/dev/null
11570         AFTER=$(roc_hit)
11571         if let "AFTER - BEFORE != 0"; then
11572                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11573         fi
11574
11575         set_osd_param $list '' read_cache_enable 1
11576         rm -f $DIR/$tfile
11577 }
11578 run_test 151 "test cache on oss and controls ==============================="
11579
11580 test_152() {
11581         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11582
11583         local TF="$TMP/$tfile"
11584
11585         # simulate ENOMEM during write
11586 #define OBD_FAIL_OST_NOMEM      0x226
11587         lctl set_param fail_loc=0x80000226
11588         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
11589         cp $TF $DIR/$tfile
11590         sync || error "sync failed"
11591         lctl set_param fail_loc=0
11592
11593         # discard client's cache
11594         cancel_lru_locks osc
11595
11596         # simulate ENOMEM during read
11597         lctl set_param fail_loc=0x80000226
11598         cmp $TF $DIR/$tfile || error "cmp failed"
11599         lctl set_param fail_loc=0
11600
11601         rm -f $TF
11602 }
11603 run_test 152 "test read/write with enomem ============================"
11604
11605 test_153() {
11606         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
11607 }
11608 run_test 153 "test if fdatasync does not crash ======================="
11609
11610 dot_lustre_fid_permission_check() {
11611         local fid=$1
11612         local ffid=$MOUNT/.lustre/fid/$fid
11613         local test_dir=$2
11614
11615         echo "stat fid $fid"
11616         stat $ffid > /dev/null || error "stat $ffid failed."
11617         echo "touch fid $fid"
11618         touch $ffid || error "touch $ffid failed."
11619         echo "write to fid $fid"
11620         cat /etc/hosts > $ffid || error "write $ffid failed."
11621         echo "read fid $fid"
11622         diff /etc/hosts $ffid || error "read $ffid failed."
11623         echo "append write to fid $fid"
11624         cat /etc/hosts >> $ffid || error "append write $ffid failed."
11625         echo "rename fid $fid"
11626         mv $ffid $test_dir/$tfile.1 &&
11627                 error "rename $ffid to $tfile.1 should fail."
11628         touch $test_dir/$tfile.1
11629         mv $test_dir/$tfile.1 $ffid &&
11630                 error "rename $tfile.1 to $ffid should fail."
11631         rm -f $test_dir/$tfile.1
11632         echo "truncate fid $fid"
11633         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
11634         echo "link fid $fid"
11635         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
11636         if [[ $($LCTL get_param -n mdc.*-mdc-*.connect_flags) =~ acl ]]; then
11637                 echo "setfacl fid $fid"
11638                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
11639                 echo "getfacl fid $fid"
11640                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
11641         fi
11642         echo "unlink fid $fid"
11643         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
11644         echo "mknod fid $fid"
11645         mknod $ffid c 1 3 && error "mknod $ffid should fail."
11646
11647         fid=[0xf00000400:0x1:0x0]
11648         ffid=$MOUNT/.lustre/fid/$fid
11649
11650         echo "stat non-exist fid $fid"
11651         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
11652         echo "write to non-exist fid $fid"
11653         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
11654         echo "link new fid $fid"
11655         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
11656
11657         mkdir -p $test_dir/$tdir
11658         touch $test_dir/$tdir/$tfile
11659         fid=$($LFS path2fid $test_dir/$tdir)
11660         rc=$?
11661         [ $rc -ne 0 ] &&
11662                 error "error: could not get fid for $test_dir/$dir/$tfile."
11663
11664         ffid=$MOUNT/.lustre/fid/$fid
11665
11666         echo "ls $fid"
11667         ls $ffid > /dev/null || error "ls $ffid failed."
11668         echo "touch $fid/$tfile.1"
11669         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
11670
11671         echo "touch $MOUNT/.lustre/fid/$tfile"
11672         touch $MOUNT/.lustre/fid/$tfile && \
11673                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
11674
11675         echo "setxattr to $MOUNT/.lustre/fid"
11676         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
11677
11678         echo "listxattr for $MOUNT/.lustre/fid"
11679         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
11680
11681         echo "delxattr from $MOUNT/.lustre/fid"
11682         setfattr -x trusted.name1 $MOUNT/.lustre/fid
11683
11684         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
11685         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
11686                 error "touch invalid fid should fail."
11687
11688         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
11689         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
11690                 error "touch non-normal fid should fail."
11691
11692         echo "rename $tdir to $MOUNT/.lustre/fid"
11693         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
11694                 error "rename to $MOUNT/.lustre/fid should fail."
11695
11696         if [ $MDS1_VERSION -ge $(version_code 2.3.51) ]
11697         then            # LU-3547
11698                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
11699                 local new_obf_mode=777
11700
11701                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
11702                 chmod $new_obf_mode $DIR/.lustre/fid ||
11703                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
11704
11705                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
11706                 [ $obf_mode -eq $new_obf_mode ] ||
11707                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
11708
11709                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
11710                 chmod $old_obf_mode $DIR/.lustre/fid ||
11711                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
11712         fi
11713
11714         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
11715         fid=$($LFS path2fid $test_dir/$tfile-2)
11716
11717         if [ $MDS1_VERSION -ge $(version_code 2.6.50) ]
11718         then # LU-5424
11719                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
11720                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
11721                         error "create lov data thru .lustre failed"
11722         fi
11723         echo "cp /etc/passwd $test_dir/$tfile-2"
11724         cp /etc/passwd $test_dir/$tfile-2 ||
11725                 error "copy to $test_dir/$tfile-2 failed."
11726         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
11727         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
11728                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
11729
11730         rm -rf $test_dir/tfile.lnk
11731         rm -rf $test_dir/$tfile-2
11732 }
11733
11734 test_154A() {
11735         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11736                 skip "Need MDS version at least 2.4.1"
11737
11738         local tf=$DIR/$tfile
11739         touch $tf
11740
11741         local fid=$($LFS path2fid $tf)
11742         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
11743
11744         # check that we get the same pathname back
11745         local found=$($LFS fid2path $MOUNT "$fid")
11746         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
11747         [ "$found" == "$tf" ] ||
11748                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
11749 }
11750 run_test 154A "lfs path2fid and fid2path basic checks"
11751
11752 test_154B() {
11753         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11754                 skip "Need MDS version at least 2.4.1"
11755
11756         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11757         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11758         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
11759         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
11760
11761         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
11762         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
11763
11764         # check that we get the same pathname
11765         echo "PFID: $PFID, name: $name"
11766         local FOUND=$($LFS fid2path $MOUNT "$PFID")
11767         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
11768         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
11769                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
11770
11771         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
11772 }
11773 run_test 154B "verify the ll_decode_linkea tool"
11774
11775 test_154a() {
11776         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11777         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11778         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11779                 skip "Need MDS version at least 2.2.51"
11780         [ -z "$(which setfacl)" ] && skip_env "must have setfacl tool"
11781
11782         cp /etc/hosts $DIR/$tfile
11783
11784         fid=$($LFS path2fid $DIR/$tfile)
11785         rc=$?
11786         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
11787
11788         dot_lustre_fid_permission_check "$fid" $DIR ||
11789                 error "dot lustre permission check $fid failed"
11790
11791         ls -a $MOUNT | grep "\.lustre" && error ".lustre should not be listed"
11792
11793         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
11794
11795         touch $MOUNT/.lustre/file &&
11796                 error "creation is not allowed under .lustre"
11797
11798         mkdir $MOUNT/.lustre/dir &&
11799                 error "mkdir is not allowed under .lustre"
11800
11801         rm -rf $DIR/$tfile
11802 }
11803 run_test 154a "Open-by-FID"
11804
11805 test_154b() {
11806         [ $PARALLEL == "yes" ] && skip "skip parallel run"
11807         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11808         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
11809         [[ $MDS1_VERSION -ge $(version_code 2.2.51) ]] ||
11810                 skip "Need MDS version at least 2.2.51"
11811
11812         local remote_dir=$DIR/$tdir/remote_dir
11813         local MDTIDX=1
11814         local rc=0
11815
11816         mkdir -p $DIR/$tdir
11817         $LFS mkdir -i $MDTIDX $remote_dir ||
11818                 error "create remote directory failed"
11819
11820         cp /etc/hosts $remote_dir/$tfile
11821
11822         fid=$($LFS path2fid $remote_dir/$tfile)
11823         rc=$?
11824         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
11825
11826         dot_lustre_fid_permission_check "$fid" $remote_dir ||
11827                 error "dot lustre permission check $fid failed"
11828         rm -rf $DIR/$tdir
11829 }
11830 run_test 154b "Open-by-FID for remote directory"
11831
11832 test_154c() {
11833         [[ $MDS1_VERSION -lt $(version_code 2.4.1) ]] &&
11834                 skip "Need MDS version at least 2.4.1"
11835
11836         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
11837         local FID1=$($LFS path2fid $DIR/$tfile.1)
11838         local FID2=$($LFS path2fid $DIR/$tfile.2)
11839         local FID3=$($LFS path2fid $DIR/$tfile.3)
11840
11841         local N=1
11842         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
11843                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
11844                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
11845                 local want=FID$N
11846                 [ "$FID" = "${!want}" ] ||
11847                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
11848                 N=$((N + 1))
11849         done
11850
11851         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
11852         do
11853                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
11854                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
11855                 N=$((N + 1))
11856         done
11857 }
11858 run_test 154c "lfs path2fid and fid2path multiple arguments"
11859
11860 test_154d() {
11861         remote_mds_nodsh && skip "remote MDS with nodsh"
11862         [[ $MDS1_VERSION -lt $(version_code 2.5.53) ]] &&
11863                 skip "Need MDS version at least 2.5.53"
11864
11865         if remote_mds; then
11866                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
11867         else
11868                 nid="0@lo"
11869         fi
11870         local proc_ofile="mdt.*.exports.'$nid'.open_files"
11871         local fd
11872         local cmd
11873
11874         rm -f $DIR/$tfile
11875         touch $DIR/$tfile
11876
11877         local fid=$($LFS path2fid $DIR/$tfile)
11878         # Open the file
11879         fd=$(free_fd)
11880         cmd="exec $fd<$DIR/$tfile"
11881         eval $cmd
11882         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
11883         echo "$fid_list" | grep "$fid"
11884         rc=$?
11885
11886         cmd="exec $fd>/dev/null"
11887         eval $cmd
11888         if [ $rc -ne 0 ]; then
11889                 error "FID $fid not found in open files list $fid_list"
11890         fi
11891 }
11892 run_test 154d "Verify open file fid"
11893
11894 test_154e()
11895 {
11896         [[ $MDS1_VERSION -lt $(version_code 2.6.50) ]] &&
11897                 skip "Need MDS version at least 2.6.50"
11898
11899         if ls -a $MOUNT | grep -q '^\.lustre$'; then
11900                 error ".lustre returned by readdir"
11901         fi
11902 }
11903 run_test 154e ".lustre is not returned by readdir"
11904
11905 test_154f() {
11906         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11907
11908         # create parent directory on a single MDT to avoid cross-MDT hardlinks
11909         test_mkdir -p -c1 $DIR/$tdir/d
11910         # test dirs inherit from its stripe
11911         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
11912         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
11913         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
11914         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
11915         touch $DIR/f
11916
11917         # get fid of parents
11918         local FID0=$($LFS path2fid $DIR/$tdir/d)
11919         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
11920         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
11921         local FID3=$($LFS path2fid $DIR)
11922
11923         # check that path2fid --parents returns expected <parent_fid>/name
11924         # 1) test for a directory (single parent)
11925         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
11926         [ "$parent" == "$FID0/foo1" ] ||
11927                 error "expected parent: $FID0/foo1, got: $parent"
11928
11929         # 2) test for a file with nlink > 1 (multiple parents)
11930         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
11931         echo "$parent" | grep -F "$FID1/$tfile" ||
11932                 error "$FID1/$tfile not returned in parent list"
11933         echo "$parent" | grep -F "$FID2/link" ||
11934                 error "$FID2/link not returned in parent list"
11935
11936         # 3) get parent by fid
11937         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
11938         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11939         echo "$parent" | grep -F "$FID1/$tfile" ||
11940                 error "$FID1/$tfile not returned in parent list (by fid)"
11941         echo "$parent" | grep -F "$FID2/link" ||
11942                 error "$FID2/link not returned in parent list (by fid)"
11943
11944         # 4) test for entry in root directory
11945         parent=$($LFS path2fid --parents $DIR/f)
11946         echo "$parent" | grep -F "$FID3/f" ||
11947                 error "$FID3/f not returned in parent list"
11948
11949         # 5) test it on root directory
11950         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
11951                 error "$MOUNT should not have parents"
11952
11953         # enable xattr caching and check that linkea is correctly updated
11954         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
11955         save_lustre_params client "llite.*.xattr_cache" > $save
11956         lctl set_param llite.*.xattr_cache 1
11957
11958         # 6.1) linkea update on rename
11959         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
11960
11961         # get parents by fid
11962         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11963         # foo1 should no longer be returned in parent list
11964         echo "$parent" | grep -F "$FID1" &&
11965                 error "$FID1 should no longer be in parent list"
11966         # the new path should appear
11967         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
11968                 error "$FID2/$tfile.moved is not in parent list"
11969
11970         # 6.2) linkea update on unlink
11971         rm -f $DIR/$tdir/d/foo2/link
11972         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
11973         # foo2/link should no longer be returned in parent list
11974         echo "$parent" | grep -F "$FID2/link" &&
11975                 error "$FID2/link should no longer be in parent list"
11976         true
11977
11978         rm -f $DIR/f
11979         restore_lustre_params < $save
11980         rm -f $save
11981 }
11982 run_test 154f "get parent fids by reading link ea"
11983
11984 test_154g()
11985 {
11986         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
11987         [[ $MDS1_VERSION -ge $(version_code 2.6.92) &&
11988            $CLIENT_VERSION -gt $(version_code 2.6.99) ]] ||
11989                 skip "Need MDS version at least 2.6.92"
11990
11991         mkdir -p $DIR/$tdir
11992         llapi_fid_test -d $DIR/$tdir
11993 }
11994 run_test 154g "various llapi FID tests"
11995
11996 test_155_small_load() {
11997     local temp=$TMP/$tfile
11998     local file=$DIR/$tfile
11999
12000     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
12001         error "dd of=$temp bs=6096 count=1 failed"
12002     cp $temp $file
12003     cancel_lru_locks $OSC
12004     cmp $temp $file || error "$temp $file differ"
12005
12006     $TRUNCATE $temp 6000
12007     $TRUNCATE $file 6000
12008     cmp $temp $file || error "$temp $file differ (truncate1)"
12009
12010     echo "12345" >>$temp
12011     echo "12345" >>$file
12012     cmp $temp $file || error "$temp $file differ (append1)"
12013
12014     echo "12345" >>$temp
12015     echo "12345" >>$file
12016     cmp $temp $file || error "$temp $file differ (append2)"
12017
12018     rm -f $temp $file
12019     true
12020 }
12021
12022 test_155_big_load() {
12023         remote_ost_nodsh && skip "remote OST with nodsh"
12024
12025         local temp=$TMP/$tfile
12026         local file=$DIR/$tfile
12027
12028         free_min_max
12029         local cache_size=$(do_facet ost$((MAXI+1)) \
12030                 "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
12031         local large_file_size=$((cache_size * 2))
12032
12033         echo "OSS cache size: $cache_size KB"
12034         echo "Large file size: $large_file_size KB"
12035
12036         [ $MAXV -le $large_file_size ] &&
12037                 skip_env "max available OST size needs > $large_file_size KB"
12038
12039         $LFS setstripe $file -c 1 -i $MAXI || error "$LFS setstripe $file failed"
12040
12041         dd if=/dev/urandom of=$temp bs=$large_file_size count=1k ||
12042                 error "dd of=$temp bs=$large_file_size count=1k failed"
12043         cp $temp $file
12044         ls -lh $temp $file
12045         cancel_lru_locks osc
12046         cmp $temp $file || error "$temp $file differ"
12047
12048         rm -f $temp $file
12049         true
12050 }
12051
12052 save_writethrough() {
12053         local facets=$(get_facets OST)
12054
12055         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" > $1
12056 }
12057
12058 test_155a() {
12059         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12060
12061         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12062
12063         save_writethrough $p
12064
12065         set_cache read on
12066         set_cache writethrough on
12067         test_155_small_load
12068         restore_lustre_params < $p
12069         rm -f $p
12070 }
12071 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
12072
12073 test_155b() {
12074         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12075
12076         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12077
12078         save_writethrough $p
12079
12080         set_cache read on
12081         set_cache writethrough off
12082         test_155_small_load
12083         restore_lustre_params < $p
12084         rm -f $p
12085 }
12086 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
12087
12088 test_155c() {
12089         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12090
12091         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12092
12093         save_writethrough $p
12094
12095         set_cache read off
12096         set_cache writethrough on
12097         test_155_small_load
12098         restore_lustre_params < $p
12099         rm -f $p
12100 }
12101 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
12102
12103 test_155d() {
12104         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12105
12106         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12107
12108         save_writethrough $p
12109
12110         set_cache read off
12111         set_cache writethrough off
12112         test_155_small_load
12113         restore_lustre_params < $p
12114         rm -f $p
12115 }
12116 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
12117
12118 test_155e() {
12119         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12120
12121         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12122
12123         save_writethrough $p
12124
12125         set_cache read on
12126         set_cache writethrough on
12127         test_155_big_load
12128         restore_lustre_params < $p
12129         rm -f $p
12130 }
12131 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
12132
12133 test_155f() {
12134         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12135
12136         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12137
12138         save_writethrough $p
12139
12140         set_cache read on
12141         set_cache writethrough off
12142         test_155_big_load
12143         restore_lustre_params < $p
12144         rm -f $p
12145 }
12146 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
12147
12148 test_155g() {
12149         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12150
12151         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12152
12153         save_writethrough $p
12154
12155         set_cache read off
12156         set_cache writethrough on
12157         test_155_big_load
12158         restore_lustre_params < $p
12159         rm -f $p
12160 }
12161 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
12162
12163 test_155h() {
12164         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12165
12166         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12167
12168         save_writethrough $p
12169
12170         set_cache read off
12171         set_cache writethrough off
12172         test_155_big_load
12173         restore_lustre_params < $p
12174         rm -f $p
12175 }
12176 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
12177
12178 test_156() {
12179         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12180         remote_ost_nodsh && skip "remote OST with nodsh"
12181         [ $OST1_VERSION -lt $(version_code 2.6.93) ] &&
12182                 skip "stats not implemented on old servers"
12183         [ "$ost1_FSTYPE" = "zfs" ] &&
12184                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS"
12185
12186         local CPAGES=3
12187         local BEFORE
12188         local AFTER
12189         local file="$DIR/$tfile"
12190         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12191
12192         save_writethrough $p
12193         roc_hit_init
12194
12195         log "Turn on read and write cache"
12196         set_cache read on
12197         set_cache writethrough on
12198
12199         log "Write data and read it back."
12200         log "Read should be satisfied from the cache."
12201         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12202         BEFORE=$(roc_hit)
12203         cancel_lru_locks osc
12204         cat $file >/dev/null
12205         AFTER=$(roc_hit)
12206         if ! let "AFTER - BEFORE == CPAGES"; then
12207                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12208         else
12209                 log "cache hits:: before: $BEFORE, after: $AFTER"
12210         fi
12211
12212         log "Read again; it should be satisfied from the cache."
12213         BEFORE=$AFTER
12214         cancel_lru_locks osc
12215         cat $file >/dev/null
12216         AFTER=$(roc_hit)
12217         if ! let "AFTER - BEFORE == CPAGES"; then
12218                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12219         else
12220                 log "cache hits:: before: $BEFORE, after: $AFTER"
12221         fi
12222
12223         log "Turn off the read cache and turn on the write cache"
12224         set_cache read off
12225         set_cache writethrough on
12226
12227         log "Read again; it should be satisfied from the cache."
12228         BEFORE=$(roc_hit)
12229         cancel_lru_locks osc
12230         cat $file >/dev/null
12231         AFTER=$(roc_hit)
12232         if ! let "AFTER - BEFORE == CPAGES"; then
12233                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12234         else
12235                 log "cache hits:: before: $BEFORE, after: $AFTER"
12236         fi
12237
12238         log "Read again; it should not be satisfied from the cache."
12239         BEFORE=$AFTER
12240         cancel_lru_locks osc
12241         cat $file >/dev/null
12242         AFTER=$(roc_hit)
12243         if ! let "AFTER - BEFORE == 0"; then
12244                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12245         else
12246                 log "cache hits:: before: $BEFORE, after: $AFTER"
12247         fi
12248
12249         log "Write data and read it back."
12250         log "Read should be satisfied from the cache."
12251         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12252         BEFORE=$(roc_hit)
12253         cancel_lru_locks osc
12254         cat $file >/dev/null
12255         AFTER=$(roc_hit)
12256         if ! let "AFTER - BEFORE == CPAGES"; then
12257                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12258         else
12259                 log "cache hits:: before: $BEFORE, after: $AFTER"
12260         fi
12261
12262         log "Read again; it should not be satisfied from the cache."
12263         BEFORE=$AFTER
12264         cancel_lru_locks osc
12265         cat $file >/dev/null
12266         AFTER=$(roc_hit)
12267         if ! let "AFTER - BEFORE == 0"; then
12268                 error "IN CACHE: before: $BEFORE, after: $AFTER"
12269         else
12270                 log "cache hits:: before: $BEFORE, after: $AFTER"
12271         fi
12272
12273         log "Turn off read and write cache"
12274         set_cache read off
12275         set_cache writethrough off
12276
12277         log "Write data and read it back"
12278         log "It should not be satisfied from the cache."
12279         rm -f $file
12280         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12281         cancel_lru_locks osc
12282         BEFORE=$(roc_hit)
12283         cat $file >/dev/null
12284         AFTER=$(roc_hit)
12285         if ! let "AFTER - BEFORE == 0"; then
12286                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12287         else
12288                 log "cache hits:: before: $BEFORE, after: $AFTER"
12289         fi
12290
12291         log "Turn on the read cache and turn off the write cache"
12292         set_cache read on
12293         set_cache writethrough off
12294
12295         log "Write data and read it back"
12296         log "It should not be satisfied from the cache."
12297         rm -f $file
12298         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
12299         BEFORE=$(roc_hit)
12300         cancel_lru_locks osc
12301         cat $file >/dev/null
12302         AFTER=$(roc_hit)
12303         if ! let "AFTER - BEFORE == 0"; then
12304                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
12305         else
12306                 log "cache hits:: before: $BEFORE, after: $AFTER"
12307         fi
12308
12309         log "Read again; it should be satisfied from the cache."
12310         BEFORE=$(roc_hit)
12311         cancel_lru_locks osc
12312         cat $file >/dev/null
12313         AFTER=$(roc_hit)
12314         if ! let "AFTER - BEFORE == CPAGES"; then
12315                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
12316         else
12317                 log "cache hits:: before: $BEFORE, after: $AFTER"
12318         fi
12319
12320         restore_lustre_params < $p
12321         rm -f $p $file
12322 }
12323 run_test 156 "Verification of tunables"
12324
12325 test_160a() {
12326         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12327         remote_mds_nodsh && skip "remote MDS with nodsh"
12328         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12329                 skip "Need MDS version at least 2.2.0"
12330
12331         changelog_register || error "changelog_register failed"
12332         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12333         changelog_users $SINGLEMDS | grep -q $cl_user ||
12334                 error "User $cl_user not found in changelog_users"
12335
12336         # change something
12337         test_mkdir -p $DIR/$tdir/pics/2008/zachy
12338         changelog_clear 0 || error "changelog_clear failed"
12339         touch $DIR/$tdir/pics/2008/zachy/$tfile                 # open 1
12340         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg       # open 2
12341         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
12342         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
12343         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
12344         rm $DIR/$tdir/pics/desktop.jpg
12345
12346         changelog_dump | tail -10
12347
12348         echo "verifying changelog mask"
12349         changelog_chmask "-MKDIR"
12350         changelog_chmask "-CLOSE"
12351
12352         test_mkdir -p $DIR/$tdir/pics/zach/sofia                # not logged
12353         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # not logged
12354
12355         changelog_chmask "+MKDIR"
12356         changelog_chmask "+CLOSE"
12357
12358         test_mkdir -p $DIR/$tdir/pics/2008/sofia                # mkdir 1
12359         echo "zzzzzz" > $DIR/$tdir/pics/zach/file               # open 3
12360
12361         changelog_dump | tail -10
12362         MKDIRS=$(changelog_dump | grep -c "MKDIR")
12363         CLOSES=$(changelog_dump | grep -c "CLOSE")
12364         [ $MKDIRS -eq 1 ] || error "MKDIR changelog mask count $MKDIRS != 1"
12365         [ $CLOSES -eq 3 ] || error "CLOSE changelog mask count $CLOSES != 3"
12366
12367         # verify contents
12368         echo "verifying target fid"
12369         local fidc=$(changelog_extract_field "CREAT" "$tfile" "t=")
12370         local fidf=$($LFS path2fid $DIR/$tdir/pics/zach/$tfile)
12371         [ "$fidc" == "$fidf" ] ||
12372                 error "changelog '$tfile' fid $fidc != file fid $fidf"
12373         echo "verifying parent fid"
12374         # The FID returned from the Changelog may be the directory shard on
12375         # a different MDT, and not the FID returned by path2fid on the parent.
12376         # Instead of comparing FIDs, verify that fid2path(fidp) is correct,
12377         # since this is what will matter when recreating this file in the tree.
12378         local fidp=$(changelog_extract_field "CREAT" "$tfile" "p=")
12379         local pathp=$($LFS fid2path $MOUNT "$fidp")
12380         [ "${pathp%/}" == "$DIR/$tdir/pics/zach" ] ||
12381                 error "changelog fid2path($fidc) $pathp != $DIR/$tdir/pics/zach"
12382
12383         echo "getting records for $cl_user"
12384         changelog_users $SINGLEMDS
12385         local user_rec1=$(changelog_user_rec $SINGLEMDS $cl_user)
12386         local nclr=3
12387         __changelog_clear $SINGLEMDS $cl_user +$nclr ||
12388                 error "changelog_clear failed"
12389         local user_rec2=$(changelog_user_rec $SINGLEMDS $cl_user)
12390         echo "verifying user clear: $user_rec1 + $nclr == $user_rec2"
12391         [ $user_rec2 == $((user_rec1 + nclr)) ] ||
12392                 error "user index expect $user_rec1 + $nclr != $user_rec2"
12393
12394         local min0_rec=$(changelog_users $SINGLEMDS |
12395                 awk 'min == "" || $2 < min { min = $2 }; END { print min }')
12396         local first_rec=$($LFS changelog $(facet_svc $SINGLEMDS) |
12397                           awk '{ print $1; exit; }')
12398
12399         changelog_dump | tail -n 5
12400         echo "verifying user min purge: $min0_rec + 1 == $first_rec"
12401         [ $first_rec == $((min0_rec + 1)) ] ||
12402                 error "first index should be $min0_rec + 1 not $first_rec"
12403
12404         # LU-3446 changelog index reset on MDT restart
12405         local cur_rec1=$(changelog_users $SINGLEMDS |
12406                          awk '/^current.index:/ { print $NF }')
12407         changelog_clear 0 ||
12408                 error "clear all changelog records for $cl_user failed"
12409         stop $SINGLEMDS || error "Fail to stop $SINGLEMDS"
12410         start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
12411                 error "Fail to start $SINGLEMDS"
12412         local cur_rec2=$(changelog_users $SINGLEMDS |
12413                          awk '/^current.index:/ { print $NF }')
12414         echo "verifying index survives MDT restart: $cur_rec1 == $cur_rec2"
12415         [ $cur_rec1 == $cur_rec2 ] ||
12416                 error "current index should be $cur_rec1 not $cur_rec2"
12417
12418         echo "verifying users from this test are deregistered"
12419         changelog_deregister || error "changelog_deregister failed"
12420         changelog_users $SINGLEMDS | grep -q $cl_user &&
12421                 error "User '$cl_user' still in changelog_users"
12422
12423         # lctl get_param -n mdd.*.changelog_users
12424         # current index: 144
12425         # ID    index (idle seconds)
12426         # cl3   144 (2)
12427         if ! changelog_users $SINGLEMDS | grep "^cl"; then
12428                 # this is the normal case where all users were deregistered
12429                 # make sure no new records are added when no users are present
12430                 local last_rec1=$(changelog_users $SINGLEMDS |
12431                                   awk '/^current.index:/ { print $NF }')
12432                 touch $DIR/$tdir/chloe
12433                 local last_rec2=$(changelog_users $SINGLEMDS |
12434                                   awk '/^current.index:/ { print $NF }')
12435                 echo "verify changelogs are off: $last_rec1 == $last_rec2"
12436                 [ $last_rec1 == $last_rec2 ] || error "changelogs not off"
12437         else
12438                 # any changelog users must be leftovers from a previous test
12439                 changelog_users $SINGLEMDS
12440                 echo "other changelog users; can't verify off"
12441         fi
12442 }
12443 run_test 160a "changelog sanity"
12444
12445 test_160b() { # LU-3587
12446         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12447         remote_mds_nodsh && skip "remote MDS with nodsh"
12448         [ $MDS1_VERSION -ge $(version_code 2.2.0) ] ||
12449                 skip "Need MDS version at least 2.2.0"
12450
12451         changelog_register || error "changelog_register failed"
12452         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
12453         changelog_users $SINGLEMDS | grep -q $cl_user ||
12454                 error "User '$cl_user' not found in changelog_users"
12455
12456         local longname1=$(str_repeat a 255)
12457         local longname2=$(str_repeat b 255)
12458
12459         cd $DIR
12460         echo "creating very long named file"
12461         touch $longname1 || error "create of '$longname1' failed"
12462         echo "renaming very long named file"
12463         mv $longname1 $longname2
12464
12465         changelog_dump | grep RENME | tail -n 5
12466         rm -f $longname2
12467 }
12468 run_test 160b "Verify that very long rename doesn't crash in changelog"
12469
12470 test_160c() {
12471         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12472         remote_mds_nodsh && skip "remote MDS with nodsh"
12473
12474         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
12475                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
12476                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
12477                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
12478
12479         local rc=0
12480
12481         # Registration step
12482         changelog_register || error "changelog_register failed"
12483
12484         rm -rf $DIR/$tdir
12485         mkdir -p $DIR/$tdir
12486         $MCREATE $DIR/$tdir/foo_160c
12487         changelog_chmask "-TRUNC"
12488         $TRUNCATE $DIR/$tdir/foo_160c 200
12489         changelog_chmask "+TRUNC"
12490         $TRUNCATE $DIR/$tdir/foo_160c 199
12491         changelog_dump | tail -n 5
12492         local truncs=$(changelog_dump | tail -n 5 | grep -c TRUNC)
12493         [ $truncs -eq 1 ] || error "TRUNC changelog mask count $truncs != 1"
12494 }
12495 run_test 160c "verify that changelog log catch the truncate event"
12496
12497 test_160d() {
12498         remote_mds_nodsh && skip "remote MDS with nodsh"
12499         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
12500         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12501         [[ $MDS1_VERSION -ge $(version_code 2.7.60) ]] ||
12502                 skip "Need MDS version at least 2.7.60"
12503
12504         # Registration step
12505         changelog_register || error "changelog_register failed"
12506
12507         mkdir -p $DIR/$tdir/migrate_dir
12508         changelog_clear 0 || error "changelog_clear failed"
12509
12510         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
12511         changelog_dump | tail -n 5
12512         local migrates=$(changelog_dump | grep -c "MIGRT")
12513         [ $migrates -eq 1 ] || error "MIGRATE changelog count $migrates != 1"
12514 }
12515 run_test 160d "verify that changelog log catch the migrate event"
12516
12517 test_160e() {
12518         remote_mds_nodsh && skip "remote MDS with nodsh"
12519
12520         # Create a user
12521         changelog_register || error "changelog_register failed"
12522
12523         # Delete a future user (expect fail)
12524         local MDT0=$(facet_svc $SINGLEMDS)
12525         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister "cl77"
12526         local rc=$?
12527
12528         if [ $rc -eq 0 ]; then
12529                 error "Deleted non-existant user cl77"
12530         elif [ $rc -ne 2 ]; then
12531                 error "changelog_deregister failed with $rc, expect 2 (ENOENT)"
12532         fi
12533
12534         # Clear to a bad index (1 billion should be safe)
12535         $LFS changelog_clear $MDT0 "${CL_USERS[$SINGLEMDS]%% *}" 1000000000
12536         rc=$?
12537
12538         if [ $rc -eq 0 ]; then
12539                 error "Successfully cleared to invalid CL index"
12540         elif [ $rc -ne 22 ]; then
12541                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
12542         fi
12543 }
12544 run_test 160e "changelog negative testing (should return errors)"
12545
12546 test_160f() {
12547         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12548         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12549                 skip "Need MDS version at least 2.10.56"
12550
12551         local mdts=$(comma_list $(mdts_nodes))
12552
12553         # Create a user
12554         changelog_register || error "first changelog_register failed"
12555         changelog_register || error "second changelog_register failed"
12556         local cl_users
12557         declare -A cl_user1
12558         declare -A cl_user2
12559         local user_rec1
12560         local user_rec2
12561         local i
12562
12563         # generate some changelog records to accumulate on each MDT
12564         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12565         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12566                 error "create $DIR/$tdir/$tfile failed"
12567
12568         # check changelogs have been generated
12569         local nbcl=$(changelog_dump | wc -l)
12570         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12571
12572         for param in "changelog_max_idle_time=10" \
12573                      "changelog_gc=1" \
12574                      "changelog_min_gc_interval=2" \
12575                      "changelog_min_free_cat_entries=3"; do
12576                 local MDT0=$(facet_svc $SINGLEMDS)
12577                 local var="${param%=*}"
12578                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12579
12580                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12581                 do_nodes $mdts $LCTL set_param mdd.*.$param
12582         done
12583
12584         # force cl_user2 to be idle (1st part)
12585         sleep 9
12586
12587         # simulate changelog catalog almost full
12588         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12589         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12590
12591         for i in $(seq $MDSCOUNT); do
12592                 cl_users=(${CL_USERS[mds$i]})
12593                 cl_user1[mds$i]="${cl_users[0]}"
12594                 cl_user2[mds$i]="${cl_users[1]}"
12595
12596                 [ -n "${cl_user1[mds$i]}" ] ||
12597                         error "mds$i: no user registered"
12598                 [ -n "${cl_user2[mds$i]}" ] ||
12599                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12600
12601                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12602                 [ -n "$user_rec1" ] ||
12603                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12604                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12605                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12606                 [ -n "$user_rec2" ] ||
12607                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12608                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12609                      "$user_rec1 + 2 == $user_rec2"
12610                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12611                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12612                               "$user_rec1 + 2, but is $user_rec2"
12613                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12614                 [ -n "$user_rec2" ] ||
12615                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12616                 [ $user_rec1 == $user_rec2 ] ||
12617                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12618                               "$user_rec1, but is $user_rec2"
12619         done
12620
12621         # force cl_user2 to be idle (2nd part) and to reach
12622         # changelog_max_idle_time
12623         sleep 2
12624
12625         # generate one more changelog to trigger fail_loc
12626         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12627                 error "create $DIR/$tdir/${tfile}bis failed"
12628
12629         # ensure gc thread is done
12630         for i in $(mdts_nodes); do
12631                 wait_update $i \
12632                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12633                         error "$i: GC-thread not done"
12634         done
12635
12636         local first_rec
12637         for i in $(seq $MDSCOUNT); do
12638                 # check cl_user1 still registered
12639                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12640                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12641                 # check cl_user2 unregistered
12642                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12643                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12644
12645                 # check changelogs are present and starting at $user_rec1 + 1
12646                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12647                 [ -n "$user_rec1" ] ||
12648                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12649                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12650                             awk '{ print $1; exit; }')
12651
12652                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12653                 [ $((user_rec1 + 1)) == $first_rec ] ||
12654                         error "mds$i: first index should be $user_rec1 + 1, " \
12655                               "but is $first_rec"
12656         done
12657 }
12658 run_test 160f "changelog garbage collect (timestamped users)"
12659
12660 test_160g() {
12661         remote_mds_nodsh && skip "remote MDS with nodsh"
12662         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12663                 skip "Need MDS version at least 2.10.56"
12664
12665         local mdts=$(comma_list $(mdts_nodes))
12666
12667         #define OBD_FAIL_TIME_IN_CHLOG_USER     0x1314
12668         do_nodes $mdts $LCTL set_param fail_loc=0x1314
12669
12670         # Create a user
12671         changelog_register || error "first changelog_register failed"
12672         changelog_register || error "second changelog_register failed"
12673         local cl_users
12674         declare -A cl_user1
12675         declare -A cl_user2
12676         local user_rec1
12677         local user_rec2
12678         local i
12679
12680         # generate some changelog records to accumulate on each MDT
12681         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12682         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12683                 error "create $DIR/$tdir/$tfile failed"
12684
12685         # check changelogs have been generated
12686         local nbcl=$(changelog_dump | wc -l)
12687         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12688
12689         # reduce the max_idle_indexes value to make sure we exceed it
12690         max_ndx=$((nbcl / 2 - 1))
12691
12692         for param in "changelog_max_idle_indexes=$max_ndx" \
12693                      "changelog_gc=1" \
12694                      "changelog_min_gc_interval=2" \
12695                      "changelog_min_free_cat_entries=3"; do
12696                 local MDT0=$(facet_svc $SINGLEMDS)
12697                 local var="${param%=*}"
12698                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12699
12700                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12701                 do_nodes $mdts $LCTL set_param mdd.*.$param ||
12702                         error "unable to set mdd.*.$param"
12703         done
12704
12705         # simulate changelog catalog almost full
12706         #define OBD_FAIL_CAT_FREE_RECORDS       0x1313
12707         do_nodes $mdts $LCTL set_param fail_loc=0x1313 fail_val=3
12708
12709         for i in $(seq $MDSCOUNT); do
12710                 cl_users=(${CL_USERS[mds$i]})
12711                 cl_user1[mds$i]="${cl_users[0]}"
12712                 cl_user2[mds$i]="${cl_users[1]}"
12713
12714                 [ -n "${cl_user1[mds$i]}" ] ||
12715                         error "mds$i: no user registered"
12716                 [ -n "${cl_user2[mds$i]}" ] ||
12717                         error "mds$i: only ${cl_user1[mds$i]} is registered"
12718
12719                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12720                 [ -n "$user_rec1" ] ||
12721                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12722                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12723                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12724                 [ -n "$user_rec2" ] ||
12725                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12726                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12727                      "$user_rec1 + 2 == $user_rec2"
12728                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12729                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12730                               "$user_rec1 + 2, but is $user_rec2"
12731                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12732                 [ -n "$user_rec2" ] ||
12733                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12734                 [ $user_rec1 == $user_rec2 ] ||
12735                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12736                               "$user_rec1, but is $user_rec2"
12737         done
12738
12739         # ensure we are past the previous changelog_min_gc_interval set above
12740         sleep 2
12741
12742         # generate one more changelog to trigger fail_loc
12743         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12744                 error "create $DIR/$tdir/${tfile}bis failed"
12745
12746         # ensure gc thread is done
12747         for i in $(mdts_nodes); do
12748                 wait_update $i \
12749                         "ps -e -o comm= | grep chlg_gc_thread" "" 20 ||
12750                         error "$i: GC-thread not done"
12751         done
12752
12753         local first_rec
12754         for i in $(seq $MDSCOUNT); do
12755                 # check cl_user1 still registered
12756                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12757                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12758                 # check cl_user2 unregistered
12759                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12760                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12761
12762                 # check changelogs are present and starting at $user_rec1 + 1
12763                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12764                 [ -n "$user_rec1" ] ||
12765                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12766                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12767                             awk '{ print $1; exit; }')
12768
12769                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12770                 [ $((user_rec1 + 1)) == $first_rec ] ||
12771                         error "mds$i: first index should be $user_rec1 + 1, " \
12772                               "but is $first_rec"
12773         done
12774 }
12775 run_test 160g "changelog garbage collect (old users)"
12776
12777 test_160h() {
12778         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12779         [[ $MDS1_VERSION -ge $(version_code 2.10.56) ]] ||
12780                 skip "Need MDS version at least 2.10.56"
12781
12782         local mdts=$(comma_list $(mdts_nodes))
12783
12784         # Create a user
12785         changelog_register || error "first changelog_register failed"
12786         changelog_register || error "second changelog_register failed"
12787         local cl_users
12788         declare -A cl_user1
12789         declare -A cl_user2
12790         local user_rec1
12791         local user_rec2
12792         local i
12793
12794         # generate some changelog records to accumulate on each MDT
12795         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "test_mkdir $tdir failed"
12796         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12797                 error "create $DIR/$tdir/$tfile failed"
12798
12799         # check changelogs have been generated
12800         local nbcl=$(changelog_dump | wc -l)
12801         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12802
12803         for param in "changelog_max_idle_time=10" \
12804                      "changelog_gc=1" \
12805                      "changelog_min_gc_interval=2"; do
12806                 local MDT0=$(facet_svc $SINGLEMDS)
12807                 local var="${param%=*}"
12808                 local old=$(do_facet mds1 "$LCTL get_param -n mdd.$MDT0.$var")
12809
12810                 stack_trap "do_nodes $mdts $LCTL set_param mdd.*.$var=$old" EXIT
12811                 do_nodes $mdts $LCTL set_param mdd.*.$param
12812         done
12813
12814         # force cl_user2 to be idle (1st part)
12815         sleep 9
12816
12817         for i in $(seq $MDSCOUNT); do
12818                 cl_users=(${CL_USERS[mds$i]})
12819                 cl_user1[mds$i]="${cl_users[0]}"
12820                 cl_user2[mds$i]="${cl_users[1]}"
12821
12822                 [ -n "${cl_user1[mds$i]}" ] ||
12823                         error "mds$i: no user registered"
12824                 [ -n "${cl_user2[mds$i]}" ] ||
12825                         error "mds$i: only ${cl_user2[mds$i]} is registered"
12826
12827                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12828                 [ -n "$user_rec1" ] ||
12829                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12830                 __changelog_clear mds$i ${cl_user1[mds$i]} +2
12831                 user_rec2=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12832                 [ -n "$user_rec2" ] ||
12833                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12834                 echo "mds$i: verifying user ${cl_user1[mds$i]} clear: " \
12835                      "$user_rec1 + 2 == $user_rec2"
12836                 [ $((user_rec1 + 2)) == $user_rec2 ] ||
12837                         error "mds$i: user ${cl_user1[mds$i]} index expected " \
12838                               "$user_rec1 + 2, but is $user_rec2"
12839                 user_rec2=$(changelog_user_rec mds$i ${cl_user2[mds$i]})
12840                 [ -n "$user_rec2" ] ||
12841                         error "mds$i: User ${cl_user2[mds$i]} not registered"
12842                 [ $user_rec1 == $user_rec2 ] ||
12843                         error "mds$i: user ${cl_user2[mds$i]} index expected " \
12844                               "$user_rec1, but is $user_rec2"
12845         done
12846
12847         # force cl_user2 to be idle (2nd part) and to reach
12848         # changelog_max_idle_time
12849         sleep 2
12850
12851         # force each GC-thread start and block then
12852         # one per MDT/MDD, set fail_val accordingly
12853         #define OBD_FAIL_FORCE_GC_THREAD 0x1316
12854         do_nodes $mdts $LCTL set_param fail_loc=0x1316
12855
12856         # generate more changelogs to trigger fail_loc
12857         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12858                 error "create $DIR/$tdir/${tfile}bis failed"
12859
12860         # stop MDT to stop GC-thread, should be done in back-ground as it will
12861         # block waiting for the thread to be released and exit
12862         declare -A stop_pids
12863         for i in $(seq $MDSCOUNT); do
12864                 stop mds$i &
12865                 stop_pids[mds$i]=$!
12866         done
12867
12868         for i in $(mdts_nodes); do
12869                 local facet
12870                 local nb=0
12871                 local facets=$(facets_up_on_host $i)
12872
12873                 for facet in ${facets//,/ }; do
12874                         if [[ $facet == mds* ]]; then
12875                                 nb=$((nb + 1))
12876                         fi
12877                 done
12878                 # ensure each MDS's gc threads are still present and all in "R"
12879                 # state (OBD_FAIL_FORCE_GC_THREAD effect!)
12880                 [[ $(do_node $i pgrep chlg_gc_thread | wc -l) -eq $nb ]] ||
12881                         error "$i: expected $nb GC-thread"
12882                 wait_update $i \
12883                         "ps -C chlg_gc_thread -o state --no-headers | uniq" \
12884                         "R" 20 ||
12885                         error "$i: GC-thread not found in R-state"
12886                 # check umounts of each MDT on MDS have reached kthread_stop()
12887                 [[ $(do_node $i pgrep umount | wc -l) -eq $nb ]] ||
12888                         error "$i: expected $nb umount"
12889                 wait_update $i \
12890                         "ps -C umount -o state --no-headers | uniq" "D" 20 ||
12891                         error "$i: umount not found in D-state"
12892         done
12893
12894         # release all GC-threads
12895         do_nodes $mdts $LCTL set_param fail_loc=0
12896
12897         # wait for MDT stop to complete
12898         for i in $(seq $MDSCOUNT); do
12899                 wait ${stop_pids[mds$i]} || error "mds$i: stop failed"
12900         done
12901
12902         # XXX
12903         # may try to check if any orphan changelog records are present
12904         # via ldiskfs/zfs and llog_reader...
12905
12906         # re-start/mount MDTs
12907         for i in $(seq $MDSCOUNT); do
12908                 start mds$i $(mdsdevname $i) $MDS_MOUNT_OPTS ||
12909                         error "Fail to start mds$i"
12910         done
12911
12912         local first_rec
12913         for i in $(seq $MDSCOUNT); do
12914                 # check cl_user1 still registered
12915                 changelog_users mds$i | grep -q "${cl_user1[mds$i]}" ||
12916                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12917                 # check cl_user2 unregistered
12918                 changelog_users mds$i | grep -q "${cl_user2[mds$i]}" &&
12919                         error "mds$i: User ${cl_user2[mds$i]} still registered"
12920
12921                 # check changelogs are present and starting at $user_rec1 + 1
12922                 user_rec1=$(changelog_user_rec mds$i ${cl_user1[mds$i]})
12923                 [ -n "$user_rec1" ] ||
12924                         error "mds$i: User ${cl_user1[mds$i]} not registered"
12925                 first_rec=$($LFS changelog $(facet_svc mds$i) |
12926                             awk '{ print $1; exit; }')
12927
12928                 echo "mds$i: verifying first index $user_rec1 + 1 == $first_rec"
12929                 [ $((user_rec1 + 1)) == $first_rec ] ||
12930                         error "mds$i: first index should be $user_rec1 + 1, " \
12931                               "but is $first_rec"
12932         done
12933 }
12934 run_test 160h "changelog gc thread stop upon umount, orphan records delete " \
12935               "during mount"
12936
12937 test_160i() {
12938
12939         local mdts=$(comma_list $(mdts_nodes))
12940
12941         changelog_register || error "first changelog_register failed"
12942
12943         # generate some changelog records to accumulate on each MDT
12944         test_mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
12945         createmany -m $DIR/$tdir/$tfile $((MDSCOUNT * 2)) ||
12946                 error "create $DIR/$tdir/$tfile failed"
12947
12948         # check changelogs have been generated
12949         local nbcl=$(changelog_dump | wc -l)
12950         [[ $nbcl -eq 0 ]] && error "no changelogs found"
12951
12952         # simulate race between register and unregister
12953         # XXX as fail_loc is set per-MDS, with DNE configs the race
12954         # simulation will only occur for one MDT per MDS and for the
12955         # others the normal race scenario will take place
12956         #define CFS_FAIL_CHLOG_USER_REG_UNREG_RACE          0x1315
12957         do_nodes $mdts $LCTL set_param fail_loc=0x10001315
12958         do_nodes $mdts $LCTL set_param fail_val=1
12959
12960         # unregister 1st user
12961         changelog_deregister &
12962         local pid1=$!
12963         # wait some time for deregister work to reach race rdv
12964         sleep 2
12965         # register 2nd user
12966         changelog_register || error "2nd user register failed"
12967
12968         wait $pid1 || error "1st user deregister failed"
12969
12970         local i
12971         local last_rec
12972         declare -A LAST_REC
12973         for i in $(seq $MDSCOUNT); do
12974                 if changelog_users mds$i | grep "^cl"; then
12975                         # make sure new records are added with one user present
12976                         LAST_REC[mds$i]=$(changelog_users $SINGLEMDS |
12977                                           awk '/^current.index:/ { print $NF }')
12978                 else
12979                         error "mds$i has no user registered"
12980                 fi
12981         done
12982
12983         # generate more changelog records to accumulate on each MDT
12984         createmany -m $DIR/$tdir/${tfile}bis $((MDSCOUNT * 2)) ||
12985                 error "create $DIR/$tdir/${tfile}bis failed"
12986
12987         for i in $(seq $MDSCOUNT); do
12988                 last_rec=$(changelog_users $SINGLEMDS |
12989                            awk '/^current.index:/ { print $NF }')
12990                 echo "verify changelogs are on: $last_rec != ${LAST_REC[mds$i]}"
12991                 [ $last_rec != ${LAST_REC[mds$i]} ] ||
12992                         error "changelogs are off on mds$i"
12993         done
12994 }
12995 run_test 160i "changelog user register/unregister race"
12996
12997 test_161a() {
12998         [ $PARALLEL == "yes" ] && skip "skip parallel run"
12999
13000         test_mkdir -c1 $DIR/$tdir
13001         cp /etc/hosts $DIR/$tdir/$tfile
13002         test_mkdir -c1 $DIR/$tdir/foo1
13003         test_mkdir -c1 $DIR/$tdir/foo2
13004         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
13005         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
13006         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
13007         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
13008         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
13009         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13010                 $LFS fid2path $DIR $FID
13011                 error "bad link ea"
13012         fi
13013         # middle
13014         rm $DIR/$tdir/foo2/zachary
13015         # last
13016         rm $DIR/$tdir/foo2/thor
13017         # first
13018         rm $DIR/$tdir/$tfile
13019         # rename
13020         mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
13021         [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ] &&
13022                 { $LFS fid2path $DIR $FID; error "bad link rename"; }
13023         rm $DIR/$tdir/foo2/maggie
13024
13025         # overflow the EA
13026         local longname=$tfile.avg_len_is_thirty_two_
13027         stack_trap "unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
13028                 error_noexit 'failed to unlink many hardlinks'" EXIT
13029         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
13030                 error "failed to hardlink many files"
13031         links=$($LFS fid2path $DIR $FID | wc -l)
13032         echo -n "${links}/1000 links in link EA"
13033         [[ $links -gt 60 ]] || error "expected at least 60 links in link EA"
13034 }
13035 run_test 161a "link ea sanity"
13036
13037 test_161b() {
13038         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13039         [ $MDSCOUNT -lt 2 ] && skip_env "skipping remote directory test"
13040
13041         local MDTIDX=1
13042         local remote_dir=$DIR/$tdir/remote_dir
13043
13044         mkdir -p $DIR/$tdir
13045         $LFS mkdir -i $MDTIDX $remote_dir ||
13046                 error "create remote directory failed"
13047
13048         cp /etc/hosts $remote_dir/$tfile
13049         mkdir -p $remote_dir/foo1
13050         mkdir -p $remote_dir/foo2
13051         ln $remote_dir/$tfile $remote_dir/foo1/sofia
13052         ln $remote_dir/$tfile $remote_dir/foo2/zachary
13053         ln $remote_dir/$tfile $remote_dir/foo1/luna
13054         ln $remote_dir/$tfile $remote_dir/foo2/thor
13055
13056         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
13057                      tr -d ']')
13058         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
13059                 $LFS fid2path $DIR $FID
13060                 error "bad link ea"
13061         fi
13062         # middle
13063         rm $remote_dir/foo2/zachary
13064         # last
13065         rm $remote_dir/foo2/thor
13066         # first
13067         rm $remote_dir/$tfile
13068         # rename
13069         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
13070         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
13071         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
13072                 $LFS fid2path $DIR $FID
13073                 error "bad link rename"
13074         fi
13075         rm $remote_dir/foo2/maggie
13076
13077         # overflow the EA
13078         local longname=filename_avg_len_is_thirty_two_
13079         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
13080                 error "failed to hardlink many files"
13081         links=$($LFS fid2path $DIR $FID | wc -l)
13082         echo -n "${links}/1000 links in link EA"
13083         [[ ${links} -gt 60 ]] ||
13084                 error "expected at least 60 links in link EA"
13085         unlinkmany $remote_dir/foo2/$longname 1000 ||
13086         error "failed to unlink many hardlinks"
13087 }
13088 run_test 161b "link ea sanity under remote directory"
13089
13090 test_161c() {
13091         remote_mds_nodsh && skip "remote MDS with nodsh"
13092         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13093         [[ $MDS1_VERSION -lt $(version_code 2.1.5) ]] &&
13094                 skip "Need MDS version at least 2.1.5"
13095
13096         # define CLF_RENAME_LAST 0x0001
13097         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
13098         changelog_register || error "changelog_register failed"
13099
13100         rm -rf $DIR/$tdir
13101         test_mkdir -i $((MDSCOUNT - 1)) $DIR/$tdir
13102         touch $DIR/$tdir/foo_161c
13103         touch $DIR/$tdir/bar_161c
13104         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13105         changelog_dump | grep RENME | tail -n 5
13106         local flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13107         changelog_clear 0 || error "changelog_clear failed"
13108         if [ x$flags != "x0x1" ]; then
13109                 error "flag $flags is not 0x1"
13110         fi
13111
13112         echo "rename overwrite target with nlink = 1, changelog flags=$flags"
13113         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
13114         touch $DIR/$tdir/foo_161c
13115         touch $DIR/$tdir/bar_161c
13116         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13117         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
13118         changelog_dump | grep RENME | tail -n 5
13119         flags=$(changelog_dump | grep "RENME.*bar_161c" | cut -f5 -d' ')
13120         changelog_clear 0 || error "changelog_clear failed"
13121         if [ x$flags != "x0x0" ]; then
13122                 error "flag $flags is not 0x0"
13123         fi
13124         echo "rename overwrite a target having nlink > 1," \
13125                 "changelog record has flags of $flags"
13126
13127         # rename doesn't overwrite a target (changelog flag 0x0)
13128         touch $DIR/$tdir/foo_161c
13129         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
13130         changelog_dump | grep RENME | tail -n 5
13131         flags=$(changelog_dump | grep RENME | tail -1 | cut -f5 -d' ')
13132         changelog_clear 0 || error "changelog_clear failed"
13133         if [ x$flags != "x0x0" ]; then
13134                 error "flag $flags is not 0x0"
13135         fi
13136         echo "rename doesn't overwrite a target," \
13137                 "changelog record has flags of $flags"
13138
13139         # define CLF_UNLINK_LAST 0x0001
13140         # unlink a file having nlink = 1 (changelog flag 0x1)
13141         rm -f $DIR/$tdir/foo2_161c
13142         changelog_dump | grep UNLNK | tail -n 5
13143         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13144         changelog_clear 0 || error "changelog_clear failed"
13145         if [ x$flags != "x0x1" ]; then
13146                 error "flag $flags is not 0x1"
13147         fi
13148         echo "unlink a file having nlink = 1," \
13149                 "changelog record has flags of $flags"
13150
13151         # unlink a file having nlink > 1 (changelog flag 0x0)
13152         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
13153         rm -f $DIR/$tdir/foobar_161c
13154         changelog_dump | grep UNLNK | tail -n 5
13155         flags=$(changelog_dump | grep UNLNK | tail -1 | cut -f5 -d' ')
13156         changelog_clear 0 || error "changelog_clear failed"
13157         if [ x$flags != "x0x0" ]; then
13158                 error "flag $flags is not 0x0"
13159         fi
13160         echo "unlink a file having nlink > 1, changelog record flags '$flags'"
13161 }
13162 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
13163
13164 test_161d() {
13165         remote_mds_nodsh && skip "remote MDS with nodsh"
13166         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
13167
13168         local pid
13169         local fid
13170
13171         changelog_register || error "changelog_register failed"
13172
13173         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
13174         # interfer with $MOUNT/.lustre/fid/ access
13175         mkdir $DIR/$tdir
13176         [[ $? -eq 0 ]] || error "mkdir failed"
13177
13178         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
13179         $LCTL set_param fail_loc=0x8000140c
13180         # 5s pause
13181         $LCTL set_param fail_val=5
13182
13183         # create file
13184         echo foofoo > $DIR/$tdir/$tfile &
13185         pid=$!
13186
13187         # wait for create to be delayed
13188         sleep 2
13189
13190         ps -p $pid
13191         [[ $? -eq 0 ]] || error "create should be blocked"
13192
13193         local tempfile=$(mktemp)
13194         fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
13195         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
13196         # some delay may occur during ChangeLog publishing and file read just
13197         # above, that could allow file write to happen finally
13198         [[ -s $tempfile ]] && echo "file should be empty"
13199
13200         $LCTL set_param fail_loc=0
13201
13202         wait $pid
13203         [[ $? -eq 0 ]] || error "create failed"
13204 }
13205 run_test 161d "create with concurrent .lustre/fid access"
13206
13207 check_path() {
13208         local expected="$1"
13209         shift
13210         local fid="$2"
13211
13212         local path
13213         path=$($LFS fid2path "$@")
13214         local rc=$?
13215
13216         if [ $rc -ne 0 ]; then
13217                 error "path looked up of '$expected' failed: rc=$rc"
13218         elif [ "$path" != "$expected" ]; then
13219                 error "path looked up '$path' instead of '$expected'"
13220         else
13221                 echo "FID '$fid' resolves to path '$path' as expected"
13222         fi
13223 }
13224
13225 test_162a() { # was test_162
13226         test_mkdir -p -c1 $DIR/$tdir/d2
13227         touch $DIR/$tdir/d2/$tfile
13228         touch $DIR/$tdir/d2/x1
13229         touch $DIR/$tdir/d2/x2
13230         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
13231         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
13232         # regular file
13233         local fid=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
13234         check_path "$tdir/d2/$tfile" $FSNAME "$fid" --link 0
13235
13236         # softlink
13237         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
13238         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
13239         check_path "$tdir/d2/p/q/r/slink" $FSNAME "$fid" --link 0
13240
13241         # softlink to wrong file
13242         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
13243         fid=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
13244         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME "$fid" --link 0
13245
13246         # hardlink
13247         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
13248         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
13249         fid=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
13250         # fid2path dir/fsname should both work
13251         check_path "$tdir/d2/a/b/c/new_file" $FSNAME "$fid" --link 1
13252         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR "$fid" --link 0
13253
13254         # hardlink count: check that there are 2 links
13255         local nlinks=$($LFS fid2path $DIR "$fid" | wc -l)
13256         [ $nlinks -eq 2 ] || error "expect 2 links, found $nlinks"
13257
13258         # hardlink indexing: remove the first link
13259         rm $DIR/$tdir/d2/p/q/r/hlink
13260         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $fid --link 0
13261 }
13262 run_test 162a "path lookup sanity"
13263
13264 test_162b() {
13265         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13266         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
13267
13268         mkdir $DIR/$tdir
13269         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
13270                                 error "create striped dir failed"
13271
13272         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
13273                                         tail -n 1 | awk '{print $2}')
13274         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
13275
13276         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
13277         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
13278
13279         # regular file
13280         for ((i=0;i<5;i++)); do
13281                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
13282                         error "get fid for f$i failed"
13283                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0
13284
13285                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
13286                         error "get fid for d$i failed"
13287                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0
13288         done
13289
13290         return 0
13291 }
13292 run_test 162b "striped directory path lookup sanity"
13293
13294 # LU-4239: Verify fid2path works with paths 100 or more directories deep
13295 test_162c() {
13296         [[ $MDS1_VERSION -lt $(version_code 2.7.51) ]] &&
13297                 skip "Need MDS version at least 2.7.51"
13298
13299         local lpath=$tdir.local
13300         local rpath=$tdir.remote
13301
13302         test_mkdir $DIR/$lpath
13303         test_mkdir $DIR/$rpath
13304
13305         for ((i = 0; i <= 101; i++)); do
13306                 lpath="$lpath/$i"
13307                 mkdir $DIR/$lpath
13308                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
13309                         error "get fid for local directory $DIR/$lpath failed"
13310                 check_path "$DIR/$lpath" $MOUNT $FID --link 0
13311
13312                 rpath="$rpath/$i"
13313                 test_mkdir $DIR/$rpath
13314                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
13315                         error "get fid for remote directory $DIR/$rpath failed"
13316                 check_path "$DIR/$rpath" $MOUNT $FID --link 0
13317         done
13318
13319         return 0
13320 }
13321 run_test 162c "fid2path works with paths 100 or more directories deep"
13322
13323 test_169() {
13324         # do directio so as not to populate the page cache
13325         log "creating a 10 Mb file"
13326         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13327         log "starting reads"
13328         dd if=$DIR/$tfile of=/dev/null bs=4096 &
13329         log "truncating the file"
13330         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13331         log "killing dd"
13332         kill %+ || true # reads might have finished
13333         echo "wait until dd is finished"
13334         wait
13335         log "removing the temporary file"
13336         rm -rf $DIR/$tfile || error "tmp file removal failed"
13337 }
13338 run_test 169 "parallel read and truncate should not deadlock"
13339
13340 test_170() {
13341         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13342
13343         $LCTL clear     # bug 18514
13344         $LCTL debug_daemon start $TMP/${tfile}_log_good
13345         touch $DIR/$tfile
13346         $LCTL debug_daemon stop
13347         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
13348                 error "sed failed to read log_good"
13349
13350         $LCTL debug_daemon start $TMP/${tfile}_log_good
13351         rm -rf $DIR/$tfile
13352         $LCTL debug_daemon stop
13353
13354         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
13355                error "lctl df log_bad failed"
13356
13357         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13358         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13359
13360         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
13361         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
13362
13363         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
13364                 error "bad_line good_line1 good_line2 are empty"
13365
13366         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13367         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
13368         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
13369
13370         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
13371         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
13372         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
13373
13374         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
13375                 error "bad_line_new good_line_new are empty"
13376
13377         local expected_good=$((good_line1 + good_line2*2))
13378
13379         rm -f $TMP/${tfile}*
13380         # LU-231, short malformed line may not be counted into bad lines
13381         if [ $bad_line -ne $bad_line_new ] &&
13382                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
13383                 error "expected $bad_line bad lines, but got $bad_line_new"
13384                 return 1
13385         fi
13386
13387         if [ $expected_good -ne $good_line_new ]; then
13388                 error "expected $expected_good good lines, but got $good_line_new"
13389                 return 2
13390         fi
13391         true
13392 }
13393 run_test 170 "test lctl df to handle corrupted log ====================="
13394
13395 test_171() { # bug20592
13396         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13397
13398         #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
13399         $LCTL set_param fail_loc=0x50e
13400         $LCTL set_param fail_val=3000
13401         multiop_bg_pause $DIR/$tfile O_s || true
13402         local MULTIPID=$!
13403         kill -USR1 $MULTIPID
13404         # cause log dump
13405         sleep 3
13406         wait $MULTIPID
13407         if dmesg | grep "recursive fault"; then
13408                 error "caught a recursive fault"
13409         fi
13410         $LCTL set_param fail_loc=0
13411         true
13412 }
13413 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
13414
13415 # it would be good to share it with obdfilter-survey/iokit-libecho code
13416 setup_obdecho_osc () {
13417         local rc=0
13418         local ost_nid=$1
13419         local obdfilter_name=$2
13420         echo "Creating new osc for $obdfilter_name on $ost_nid"
13421         # make sure we can find loopback nid
13422         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
13423
13424         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
13425                            ${obdfilter_name}_osc_UUID || rc=2; }
13426         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
13427                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
13428         return $rc
13429 }
13430
13431 cleanup_obdecho_osc () {
13432         local obdfilter_name=$1
13433         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
13434         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
13435         return 0
13436 }
13437
13438 obdecho_test() {
13439         local OBD=$1
13440         local node=$2
13441         local pages=${3:-64}
13442         local rc=0
13443         local id
13444
13445         local count=10
13446         local obd_size=$(get_obd_size $node $OBD)
13447         local page_size=$(get_page_size $node)
13448         if [[ -n "$obd_size" ]]; then
13449                 local new_count=$((obd_size / (pages * page_size / 1024)))
13450                 [[ $new_count -ge $count ]] || count=$new_count
13451         fi
13452
13453         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
13454         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
13455                            rc=2; }
13456         if [ $rc -eq 0 ]; then
13457             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
13458             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
13459         fi
13460         echo "New object id is $id"
13461         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
13462                            rc=4; }
13463         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
13464                            "test_brw $count w v $pages $id" || rc=4; }
13465         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
13466                            rc=4; }
13467         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
13468                                         "cleanup" || rc=5; }
13469         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
13470                                         "detach" || rc=6; }
13471         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
13472         return $rc
13473 }
13474
13475 test_180a() {
13476         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13477
13478         if ! module_loaded obdecho; then
13479                 load_module obdecho/obdecho &&
13480                         stack_trap "rmmod obdecho" EXIT ||
13481                         error "unable to load obdecho on client"
13482         fi
13483
13484         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
13485         local host=$($LCTL get_param -n osc.$osc.import |
13486                      awk '/current_connection:/ { print $2 }' )
13487         local target=$($LCTL get_param -n osc.$osc.import |
13488                        awk '/target:/ { print $2 }' )
13489         target=${target%_UUID}
13490
13491         if [ -n "$target" ]; then
13492                 setup_obdecho_osc $host $target &&
13493                         stack_trap "cleanup_obdecho_osc $target" EXIT ||
13494                         { error "obdecho setup failed with $?"; return; }
13495
13496                 obdecho_test ${target}_osc client ||
13497                         error "obdecho_test failed on ${target}_osc"
13498         else
13499                 $LCTL get_param osc.$osc.import
13500                 error "there is no osc.$osc.import target"
13501         fi
13502 }
13503 run_test 180a "test obdecho on osc"
13504
13505 test_180b() {
13506         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13507         remote_ost_nodsh && skip "remote OST with nodsh"
13508
13509         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13510                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13511                 error "failed to load module obdecho"
13512
13513         local target=$(do_facet ost1 $LCTL dl |
13514                        awk '/obdfilter/ { print $4; exit; }')
13515
13516         if [ -n "$target" ]; then
13517                 obdecho_test $target ost1 || error "obdecho_test failed with $?"
13518         else
13519                 do_facet ost1 $LCTL dl
13520                 error "there is no obdfilter target on ost1"
13521         fi
13522 }
13523 run_test 180b "test obdecho directly on obdfilter"
13524
13525 test_180c() { # LU-2598
13526         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13527         remote_ost_nodsh && skip "remote OST with nodsh"
13528         [[ $MDS1_VERSION -lt $(version_code 2.4.0) ]] &&
13529                 skip "Need MDS version at least 2.4.0"
13530
13531         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
13532                 stack_trap "do_facet ost1 rmmod obdecho" EXIT ||
13533                 error "failed to load module obdecho"
13534
13535         local target=$(do_facet ost1 $LCTL dl |
13536                        awk '/obdfilter/ { print $4; exit; }')
13537
13538         if [ -n "$target" ]; then
13539                 local pages=16384 # 64MB bulk I/O RPC size
13540
13541                 obdecho_test "$target" ost1 "$pages" ||
13542                         error "obdecho_test with pages=$pages failed with $?"
13543         else
13544                 do_facet ost1 $LCTL dl
13545                 error "there is no obdfilter target on ost1"
13546         fi
13547 }
13548 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
13549
13550 test_181() { # bug 22177
13551         test_mkdir $DIR/$tdir
13552         # create enough files to index the directory
13553         createmany -o $DIR/$tdir/foobar 4000
13554         # print attributes for debug purpose
13555         lsattr -d .
13556         # open dir
13557         multiop_bg_pause $DIR/$tdir D_Sc || return 1
13558         MULTIPID=$!
13559         # remove the files & current working dir
13560         unlinkmany $DIR/$tdir/foobar 4000
13561         rmdir $DIR/$tdir
13562         kill -USR1 $MULTIPID
13563         wait $MULTIPID
13564         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
13565         return 0
13566 }
13567 run_test 181 "Test open-unlinked dir ========================"
13568
13569 test_182() {
13570         local fcount=1000
13571         local tcount=10
13572
13573         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13574
13575         $LCTL set_param mdc.*.rpc_stats=clear
13576
13577         for (( i = 0; i < $tcount; i++ )) ; do
13578                 mkdir $DIR/$tdir/$i
13579         done
13580
13581         for (( i = 0; i < $tcount; i++ )) ; do
13582                 createmany -o $DIR/$tdir/$i/f- $fcount &
13583         done
13584         wait
13585
13586         for (( i = 0; i < $tcount; i++ )) ; do
13587                 unlinkmany $DIR/$tdir/$i/f- $fcount &
13588         done
13589         wait
13590
13591         $LCTL get_param mdc.*.rpc_stats
13592
13593         rm -rf $DIR/$tdir
13594 }
13595 run_test 182 "Test parallel modify metadata operations ================"
13596
13597 test_183() { # LU-2275
13598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13599         remote_mds_nodsh && skip "remote MDS with nodsh"
13600         [[ $MDS1_VERSION -lt $(version_code 2.3.56) ]] &&
13601                 skip "Need MDS version at least 2.3.56"
13602
13603         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13604         echo aaa > $DIR/$tdir/$tfile
13605
13606 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
13607         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
13608
13609         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
13610         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
13611
13612         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13613
13614         # Flush negative dentry cache
13615         touch $DIR/$tdir/$tfile
13616
13617         # We are not checking for any leaked references here, they'll
13618         # become evident next time we do cleanup with module unload.
13619         rm -rf $DIR/$tdir
13620 }
13621 run_test 183 "No crash or request leak in case of strange dispositions ========"
13622
13623 # test suite 184 is for LU-2016, LU-2017
13624 test_184a() {
13625         check_swap_layouts_support
13626
13627         dir0=$DIR/$tdir/$testnum
13628         test_mkdir -p -c1 $dir0
13629         ref1=/etc/passwd
13630         ref2=/etc/group
13631         file1=$dir0/f1
13632         file2=$dir0/f2
13633         $LFS setstripe -c1 $file1
13634         cp $ref1 $file1
13635         $LFS setstripe -c2 $file2
13636         cp $ref2 $file2
13637         gen1=$($LFS getstripe -g $file1)
13638         gen2=$($LFS getstripe -g $file2)
13639
13640         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
13641         gen=$($LFS getstripe -g $file1)
13642         [[ $gen1 != $gen ]] ||
13643                 "Layout generation on $file1 does not change"
13644         gen=$($LFS getstripe -g $file2)
13645         [[ $gen2 != $gen ]] ||
13646                 "Layout generation on $file2 does not change"
13647
13648         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
13649         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13650
13651         lfsck_verify_pfid $file1 $file2 || error "PFID are not transferred"
13652 }
13653 run_test 184a "Basic layout swap"
13654
13655 test_184b() {
13656         check_swap_layouts_support
13657
13658         dir0=$DIR/$tdir/$testnum
13659         mkdir -p $dir0 || error "creating dir $dir0"
13660         file1=$dir0/f1
13661         file2=$dir0/f2
13662         file3=$dir0/f3
13663         dir1=$dir0/d1
13664         dir2=$dir0/d2
13665         mkdir $dir1 $dir2
13666         $LFS setstripe -c1 $file1
13667         $LFS setstripe -c2 $file2
13668         $LFS setstripe -c1 $file3
13669         chown $RUNAS_ID $file3
13670         gen1=$($LFS getstripe -g $file1)
13671         gen2=$($LFS getstripe -g $file2)
13672
13673         $LFS swap_layouts $dir1 $dir2 &&
13674                 error "swap of directories layouts should fail"
13675         $LFS swap_layouts $dir1 $file1 &&
13676                 error "swap of directory and file layouts should fail"
13677         $RUNAS $LFS swap_layouts $file1 $file2 &&
13678                 error "swap of file we cannot write should fail"
13679         $LFS swap_layouts $file1 $file3 &&
13680                 error "swap of file with different owner should fail"
13681         /bin/true # to clear error code
13682 }
13683 run_test 184b "Forbidden layout swap (will generate errors)"
13684
13685 test_184c() {
13686         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
13687         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n"
13688         check_swap_layouts_support
13689
13690         local dir0=$DIR/$tdir/$testnum
13691         mkdir -p $dir0 || error "creating dir $dir0"
13692
13693         local ref1=$dir0/ref1
13694         local ref2=$dir0/ref2
13695         local file1=$dir0/file1
13696         local file2=$dir0/file2
13697         # create a file large enough for the concurrent test
13698         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
13699         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
13700         echo "ref file size: ref1($(stat -c %s $ref1))," \
13701              "ref2($(stat -c %s $ref2))"
13702
13703         cp $ref2 $file2
13704         dd if=$ref1 of=$file1 bs=16k &
13705         local DD_PID=$!
13706
13707         # Make sure dd starts to copy file
13708         while [ ! -f $file1 ]; do sleep 0.1; done
13709
13710         $LFS swap_layouts $file1 $file2
13711         local rc=$?
13712         wait $DD_PID
13713         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
13714         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
13715
13716         # how many bytes copied before swapping layout
13717         local copied=$(stat -c %s $file2)
13718         local remaining=$(stat -c %s $ref1)
13719         remaining=$((remaining - copied))
13720         echo "Copied $copied bytes before swapping layout..."
13721
13722         cmp -n $copied $file1 $ref2 | grep differ &&
13723                 error "Content mismatch [0, $copied) of ref2 and file1"
13724         cmp -n $copied $file2 $ref1 ||
13725                 error "Content mismatch [0, $copied) of ref1 and file2"
13726         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
13727                 error "Content mismatch [$copied, EOF) of ref1 and file1"
13728
13729         # clean up
13730         rm -f $ref1 $ref2 $file1 $file2
13731 }
13732 run_test 184c "Concurrent write and layout swap"
13733
13734 test_184d() {
13735         check_swap_layouts_support
13736         [ -z "$(which getfattr 2>/dev/null)" ] &&
13737                 skip_env "no getfattr command"
13738
13739         local file1=$DIR/$tdir/$tfile-1
13740         local file2=$DIR/$tdir/$tfile-2
13741         local file3=$DIR/$tdir/$tfile-3
13742         local lovea1
13743         local lovea2
13744
13745         mkdir -p $DIR/$tdir
13746         touch $file1 || error "create $file1 failed"
13747         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13748                 error "create $file2 failed"
13749         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13750                 error "create $file3 failed"
13751         lovea1=$(get_layout_param $file1)
13752
13753         $LFS swap_layouts $file2 $file3 ||
13754                 error "swap $file2 $file3 layouts failed"
13755         $LFS swap_layouts $file1 $file2 ||
13756                 error "swap $file1 $file2 layouts failed"
13757
13758         lovea2=$(get_layout_param $file2)
13759         echo "$lovea1"
13760         echo "$lovea2"
13761         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
13762
13763         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13764         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
13765 }
13766 run_test 184d "allow stripeless layouts swap"
13767
13768 test_184e() {
13769         [[ $MDS1_VERSION -ge $(version_code 2.6.94) ]] ||
13770                 skip "Need MDS version at least 2.6.94"
13771         check_swap_layouts_support
13772         [ -z "$(which getfattr 2>/dev/null)" ] &&
13773                 skip_env "no getfattr command"
13774
13775         local file1=$DIR/$tdir/$tfile-1
13776         local file2=$DIR/$tdir/$tfile-2
13777         local file3=$DIR/$tdir/$tfile-3
13778         local lovea
13779
13780         mkdir -p $DIR/$tdir
13781         touch $file1 || error "create $file1 failed"
13782         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
13783                 error "create $file2 failed"
13784         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
13785                 error "create $file3 failed"
13786
13787         $LFS swap_layouts $file1 $file2 ||
13788                 error "swap $file1 $file2 layouts failed"
13789
13790         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
13791         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
13792
13793         echo 123 > $file1 || error "Should be able to write into $file1"
13794
13795         $LFS swap_layouts $file1 $file3 ||
13796                 error "swap $file1 $file3 layouts failed"
13797
13798         echo 123 > $file1 || error "Should be able to write into $file1"
13799
13800         rm -rf $file1 $file2 $file3
13801 }
13802 run_test 184e "Recreate layout after stripeless layout swaps"
13803
13804 test_184f() {
13805         # Create a file with name longer than sizeof(struct stat) ==
13806         # 144 to see if we can get chars from the file name to appear
13807         # in the returned striping. Note that 'f' == 0x66.
13808         local file=$(for ((i = 0; i < 200; i++)); do echo -n f; done)
13809
13810         mkdir -p $DIR/$tdir
13811         mcreate $DIR/$tdir/$file
13812         if lfs find --stripe-count 0x6666 $DIR/$tdir | grep $file; then
13813                 error "IOC_MDC_GETFILEINFO returned garbage striping"
13814         fi
13815 }
13816 run_test 184f "IOC_MDC_GETFILEINFO for files with long names but no striping"
13817
13818 test_185() { # LU-2441
13819         # LU-3553 - no volatile file support in old servers
13820         [[ $MDS1_VERSION -ge $(version_code 2.3.60) ]] ||
13821                 skip "Need MDS version at least 2.3.60"
13822
13823         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
13824         touch $DIR/$tdir/spoo
13825         local mtime1=$(stat -c "%Y" $DIR/$tdir)
13826         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
13827                 error "cannot create/write a volatile file"
13828         [ "$FILESET" == "" ] &&
13829         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
13830                 error "FID is still valid after close"
13831
13832         multiop_bg_pause $DIR/$tdir vVw4096_c
13833         local multi_pid=$!
13834
13835         local OLD_IFS=$IFS
13836         IFS=":"
13837         local fidv=($fid)
13838         IFS=$OLD_IFS
13839         # assume that the next FID for this client is sequential, since stdout
13840         # is unfortunately eaten by multiop_bg_pause
13841         local n=$((${fidv[1]} + 1))
13842         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
13843         if [ "$FILESET" == "" ]; then
13844                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
13845                         error "FID is missing before close"
13846         fi
13847         kill -USR1 $multi_pid
13848         # 1 second delay, so if mtime change we will see it
13849         sleep 1
13850         local mtime2=$(stat -c "%Y" $DIR/$tdir)
13851         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
13852 }
13853 run_test 185 "Volatile file support"
13854
13855 test_187a() {
13856         remote_mds_nodsh && skip "remote MDS with nodsh"
13857         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13858                 skip "Need MDS version at least 2.3.0"
13859
13860         local dir0=$DIR/$tdir/$testnum
13861         mkdir -p $dir0 || error "creating dir $dir0"
13862
13863         local file=$dir0/file1
13864         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
13865         local dv1=$($LFS data_version $file)
13866         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
13867         local dv2=$($LFS data_version $file)
13868         [[ $dv1 != $dv2 ]] ||
13869                 error "data version did not change on write $dv1 == $dv2"
13870
13871         # clean up
13872         rm -f $file1
13873 }
13874 run_test 187a "Test data version change"
13875
13876 test_187b() {
13877         remote_mds_nodsh && skip "remote MDS with nodsh"
13878         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
13879                 skip "Need MDS version at least 2.3.0"
13880
13881         local dir0=$DIR/$tdir/$testnum
13882         mkdir -p $dir0 || error "creating dir $dir0"
13883
13884         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
13885         [[ ${DV[0]} != ${DV[1]} ]] ||
13886                 error "data version did not change on write"\
13887                       " ${DV[0]} == ${DV[1]}"
13888
13889         # clean up
13890         rm -f $file1
13891 }
13892 run_test 187b "Test data version change on volatile file"
13893
13894 test_200() {
13895         [ $PARALLEL == "yes" ] && skip "skip parallel run"
13896         remote_mgs_nodsh && skip "remote MGS with nodsh"
13897         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
13898
13899         local POOL=${POOL:-cea1}
13900         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
13901         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
13902         # Pool OST targets
13903         local first_ost=0
13904         local last_ost=$(($OSTCOUNT - 1))
13905         local ost_step=2
13906         local ost_list=$(seq $first_ost $ost_step $last_ost)
13907         local ost_range="$first_ost $last_ost $ost_step"
13908         local test_path=$POOL_ROOT/$POOL_DIR_NAME
13909         local file_dir=$POOL_ROOT/file_tst
13910         local subdir=$test_path/subdir
13911         local rc=0
13912
13913         if ! combined_mgs_mds ; then
13914                 mount_mgs_client
13915         fi
13916
13917         while : ; do
13918                 # former test_200a test_200b
13919                 pool_add $POOL                          || { rc=$? ; break; }
13920                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
13921                 # former test_200c test_200d
13922                 mkdir -p $test_path
13923                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
13924                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
13925                 mkdir -p $subdir
13926                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
13927                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
13928                                                         || { rc=$? ; break; }
13929                 # former test_200e test_200f
13930                 local files=$((OSTCOUNT*3))
13931                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
13932                                                         || { rc=$? ; break; }
13933                 pool_create_files $POOL $file_dir $files "$ost_list" \
13934                                                         || { rc=$? ; break; }
13935                 # former test_200g test_200h
13936                 pool_lfs_df $POOL                       || { rc=$? ; break; }
13937                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
13938
13939                 # former test_201a test_201b test_201c
13940                 pool_remove_first_target $POOL          || { rc=$? ; break; }
13941
13942                 local f=$test_path/$tfile
13943                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
13944                 pool_remove $POOL $f                    || { rc=$? ; break; }
13945                 break
13946         done
13947
13948         destroy_test_pools
13949
13950         if ! combined_mgs_mds ; then
13951                 umount_mgs_client
13952         fi
13953         return $rc
13954 }
13955 run_test 200 "OST pools"
13956
13957 # usage: default_attr <count | size | offset>
13958 default_attr() {
13959         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
13960 }
13961
13962 # usage: check_default_stripe_attr
13963 check_default_stripe_attr() {
13964         ACTUAL=$($LFS getstripe $* $DIR/$tdir)
13965         case $1 in
13966         --stripe-count|-c)
13967                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
13968         --stripe-size|-S)
13969                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
13970         --stripe-index|-i)
13971                 EXPECTED=-1;;
13972         *)
13973                 error "unknown getstripe attr '$1'"
13974         esac
13975
13976         [ $ACTUAL == $EXPECTED ] ||
13977                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
13978 }
13979
13980 test_204a() {
13981         test_mkdir $DIR/$tdir
13982         $LFS setstripe --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
13983
13984         check_default_stripe_attr --stripe-count
13985         check_default_stripe_attr --stripe-size
13986         check_default_stripe_attr --stripe-index
13987 }
13988 run_test 204a "Print default stripe attributes"
13989
13990 test_204b() {
13991         test_mkdir $DIR/$tdir
13992         $LFS setstripe --stripe-count 1 $DIR/$tdir
13993
13994         check_default_stripe_attr --stripe-size
13995         check_default_stripe_attr --stripe-index
13996 }
13997 run_test 204b "Print default stripe size and offset"
13998
13999 test_204c() {
14000         test_mkdir $DIR/$tdir
14001         $LFS setstripe --stripe-size 65536 $DIR/$tdir
14002
14003         check_default_stripe_attr --stripe-count
14004         check_default_stripe_attr --stripe-index
14005 }
14006 run_test 204c "Print default stripe count and offset"
14007
14008 test_204d() {
14009         test_mkdir $DIR/$tdir
14010         $LFS setstripe --stripe-index 0 $DIR/$tdir
14011
14012         check_default_stripe_attr --stripe-count
14013         check_default_stripe_attr --stripe-size
14014 }
14015 run_test 204d "Print default stripe count and size"
14016
14017 test_204e() {
14018         test_mkdir $DIR/$tdir
14019         $LFS setstripe -d $DIR/$tdir
14020
14021         check_default_stripe_attr --stripe-count --raw
14022         check_default_stripe_attr --stripe-size --raw
14023         check_default_stripe_attr --stripe-index --raw
14024 }
14025 run_test 204e "Print raw stripe attributes"
14026
14027 test_204f() {
14028         test_mkdir $DIR/$tdir
14029         $LFS setstripe --stripe-count 1 $DIR/$tdir
14030
14031         check_default_stripe_attr --stripe-size --raw
14032         check_default_stripe_attr --stripe-index --raw
14033 }
14034 run_test 204f "Print raw stripe size and offset"
14035
14036 test_204g() {
14037         test_mkdir $DIR/$tdir
14038         $LFS setstripe --stripe-size 65536 $DIR/$tdir
14039
14040         check_default_stripe_attr --stripe-count --raw
14041         check_default_stripe_attr --stripe-index --raw
14042 }
14043 run_test 204g "Print raw stripe count and offset"
14044
14045 test_204h() {
14046         test_mkdir $DIR/$tdir
14047         $LFS setstripe --stripe-index 0 $DIR/$tdir
14048
14049         check_default_stripe_attr --stripe-count --raw
14050         check_default_stripe_attr --stripe-size --raw
14051 }
14052 run_test 204h "Print raw stripe count and size"
14053
14054 # Figure out which job scheduler is being used, if any,
14055 # or use a fake one
14056 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
14057         JOBENV=SLURM_JOB_ID
14058 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
14059         JOBENV=LSB_JOBID
14060 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
14061         JOBENV=PBS_JOBID
14062 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
14063         JOBENV=LOADL_STEP_ID
14064 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
14065         JOBENV=JOB_ID
14066 else
14067         $LCTL list_param jobid_name > /dev/null 2>&1
14068         if [ $? -eq 0 ]; then
14069                 JOBENV=nodelocal
14070         else
14071                 JOBENV=FAKE_JOBID
14072         fi
14073 fi
14074 LUSTRE_JOBID_SIZE=31 # plus NUL terminator
14075
14076 verify_jobstats() {
14077         local cmd=($1)
14078         shift
14079         local facets="$@"
14080
14081 # we don't really need to clear the stats for this test to work, since each
14082 # command has a unique jobid, but it makes debugging easier if needed.
14083 #       for facet in $facets; do
14084 #               local dev=$(convert_facet2label $facet)
14085 #               # clear old jobstats
14086 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
14087 #       done
14088
14089         # use a new JobID for each test, or we might see an old one
14090         [ "$JOBENV" = "FAKE_JOBID" ] &&
14091                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
14092
14093         JOBVAL=${!JOBENV:0:$LUSTRE_JOBID_SIZE}
14094
14095         [ "$JOBENV" = "nodelocal" ] && {
14096                 FAKE_JOBID=id.$testnum.%e.$RANDOM
14097                 $LCTL set_param jobid_name=$FAKE_JOBID
14098                 JOBVAL=${FAKE_JOBID/\%e/$(basename ${cmd[0]})}
14099         }
14100
14101         log "Test: ${cmd[*]}"
14102         log "Using JobID environment $($LCTL get_param -n jobid_var)=$JOBVAL"
14103
14104         if [ $JOBENV = "FAKE_JOBID" ]; then
14105                 FAKE_JOBID=$JOBVAL ${cmd[*]}
14106         else
14107                 ${cmd[*]}
14108         fi
14109
14110         # all files are created on OST0000
14111         for facet in $facets; do
14112                 local stats="*.$(convert_facet2label $facet).job_stats"
14113
14114                 # strip out libtool wrappers for in-tree executables
14115                 if [ $(do_facet $facet lctl get_param $stats |
14116                        sed -e 's/\.lt-/./' | grep -c $JOBVAL) -ne 1 ]; then
14117                         do_facet $facet lctl get_param $stats
14118                         error "No jobstats for $JOBVAL found on $facet::$stats"
14119                 fi
14120         done
14121 }
14122
14123 jobstats_set() {
14124         local new_jobenv=$1
14125
14126         set_persistent_param_and_check client "jobid_var" \
14127                 "$FSNAME.sys.jobid_var" $new_jobenv
14128 }
14129
14130 test_205() { # Job stats
14131         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14132         [[ $MDS1_VERSION -ge $(version_code 2.7.1) ]] ||
14133                 skip "Need MDS version with at least 2.7.1"
14134         remote_mgs_nodsh && skip "remote MGS with nodsh"
14135         remote_mds_nodsh && skip "remote MDS with nodsh"
14136         remote_ost_nodsh && skip "remote OST with nodsh"
14137         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
14138                 skip "Server doesn't support jobstats"
14139         [[ $JOBID_VAR = disable ]] && skip_env "jobstats is disabled"
14140
14141         local old_jobenv=$($LCTL get_param -n jobid_var)
14142         [ $old_jobenv != $JOBENV ] && jobstats_set $JOBENV
14143
14144         if [[ $PERM_CMD == *"set_param -P"* ]]; then
14145                 stack_trap "do_facet mgs $PERM_CMD jobid_var=$old_jobenv" EXIT
14146         else
14147                 stack_trap "do_facet mgs $PERM_CMD \
14148                         $FSNAME.sys.jobid_var=$old_jobenv" EXIT
14149         fi
14150         changelog_register
14151
14152         local old_interval=$(do_facet $SINGLEMDS lctl get_param -n \
14153                                 mdt.*.job_cleanup_interval | head -n 1)
14154         local new_interval=5
14155         do_facet $SINGLEMDS \
14156                 $LCTL set_param mdt.*.job_cleanup_interval=$new_interval
14157         stack_trap "do_facet $SINGLEMDS \
14158                 $LCTL set_param mdt.*.job_cleanup_interval=$old_interval" EXIT
14159         local start=$SECONDS
14160
14161         local cmd
14162         # mkdir
14163         cmd="mkdir $DIR/$tdir"
14164         verify_jobstats "$cmd" "$SINGLEMDS"
14165         # rmdir
14166         cmd="rmdir $DIR/$tdir"
14167         verify_jobstats "$cmd" "$SINGLEMDS"
14168         # mkdir on secondary MDT
14169         if [ $MDSCOUNT -gt 1 ]; then
14170                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
14171                 verify_jobstats "$cmd" "mds2"
14172         fi
14173         # mknod
14174         cmd="mknod $DIR/$tfile c 1 3"
14175         verify_jobstats "$cmd" "$SINGLEMDS"
14176         # unlink
14177         cmd="rm -f $DIR/$tfile"
14178         verify_jobstats "$cmd" "$SINGLEMDS"
14179         # create all files on OST0000 so verify_jobstats can find OST stats
14180         # open & close
14181         cmd="$LFS setstripe -i 0 -c 1 $DIR/$tfile"
14182         verify_jobstats "$cmd" "$SINGLEMDS"
14183         # setattr
14184         cmd="touch $DIR/$tfile"
14185         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14186         # write
14187         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
14188         verify_jobstats "$cmd" "ost1"
14189         # read
14190         cancel_lru_locks osc
14191         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
14192         verify_jobstats "$cmd" "ost1"
14193         # truncate
14194         cmd="$TRUNCATE $DIR/$tfile 0"
14195         verify_jobstats "$cmd" "$SINGLEMDS ost1"
14196         # rename
14197         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
14198         verify_jobstats "$cmd" "$SINGLEMDS"
14199         # jobstats expiry - sleep until old stats should be expired
14200         local left=$((new_interval + 5 - (SECONDS - start)))
14201         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
14202                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
14203                         "0" $left
14204         cmd="mkdir $DIR/$tdir.expire"
14205         verify_jobstats "$cmd" "$SINGLEMDS"
14206         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
14207             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
14208
14209         # Ensure that jobid are present in changelog (if supported by MDS)
14210         if [ $MDS1_VERSION -ge $(version_code 2.6.52) ];then
14211                 changelog_dump | tail -10
14212                 jobids=$(changelog_dump | tail -9 | grep -c "j=")
14213                 [ $jobids -eq 9 ] ||
14214                         error "Wrong changelog jobid count $jobids != 9"
14215
14216                 # LU-5862
14217                 JOBENV="disable"
14218                 jobstats_set $JOBENV
14219                 touch $DIR/$tfile
14220                 changelog_dump | grep $tfile
14221                 jobids=$(changelog_dump | grep $tfile | tail -1 | grep -c "j=")
14222                 [ $jobids -eq 0 ] ||
14223                         error "Unexpected jobids when jobid_var=$JOBENV"
14224         fi
14225
14226         lctl set_param jobid_var=USER jobid_name="S.%j.%e.%u.%h.E"
14227         JOBENV="JOBCOMPLEX"
14228         JOBCOMPLEX="S.$USER.touch.$(id -u).$(hostname).E"
14229
14230         verify_jobstats "touch $DIR/$tfile" $SINGLEMDS
14231 }
14232 run_test 205 "Verify job stats"
14233
14234 # LU-1480, LU-1773 and LU-1657
14235 test_206() {
14236         mkdir -p $DIR/$tdir
14237         $LFS setstripe -c -1 $DIR/$tdir
14238 #define OBD_FAIL_LOV_INIT 0x1403
14239         $LCTL set_param fail_loc=0xa0001403
14240         $LCTL set_param fail_val=1
14241         touch $DIR/$tdir/$tfile || true
14242 }
14243 run_test 206 "fail lov_init_raid0() doesn't lbug"
14244
14245 test_207a() {
14246         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14247         local fsz=`stat -c %s $DIR/$tfile`
14248         cancel_lru_locks mdc
14249
14250         # do not return layout in getattr intent
14251 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
14252         $LCTL set_param fail_loc=0x170
14253         local sz=`stat -c %s $DIR/$tfile`
14254
14255         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
14256
14257         rm -rf $DIR/$tfile
14258 }
14259 run_test 207a "can refresh layout at glimpse"
14260
14261 test_207b() {
14262         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
14263         local cksum=`md5sum $DIR/$tfile`
14264         local fsz=`stat -c %s $DIR/$tfile`
14265         cancel_lru_locks mdc
14266         cancel_lru_locks osc
14267
14268         # do not return layout in getattr intent
14269 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
14270         $LCTL set_param fail_loc=0x171
14271
14272         # it will refresh layout after the file is opened but before read issues
14273         echo checksum is "$cksum"
14274         echo "$cksum" |md5sum -c --quiet || error "file differs"
14275
14276         rm -rf $DIR/$tfile
14277 }
14278 run_test 207b "can refresh layout at open"
14279
14280 test_208() {
14281         # FIXME: in this test suite, only RD lease is used. This is okay
14282         # for now as only exclusive open is supported. After generic lease
14283         # is done, this test suite should be revised. - Jinshan
14284
14285         remote_mds_nodsh && skip "remote MDS with nodsh"
14286         [[ $MDS1_VERSION -ge $(version_code 2.4.52) ]] ||
14287                 skip "Need MDS version at least 2.4.52"
14288
14289         echo "==== test 1: verify get lease work"
14290         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
14291
14292         echo "==== test 2: verify lease can be broken by upcoming open"
14293         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14294         local PID=$!
14295         sleep 1
14296
14297         $MULTIOP $DIR/$tfile oO_RDONLY:c
14298         kill -USR1 $PID && wait $PID || error "break lease error"
14299
14300         echo "==== test 3: verify lease can't be granted if an open already exists"
14301         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
14302         local PID=$!
14303         sleep 1
14304
14305         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
14306         kill -USR1 $PID && wait $PID || error "open file error"
14307
14308         echo "==== test 4: lease can sustain over recovery"
14309         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
14310         PID=$!
14311         sleep 1
14312
14313         fail mds1
14314
14315         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
14316
14317         echo "==== test 5: lease broken can't be regained by replay"
14318         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
14319         PID=$!
14320         sleep 1
14321
14322         # open file to break lease and then recovery
14323         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
14324         fail mds1
14325
14326         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
14327
14328         rm -f $DIR/$tfile
14329 }
14330 run_test 208 "Exclusive open"
14331
14332 test_209() {
14333         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
14334                 skip_env "must have disp_stripe"
14335
14336         touch $DIR/$tfile
14337         sync; sleep 5; sync;
14338
14339         echo 3 > /proc/sys/vm/drop_caches
14340         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14341
14342         # open/close 500 times
14343         for i in $(seq 500); do
14344                 cat $DIR/$tfile
14345         done
14346
14347         echo 3 > /proc/sys/vm/drop_caches
14348         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
14349
14350         echo "before: $req_before, after: $req_after"
14351         [ $((req_after - req_before)) -ge 300 ] &&
14352                 error "open/close requests are not freed"
14353         return 0
14354 }
14355 run_test 209 "read-only open/close requests should be freed promptly"
14356
14357 test_212() {
14358         size=`date +%s`
14359         size=$((size % 8192 + 1))
14360         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
14361         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
14362         rm -f $DIR/f212 $DIR/f212.xyz
14363 }
14364 run_test 212 "Sendfile test ============================================"
14365
14366 test_213() {
14367         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
14368         cancel_lru_locks osc
14369         lctl set_param fail_loc=0x8000040f
14370         # generate a read lock
14371         cat $DIR/$tfile > /dev/null
14372         # write to the file, it will try to cancel the above read lock.
14373         cat /etc/hosts >> $DIR/$tfile
14374 }
14375 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
14376
14377 test_214() { # for bug 20133
14378         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
14379         for (( i=0; i < 340; i++ )) ; do
14380                 touch $DIR/$tdir/d214c/a$i
14381         done
14382
14383         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
14384         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
14385         ls $DIR/d214c || error "ls $DIR/d214c failed"
14386         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
14387         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
14388 }
14389 run_test 214 "hash-indexed directory test - bug 20133"
14390
14391 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
14392 create_lnet_proc_files() {
14393         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
14394 }
14395
14396 # counterpart of create_lnet_proc_files
14397 remove_lnet_proc_files() {
14398         rm -f $TMP/lnet_$1.sys
14399 }
14400
14401 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14402 # 3rd arg as regexp for body
14403 check_lnet_proc_stats() {
14404         local l=$(cat "$TMP/lnet_$1" |wc -l)
14405         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
14406
14407         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
14408 }
14409
14410 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
14411 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
14412 # optional and can be regexp for 2nd line (lnet.routes case)
14413 check_lnet_proc_entry() {
14414         local blp=2          # blp stands for 'position of 1st line of body'
14415         [ -z "$5" ] || blp=3 # lnet.routes case
14416
14417         local l=$(cat "$TMP/lnet_$1" |wc -l)
14418         # subtracting one from $blp because the body can be empty
14419         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
14420
14421         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
14422                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
14423
14424         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
14425                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
14426
14427         # bail out if any unexpected line happened
14428         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
14429         [ "$?" != 0 ] || error "$2 misformatted"
14430 }
14431
14432 test_215() { # for bugs 18102, 21079, 21517
14433         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14434
14435         local N='(0|[1-9][0-9]*)'       # non-negative numeric
14436         local P='[1-9][0-9]*'           # positive numeric
14437         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
14438         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
14439         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
14440         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
14441
14442         local L1 # regexp for 1st line
14443         local L2 # regexp for 2nd line (optional)
14444         local BR # regexp for the rest (body)
14445
14446         # lnet.stats should look as 11 space-separated non-negative numerics
14447         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
14448         create_lnet_proc_files "stats"
14449         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
14450         remove_lnet_proc_files "stats"
14451
14452         # lnet.routes should look like this:
14453         # Routing disabled/enabled
14454         # net hops priority state router
14455         # where net is a string like tcp0, hops > 0, priority >= 0,
14456         # state is up/down,
14457         # router is a string like 192.168.1.1@tcp2
14458         L1="^Routing (disabled|enabled)$"
14459         L2="^net +hops +priority +state +router$"
14460         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
14461         create_lnet_proc_files "routes"
14462         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
14463         remove_lnet_proc_files "routes"
14464
14465         # lnet.routers should look like this:
14466         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
14467         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
14468         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
14469         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
14470         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
14471         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
14472         create_lnet_proc_files "routers"
14473         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
14474         remove_lnet_proc_files "routers"
14475
14476         # lnet.peers should look like this:
14477         # nid refs state last max rtr min tx min queue
14478         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
14479         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
14480         # numeric (0 or >0 or <0), queue >= 0.
14481         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
14482         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
14483         create_lnet_proc_files "peers"
14484         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
14485         remove_lnet_proc_files "peers"
14486
14487         # lnet.buffers  should look like this:
14488         # pages count credits min
14489         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
14490         L1="^pages +count +credits +min$"
14491         BR="^ +$N +$N +$I +$I$"
14492         create_lnet_proc_files "buffers"
14493         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
14494         remove_lnet_proc_files "buffers"
14495
14496         # lnet.nis should look like this:
14497         # nid status alive refs peer rtr max tx min
14498         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
14499         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
14500         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
14501         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
14502         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
14503         create_lnet_proc_files "nis"
14504         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
14505         remove_lnet_proc_files "nis"
14506
14507         # can we successfully write to lnet.stats?
14508         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
14509 }
14510 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
14511
14512 test_216() { # bug 20317
14513         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14514         remote_ost_nodsh && skip "remote OST with nodsh"
14515
14516         local node
14517         local facets=$(get_facets OST)
14518         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14519
14520         save_lustre_params client "osc.*.contention_seconds" > $p
14521         save_lustre_params $facets \
14522                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
14523         save_lustre_params $facets \
14524                 "ldlm.namespaces.filter-*.contended_locks" >> $p
14525         save_lustre_params $facets \
14526                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
14527         clear_stats osc.*.osc_stats
14528
14529         # agressive lockless i/o settings
14530         do_nodes $(comma_list $(osts_nodes)) \
14531                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
14532                         ldlm.namespaces.filter-*.contended_locks=0 \
14533                         ldlm.namespaces.filter-*.contention_seconds=60"
14534         lctl set_param -n osc.*.contention_seconds=60
14535
14536         $DIRECTIO write $DIR/$tfile 0 10 4096
14537         $CHECKSTAT -s 40960 $DIR/$tfile
14538
14539         # disable lockless i/o
14540         do_nodes $(comma_list $(osts_nodes)) \
14541                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
14542                         ldlm.namespaces.filter-*.contended_locks=32 \
14543                         ldlm.namespaces.filter-*.contention_seconds=0"
14544         lctl set_param -n osc.*.contention_seconds=0
14545         clear_stats osc.*.osc_stats
14546
14547         dd if=/dev/zero of=$DIR/$tfile count=0
14548         $CHECKSTAT -s 0 $DIR/$tfile
14549
14550         restore_lustre_params <$p
14551         rm -f $p
14552         rm $DIR/$tfile
14553 }
14554 run_test 216 "check lockless direct write updates file size and kms correctly"
14555
14556 test_217() { # bug 22430
14557         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14558
14559         local node
14560         local nid
14561
14562         for node in $(nodes_list); do
14563                 nid=$(host_nids_address $node $NETTYPE)
14564                 if [[ $nid = *-* ]] ; then
14565                         echo "lctl ping $(h2nettype $nid)"
14566                         lctl ping $(h2nettype $nid)
14567                 else
14568                         echo "skipping $node (no hyphen detected)"
14569                 fi
14570         done
14571 }
14572 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
14573
14574 test_218() {
14575        # do directio so as not to populate the page cache
14576        log "creating a 10 Mb file"
14577        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
14578        log "starting reads"
14579        dd if=$DIR/$tfile of=/dev/null bs=4096 &
14580        log "truncating the file"
14581        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
14582        log "killing dd"
14583        kill %+ || true # reads might have finished
14584        echo "wait until dd is finished"
14585        wait
14586        log "removing the temporary file"
14587        rm -rf $DIR/$tfile || error "tmp file removal failed"
14588 }
14589 run_test 218 "parallel read and truncate should not deadlock"
14590
14591 test_219() {
14592         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14593
14594         # write one partial page
14595         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
14596         # set no grant so vvp_io_commit_write will do sync write
14597         $LCTL set_param fail_loc=0x411
14598         # write a full page at the end of file
14599         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
14600
14601         $LCTL set_param fail_loc=0
14602         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
14603         $LCTL set_param fail_loc=0x411
14604         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
14605
14606         # LU-4201
14607         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
14608         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
14609 }
14610 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
14611
14612 test_220() { #LU-325
14613         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14614         remote_ost_nodsh && skip "remote OST with nodsh"
14615         remote_mds_nodsh && skip "remote MDS with nodsh"
14616         remote_mgs_nodsh && skip "remote MGS with nodsh"
14617
14618         local OSTIDX=0
14619
14620         # create on MDT0000 so the last_id and next_id are correct
14621         mkdir $DIR/$tdir
14622         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
14623         OST=${OST%_UUID}
14624
14625         # on the mdt's osc
14626         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
14627         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
14628                         osc.$mdtosc_proc1.prealloc_last_id)
14629         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
14630                         osc.$mdtosc_proc1.prealloc_next_id)
14631
14632         $LFS df -i
14633
14634         if ! combined_mgs_mds ; then
14635                 mount_mgs_client
14636         fi
14637
14638         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
14639         #define OBD_FAIL_OST_ENOINO              0x229
14640         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
14641         create_pool $FSNAME.$TESTNAME || return 1
14642         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
14643
14644         $LFS setstripe $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
14645
14646         MDSOBJS=$((last_id - next_id))
14647         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
14648
14649         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
14650         echo "OST still has $count kbytes free"
14651
14652         echo "create $MDSOBJS files @next_id..."
14653         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
14654
14655         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14656                         osc.$mdtosc_proc1.prealloc_last_id)
14657         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
14658                         osc.$mdtosc_proc1.prealloc_next_id)
14659
14660         echo "after creation, last_id=$last_id2, next_id=$next_id2"
14661         $LFS df -i
14662
14663         echo "cleanup..."
14664
14665         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
14666         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
14667
14668         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
14669                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
14670         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14671                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
14672         echo "unlink $MDSOBJS files @$next_id..."
14673         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
14674
14675         if ! combined_mgs_mds ; then
14676                 umount_mgs_client
14677         fi
14678 }
14679 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
14680
14681 test_221() {
14682         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14683
14684         dd if=`which date` of=$MOUNT/date oflag=sync
14685         chmod +x $MOUNT/date
14686
14687         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
14688         $LCTL set_param fail_loc=0x80001401
14689
14690         $MOUNT/date > /dev/null
14691         rm -f $MOUNT/date
14692 }
14693 run_test 221 "make sure fault and truncate race to not cause OOM"
14694
14695 test_222a () {
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_DELAY           0x31a
14705         $LCTL set_param fail_loc=0x31a
14706         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
14707         $LCTL set_param fail_loc=0
14708         rm -r $DIR/$tdir
14709 }
14710 run_test 222a "AGL for ls should not trigger CLIO lock failure"
14711
14712 test_222b () {
14713         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14714
14715         rm -rf $DIR/$tdir
14716         test_mkdir $DIR/$tdir
14717         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14718         createmany -o $DIR/$tdir/$tfile 10
14719         cancel_lru_locks mdc
14720         cancel_lru_locks osc
14721         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
14722         $LCTL set_param fail_loc=0x31a
14723         rm -r $DIR/$tdir || error "AGL for rmdir failed"
14724         $LCTL set_param fail_loc=0
14725 }
14726 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
14727
14728 test_223 () {
14729         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14730
14731         rm -rf $DIR/$tdir
14732         test_mkdir $DIR/$tdir
14733         $LFS setstripe -c 1 -i 0 $DIR/$tdir
14734         createmany -o $DIR/$tdir/$tfile 10
14735         cancel_lru_locks mdc
14736         cancel_lru_locks osc
14737         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
14738         $LCTL set_param fail_loc=0x31b
14739         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
14740         $LCTL set_param fail_loc=0
14741         rm -r $DIR/$tdir
14742 }
14743 run_test 223 "osc reenqueue if without AGL lock granted ======================="
14744
14745 test_224a() { # LU-1039, MRP-303
14746         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14747
14748         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
14749         $LCTL set_param fail_loc=0x508
14750         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
14751         $LCTL set_param fail_loc=0
14752         df $DIR
14753 }
14754 run_test 224a "Don't panic on bulk IO failure"
14755
14756 test_224b() { # LU-1039, MRP-303
14757         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14758
14759         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
14760         cancel_lru_locks osc
14761         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
14762         $LCTL set_param fail_loc=0x515
14763         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
14764         $LCTL set_param fail_loc=0
14765         df $DIR
14766 }
14767 run_test 224b "Don't panic on bulk IO failure"
14768
14769 test_224c() { # LU-6441
14770         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14771         remote_mds_nodsh && skip "remote MDS with nodsh"
14772
14773         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
14774         save_writethrough $p
14775         set_cache writethrough on
14776
14777         local pages_per_rpc=$($LCTL get_param \
14778                                 osc.*.max_pages_per_rpc)
14779         local at_max=$($LCTL get_param -n at_max)
14780         local timeout=$($LCTL get_param -n timeout)
14781         local test_at="at_max"
14782         local param_at="$FSNAME.sys.at_max"
14783         local test_timeout="timeout"
14784         local param_timeout="$FSNAME.sys.timeout"
14785
14786         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
14787
14788         set_persistent_param_and_check client "$test_at" "$param_at" 0
14789         set_persistent_param_and_check client "$test_timeout" "$param_timeout" 5
14790
14791         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3 0x520
14792         do_facet ost1 "$LCTL set_param fail_loc=0x520"
14793         $LFS setstripe -c 1 -i 0 $DIR/$tfile
14794         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
14795         sync
14796         do_facet ost1 "$LCTL set_param fail_loc=0"
14797
14798         set_persistent_param_and_check client "$test_at" "$param_at" $at_max
14799         set_persistent_param_and_check client "$test_timeout" "$param_timeout" \
14800                 $timeout
14801
14802         $LCTL set_param -n $pages_per_rpc
14803         restore_lustre_params < $p
14804         rm -f $p
14805 }
14806 run_test 224c "Don't hang if one of md lost during large bulk RPC"
14807
14808 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
14809 test_225a () {
14810         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14811         if [ -z ${MDSSURVEY} ]; then
14812                 skip_env "mds-survey not found"
14813         fi
14814         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14815                 skip "Need MDS version at least 2.2.51"
14816
14817         local mds=$(facet_host $SINGLEMDS)
14818         local target=$(do_nodes $mds 'lctl dl' |
14819                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14820
14821         local cmd1="file_count=1000 thrhi=4"
14822         local cmd2="dir_count=2 layer=mdd stripe_count=0"
14823         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14824         local cmd="$cmd1 $cmd2 $cmd3"
14825
14826         rm -f ${TMP}/mds_survey*
14827         echo + $cmd
14828         eval $cmd || error "mds-survey with zero-stripe failed"
14829         cat ${TMP}/mds_survey*
14830         rm -f ${TMP}/mds_survey*
14831 }
14832 run_test 225a "Metadata survey sanity with zero-stripe"
14833
14834 test_225b () {
14835         if [ -z ${MDSSURVEY} ]; then
14836                 skip_env "mds-survey not found"
14837         fi
14838         [ $MDS1_VERSION -ge $(version_code 2.2.51) ] ||
14839                 skip "Need MDS version at least 2.2.51"
14840         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14841         remote_mds_nodsh && skip "remote MDS with nodsh"
14842         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
14843                 skip_env "Need to mount OST to test"
14844         fi
14845
14846         local mds=$(facet_host $SINGLEMDS)
14847         local target=$(do_nodes $mds 'lctl dl' |
14848                        awk '{ if ($2 == "UP" && $3 == "mdt") { print $4 }}')
14849
14850         local cmd1="file_count=1000 thrhi=4"
14851         local cmd2="dir_count=2 layer=mdd stripe_count=1"
14852         local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
14853         local cmd="$cmd1 $cmd2 $cmd3"
14854
14855         rm -f ${TMP}/mds_survey*
14856         echo + $cmd
14857         eval $cmd || error "mds-survey with stripe_count failed"
14858         cat ${TMP}/mds_survey*
14859         rm -f ${TMP}/mds_survey*
14860 }
14861 run_test 225b "Metadata survey sanity with stripe_count = 1"
14862
14863 mcreate_path2fid () {
14864         local mode=$1
14865         local major=$2
14866         local minor=$3
14867         local name=$4
14868         local desc=$5
14869         local path=$DIR/$tdir/$name
14870         local fid
14871         local rc
14872         local fid_path
14873
14874         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
14875                 error "cannot create $desc"
14876
14877         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
14878         rc=$?
14879         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
14880
14881         fid_path=$($LFS fid2path $MOUNT $fid)
14882         rc=$?
14883         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
14884
14885         [ "$path" == "$fid_path" ] ||
14886                 error "fid2path returned $fid_path, expected $path"
14887
14888         echo "pass with $path and $fid"
14889 }
14890
14891 test_226a () {
14892         rm -rf $DIR/$tdir
14893         mkdir -p $DIR/$tdir
14894
14895         mcreate_path2fid 0010666 0 0 fifo "FIFO"
14896         mcreate_path2fid 0020666 1 3 null "character special file (null)"
14897         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
14898         mcreate_path2fid 0040666 0 0 dir "directory"
14899         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
14900         mcreate_path2fid 0100666 0 0 file "regular file"
14901         mcreate_path2fid 0120666 0 0 link "symbolic link"
14902         mcreate_path2fid 0140666 0 0 sock "socket"
14903 }
14904 run_test 226a "call path2fid and fid2path on files of all type"
14905
14906 test_226b () {
14907         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
14908
14909         local MDTIDX=1
14910
14911         rm -rf $DIR/$tdir
14912         mkdir -p $DIR/$tdir
14913         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
14914                 error "create remote directory failed"
14915         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
14916         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
14917                                 "character special file (null)"
14918         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
14919                                 "character special file (no device)"
14920         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
14921         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
14922                                 "block special file (loop)"
14923         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
14924         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
14925         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
14926 }
14927 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
14928
14929 # LU-1299 Executing or running ldd on a truncated executable does not
14930 # cause an out-of-memory condition.
14931 test_227() {
14932         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14933         [ -z "$(which ldd)" ] && skip_env "should have ldd tool"
14934
14935         dd if=$(which date) of=$MOUNT/date bs=1k count=1
14936         chmod +x $MOUNT/date
14937
14938         $MOUNT/date > /dev/null
14939         ldd $MOUNT/date > /dev/null
14940         rm -f $MOUNT/date
14941 }
14942 run_test 227 "running truncated executable does not cause OOM"
14943
14944 # LU-1512 try to reuse idle OI blocks
14945 test_228a() {
14946         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14947         remote_mds_nodsh && skip "remote MDS with nodsh"
14948         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14949
14950         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14951         local myDIR=$DIR/$tdir
14952
14953         mkdir -p $myDIR
14954         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14955         $LCTL set_param fail_loc=0x80001002
14956         createmany -o $myDIR/t- 10000
14957         $LCTL set_param fail_loc=0
14958         # The guard is current the largest FID holder
14959         touch $myDIR/guard
14960         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
14961                     tr -d '[')
14962         local IDX=$(($SEQ % 64))
14963
14964         do_facet $SINGLEMDS sync
14965         # Make sure journal flushed.
14966         sleep 6
14967         local blk1=$(do_facet $SINGLEMDS \
14968                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14969                      grep Blockcount | awk '{print $4}')
14970
14971         # Remove old files, some OI blocks will become idle.
14972         unlinkmany $myDIR/t- 10000
14973         # Create new files, idle OI blocks should be reused.
14974         createmany -o $myDIR/t- 2000
14975         do_facet $SINGLEMDS sync
14976         # Make sure journal flushed.
14977         sleep 6
14978         local blk2=$(do_facet $SINGLEMDS \
14979                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
14980                      grep Blockcount | awk '{print $4}')
14981
14982         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
14983 }
14984 run_test 228a "try to reuse idle OI blocks"
14985
14986 test_228b() {
14987         [ $PARALLEL == "yes" ] && skip "skip parallel run"
14988         remote_mds_nodsh && skip "remote MDS with nodsh"
14989         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
14990
14991         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
14992         local myDIR=$DIR/$tdir
14993
14994         mkdir -p $myDIR
14995         #define OBD_FAIL_SEQ_EXHAUST             0x1002
14996         $LCTL set_param fail_loc=0x80001002
14997         createmany -o $myDIR/t- 10000
14998         $LCTL set_param fail_loc=0
14999         # The guard is current the largest FID holder
15000         touch $myDIR/guard
15001         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15002                     tr -d '[')
15003         local IDX=$(($SEQ % 64))
15004
15005         do_facet $SINGLEMDS sync
15006         # Make sure journal flushed.
15007         sleep 6
15008         local blk1=$(do_facet $SINGLEMDS \
15009                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15010                      grep Blockcount | awk '{print $4}')
15011
15012         # Remove old files, some OI blocks will become idle.
15013         unlinkmany $myDIR/t- 10000
15014
15015         # stop the MDT
15016         stop $SINGLEMDS || error "Fail to stop MDT."
15017         # remount the MDT
15018         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
15019
15020         df $MOUNT || error "Fail to df."
15021         # Create new files, idle OI blocks should be reused.
15022         createmany -o $myDIR/t- 2000
15023         do_facet $SINGLEMDS sync
15024         # Make sure journal flushed.
15025         sleep 6
15026         local blk2=$(do_facet $SINGLEMDS \
15027                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15028                      grep Blockcount | awk '{print $4}')
15029
15030         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15031 }
15032 run_test 228b "idle OI blocks can be reused after MDT restart"
15033
15034 #LU-1881
15035 test_228c() {
15036         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15037         remote_mds_nodsh && skip "remote MDS with nodsh"
15038         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
15039
15040         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
15041         local myDIR=$DIR/$tdir
15042
15043         mkdir -p $myDIR
15044         #define OBD_FAIL_SEQ_EXHAUST             0x1002
15045         $LCTL set_param fail_loc=0x80001002
15046         # 20000 files can guarantee there are index nodes in the OI file
15047         createmany -o $myDIR/t- 20000
15048         $LCTL set_param fail_loc=0
15049         # The guard is current the largest FID holder
15050         touch $myDIR/guard
15051         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
15052                     tr -d '[')
15053         local IDX=$(($SEQ % 64))
15054
15055         do_facet $SINGLEMDS sync
15056         # Make sure journal flushed.
15057         sleep 6
15058         local blk1=$(do_facet $SINGLEMDS \
15059                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15060                      grep Blockcount | awk '{print $4}')
15061
15062         # Remove old files, some OI blocks will become idle.
15063         unlinkmany $myDIR/t- 20000
15064         rm -f $myDIR/guard
15065         # The OI file should become empty now
15066
15067         # Create new files, idle OI blocks should be reused.
15068         createmany -o $myDIR/t- 2000
15069         do_facet $SINGLEMDS sync
15070         # Make sure journal flushed.
15071         sleep 6
15072         local blk2=$(do_facet $SINGLEMDS \
15073                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
15074                      grep Blockcount | awk '{print $4}')
15075
15076         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
15077 }
15078 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
15079
15080 test_229() { # LU-2482, LU-3448
15081         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15082         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
15083         [ $MDS1_VERSION -lt $(version_code 2.4.53) ] &&
15084                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53"
15085
15086         rm -f $DIR/$tfile
15087
15088         # Create a file with a released layout and stripe count 2.
15089         $MULTIOP $DIR/$tfile H2c ||
15090                 error "failed to create file with released layout"
15091
15092         $LFS getstripe -v $DIR/$tfile
15093
15094         local pattern=$($LFS getstripe -L $DIR/$tfile)
15095         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
15096
15097         local stripe_count=$($LFS getstripe -c $DIR/$tfile) ||
15098                 error "getstripe"
15099         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
15100         stat $DIR/$tfile || error "failed to stat released file"
15101
15102         chown $RUNAS_ID $DIR/$tfile ||
15103                 error "chown $RUNAS_ID $DIR/$tfile failed"
15104
15105         chgrp $RUNAS_ID $DIR/$tfile ||
15106                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
15107
15108         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
15109         rm $DIR/$tfile || error "failed to remove released file"
15110 }
15111 run_test 229 "getstripe/stat/rm/attr changes work on released files"
15112
15113 test_230a() {
15114         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15115         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15116         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15117                 skip "Need MDS version at least 2.11.52"
15118
15119         local MDTIDX=1
15120
15121         test_mkdir $DIR/$tdir
15122         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
15123         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230_local)
15124         [ $mdt_idx -ne 0 ] &&
15125                 error "create local directory on wrong MDT $mdt_idx"
15126
15127         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
15128                         error "create remote directory failed"
15129         local mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230)
15130         [ $mdt_idx -ne $MDTIDX ] &&
15131                 error "create remote directory on wrong MDT $mdt_idx"
15132
15133         createmany -o $DIR/$tdir/test_230/t- 10 ||
15134                 error "create files on remote directory failed"
15135         mdt_idx=$($LFS getstripe -m $DIR/$tdir/test_230/t-0)
15136         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
15137         rm -r $DIR/$tdir || error "unlink remote directory failed"
15138 }
15139 run_test 230a "Create remote directory and files under the remote directory"
15140
15141 test_230b() {
15142         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15143         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15144         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15145                 skip "Need MDS version at least 2.11.52"
15146
15147         local MDTIDX=1
15148         local mdt_index
15149         local i
15150         local file
15151         local pid
15152         local stripe_count
15153         local migrate_dir=$DIR/$tdir/migrate_dir
15154         local other_dir=$DIR/$tdir/other_dir
15155
15156         test_mkdir $DIR/$tdir
15157         test_mkdir -i0 -c1 $migrate_dir
15158         test_mkdir -i0 -c1 $other_dir
15159         for ((i=0; i<10; i++)); do
15160                 mkdir -p $migrate_dir/dir_${i}
15161                 createmany -o $migrate_dir/dir_${i}/f 10 ||
15162                         error "create files under remote dir failed $i"
15163         done
15164
15165         cp /etc/passwd $migrate_dir/$tfile
15166         cp /etc/passwd $other_dir/$tfile
15167         chattr +SAD $migrate_dir
15168         chattr +SAD $migrate_dir/$tfile
15169
15170         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15171         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15172         local old_dir_mode=$(stat -c%f $migrate_dir)
15173         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
15174
15175         mkdir -p $migrate_dir/dir_default_stripe2
15176         $LFS setstripe -c 2 $migrate_dir/dir_default_stripe2
15177         $LFS setstripe -c 2 $migrate_dir/${tfile}_stripe2
15178
15179         mkdir -p $other_dir
15180         ln $migrate_dir/$tfile $other_dir/luna
15181         ln $migrate_dir/$tfile $migrate_dir/sofia
15182         ln $other_dir/$tfile $migrate_dir/david
15183         ln -s $migrate_dir/$tfile $other_dir/zachary
15184         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
15185         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
15186
15187         $LFS migrate -m $MDTIDX $migrate_dir ||
15188                 error "fails on migrating remote dir to MDT1"
15189
15190         echo "migratate to MDT1, then checking.."
15191         for ((i = 0; i < 10; i++)); do
15192                 for file in $(find $migrate_dir/dir_${i}); do
15193                         mdt_index=$($LFS getstripe -m $file)
15194                         [ $mdt_index == $MDTIDX ] ||
15195                                 error "$file is not on MDT${MDTIDX}"
15196                 done
15197         done
15198
15199         # the multiple link file should still in MDT0
15200         mdt_index=$($LFS getstripe -m $migrate_dir/$tfile)
15201         [ $mdt_index == 0 ] ||
15202                 error "$file is not on MDT${MDTIDX}"
15203
15204         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15205         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15206                 error " expect $old_dir_flag get $new_dir_flag"
15207
15208         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15209         [ "$old_file_flag" = "$new_file_flag" ] ||
15210                 error " expect $old_file_flag get $new_file_flag"
15211
15212         local new_dir_mode=$(stat -c%f $migrate_dir)
15213         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15214                 error "expect mode $old_dir_mode get $new_dir_mode"
15215
15216         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15217         [ "$old_file_mode" = "$new_file_mode" ] ||
15218                 error "expect mode $old_file_mode get $new_file_mode"
15219
15220         diff /etc/passwd $migrate_dir/$tfile ||
15221                 error "$tfile different after migration"
15222
15223         diff /etc/passwd $other_dir/luna ||
15224                 error "luna different after migration"
15225
15226         diff /etc/passwd $migrate_dir/sofia ||
15227                 error "sofia different after migration"
15228
15229         diff /etc/passwd $migrate_dir/david ||
15230                 error "david different after migration"
15231
15232         diff /etc/passwd $other_dir/zachary ||
15233                 error "zachary different after migration"
15234
15235         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15236                 error "${tfile}_ln different after migration"
15237
15238         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15239                 error "${tfile}_ln_other different after migration"
15240
15241         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
15242         [ $stripe_count = 2 ] ||
15243                 error "dir strpe_count $d != 2 after migration."
15244
15245         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
15246         [ $stripe_count = 2 ] ||
15247                 error "file strpe_count $d != 2 after migration."
15248
15249         #migrate back to MDT0
15250         MDTIDX=0
15251
15252         $LFS migrate -m $MDTIDX $migrate_dir ||
15253                 error "fails on migrating remote dir to MDT0"
15254
15255         echo "migrate back to MDT0, checking.."
15256         for file in $(find $migrate_dir); do
15257                 mdt_index=$($LFS getstripe -m $file)
15258                 [ $mdt_index == $MDTIDX ] ||
15259                         error "$file is not on MDT${MDTIDX}"
15260         done
15261
15262         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
15263         [ "$old_dir_flag" = "$new_dir_flag" ] ||
15264                 error " expect $old_dir_flag get $new_dir_flag"
15265
15266         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
15267         [ "$old_file_flag" = "$new_file_flag" ] ||
15268                 error " expect $old_file_flag get $new_file_flag"
15269
15270         local new_dir_mode=$(stat -c%f $migrate_dir)
15271         [ "$old_dir_mode" = "$new_dir_mode" ] ||
15272                 error "expect mode $old_dir_mode get $new_dir_mode"
15273
15274         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
15275         [ "$old_file_mode" = "$new_file_mode" ] ||
15276                 error "expect mode $old_file_mode get $new_file_mode"
15277
15278         diff /etc/passwd ${migrate_dir}/$tfile ||
15279                 error "$tfile different after migration"
15280
15281         diff /etc/passwd ${other_dir}/luna ||
15282                 error "luna different after migration"
15283
15284         diff /etc/passwd ${migrate_dir}/sofia ||
15285                 error "sofia different after migration"
15286
15287         diff /etc/passwd ${other_dir}/zachary ||
15288                 error "zachary different after migration"
15289
15290         diff /etc/passwd $migrate_dir/${tfile}_ln ||
15291                 error "${tfile}_ln different after migration"
15292
15293         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
15294                 error "${tfile}_ln_other different after migration"
15295
15296         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
15297         [ $stripe_count = 2 ] ||
15298                 error "dir strpe_count $d != 2 after migration."
15299
15300         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
15301         [ $stripe_count = 2 ] ||
15302                 error "file strpe_count $d != 2 after migration."
15303
15304         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15305 }
15306 run_test 230b "migrate directory"
15307
15308 test_230c() {
15309         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15310         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15311         remote_mds_nodsh && skip "remote MDS with nodsh"
15312         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15313                 skip "Need MDS version at least 2.11.52"
15314
15315         local MDTIDX=1
15316         local total=3
15317         local mdt_index
15318         local file
15319         local migrate_dir=$DIR/$tdir/migrate_dir
15320
15321         #If migrating directory fails in the middle, all entries of
15322         #the directory is still accessiable.
15323         test_mkdir $DIR/$tdir
15324         test_mkdir -i0 -c1 $migrate_dir
15325         test_mkdir -i1 -c1 $DIR/$tdir/remote_dir
15326         stat $migrate_dir
15327         createmany -o $migrate_dir/f $total ||
15328                 error "create files under ${migrate_dir} failed"
15329
15330         # fail after migrating top dir, and this will fail only once, so the
15331         # first sub file migration will fail (currently f3), others succeed.
15332         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
15333         do_facet mds1 lctl set_param fail_loc=0x1801
15334         local t=$(ls $migrate_dir | wc -l)
15335         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
15336                 error "migrate should fail"
15337         local u=$(ls $migrate_dir | wc -l)
15338         [ "$u" == "$t" ] || error "$u != $t during migration"
15339
15340         # add new dir/file should succeed
15341         mkdir $migrate_dir/dir ||
15342                 error "mkdir failed under migrating directory"
15343         touch $migrate_dir/file ||
15344                 error "create file failed under migrating directory"
15345
15346         # add file with existing name should fail
15347         for file in $migrate_dir/f*; do
15348                 stat $file > /dev/null || error "stat $file failed"
15349                 $OPENFILE -f O_CREAT:O_EXCL $file &&
15350                         error "open(O_CREAT|O_EXCL) $file should fail"
15351                 $MULTIOP $file m && error "create $file should fail"
15352                 touch $DIR/$tdir/remote_dir/$tfile ||
15353                         error "touch $tfile failed"
15354                 ln $DIR/$tdir/remote_dir/$tfile $file &&
15355                         error "link $file should fail"
15356                 mdt_index=$($LFS getstripe -m $file)
15357                 if [ $mdt_index == 0 ]; then
15358                         # file failed to migrate is not allowed to rename to
15359                         mv $DIR/$tdir/remote_dir/$tfile $file &&
15360                                 error "rename to $file should fail"
15361                 else
15362                         mv $DIR/$tdir/remote_dir/$tfile $file ||
15363                                 error "rename to $file failed"
15364                 fi
15365                 echo hello >> $file || error "write $file failed"
15366         done
15367
15368         # resume migration with different options should fail
15369         $LFS migrate -m 0 $migrate_dir &&
15370                 error "migrate -m 0 $migrate_dir should fail"
15371
15372         $LFS migrate -m $MDTIDX -c 2 $migrate_dir &&
15373                 error "migrate -c 2 $migrate_dir should fail"
15374
15375         # resume migration should succeed
15376         $LFS migrate -m $MDTIDX $migrate_dir ||
15377                 error "migrate $migrate_dir failed"
15378
15379         echo "Finish migration, then checking.."
15380         for file in $(find $migrate_dir); do
15381                 mdt_index=$($LFS getstripe -m $file)
15382                 [ $mdt_index == $MDTIDX ] ||
15383                         error "$file is not on MDT${MDTIDX}"
15384         done
15385
15386         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15387 }
15388 run_test 230c "check directory accessiblity if migration failed"
15389
15390 test_230d() {
15391         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15392         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15393         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15394                 skip "Need MDS version at least 2.11.52"
15395         # LU-11235
15396         [ "$mds1_FSTYPE" == "zfs" ] && skip "skip ZFS backend"
15397
15398         local migrate_dir=$DIR/$tdir/migrate_dir
15399         local old_index
15400         local new_index
15401         local old_count
15402         local new_count
15403         local new_hash
15404         local mdt_index
15405         local i
15406         local j
15407
15408         old_index=$((RANDOM % MDSCOUNT))
15409         old_count=$((MDSCOUNT - old_index))
15410         new_index=$((RANDOM % MDSCOUNT))
15411         new_count=$((MDSCOUNT - new_index))
15412         new_hash="all_char"
15413
15414         [ $old_count -gt 1 ] && old_count=$((old_count - RANDOM % old_count))
15415         [ $new_count -gt 1 ] && new_count=$((new_count - RANDOM % new_count))
15416
15417         test_mkdir $DIR/$tdir
15418         test_mkdir -i $old_index -c $old_count $migrate_dir
15419
15420         for ((i=0; i<100; i++)); do
15421                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
15422                 createmany -o $migrate_dir/dir_${i}/f 100 ||
15423                         error "create files under remote dir failed $i"
15424         done
15425
15426         echo -n "Migrate from MDT$old_index "
15427         [ $old_count -gt 1 ] && echo -n "... MDT$((old_index + old_count - 1)) "
15428         echo -n "to MDT$new_index"
15429         [ $new_count -gt 1 ] && echo -n " ... MDT$((new_index + new_count - 1))"
15430         echo
15431
15432         echo "$LFS migrate -m$new_index -c$new_count -H $new_hash $migrate_dir"
15433         $LFS migrate -m $new_index -c $new_count -H $new_hash $migrate_dir ||
15434                 error "migrate remote dir error"
15435
15436         echo "Finish migration, then checking.."
15437         for file in $(find $migrate_dir); do
15438                 mdt_index=$($LFS getstripe -m $file)
15439                 if [ $mdt_index -lt $new_index ] ||
15440                    [ $mdt_index -gt $((new_index + new_count - 1)) ]; then
15441                         error "$file is on MDT$mdt_index"
15442                 fi
15443         done
15444
15445         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15446 }
15447 run_test 230d "check migrate big directory"
15448
15449 test_230e() {
15450         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15451         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15452         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15453                 skip "Need MDS version at least 2.11.52"
15454
15455         local i
15456         local j
15457         local a_fid
15458         local b_fid
15459
15460         mkdir -p $DIR/$tdir
15461         mkdir $DIR/$tdir/migrate_dir
15462         mkdir $DIR/$tdir/other_dir
15463         touch $DIR/$tdir/migrate_dir/a
15464         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
15465         ls $DIR/$tdir/other_dir
15466
15467         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15468                 error "migrate dir fails"
15469
15470         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15471         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15472
15473         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15474         [ $mdt_index == 0 ] || error "a is not on MDT0"
15475
15476         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
15477                 error "migrate dir fails"
15478
15479         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir)
15480         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
15481
15482         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15483         [ $mdt_index == 1 ] || error "a is not on MDT1"
15484
15485         mdt_index=$($LFS getstripe -m $DIR/$tdir/other_dir/b)
15486         [ $mdt_index == 1 ] || error "b is not on MDT1"
15487
15488         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15489         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
15490
15491         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
15492
15493         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15494 }
15495 run_test 230e "migrate mulitple local link files"
15496
15497 test_230f() {
15498         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15499         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15500         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15501                 skip "Need MDS version at least 2.11.52"
15502
15503         local a_fid
15504         local ln_fid
15505
15506         mkdir -p $DIR/$tdir
15507         mkdir $DIR/$tdir/migrate_dir
15508         $LFS mkdir -i1 $DIR/$tdir/other_dir
15509         touch $DIR/$tdir/migrate_dir/a
15510         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
15511         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
15512         ls $DIR/$tdir/other_dir
15513
15514         # a should be migrated to MDT1, since no other links on MDT0
15515         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15516                 error "#1 migrate dir fails"
15517         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir)
15518         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
15519         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15520         [ $mdt_index == 1 ] || error "a is not on MDT1"
15521
15522         # a should stay on MDT1, because it is a mulitple link file
15523         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15524                 error "#2 migrate dir fails"
15525         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15526         [ $mdt_index == 1 ] || error "a is not on MDT1"
15527
15528         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
15529                 error "#3 migrate dir fails"
15530
15531         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
15532         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
15533         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
15534
15535         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
15536         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
15537
15538         # a should be migrated to MDT0, since no other links on MDT1
15539         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
15540                 error "#4 migrate dir fails"
15541         mdt_index=$($LFS getstripe -m $DIR/$tdir/migrate_dir/a)
15542         [ $mdt_index == 0 ] || error "a is not on MDT0"
15543
15544         rm -rf $DIR/$tdir || error "rm dir failed after migration"
15545 }
15546 run_test 230f "migrate mulitple remote link files"
15547
15548 test_230g() {
15549         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15550         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15551         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15552                 skip "Need MDS version at least 2.11.52"
15553
15554         mkdir -p $DIR/$tdir/migrate_dir
15555
15556         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
15557                 error "migrating dir to non-exist MDT succeeds"
15558         true
15559 }
15560 run_test 230g "migrate dir to non-exist MDT"
15561
15562 test_230h() {
15563         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15564         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15565         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15566                 skip "Need MDS version at least 2.11.52"
15567
15568         local mdt_index
15569
15570         mkdir -p $DIR/$tdir/migrate_dir
15571
15572         $LFS migrate -m1 $DIR &&
15573                 error "migrating mountpoint1 should fail"
15574
15575         $LFS migrate -m1 $DIR/$tdir/.. &&
15576                 error "migrating mountpoint2 should fail"
15577
15578         # same as mv
15579         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. &&
15580                 error "migrating $tdir/migrate_dir/.. should fail"
15581
15582         true
15583 }
15584 run_test 230h "migrate .. and root"
15585
15586 test_230i() {
15587         [ $PARALLEL == "yes" ] && skip "skip parallel run"
15588         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15589         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15590                 skip "Need MDS version at least 2.11.52"
15591
15592         mkdir -p $DIR/$tdir/migrate_dir
15593
15594         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
15595                 error "migration fails with a tailing slash"
15596
15597         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
15598                 error "migration fails with two tailing slashes"
15599 }
15600 run_test 230i "lfs migrate -m tolerates trailing slashes"
15601
15602 test_230j() {
15603         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15604         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
15605                 skip "Need MDS version at least 2.11.52"
15606
15607         $LFS mkdir -m 0 -c 1 $DIR/$tdir || error "mkdir $tdir failed"
15608         $LFS setstripe -E 1M -L mdt $DIR/$tdir/$tfile ||
15609                 error "create $tfile failed"
15610         cat /etc/passwd > $DIR/$tdir/$tfile
15611
15612         $LFS migrate -m 1 $DIR/$tdir
15613
15614         cmp /etc/passwd $DIR/$tdir/$tfile ||
15615                 error "DoM file mismatch after migration"
15616 }
15617 run_test 230j "DoM file data not changed after dir migration"
15618
15619 test_230k() {
15620         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs"
15621         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15622                 skip "Need MDS version at least 2.11.56"
15623
15624         local total=20
15625         local files_on_starting_mdt=0
15626
15627         $LFS mkdir -i -1 -c 2 $DIR/$tdir || error "mkdir failed"
15628         $LFS getdirstripe $DIR/$tdir
15629         for i in $(seq $total); do
15630                 echo $((i*i - i)) > $DIR/$tdir/$tfile.$i || error "write failed"
15631                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15632                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15633         done
15634
15635         echo "$files_on_starting_mdt files on MDT0"
15636
15637         $LFS migrate -m 1,3 $DIR/$tdir || error "migrate -m 1,3 failed"
15638         $LFS getdirstripe $DIR/$tdir
15639
15640         files_on_starting_mdt=0
15641         for i in $(seq $total); do
15642                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15643                         error "file $tfile.$i mismatch after migration"
15644                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 1 ]] &&
15645                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15646         done
15647
15648         echo "$files_on_starting_mdt files on MDT1 after migration"
15649         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT1"
15650
15651         $LFS migrate -m 0 -c 2 $DIR/$tdir || error "migrate -m 0 -c 2 failed"
15652         $LFS getdirstripe $DIR/$tdir
15653
15654         files_on_starting_mdt=0
15655         for i in $(seq $total); do
15656                 $(echo $((i*i - i)) | cmp $DIR/$tdir/$tfile.$i -) ||
15657                         error "file $tfile.$i mismatch after 2nd migration"
15658                 [[ $($LFS getstripe -m $DIR/$tdir/$tfile.$i) -eq 0 ]] &&
15659                         files_on_starting_mdt=$((files_on_starting_mdt + 1))
15660         done
15661
15662         echo "$files_on_starting_mdt files on MDT0 after 2nd migration"
15663         [[ $files_on_starting_mdt -eq $total ]] && error "all files on MDT0"
15664
15665         true
15666 }
15667 run_test 230k "file data not changed after dir migration"
15668
15669 test_230l() {
15670         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
15671         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
15672                 skip "Need MDS version at least 2.11.56"
15673
15674         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "mkdir failed"
15675         createmany -o $DIR/$tdir/f___________________________________ 1000 ||
15676                 error "create files under remote dir failed $i"
15677         $LFS migrate -m 1 $DIR/$tdir || error "migrate failed"
15678 }
15679 run_test 230l "readdir between MDTs won't crash"
15680
15681 test_231a()
15682 {
15683         # For simplicity this test assumes that max_pages_per_rpc
15684         # is the same across all OSCs
15685         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
15686         local bulk_size=$((max_pages * PAGE_SIZE))
15687         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
15688                                        head -n 1)
15689
15690         mkdir -p $DIR/$tdir
15691         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
15692                 error "failed to set stripe with -S ${brw_size}M option"
15693
15694         # clear the OSC stats
15695         $LCTL set_param osc.*.stats=0 &>/dev/null
15696         stop_writeback
15697
15698         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
15699         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
15700                 oflag=direct &>/dev/null || error "dd failed"
15701
15702         sync; sleep 1; sync # just to be safe
15703         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
15704         if [ x$nrpcs != "x1" ]; then
15705                 $LCTL get_param osc.*.stats
15706                 error "found $nrpcs ost_write RPCs, not 1 as expected"
15707         fi
15708
15709         start_writeback
15710         # Drop the OSC cache, otherwise we will read from it
15711         cancel_lru_locks osc
15712
15713         # clear the OSC stats
15714         $LCTL set_param osc.*.stats=0 &>/dev/null
15715
15716         # Client reads $bulk_size.
15717         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
15718                 iflag=direct &>/dev/null || error "dd failed"
15719
15720         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
15721         if [ x$nrpcs != "x1" ]; then
15722                 $LCTL get_param osc.*.stats
15723                 error "found $nrpcs ost_read RPCs, not 1 as expected"
15724         fi
15725 }
15726 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
15727
15728 test_231b() {
15729         mkdir -p $DIR/$tdir
15730         local i
15731         for i in {0..1023}; do
15732                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
15733                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
15734                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
15735         done
15736         sync
15737 }
15738 run_test 231b "must not assert on fully utilized OST request buffer"
15739
15740 test_232a() {
15741         mkdir -p $DIR/$tdir
15742         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15743
15744         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15745         do_facet ost1 $LCTL set_param fail_loc=0x31c
15746
15747         # ignore dd failure
15748         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
15749
15750         do_facet ost1 $LCTL set_param fail_loc=0
15751         umount_client $MOUNT || error "umount failed"
15752         mount_client $MOUNT || error "mount failed"
15753         stop ost1 || error "cannot stop ost1"
15754         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15755 }
15756 run_test 232a "failed lock should not block umount"
15757
15758 test_232b() {
15759         [ $MDS1_VERSION -ge $(version_code 2.10.58) ] ||
15760                 skip "Need MDS version at least 2.10.58"
15761
15762         mkdir -p $DIR/$tdir
15763         $LFS setstripe -c1 -i0 $DIR/$tdir/$tfile
15764         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1
15765         sync
15766         cancel_lru_locks osc
15767
15768         #define OBD_FAIL_LDLM_OST_LVB            0x31c
15769         do_facet ost1 $LCTL set_param fail_loc=0x31c
15770
15771         # ignore failure
15772         $LFS data_version $DIR/$tdir/$tfile || true
15773
15774         do_facet ost1 $LCTL set_param fail_loc=0
15775         umount_client $MOUNT || error "umount failed"
15776         mount_client $MOUNT || error "mount failed"
15777         stop ost1 || error "cannot stop ost1"
15778         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
15779 }
15780 run_test 232b "failed data version lock should not block umount"
15781
15782 test_233a() {
15783         [ $MDS1_VERSION -ge $(version_code 2.3.64) ] ||
15784                 skip "Need MDS version at least 2.3.64"
15785         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15786
15787         local fid=$($LFS path2fid $MOUNT)
15788
15789         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15790                 error "cannot access $MOUNT using its FID '$fid'"
15791 }
15792 run_test 233a "checking that OBF of the FS root succeeds"
15793
15794 test_233b() {
15795         [ $MDS1_VERSION -ge $(version_code 2.5.90) ] ||
15796                 skip "Need MDS version at least 2.5.90"
15797         [ -n "$FILESET" ] && skip_env "SKIP due to FILESET set"
15798
15799         local fid=$($LFS path2fid $MOUNT/.lustre)
15800
15801         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15802                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
15803
15804         fid=$($LFS path2fid $MOUNT/.lustre/fid)
15805         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
15806                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
15807 }
15808 run_test 233b "checking that OBF of the FS .lustre succeeds"
15809
15810 test_234() {
15811         local p="$TMP/sanityN-$TESTNAME.parameters"
15812         save_lustre_params client "llite.*.xattr_cache" > $p
15813         lctl set_param llite.*.xattr_cache 1 ||
15814                 skip_env "xattr cache is not supported"
15815
15816         mkdir -p $DIR/$tdir || error "mkdir failed"
15817         touch $DIR/$tdir/$tfile || error "touch failed"
15818         # OBD_FAIL_LLITE_XATTR_ENOMEM
15819         $LCTL set_param fail_loc=0x1405
15820         getfattr -n user.attr $DIR/$tdir/$tfile &&
15821                 error "getfattr should have failed with ENOMEM"
15822         $LCTL set_param fail_loc=0x0
15823         rm -rf $DIR/$tdir
15824
15825         restore_lustre_params < $p
15826         rm -f $p
15827 }
15828 run_test 234 "xattr cache should not crash on ENOMEM"
15829
15830 test_235() {
15831         [ $MDS1_VERSION -lt $(version_code 2.4.52) ] &&
15832                 skip "Need MDS version at least 2.4.52"
15833
15834         flock_deadlock $DIR/$tfile
15835         local RC=$?
15836         case $RC in
15837                 0)
15838                 ;;
15839                 124) error "process hangs on a deadlock"
15840                 ;;
15841                 *) error "error executing flock_deadlock $DIR/$tfile"
15842                 ;;
15843         esac
15844 }
15845 run_test 235 "LU-1715: flock deadlock detection does not work properly"
15846
15847 #LU-2935
15848 test_236() {
15849         check_swap_layouts_support
15850
15851         local ref1=/etc/passwd
15852         local ref2=/etc/group
15853         local file1=$DIR/$tdir/f1
15854         local file2=$DIR/$tdir/f2
15855
15856         test_mkdir -c1 $DIR/$tdir
15857         $LFS setstripe -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
15858         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
15859         $LFS setstripe -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
15860         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
15861         local fd=$(free_fd)
15862         local cmd="exec $fd<>$file2"
15863         eval $cmd
15864         rm $file2
15865         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
15866                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
15867         cmd="exec $fd>&-"
15868         eval $cmd
15869         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
15870
15871         #cleanup
15872         rm -rf $DIR/$tdir
15873 }
15874 run_test 236 "Layout swap on open unlinked file"
15875
15876 # LU-4659 linkea consistency
15877 test_238() {
15878         [[ $MDS1_VERSION -gt $(version_code 2.5.57) ]] ||
15879                 [[ $MDS1_VERSION -gt $(version_code 2.5.1) &&
15880                    $MDS1_VERSION -lt $(version_code 2.5.50) ]] ||
15881                 skip "Need MDS version at least 2.5.58 or 2.5.2+"
15882
15883         touch $DIR/$tfile
15884         ln $DIR/$tfile $DIR/$tfile.lnk
15885         touch $DIR/$tfile.new
15886         mv $DIR/$tfile.new $DIR/$tfile
15887         local fid1=$($LFS path2fid $DIR/$tfile)
15888         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
15889         local path1=$($LFS fid2path $FSNAME "$fid1")
15890         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
15891         local path2=$($LFS fid2path $FSNAME "$fid2")
15892         [ $tfile.lnk == $path2 ] ||
15893                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
15894         rm -f $DIR/$tfile*
15895 }
15896 run_test 238 "Verify linkea consistency"
15897
15898 test_239A() { # was test_239
15899         [ $MDS1_VERSION -lt $(version_code 2.5.60) ] &&
15900                 skip "Need MDS version at least 2.5.60"
15901
15902         local list=$(comma_list $(mdts_nodes))
15903
15904         mkdir -p $DIR/$tdir
15905         createmany -o $DIR/$tdir/f- 5000
15906         unlinkmany $DIR/$tdir/f- 5000
15907         [ $MDS1_VERSION -gt $(version_code 2.10.4) ] &&
15908                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
15909         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
15910                         osp.*MDT*.sync_in_flight" | calc_sum)
15911         [ "$changes" -eq 0 ] || error "$changes not synced"
15912 }
15913 run_test 239A "osp_sync test"
15914
15915 test_239a() { #LU-5297
15916         remote_mds_nodsh && skip "remote MDS with nodsh"
15917
15918         touch $DIR/$tfile
15919         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
15920         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
15921         chgrp $RUNAS_GID $DIR/$tfile
15922         wait_delete_completed
15923 }
15924 run_test 239a "process invalid osp sync record correctly"
15925
15926 test_239b() { #LU-5297
15927         remote_mds_nodsh && skip "remote MDS with nodsh"
15928
15929         touch $DIR/$tfile1
15930         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
15931         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
15932         chgrp $RUNAS_GID $DIR/$tfile1
15933         wait_delete_completed
15934         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
15935         touch $DIR/$tfile2
15936         chgrp $RUNAS_GID $DIR/$tfile2
15937         wait_delete_completed
15938 }
15939 run_test 239b "process osp sync record with ENOMEM error correctly"
15940
15941 test_240() {
15942         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
15943         remote_mds_nodsh && skip "remote MDS with nodsh"
15944
15945         mkdir -p $DIR/$tdir
15946
15947         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
15948                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
15949         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
15950                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
15951
15952         umount_client $MOUNT || error "umount failed"
15953         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
15954         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
15955         mount_client $MOUNT || error "failed to mount client"
15956
15957         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
15958         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
15959 }
15960 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
15961
15962 test_241_bio() {
15963         local count=$1
15964         local bsize=$2
15965
15966         for LOOP in $(seq $count); do
15967                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 2>/dev/null
15968                 cancel_lru_locks $OSC || true
15969         done
15970 }
15971
15972 test_241_dio() {
15973         local count=$1
15974         local bsize=$2
15975
15976         for LOOP in $(seq $1); do
15977                 dd if=$DIR/$tfile of=/dev/null bs=$bsize count=1 iflag=direct \
15978                         2>/dev/null
15979         done
15980 }
15981
15982 test_241a() { # was test_241
15983         local bsize=$PAGE_SIZE
15984
15985         (( bsize < 40960 )) && bsize=40960
15986         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
15987         ls -la $DIR/$tfile
15988         cancel_lru_locks $OSC
15989         test_241_bio 1000 $bsize &
15990         PID=$!
15991         test_241_dio 1000 $bsize
15992         wait $PID
15993 }
15994 run_test 241a "bio vs dio"
15995
15996 test_241b() {
15997         local bsize=$PAGE_SIZE
15998
15999         (( bsize < 40960 )) && bsize=40960
16000         dd if=/dev/zero of=$DIR/$tfile count=1 bs=$bsize
16001         ls -la $DIR/$tfile
16002         test_241_dio 1000 $bsize &
16003         PID=$!
16004         test_241_dio 1000 $bsize
16005         wait $PID
16006 }
16007 run_test 241b "dio vs dio"
16008
16009 test_242() {
16010         remote_mds_nodsh && skip "remote MDS with nodsh"
16011
16012         mkdir -p $DIR/$tdir
16013         touch $DIR/$tdir/$tfile
16014
16015         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
16016         do_facet mds1 lctl set_param fail_loc=0x105
16017         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
16018
16019         do_facet mds1 lctl set_param fail_loc=0
16020         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
16021 }
16022 run_test 242 "mdt_readpage failure should not cause directory unreadable"
16023
16024 test_243()
16025 {
16026         test_mkdir $DIR/$tdir
16027         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
16028 }
16029 run_test 243 "various group lock tests"
16030
16031 test_244()
16032 {
16033         test_mkdir $DIR/$tdir
16034         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
16035         sendfile_grouplock $DIR/$tdir/$tfile || \
16036                 error "sendfile+grouplock failed"
16037         rm -rf $DIR/$tdir
16038 }
16039 run_test 244 "sendfile with group lock tests"
16040
16041 test_245() {
16042         local flagname="multi_mod_rpcs"
16043         local connect_data_name="max_mod_rpcs"
16044         local out
16045
16046         # check if multiple modify RPCs flag is set
16047         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
16048                 grep "connect_flags:")
16049         echo "$out"
16050
16051         echo "$out" | grep -qw $flagname
16052         if [ $? -ne 0 ]; then
16053                 echo "connect flag $flagname is not set"
16054                 return
16055         fi
16056
16057         # check if multiple modify RPCs data is set
16058         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
16059         echo "$out"
16060
16061         echo "$out" | grep -qw $connect_data_name ||
16062                 error "import should have connect data $connect_data_name"
16063 }
16064 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
16065
16066 test_246() { # LU-7371
16067         remote_ost_nodsh && skip "remote OST with nodsh"
16068         [ $OST1_VERSION -lt $(version_code 2.7.62) ] &&
16069                 skip "Need OST version >= 2.7.62"
16070
16071         do_facet ost1 $LCTL set_param fail_val=4095
16072 #define OBD_FAIL_OST_READ_SIZE          0x234
16073         do_facet ost1 $LCTL set_param fail_loc=0x234
16074         $LFS setstripe $DIR/$tfile -i 0 -c 1
16075         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
16076         cancel_lru_locks $FSNAME-OST0000
16077         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
16078 }
16079 run_test 246 "Read file of size 4095 should return right length"
16080
16081 cleanup_247() {
16082         local submount=$1
16083
16084         trap 0
16085         umount_client $submount
16086         rmdir $submount
16087 }
16088
16089 test_247a() {
16090         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16091                 grep -q subtree ||
16092                 skip_env "Fileset feature is not supported"
16093
16094         local submount=${MOUNT}_$tdir
16095
16096         mkdir $MOUNT/$tdir
16097         mkdir -p $submount || error "mkdir $submount failed"
16098         FILESET="$FILESET/$tdir" mount_client $submount ||
16099                 error "mount $submount failed"
16100         trap "cleanup_247 $submount" EXIT
16101         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
16102         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
16103                 error "read $MOUNT/$tdir/$tfile failed"
16104         cleanup_247 $submount
16105 }
16106 run_test 247a "mount subdir as fileset"
16107
16108 test_247b() {
16109         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16110                 skip_env "Fileset feature is not supported"
16111
16112         local submount=${MOUNT}_$tdir
16113
16114         rm -rf $MOUNT/$tdir
16115         mkdir -p $submount || error "mkdir $submount failed"
16116         SKIP_FILESET=1
16117         FILESET="$FILESET/$tdir" mount_client $submount &&
16118                 error "mount $submount should fail"
16119         rmdir $submount
16120 }
16121 run_test 247b "mount subdir that dose not exist"
16122
16123 test_247c() {
16124         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16125                 skip_env "Fileset feature is not supported"
16126
16127         local submount=${MOUNT}_$tdir
16128
16129         mkdir -p $MOUNT/$tdir/dir1
16130         mkdir -p $submount || error "mkdir $submount failed"
16131         trap "cleanup_247 $submount" EXIT
16132         FILESET="$FILESET/$tdir" mount_client $submount ||
16133                 error "mount $submount failed"
16134         local fid=$($LFS path2fid $MOUNT/)
16135         $LFS fid2path $submount $fid && error "fid2path should fail"
16136         cleanup_247 $submount
16137 }
16138 run_test 247c "running fid2path outside root"
16139
16140 test_247d() {
16141         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
16142                 skip "Fileset feature is not supported"
16143
16144         local submount=${MOUNT}_$tdir
16145
16146         mkdir -p $MOUNT/$tdir/dir1
16147         mkdir -p $submount || error "mkdir $submount failed"
16148         FILESET="$FILESET/$tdir" mount_client $submount ||
16149                 error "mount $submount failed"
16150         trap "cleanup_247 $submount" EXIT
16151         local fid=$($LFS path2fid $submount/dir1)
16152         $LFS fid2path $submount $fid || error "fid2path should succeed"
16153         cleanup_247 $submount
16154 }
16155 run_test 247d "running fid2path inside root"
16156
16157 # LU-8037
16158 test_247e() {
16159         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
16160                 grep -q subtree ||
16161                 skip "Fileset feature is not supported"
16162
16163         local submount=${MOUNT}_$tdir
16164
16165         mkdir $MOUNT/$tdir
16166         mkdir -p $submount || error "mkdir $submount failed"
16167         FILESET="$FILESET/.." mount_client $submount &&
16168                 error "mount $submount should fail"
16169         rmdir $submount
16170 }
16171 run_test 247e "mount .. as fileset"
16172
16173 test_248() {
16174         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
16175         [ -z "$fast_read_sav" ] && skip "no fast read support"
16176
16177         # create a large file for fast read verification
16178         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
16179
16180         # make sure the file is created correctly
16181         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
16182                 { rm -f $DIR/$tfile; skip "file creation error"; }
16183
16184         echo "Test 1: verify that fast read is 4 times faster on cache read"
16185
16186         # small read with fast read enabled
16187         $LCTL set_param -n llite.*.fast_read=1
16188         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16189                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16190                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16191         # small read with fast read disabled
16192         $LCTL set_param -n llite.*.fast_read=0
16193         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
16194                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16195                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16196
16197         # verify that fast read is 4 times faster for cache read
16198         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
16199                 error_not_in_vm "fast read was not 4 times faster: " \
16200                            "$t_fast vs $t_slow"
16201
16202         echo "Test 2: verify the performance between big and small read"
16203         $LCTL set_param -n llite.*.fast_read=1
16204
16205         # 1k non-cache read
16206         cancel_lru_locks osc
16207         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16208                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16209                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16210
16211         # 1M non-cache read
16212         cancel_lru_locks osc
16213         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
16214                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
16215                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
16216
16217         # verify that big IO is not 4 times faster than small IO
16218         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
16219                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
16220
16221         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
16222         rm -f $DIR/$tfile
16223 }
16224 run_test 248 "fast read verification"
16225
16226 test_249() { # LU-7890
16227         [ $MDS1_VERSION -lt $(version_code 2.8.53) ] &&
16228                 skip "Need at least version 2.8.54"
16229
16230         rm -f $DIR/$tfile
16231         $LFS setstripe -c 1 $DIR/$tfile
16232         # Offset 2T == 4k * 512M
16233         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
16234                 error "dd to 2T offset failed"
16235 }
16236 run_test 249 "Write above 2T file size"
16237
16238 test_250() {
16239         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR/$tfile) + 1)))" = "zfs" ] \
16240          && skip "no 16TB file size limit on ZFS"
16241
16242         $LFS setstripe -c 1 $DIR/$tfile
16243         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
16244         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
16245         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
16246         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
16247                 conv=notrunc,fsync && error "append succeeded"
16248         return 0
16249 }
16250 run_test 250 "Write above 16T limit"
16251
16252 test_251() {
16253         $LFS setstripe -c -1 -S 1048576 $DIR/$tfile
16254
16255         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
16256         #Skip once - writing the first stripe will succeed
16257         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16258         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
16259                 error "short write happened"
16260
16261         $LCTL set_param fail_loc=0xa0001407 fail_val=1
16262         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
16263                 error "short read happened"
16264
16265         rm -f $DIR/$tfile
16266 }
16267 run_test 251 "Handling short read and write correctly"
16268
16269 test_252() {
16270         remote_mds_nodsh && skip "remote MDS with nodsh"
16271         remote_ost_nodsh && skip "remote OST with nodsh"
16272         if [ "$ost1_FSTYPE" != "ldiskfs" -o "$mds1_FSTYPE" != "ldiskfs" ]; then
16273                 skip_env "ldiskfs only test"
16274         fi
16275
16276         local tgt
16277         local dev
16278         local out
16279         local uuid
16280         local num
16281         local gen
16282
16283         # check lr_reader on OST0000
16284         tgt=ost1
16285         dev=$(facet_device $tgt)
16286         out=$(do_facet $tgt $LR_READER $dev)
16287         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16288         echo "$out"
16289         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
16290         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
16291                 error "Invalid uuid returned by $LR_READER on target $tgt"
16292         echo -e "uuid returned by $LR_READER is '$uuid'\n"
16293
16294         # check lr_reader -c on MDT0000
16295         tgt=mds1
16296         dev=$(facet_device $tgt)
16297         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
16298                 skip "$LR_READER does not support additional options"
16299         fi
16300         out=$(do_facet $tgt $LR_READER -c $dev)
16301         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16302         echo "$out"
16303         num=$(echo "$out" | grep -c "mdtlov")
16304         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
16305                 error "Invalid number of mdtlov clients returned by $LR_READER"
16306         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
16307
16308         # check lr_reader -cr on MDT0000
16309         out=$(do_facet $tgt $LR_READER -cr $dev)
16310         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
16311         echo "$out"
16312         echo "$out" | grep -q "^reply_data:$" ||
16313                 error "$LR_READER should have returned 'reply_data' section"
16314         num=$(echo "$out" | grep -c "client_generation")
16315         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
16316 }
16317 run_test 252 "check lr_reader tool"
16318
16319 test_253_fill_ost() {
16320         local size_mb #how many MB should we write to pass watermark
16321         local lwm=$3  #low watermark
16322         local free_10mb #10% of free space
16323
16324         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16325         size_mb=$((free_kb / 1024 - lwm))
16326         free_10mb=$((free_kb / 10240))
16327         #If 10% of free space cross low watermark use it
16328         if (( free_10mb > size_mb )); then
16329                 size_mb=$free_10mb
16330         else
16331                 #At least we need to store 1.1 of difference between
16332                 #free space and low watermark
16333                 size_mb=$((size_mb + size_mb / 10))
16334         fi
16335         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
16336                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
16337                          oflag=append conv=notrunc
16338         fi
16339
16340         sleep_maxage
16341
16342         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
16343         echo "OST still has $((free_kb / 1024)) mbytes free"
16344 }
16345
16346 test_253() {
16347         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16348         remote_mds_nodsh && skip "remote MDS with nodsh"
16349         remote_mgs_nodsh && skip "remote MGS with nodsh"
16350
16351         local ostidx=0
16352         local rc=0
16353
16354         local ost_name=$($LFS osts |
16355                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
16356         # on the mdt's osc
16357         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
16358         do_facet $SINGLEMDS $LCTL get_param -n \
16359                 osp.$mdtosc_proc1.reserved_mb_high ||
16360                 skip  "remote MDS does not support reserved_mb_high"
16361
16362         rm -rf $DIR/$tdir
16363         wait_mds_ost_sync
16364         wait_delete_completed
16365         mkdir $DIR/$tdir
16366
16367         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
16368                         osp.$mdtosc_proc1.reserved_mb_high)
16369         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
16370                         osp.$mdtosc_proc1.reserved_mb_low)
16371         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
16372
16373         if ! combined_mgs_mds ; then
16374                 mount_mgs_client
16375         fi
16376         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
16377         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
16378                 error "Adding $ost_name to pool failed"
16379
16380         # Wait for client to see a OST at pool
16381         wait_update $HOSTNAME "$LCTL get_param -n
16382                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
16383                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
16384                 error "Client can not see the pool"
16385         $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
16386                 error "Setstripe failed"
16387
16388         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
16389         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
16390         echo "OST still has $((blocks/1024)) mbytes free"
16391
16392         local new_lwm=$((blocks/1024-10))
16393         do_facet $SINGLEMDS $LCTL set_param \
16394                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
16395         do_facet $SINGLEMDS $LCTL set_param \
16396                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
16397
16398         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16399
16400         #First enospc could execute orphan deletion so repeat.
16401         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
16402
16403         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16404                         osp.$mdtosc_proc1.prealloc_status)
16405         echo "prealloc_status $oa_status"
16406
16407         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
16408                 error "File creation should fail"
16409         #object allocation was stopped, but we still able to append files
16410         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
16411                 error "Append failed"
16412         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
16413
16414         wait_delete_completed
16415
16416         sleep_maxage
16417
16418         for i in $(seq 10 12); do
16419                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
16420                         error "File creation failed after rm";
16421         done
16422
16423         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
16424                         osp.$mdtosc_proc1.prealloc_status)
16425         echo "prealloc_status $oa_status"
16426
16427         if (( oa_status != 0 )); then
16428                 error "Object allocation still disable after rm"
16429         fi
16430         do_facet $SINGLEMDS $LCTL set_param \
16431                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
16432         do_facet $SINGLEMDS $LCTL set_param \
16433                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
16434
16435
16436         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
16437                 error "Remove $ost_name from pool failed"
16438         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
16439                 error "Pool destroy fialed"
16440
16441         if ! combined_mgs_mds ; then
16442                 umount_mgs_client
16443         fi
16444 }
16445 run_test 253 "Check object allocation limit"
16446
16447 test_254() {
16448         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16449         remote_mds_nodsh && skip "remote MDS with nodsh"
16450         do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_size ||
16451                 skip "MDS does not support changelog_size"
16452
16453         local cl_user
16454         local MDT0=$(facet_svc $SINGLEMDS)
16455
16456         changelog_register || error "changelog_register failed"
16457
16458         changelog_clear 0 || error "changelog_clear failed"
16459
16460         local size1=$(do_facet $SINGLEMDS \
16461                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16462         echo "Changelog size $size1"
16463
16464         rm -rf $DIR/$tdir
16465         $LFS mkdir -i 0 $DIR/$tdir
16466         # change something
16467         mkdir -p $DIR/$tdir/pics/2008/zachy
16468         touch $DIR/$tdir/pics/2008/zachy/timestamp
16469         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
16470         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
16471         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
16472         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
16473         rm $DIR/$tdir/pics/desktop.jpg
16474
16475         local size2=$(do_facet $SINGLEMDS \
16476                       $LCTL get_param -n mdd.$MDT0.changelog_size)
16477         echo "Changelog size after work $size2"
16478
16479         (( $size2 > $size1 )) ||
16480                 error "new Changelog size=$size2 less than old size=$size1"
16481 }
16482 run_test 254 "Check changelog size"
16483
16484 ladvise_no_type()
16485 {
16486         local type=$1
16487         local file=$2
16488
16489         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
16490                 awk -F: '{print $2}' | grep $type > /dev/null
16491         if [ $? -ne 0 ]; then
16492                 return 0
16493         fi
16494         return 1
16495 }
16496
16497 ladvise_no_ioctl()
16498 {
16499         local file=$1
16500
16501         lfs ladvise -a willread $file > /dev/null 2>&1
16502         if [ $? -eq 0 ]; then
16503                 return 1
16504         fi
16505
16506         lfs ladvise -a willread $file 2>&1 |
16507                 grep "Inappropriate ioctl for device" > /dev/null
16508         if [ $? -eq 0 ]; then
16509                 return 0
16510         fi
16511         return 1
16512 }
16513
16514 percent() {
16515         bc <<<"scale=2; ($1 - $2) * 100 / $2"
16516 }
16517
16518 # run a random read IO workload
16519 # usage: random_read_iops <filename> <filesize> <iosize>
16520 random_read_iops() {
16521         local file=$1
16522         local fsize=$2
16523         local iosize=${3:-4096}
16524
16525         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
16526                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
16527 }
16528
16529 drop_file_oss_cache() {
16530         local file="$1"
16531         local nodes="$2"
16532
16533         $LFS ladvise -a dontneed $file 2>/dev/null ||
16534                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
16535 }
16536
16537 ladvise_willread_performance()
16538 {
16539         local repeat=10
16540         local average_origin=0
16541         local average_cache=0
16542         local average_ladvise=0
16543
16544         for ((i = 1; i <= $repeat; i++)); do
16545                 echo "Iter $i/$repeat: reading without willread hint"
16546                 cancel_lru_locks osc
16547                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16548                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
16549                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
16550                 average_origin=$(bc <<<"$average_origin + $speed_origin")
16551
16552                 cancel_lru_locks osc
16553                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
16554                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
16555                 average_cache=$(bc <<<"$average_cache + $speed_cache")
16556
16557                 cancel_lru_locks osc
16558                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
16559                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
16560                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
16561                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
16562                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
16563         done
16564         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
16565         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
16566         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
16567
16568         speedup_cache=$(percent $average_cache $average_origin)
16569         speedup_ladvise=$(percent $average_ladvise $average_origin)
16570
16571         echo "Average uncached read: $average_origin"
16572         echo "Average speedup with OSS cached read: " \
16573                 "$average_cache = +$speedup_cache%"
16574         echo "Average speedup with ladvise willread: " \
16575                 "$average_ladvise = +$speedup_ladvise%"
16576
16577         local lowest_speedup=20
16578         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
16579                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
16580                         "got $average_cache%. Skipping ladvise willread check."
16581                 return 0
16582         fi
16583
16584         # the test won't work on ZFS until it supports 'ladvise dontneed', but
16585         # it is still good to run until then to exercise 'ladvise willread'
16586         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16587                 [ "$ost1_FSTYPE" = "zfs" ] &&
16588                 echo "osd-zfs does not support dontneed or drop_caches" &&
16589                 return 0
16590
16591         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
16592         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
16593                 error_not_in_vm "Speedup with willread is less than " \
16594                         "$lowest_speedup%, got $average_ladvise%"
16595 }
16596
16597 test_255a() {
16598         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16599                 skip "lustre < 2.8.54 does not support ladvise "
16600         remote_ost_nodsh && skip "remote OST with nodsh"
16601
16602         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
16603
16604         ladvise_no_type willread $DIR/$tfile &&
16605                 skip "willread ladvise is not supported"
16606
16607         ladvise_no_ioctl $DIR/$tfile &&
16608                 skip "ladvise ioctl is not supported"
16609
16610         local size_mb=100
16611         local size=$((size_mb * 1048576))
16612         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16613                 error "dd to $DIR/$tfile failed"
16614
16615         lfs ladvise -a willread $DIR/$tfile ||
16616                 error "Ladvise failed with no range argument"
16617
16618         lfs ladvise -a willread -s 0 $DIR/$tfile ||
16619                 error "Ladvise failed with no -l or -e argument"
16620
16621         lfs ladvise -a willread -e 1 $DIR/$tfile ||
16622                 error "Ladvise failed with only -e argument"
16623
16624         lfs ladvise -a willread -l 1 $DIR/$tfile ||
16625                 error "Ladvise failed with only -l argument"
16626
16627         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
16628                 error "End offset should not be smaller than start offset"
16629
16630         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
16631                 error "End offset should not be equal to start offset"
16632
16633         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
16634                 error "Ladvise failed with overflowing -s argument"
16635
16636         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
16637                 error "Ladvise failed with overflowing -e argument"
16638
16639         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
16640                 error "Ladvise failed with overflowing -l argument"
16641
16642         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
16643                 error "Ladvise succeeded with conflicting -l and -e arguments"
16644
16645         echo "Synchronous ladvise should wait"
16646         local delay=4
16647 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
16648         do_nodes $(comma_list $(osts_nodes)) \
16649                 $LCTL set_param fail_val=$delay fail_loc=0x237
16650
16651         local start_ts=$SECONDS
16652         lfs ladvise -a willread $DIR/$tfile ||
16653                 error "Ladvise failed with no range argument"
16654         local end_ts=$SECONDS
16655         local inteval_ts=$((end_ts - start_ts))
16656
16657         if [ $inteval_ts -lt $(($delay - 1)) ]; then
16658                 error "Synchronous advice didn't wait reply"
16659         fi
16660
16661         echo "Asynchronous ladvise shouldn't wait"
16662         local start_ts=$SECONDS
16663         lfs ladvise -a willread -b $DIR/$tfile ||
16664                 error "Ladvise failed with no range argument"
16665         local end_ts=$SECONDS
16666         local inteval_ts=$((end_ts - start_ts))
16667
16668         if [ $inteval_ts -gt $(($delay / 2)) ]; then
16669                 error "Asynchronous advice blocked"
16670         fi
16671
16672         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
16673         ladvise_willread_performance
16674 }
16675 run_test 255a "check 'lfs ladvise -a willread'"
16676
16677 facet_meminfo() {
16678         local facet=$1
16679         local info=$2
16680
16681         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
16682 }
16683
16684 test_255b() {
16685         [ $OST1_VERSION -lt $(version_code 2.8.54) ] &&
16686                 skip "lustre < 2.8.54 does not support ladvise "
16687         remote_ost_nodsh && skip "remote OST with nodsh"
16688
16689         lfs setstripe -c 1 -i 0 $DIR/$tfile
16690
16691         ladvise_no_type dontneed $DIR/$tfile &&
16692                 skip "dontneed ladvise is not supported"
16693
16694         ladvise_no_ioctl $DIR/$tfile &&
16695                 skip "ladvise ioctl is not supported"
16696
16697         ! $LFS ladvise -a dontneed $DIR/$tfile &&
16698                 [ "$ost1_FSTYPE" = "zfs" ] &&
16699                 skip "zfs-osd does not support 'ladvise dontneed'"
16700
16701         local size_mb=100
16702         local size=$((size_mb * 1048576))
16703         # In order to prevent disturbance of other processes, only check 3/4
16704         # of the memory usage
16705         local kibibytes=$((size_mb * 1024 * 3 / 4))
16706
16707         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
16708                 error "dd to $DIR/$tfile failed"
16709
16710         #force write to complete before dropping OST cache & checking memory
16711         sync
16712
16713         local total=$(facet_meminfo ost1 MemTotal)
16714         echo "Total memory: $total KiB"
16715
16716         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
16717         local before_read=$(facet_meminfo ost1 Cached)
16718         echo "Cache used before read: $before_read KiB"
16719
16720         lfs ladvise -a willread $DIR/$tfile ||
16721                 error "Ladvise willread failed"
16722         local after_read=$(facet_meminfo ost1 Cached)
16723         echo "Cache used after read: $after_read KiB"
16724
16725         lfs ladvise -a dontneed $DIR/$tfile ||
16726                 error "Ladvise dontneed again failed"
16727         local no_read=$(facet_meminfo ost1 Cached)
16728         echo "Cache used after dontneed ladvise: $no_read KiB"
16729
16730         if [ $total -lt $((before_read + kibibytes)) ]; then
16731                 echo "Memory is too small, abort checking"
16732                 return 0
16733         fi
16734
16735         if [ $((before_read + kibibytes)) -gt $after_read ]; then
16736                 error "Ladvise willread should use more memory" \
16737                         "than $kibibytes KiB"
16738         fi
16739
16740         if [ $((no_read + kibibytes)) -gt $after_read ]; then
16741                 error "Ladvise dontneed should release more memory" \
16742                         "than $kibibytes KiB"
16743         fi
16744 }
16745 run_test 255b "check 'lfs ladvise -a dontneed'"
16746
16747 test_255c() {
16748         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
16749                 skip "lustre < 2.10.53 does not support lockahead"
16750
16751         local count
16752         local new_count
16753         local difference
16754         local i
16755         local rc
16756
16757         test_mkdir -p $DIR/$tdir
16758         $LFS setstripe -i 0 $DIR/$tdir
16759
16760         #test 10 returns only success/failure
16761         i=10
16762         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16763         rc=$?
16764         if [ $rc -eq 255 ]; then
16765                 error "Ladvise test${i} failed, ${rc}"
16766         fi
16767
16768         #test 11 counts lock enqueue requests, all others count new locks
16769         i=11
16770         count=$(do_facet ost1 \
16771                 $LCTL get_param -n ost.OSS.ost.stats)
16772         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
16773
16774         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16775         rc=$?
16776         if [ $rc -eq 255 ]; then
16777                 error "Ladvise test${i} failed, ${rc}"
16778         fi
16779
16780         new_count=$(do_facet ost1 \
16781                 $LCTL get_param -n ost.OSS.ost.stats)
16782         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
16783                    awk '{ print $2 }')
16784
16785         difference="$((new_count - count))"
16786         if [ $difference -ne $rc ]; then
16787                 error "Ladvise test${i}, bad enqueue count, returned " \
16788                       "${rc}, actual ${difference}"
16789         fi
16790
16791         for i in $(seq 12 21); do
16792                 # If we do not do this, we run the risk of having too many
16793                 # locks and starting lock cancellation while we are checking
16794                 # lock counts.
16795                 cancel_lru_locks osc
16796
16797                 count=$($LCTL get_param -n \
16798                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16799
16800                 lockahead_test -d $DIR/$tdir -t $i -f $tfile
16801                 rc=$?
16802                 if [ $rc -eq 255 ]; then
16803                         error "Ladvise test ${i} failed, ${rc}"
16804                 fi
16805
16806                 new_count=$($LCTL get_param -n \
16807                        ldlm.namespaces.$FSNAME-OST0000*osc-[-0-9a-f]*.lock_unused_count)
16808                 difference="$((new_count - count))"
16809
16810                 # Test 15 output is divided by 100 to map down to valid return
16811                 if [ $i -eq 15 ]; then
16812                         rc="$((rc * 100))"
16813                 fi
16814
16815                 if [ $difference -ne $rc ]; then
16816                         error "Ladvise test ${i}, bad lock count, returned " \
16817                               "${rc}, actual ${difference}"
16818                 fi
16819         done
16820
16821         #test 22 returns only success/failure
16822         i=22
16823         lockahead_test -d $DIR/$tdir -t $i -f $tfile
16824         rc=$?
16825         if [ $rc -eq 255 ]; then
16826                 error "Ladvise test${i} failed, ${rc}"
16827         fi
16828 }
16829 run_test 255c "suite of ladvise lockahead tests"
16830
16831 test_256() {
16832         [ $PARALLEL == "yes" ] && skip "skip parallel run"
16833         remote_mds_nodsh && skip "remote MDS with nodsh"
16834         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16835         changelog_users $SINGLEMDS | grep "^cl" &&
16836                 skip "active changelog user"
16837
16838         local cl_user
16839         local cat_sl
16840         local mdt_dev
16841
16842         mdt_dev=$(mdsdevname 1)
16843         echo $mdt_dev
16844
16845         changelog_register || error "changelog_register failed"
16846
16847         rm -rf $DIR/$tdir
16848         mkdir -p $DIR/$tdir
16849
16850         changelog_clear 0 || error "changelog_clear failed"
16851
16852         # change something
16853         touch $DIR/$tdir/{1..10}
16854
16855         # stop the MDT
16856         stop $SINGLEMDS || error "Fail to stop MDT"
16857
16858         # remount the MDT
16859
16860         start $SINGLEMDS $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT"
16861
16862         #after mount new plainllog is used
16863         touch $DIR/$tdir/{11..19}
16864         local tmpfile=$(mktemp -u $tfile.XXXXXX)
16865         cat_sl=$(do_facet $SINGLEMDS "sync; \
16866                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16867                  llog_reader $tmpfile | grep -c type=1064553b")
16868         do_facet $SINGLEMDS llog_reader $tmpfile
16869
16870         [ $cat_sl != 2 ] && error "Changelog catalog has $cat_sl != 2 slots"
16871
16872         changelog_clear 0 || error "changelog_clear failed"
16873
16874         cat_sl=$(do_facet $SINGLEMDS "sync; \
16875                  $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
16876                  llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
16877
16878         if (( cat_sl == 2 )); then
16879                 error "Empty plain llog was not deleted from changelog catalog"
16880         elif (( cat_sl != 1 )); then
16881                 error "Active plain llog shouldn't be deleted from catalog"
16882         fi
16883 }
16884 run_test 256 "Check llog delete for empty and not full state"
16885
16886 test_257() {
16887         remote_mds_nodsh && skip "remote MDS with nodsh"
16888         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
16889                 skip "Need MDS version at least 2.8.55"
16890
16891         test_mkdir $DIR/$tdir
16892
16893         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
16894                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
16895         stat $DIR/$tdir
16896
16897 #define OBD_FAIL_MDS_XATTR_REP                  0x161
16898         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
16899         local facet=mds$((mdtidx + 1))
16900         set_nodes_failloc $(facet_active_host $facet) 0x80000161
16901         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
16902
16903         stop $facet || error "stop MDS failed"
16904         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
16905                 error "start MDS fail"
16906         wait_recovery_complete $facet
16907 }
16908 run_test 257 "xattr locks are not lost"
16909
16910 # Verify we take the i_mutex when security requires it
16911 test_258a() {
16912 #define OBD_FAIL_IMUTEX_SEC 0x141c
16913         $LCTL set_param fail_loc=0x141c
16914         touch $DIR/$tfile
16915         chmod u+s $DIR/$tfile
16916         chmod a+rwx $DIR/$tfile
16917         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16918         RC=$?
16919         if [ $RC -ne 0 ]; then
16920                 error "error, failed to take i_mutex, rc=$?"
16921         fi
16922         rm -f $DIR/$tfile
16923 }
16924 run_test 258a
16925
16926 # Verify we do NOT take the i_mutex in the normal case
16927 test_258b() {
16928 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
16929         $LCTL set_param fail_loc=0x141d
16930         touch $DIR/$tfile
16931         chmod a+rwx $DIR
16932         chmod a+rw $DIR/$tfile
16933         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
16934         RC=$?
16935         if [ $RC -ne 0 ]; then
16936                 error "error, took i_mutex unnecessarily, rc=$?"
16937         fi
16938         rm -f $DIR/$tfile
16939
16940 }
16941 run_test 258b "verify i_mutex security behavior"
16942
16943 test_259() {
16944         local file=$DIR/$tfile
16945         local before
16946         local after
16947
16948         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip "ldiskfs only test"
16949
16950         stack_trap "rm -f $file" EXIT
16951
16952         wait_delete_completed
16953         before=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16954         echo "before: $before"
16955
16956         $LFS setstripe -i 0 -c 1 $file
16957         dd if=/dev/zero of=$file bs=1M count=10 || error "couldn't write"
16958         sync_all_data
16959         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16960         echo "after write: $after"
16961
16962 #define OBD_FAIL_OSD_FAIL_AT_TRUNCATE          0x2301
16963         do_facet ost1 $LCTL set_param fail_loc=0x2301
16964         $TRUNCATE $file 0
16965         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16966         echo "after truncate: $after"
16967
16968         stop ost1
16969         do_facet ost1 $LCTL set_param fail_loc=0
16970         start ost1 $(ostdevname 1) $OST_MOUNT_OPTS || error "cannot start ost1"
16971         sleep 2
16972         after=$(do_facet ost1 "$LCTL get_param -n osd-*.*OST0000.kbytesfree")
16973         echo "after restart: $after"
16974         [ $((after - before)) -ge $(fs_log_size ost1) ] &&
16975                 error "missing truncate?"
16976
16977         return 0
16978 }
16979 run_test 259 "crash at delayed truncate"
16980
16981 test_260() {
16982 #define OBD_FAIL_MDC_CLOSE               0x806
16983         $LCTL set_param fail_loc=0x80000806
16984         touch $DIR/$tfile
16985
16986 }
16987 run_test 260 "Check mdc_close fail"
16988
16989 ### Data-on-MDT sanity tests ###
16990 test_270a() {
16991         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
16992                 skip "Need MDS version at least 2.10.55 for DoM"
16993
16994         # create DoM file
16995         local dom=$DIR/$tdir/dom_file
16996         local tmp=$DIR/$tdir/tmp_file
16997
16998         mkdir -p $DIR/$tdir
16999
17000         # basic checks for DoM component creation
17001         $LFS setstripe -E 1024K -E 2048K -L mdt $dom 2>/dev/null &&
17002                 error "Can set MDT layout to non-first entry"
17003
17004         $LFS setstripe -E 1024K -L mdt -E 2048K -L mdt $dom 2>/dev/null &&
17005                 error "Can define multiple entries as MDT layout"
17006
17007         $LFS setstripe -E 1M -L mdt $dom || error "Can't create DoM layout"
17008
17009         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
17010         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
17011         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
17012
17013         local mdtidx=$($LFS getstripe -m $dom)
17014         local mdtname=MDT$(printf %04x $mdtidx)
17015         local facet=mds$((mdtidx + 1))
17016         local space_check=1
17017
17018         # Skip free space checks with ZFS
17019         [ "$(facet_fstype $facet)" == "zfs" ] && space_check=0
17020
17021         # write
17022         sync
17023         local size_tmp=$((65536 * 3))
17024         local mdtfree1=$(do_facet $facet \
17025                          lctl get_param -n osd*.*$mdtname.kbytesfree)
17026
17027         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17028         # check also direct IO along write
17029         # IO size must be a multiple of PAGE_SIZE on all platforms (ARM=64KB)
17030         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17031         sync
17032         cmp $tmp $dom || error "file data is different"
17033         [ $(stat -c%s $dom) == $size_tmp ] ||
17034                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17035         if [ $space_check == 1 ]; then
17036                 local mdtfree2=$(do_facet $facet \
17037                                  lctl get_param -n osd*.*$mdtname.kbytesfree)
17038
17039                 # increase in usage from by $size_tmp
17040                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17041                         error "MDT free space wrong after write: " \
17042                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17043         fi
17044
17045         # truncate
17046         local size_dom=10000
17047
17048         $TRUNCATE $dom $size_dom
17049         [ $(stat -c%s $dom) == $size_dom ] ||
17050                 error "bad size after truncate: $(stat -c%s $dom) != $size_dom"
17051         if [ $space_check == 1 ]; then
17052                 mdtfree1=$(do_facet $facet \
17053                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17054                 # decrease in usage from $size_tmp to new $size_dom
17055                 [ $(($mdtfree1 - $mdtfree2)) -ge \
17056                   $(((size_tmp - size_dom) / 1024)) ] ||
17057                         error "MDT free space is wrong after truncate: " \
17058                               "$mdtfree1 >= $mdtfree2 + ($size_tmp - $size_dom) / 1024"
17059         fi
17060
17061         # append
17062         cat $tmp >> $dom
17063         sync
17064         size_dom=$((size_dom + size_tmp))
17065         [ $(stat -c%s $dom) == $size_dom ] ||
17066                 error "bad size after append: $(stat -c%s $dom) != $size_dom"
17067         if [ $space_check == 1 ]; then
17068                 mdtfree2=$(do_facet $facet \
17069                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17070                 # increase in usage by $size_tmp from previous
17071                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_tmp / 1024)) ] ||
17072                         error "MDT free space is wrong after append: " \
17073                               "$mdtfree1 >= $mdtfree2 + $size_tmp/1024"
17074         fi
17075
17076         # delete
17077         rm $dom
17078         if [ $space_check == 1 ]; then
17079                 mdtfree1=$(do_facet $facet \
17080                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17081                 # decrease in usage by $size_dom from previous
17082                 [ $(($mdtfree1 - $mdtfree2)) -ge $((size_dom / 1024)) ] ||
17083                         error "MDT free space is wrong after removal: " \
17084                               "$mdtfree1 >= $mdtfree2 + $size_dom/1024"
17085         fi
17086
17087         # combined striping
17088         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
17089                 error "Can't create DoM + OST striping"
17090
17091         size_tmp=2031616 # must be a multiple of PAGE_SIZE=65536 on ARM
17092         dd if=/dev/urandom of=$tmp bs=1024 count=$((size_tmp / 1024))
17093         # check also direct IO along write
17094         dd if=$tmp of=$dom bs=65536 count=$((size_tmp / 65536)) oflag=direct
17095         sync
17096         cmp $tmp $dom || error "file data is different"
17097         [ $(stat -c%s $dom) == $size_tmp ] ||
17098                 error "bad size after write: $(stat -c%s $dom) != $size_tmp"
17099         rm $dom $tmp
17100
17101         return 0
17102 }
17103 run_test 270a "DoM: basic functionality tests"
17104
17105 test_270b() {
17106         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17107                 skip "Need MDS version at least 2.10.55"
17108
17109         local dom=$DIR/$tdir/dom_file
17110         local max_size=1048576
17111
17112         mkdir -p $DIR/$tdir
17113         $LFS setstripe -E $max_size -L mdt $dom
17114
17115         # truncate over the limit
17116         $TRUNCATE $dom $(($max_size + 1)) &&
17117                 error "successful truncate over the maximum size"
17118         # write over the limit
17119         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
17120                 error "successful write over the maximum size"
17121         # append over the limit
17122         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
17123         echo "12345" >> $dom && error "successful append over the maximum size"
17124         rm $dom
17125
17126         return 0
17127 }
17128 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
17129
17130 test_270c() {
17131         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17132                 skip "Need MDS version at least 2.10.55"
17133
17134         mkdir -p $DIR/$tdir
17135         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17136
17137         # check files inherit DoM EA
17138         touch $DIR/$tdir/first
17139         [ $($LFS getstripe -L $DIR/$tdir/first) == "mdt" ] ||
17140                 error "bad pattern"
17141         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
17142                 error "bad stripe count"
17143         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
17144                 error "bad stripe size"
17145
17146         # check directory inherits DoM EA and uses it as default
17147         mkdir $DIR/$tdir/subdir
17148         touch $DIR/$tdir/subdir/second
17149         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
17150                 error "bad pattern in sub-directory"
17151         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
17152                 error "bad stripe count in sub-directory"
17153         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
17154                 error "bad stripe size in sub-directory"
17155         return 0
17156 }
17157 run_test 270c "DoM: DoM EA inheritance tests"
17158
17159 test_270d() {
17160         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17161                 skip "Need MDS version at least 2.10.55"
17162
17163         mkdir -p $DIR/$tdir
17164         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17165
17166         # inherit default DoM striping
17167         mkdir $DIR/$tdir/subdir
17168         touch $DIR/$tdir/subdir/f1
17169
17170         # change default directory striping
17171         $LFS setstripe -c 1 $DIR/$tdir/subdir
17172         touch $DIR/$tdir/subdir/f2
17173         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
17174                 error "wrong default striping in file 2"
17175         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
17176                 error "bad pattern in file 2"
17177         return 0
17178 }
17179 run_test 270d "DoM: change striping from DoM to RAID0"
17180
17181 test_270e() {
17182         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17183                 skip "Need MDS version at least 2.10.55"
17184
17185         mkdir -p $DIR/$tdir/dom
17186         mkdir -p $DIR/$tdir/norm
17187         DOMFILES=20
17188         NORMFILES=10
17189         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
17190         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
17191
17192         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
17193         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
17194
17195         # find DoM files by layout
17196         NUM=$($LFS find -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
17197         [ $NUM -eq  $DOMFILES ] ||
17198                 error "lfs find -L: found $NUM, expected $DOMFILES"
17199         echo "Test 1: lfs find 20 DOM files by layout: OK"
17200
17201         # there should be 1 dir with default DOM striping
17202         NUM=$($LFS find -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
17203         [ $NUM -eq  1 ] ||
17204                 error "lfs find -L: found $NUM, expected 1 dir"
17205         echo "Test 2: lfs find 1 DOM dir by layout: OK"
17206
17207         # find DoM files by stripe size
17208         NUM=$($LFS find -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
17209         [ $NUM -eq  $DOMFILES ] ||
17210                 error "lfs find -S: found $NUM, expected $DOMFILES"
17211         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
17212
17213         # find files by stripe offset except DoM files
17214         NUM=$($LFS find -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
17215         [ $NUM -eq  $NORMFILES ] ||
17216                 error "lfs find -i: found $NUM, expected $NORMFILES"
17217         echo "Test 5: lfs find no DOM files by stripe index: OK"
17218         return 0
17219 }
17220 run_test 270e "DoM: lfs find with DoM files test"
17221
17222 test_270f() {
17223         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17224                 skip "Need MDS version at least 2.10.55"
17225
17226         local mdtname=${FSNAME}-MDT0000-mdtlov
17227         local dom=$DIR/$tdir/dom_file
17228         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
17229                                                 lod.$mdtname.dom_stripesize)
17230         local dom_limit=131072
17231
17232         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
17233         local dom_current=$(do_facet mds1 $LCTL get_param -n \
17234                                                 lod.$mdtname.dom_stripesize)
17235         [ ${dom_limit} -eq ${dom_current} ] ||
17236                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
17237
17238         $LFS mkdir -i 0 -c 1 $DIR/$tdir
17239         $LFS setstripe -d $DIR/$tdir
17240         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
17241                 error "Can't set directory default striping"
17242
17243         # exceed maximum stripe size
17244         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17245                 error "Can't create file with $((dom_limit * 2)) DoM stripe"
17246         [ $($LFS getstripe -S $dom) -eq $((dom_limit * 2)) ] &&
17247                 error "Able to create DoM component size more than LOD limit"
17248
17249         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
17250         dom_current=$(do_facet mds1 $LCTL get_param -n \
17251                                                 lod.$mdtname.dom_stripesize)
17252         [ 0 -eq ${dom_current} ] ||
17253                 error "Can't set zero DoM stripe limit"
17254         rm $dom
17255
17256         # attempt to create DoM file on server with disabled DoM should
17257         # remove DoM entry from layout and be succeed
17258         $LFS setstripe -E $dom_limit -L mdt -E -1 $dom ||
17259                 error "Can't create DoM file (DoM is disabled)"
17260         [ $($LFS getstripe -L $dom) == "mdt" ] &&
17261                 error "File has DoM component while DoM is disabled"
17262         rm $dom
17263
17264         # attempt to create DoM file with only DoM stripe should return error
17265         $LFS setstripe -E $dom_limit -L mdt $dom &&
17266                 error "Able to create DoM-only file while DoM is disabled"
17267
17268         # too low values to be aligned with smallest stripe size 64K
17269         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
17270         dom_current=$(do_facet mds1 $LCTL get_param -n \
17271                                                 lod.$mdtname.dom_stripesize)
17272         [ 30000 -eq ${dom_current} ] &&
17273                 error "Can set too small DoM stripe limit"
17274
17275         # 64K is a minimal stripe size in Lustre, expect limit of that size
17276         [ 65536 -eq ${dom_current} ] ||
17277                 error "Limit is not set to 64K but ${dom_current}"
17278
17279         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
17280         dom_current=$(do_facet mds1 $LCTL get_param -n \
17281                                                 lod.$mdtname.dom_stripesize)
17282         echo $dom_current
17283         [ 2147483648 -eq ${dom_current} ] &&
17284                 error "Can set too large DoM stripe limit"
17285
17286         do_facet mds1 $LCTL set_param -n \
17287                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
17288         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
17289                 error "Can't create DoM component size after limit change"
17290         do_facet mds1 $LCTL set_param -n \
17291                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
17292         $LFS setstripe -E $dom_limit -L mdt ${dom}_big ||
17293                 error "Can't create DoM file after limit decrease"
17294         [ $($LFS getstripe -S ${dom}_big) -eq $((dom_limit / 2)) ] ||
17295                 error "Can create big DoM component after limit decrease"
17296         touch ${dom}_def ||
17297                 error "Can't create file with old default layout"
17298
17299         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
17300         return 0
17301 }
17302 run_test 270f "DoM: maximum DoM stripe size checks"
17303
17304 test_271a() {
17305         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17306                 skip "Need MDS version at least 2.10.55"
17307
17308         local dom=$DIR/$tdir/dom
17309
17310         mkdir -p $DIR/$tdir
17311
17312         $LFS setstripe -E 1024K -L mdt $dom
17313
17314         lctl set_param -n mdc.*.stats=clear
17315         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17316         cat $dom > /dev/null
17317         local reads=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
17318         [ $reads -eq 0 ] || error "Unexpected $reads READ RPCs"
17319         ls $dom
17320         rm -f $dom
17321 }
17322 run_test 271a "DoM: data is cached for read after write"
17323
17324 test_271b() {
17325         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17326                 skip "Need MDS version at least 2.10.55"
17327
17328         local dom=$DIR/$tdir/dom
17329
17330         mkdir -p $DIR/$tdir
17331
17332         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17333
17334         lctl set_param -n mdc.*.stats=clear
17335         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
17336         cancel_lru_locks mdc
17337         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
17338         # second stat to check size is cached on client
17339         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
17340         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17341         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
17342         rm -f $dom
17343 }
17344 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
17345
17346 test_271ba() {
17347         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17348                 skip "Need MDS version at least 2.10.55"
17349
17350         local dom=$DIR/$tdir/dom
17351
17352         mkdir -p $DIR/$tdir
17353
17354         $LFS setstripe -E 1024K -L mdt -E EOF $dom
17355
17356         lctl set_param -n mdc.*.stats=clear
17357         lctl set_param -n osc.*.stats=clear
17358         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
17359         cancel_lru_locks mdc
17360         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17361         # second stat to check size is cached on client
17362         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
17363         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
17364         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
17365         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
17366         [ $gls == 0 ] || error "Unexpected $gls OSC glimpse RPCs"
17367         rm -f $dom
17368 }
17369 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
17370
17371
17372 get_mdc_stats() {
17373         local mdtidx=$1
17374         local param=$2
17375         local mdt=MDT$(printf %04x $mdtidx)
17376
17377         if [ -z $param ]; then
17378                 lctl get_param -n mdc.*$mdt*.stats
17379         else
17380                 lctl get_param -n mdc.*$mdt*.stats | awk "/$param/"'{print $2}'
17381         fi
17382 }
17383
17384 test_271c() {
17385         [ $MDS1_VERSION -lt $(version_code 2.10.55) ] &&
17386                 skip "Need MDS version at least 2.10.55"
17387
17388         local dom=$DIR/$tdir/dom
17389
17390         mkdir -p $DIR/$tdir
17391
17392         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17393
17394         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
17395         local facet=mds$((mdtidx + 1))
17396
17397         cancel_lru_locks mdc
17398         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
17399         createmany -o $dom 1000
17400         lctl set_param -n mdc.*.stats=clear
17401         smalliomany -w $dom 1000 200
17402         get_mdc_stats $mdtidx
17403         local enq=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17404         # Each file has 1 open, 1 IO enqueues, total 2000
17405         # but now we have also +1 getxattr for security.capability, total 3000
17406         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
17407         unlinkmany $dom 1000
17408
17409         cancel_lru_locks mdc
17410         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
17411         createmany -o $dom 1000
17412         lctl set_param -n mdc.*.stats=clear
17413         smalliomany -w $dom 1000 200
17414         local enq_2=$(get_mdc_stats $mdtidx ldlm_ibits_enqueue)
17415         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
17416         # for OPEN and IO lock.
17417         [ $((enq - enq_2)) -ge 1000 ] ||
17418                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
17419         unlinkmany $dom 1000
17420         return 0
17421 }
17422 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
17423
17424 cleanup_271def_tests() {
17425         trap 0
17426         rm -f $1
17427 }
17428
17429 test_271d() {
17430         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17431                 skip "Need MDS version at least 2.10.57"
17432
17433         local dom=$DIR/$tdir/dom
17434         local tmp=$TMP/$tfile
17435         trap "cleanup_271def_tests $tmp" EXIT
17436
17437         mkdir -p $DIR/$tdir
17438
17439         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17440
17441         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
17442
17443         cancel_lru_locks mdc
17444         dd if=/dev/urandom of=$tmp bs=1000 count=1
17445         dd if=$tmp of=$dom bs=1000 count=1
17446         cancel_lru_locks mdc
17447
17448         cat /etc/hosts >> $tmp
17449         lctl set_param -n mdc.*.stats=clear
17450
17451         # append data to the same file it should update local page
17452         echo "Append to the same page"
17453         cat /etc/hosts >> $dom
17454         local num=$(get_mdc_stats $mdtidx ost_read)
17455         local ra=$(get_mdc_stats $mdtidx req_active)
17456         local rw=$(get_mdc_stats $mdtidx req_waittime)
17457
17458         [ -z $num ] || error "$num READ RPC occured"
17459         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17460         echo "... DONE"
17461
17462         # compare content
17463         cmp $tmp $dom || error "file miscompare"
17464
17465         cancel_lru_locks mdc
17466         lctl set_param -n mdc.*.stats=clear
17467
17468         echo "Open and read file"
17469         cat $dom > /dev/null
17470         local num=$(get_mdc_stats $mdtidx ost_read)
17471         local ra=$(get_mdc_stats $mdtidx req_active)
17472         local rw=$(get_mdc_stats $mdtidx req_waittime)
17473
17474         [ -z $num ] || error "$num READ RPC occured"
17475         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17476         echo "... DONE"
17477
17478         # compare content
17479         cmp $tmp $dom || error "file miscompare"
17480
17481         return 0
17482 }
17483 run_test 271d "DoM: read on open (1K file in reply buffer)"
17484
17485 test_271e() {
17486         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17487                 skip "Need MDS version at least 2.10.57"
17488
17489         local dom=$DIR/$tdir/dom
17490         local tmp=$TMP/${tfile}.data
17491         trap "cleanup_271def_tests $tmp" EXIT
17492
17493         mkdir -p $DIR/$tdir
17494
17495         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17496
17497         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
17498
17499         cancel_lru_locks mdc
17500         dd if=/dev/urandom of=$tmp bs=30K count=1
17501         dd if=$tmp of=$dom bs=30K count=1
17502         cancel_lru_locks mdc
17503         cat /etc/hosts >> $tmp
17504         lctl set_param -n mdc.*.stats=clear
17505
17506         echo "Append to the same page"
17507         cat /etc/hosts >> $dom
17508
17509         local num=$(get_mdc_stats $mdtidx ost_read)
17510         local ra=$(get_mdc_stats $mdtidx req_active)
17511         local rw=$(get_mdc_stats $mdtidx req_waittime)
17512
17513         [ -z $num ] || error "$num READ RPC occured"
17514         # Reply buffer can be adjusted for larger buffer by resend
17515         echo "... DONE with $((ra - rw)) resends"
17516
17517         # compare content
17518         cmp $tmp $dom || error "file miscompare"
17519
17520         cancel_lru_locks mdc
17521         lctl set_param -n mdc.*.stats=clear
17522
17523         echo "Open and read file"
17524         cat $dom > /dev/null
17525         local num=$(get_mdc_stats $mdtidx ost_read)
17526         local ra=$(get_mdc_stats $mdtidx req_active)
17527         local rw=$(get_mdc_stats $mdtidx req_waittime)
17528
17529         [ -z $num ] || error "$num READ RPC occured"
17530         # Reply buffer can be adjusted for larger buffer by resend
17531         echo "... DONE with $((ra - rw)) resends"
17532
17533         # compare content
17534         cmp $tmp $dom || error "file miscompare"
17535
17536         return 0
17537 }
17538 run_test 271e "DoM: read on open (30K file with reply buffer adjusting)"
17539
17540 test_271f() {
17541         [ $MDS1_VERSION -lt $(version_code 2.10.57) ] &&
17542                 skip "Need MDS version at least 2.10.57"
17543
17544         local dom=$DIR/$tdir/dom
17545         local tmp=$TMP/$tfile
17546         trap "cleanup_271def_tests $tmp" EXIT
17547
17548         mkdir -p $DIR/$tdir
17549
17550         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
17551
17552         local mdtidx=$($LFS getstripe --mdt-index $DIR/$tdir)
17553
17554         cancel_lru_locks mdc
17555         dd if=/dev/urandom of=$tmp bs=200000 count=1
17556         dd if=$tmp of=$dom bs=200000 count=1
17557         cancel_lru_locks mdc
17558         cat /etc/hosts >> $tmp
17559         lctl set_param -n mdc.*.stats=clear
17560
17561         echo "Append to the same page"
17562         cat /etc/hosts >> $dom
17563         local num=$(get_mdc_stats $mdtidx ost_read)
17564         local ra=$(get_mdc_stats $mdtidx req_active)
17565         local rw=$(get_mdc_stats $mdtidx req_waittime)
17566
17567         [ -z $num ] || error "$num READ RPC occured"
17568         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17569         echo "... DONE"
17570
17571         # compare content
17572         cmp $tmp $dom || error "file miscompare"
17573
17574         cancel_lru_locks mdc
17575         lctl set_param -n mdc.*.stats=clear
17576
17577         echo "Open and read file"
17578         cat $dom > /dev/null
17579         local num=$(get_mdc_stats $mdtidx ost_read)
17580         local ra=$(get_mdc_stats $mdtidx req_active)
17581         local rw=$(get_mdc_stats $mdtidx req_waittime)
17582
17583         [ $num -eq 1 ] || error "expect 1 READ RPC, $num occured"
17584         [ $ra == $rw ] || error "$((ra - rw)) resend occured"
17585         echo "... DONE"
17586
17587         # compare content
17588         cmp $tmp $dom || error "file miscompare"
17589
17590         return 0
17591 }
17592 run_test 271f "DoM: read on open (200K file and read tail)"
17593
17594 test_272a() {
17595         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17596                 skip "Need MDS version at least 2.11.50"
17597
17598         local dom=$DIR/$tdir/dom
17599         mkdir -p $DIR/$tdir
17600
17601         $LFS setstripe -E 256K -L mdt -E -1 -c1 $dom
17602         dd if=/dev/urandom of=$dom bs=512K count=1 ||
17603                 error "failed to write data into $dom"
17604         local old_md5=$(md5sum $dom)
17605
17606         $LFS migrate -E 256K -L mdt -E -1 -c2 $dom ||
17607                 error "failed to migrate to the same DoM component"
17608
17609         local new_md5=$(md5sum $dom)
17610
17611         [ "$old_md5" == "$new_md5" ] ||
17612                 error "md5sum differ: $old_md5, $new_md5"
17613
17614         [ $($LFS getstripe -c $dom) -eq 2 ] ||
17615                 error "migrate stripe count bad: $(LFS getstripe -c $dom) != 2"
17616 }
17617 run_test 272a "DoM migration: new layout with the same DOM component"
17618
17619 test_272b() {
17620         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17621                 skip "Need MDS version at least 2.11.50"
17622
17623         local dom=$DIR/$tdir/dom
17624         mkdir -p $DIR/$tdir
17625         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17626
17627         local mdtidx=$($LFS getstripe -m $dom)
17628         local mdtname=MDT$(printf %04x $mdtidx)
17629         local facet=mds$((mdtidx + 1))
17630
17631         local mdtfree1=$(do_facet $facet \
17632                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17633         dd if=/dev/urandom of=$dom bs=2M count=1 ||
17634                 error "failed to write data into $dom"
17635         local old_md5=$(md5sum $dom)
17636         cancel_lru_locks mdc
17637         local mdtfree1=$(do_facet $facet \
17638                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17639
17640         $LFS migrate -c2 $dom ||
17641                 error "failed to migrate to the new composite layout"
17642         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17643                 error "MDT stripe was not removed"
17644
17645         cancel_lru_locks mdc
17646         local new_md5=$(md5sum $dom)
17647         [ "$old_md5" != "$new_md5" ] &&
17648                 error "$old_md5 != $new_md5"
17649
17650         # Skip free space checks with ZFS
17651         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17652                 local mdtfree2=$(do_facet $facet \
17653                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17654                 [ $mdtfree2 -gt $mdtfree1 ] ||
17655                         error "MDT space is not freed after migration"
17656         fi
17657         return 0
17658 }
17659 run_test 272b "DoM migration: DOM file to the OST-striped file (plain)"
17660
17661 test_272c() {
17662         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17663                 skip "Need MDS version at least 2.11.50"
17664
17665         local dom=$DIR/$tdir/$tfile
17666         mkdir -p $DIR/$tdir
17667         $LFS setstripe -E 1M -L mdt -E -1 -c1 $dom
17668
17669         local mdtidx=$($LFS getstripe -m $dom)
17670         local mdtname=MDT$(printf %04x $mdtidx)
17671         local facet=mds$((mdtidx + 1))
17672
17673         dd if=/dev/urandom of=$dom bs=2M count=1 oflag=direct ||
17674                 error "failed to write data into $dom"
17675         local old_md5=$(md5sum $dom)
17676         cancel_lru_locks mdc
17677         local mdtfree1=$(do_facet $facet \
17678                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17679
17680         $LFS migrate -E 2M -c1 -E -1 -c2 $dom ||
17681                 error "failed to migrate to the new composite layout"
17682         [ $($LFS getstripe -L $dom) == 'mdt' ] &&
17683                 error "MDT stripe was not removed"
17684
17685         cancel_lru_locks mdc
17686         local new_md5=$(md5sum $dom)
17687         [ "$old_md5" != "$new_md5" ] &&
17688                 error "$old_md5 != $new_md5"
17689
17690         # Skip free space checks with ZFS
17691         if [ "$(facet_fstype $facet)" != "zfs" ]; then
17692                 local mdtfree2=$(do_facet $facet \
17693                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
17694                 [ $mdtfree2 -gt $mdtfree1 ] ||
17695                         error "MDS space is not freed after migration"
17696         fi
17697         return 0
17698 }
17699 run_test 272c "DoM migration: DOM file to the OST-striped file (composite)"
17700
17701 test_273a() {
17702         [ $MDS1_VERSION -lt $(version_code 2.11.50) ] &&
17703                 skip "Need MDS version at least 2.11.50"
17704
17705         # Layout swap cannot be done if either file has DOM component,
17706         # this will never be supported, migration should be used instead
17707
17708         local dom=$DIR/$tdir/$tfile
17709         mkdir -p $DIR/$tdir
17710
17711         $LFS setstripe -c2 ${dom}_plain
17712         $LFS setstripe -E 1M -L mdt -E -1 -c2 ${dom}_dom
17713         $LFS swap_layouts ${dom}_plain ${dom}_dom &&
17714                 error "can swap layout with DoM component"
17715         $LFS swap_layouts ${dom}_dom ${dom}_plain &&
17716                 error "can swap layout with DoM component"
17717
17718         $LFS setstripe -E 1M -c1 -E -1 -c2 ${dom}_comp
17719         $LFS swap_layouts ${dom}_comp ${dom}_dom &&
17720                 error "can swap layout with DoM component"
17721         $LFS swap_layouts ${dom}_dom ${dom}_comp &&
17722                 error "can swap layout with DoM component"
17723         return 0
17724 }
17725 run_test 273a "DoM: layout swapping should fail with DOM"
17726
17727 test_275() {
17728         remote_ost_nodsh && skip "remote OST with nodsh"
17729         [ $OST1_VERSION -lt $(version_code 2.10.57) ] &&
17730                 skip "Need OST version >= 2.10.57"
17731
17732         local file=$DIR/$tfile
17733         local oss
17734
17735         oss=$(comma_list $(osts_nodes))
17736
17737         dd if=/dev/urandom of=$file bs=1M count=2 ||
17738                 error "failed to create a file"
17739         cancel_lru_locks osc
17740
17741         #lock 1
17742         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17743                 error "failed to read a file"
17744
17745 #define OBD_FAIL_LDLM_PAUSE_CANCEL2      0x31f
17746         $LCTL set_param fail_loc=0x8000031f
17747
17748         cancel_lru_locks osc &
17749         sleep 1
17750
17751 #define OBD_FAIL_LDLM_PROLONG_PAUSE      0x32b
17752         do_nodes $oss $LCTL set_param fail_loc=0x8000032b
17753         #IO takes another lock, but matches the PENDING one
17754         #and places it to the IO RPC
17755         dd if=$file of=/dev/null bs=1M count=1 iflag=direct ||
17756                 error "failed to read a file with PENDING lock"
17757 }
17758 run_test 275 "Read on a canceled duplicate lock"
17759
17760 test_276() {
17761         remote_ost_nodsh && skip "remote OST with nodsh"
17762         local pid
17763
17764         do_facet ost1 "(while true; do \
17765                 $LCTL get_param obdfilter.*.filesfree > /dev/null 2>&1; \
17766                 done) & pid=\\\$!; echo \\\$pid > $TMP/sanity_276_pid" &
17767         pid=$!
17768
17769         for LOOP in $(seq 20); do
17770                 stop ost1
17771                 start ost1 $(ostdevname 1) $OST_MOUNT_OPTS
17772         done
17773         kill -9 $pid
17774         do_facet ost1 "pid=\\\$(cat $TMP/sanity_276_pid); kill -9 \\\$pid; \
17775                 rm $TMP/sanity_276_pid"
17776 }
17777 run_test 276 "Race between mount and obd_statfs"
17778
17779 cleanup_test_300() {
17780         trap 0
17781         umask $SAVE_UMASK
17782 }
17783 test_striped_dir() {
17784         local mdt_index=$1
17785         local stripe_count
17786         local stripe_index
17787
17788         mkdir -p $DIR/$tdir
17789
17790         SAVE_UMASK=$(umask)
17791         trap cleanup_test_300 RETURN EXIT
17792
17793         $LFS setdirstripe -i $mdt_index -c 2 -H all_char -o 755 \
17794                                                 $DIR/$tdir/striped_dir ||
17795                 error "set striped dir error"
17796
17797         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
17798         [ "$mode" = "755" ] || error "expect 755 got $mode"
17799
17800         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
17801                 error "getdirstripe failed"
17802         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
17803         if [ "$stripe_count" != "2" ]; then
17804                 error "1:stripe_count is $stripe_count, expect 2"
17805         fi
17806         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
17807         if [ "$stripe_count" != "2" ]; then
17808                 error "2:stripe_count is $stripe_count, expect 2"
17809         fi
17810
17811         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
17812         if [ "$stripe_index" != "$mdt_index" ]; then
17813                 error "stripe_index is $stripe_index, expect $mdt_index"
17814         fi
17815
17816         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17817                 error "nlink error after create striped dir"
17818
17819         mkdir $DIR/$tdir/striped_dir/a
17820         mkdir $DIR/$tdir/striped_dir/b
17821
17822         stat $DIR/$tdir/striped_dir/a ||
17823                 error "create dir under striped dir failed"
17824         stat $DIR/$tdir/striped_dir/b ||
17825                 error "create dir under striped dir failed"
17826
17827         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
17828                 error "nlink error after mkdir"
17829
17830         rmdir $DIR/$tdir/striped_dir/a
17831         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
17832                 error "nlink error after rmdir"
17833
17834         rmdir $DIR/$tdir/striped_dir/b
17835         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
17836                 error "nlink error after rmdir"
17837
17838         chattr +i $DIR/$tdir/striped_dir
17839         createmany -o $DIR/$tdir/striped_dir/f 10 &&
17840                 error "immutable flags not working under striped dir!"
17841         chattr -i $DIR/$tdir/striped_dir
17842
17843         rmdir $DIR/$tdir/striped_dir ||
17844                 error "rmdir striped dir error"
17845
17846         cleanup_test_300
17847
17848         true
17849 }
17850
17851 test_300a() {
17852         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17853                 skip "skipped for lustre < 2.7.0"
17854         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17855         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17856
17857         test_striped_dir 0 || error "failed on striped dir on MDT0"
17858         test_striped_dir 1 || error "failed on striped dir on MDT0"
17859 }
17860 run_test 300a "basic striped dir sanity test"
17861
17862 test_300b() {
17863         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17864                 skip "skipped for lustre < 2.7.0"
17865         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17866         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17867
17868         local i
17869         local mtime1
17870         local mtime2
17871         local mtime3
17872
17873         test_mkdir $DIR/$tdir || error "mkdir fail"
17874         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17875                 error "set striped dir error"
17876         for i in {0..9}; do
17877                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
17878                 sleep 1
17879                 touch $DIR/$tdir/striped_dir/file_$i || error "touch error $i"
17880                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
17881                 [ $mtime1 -eq $mtime2 ] && error "mtime unchanged after create"
17882                 sleep 1
17883                 rm -f $DIR/$tdir/striped_dir/file_$i || error "unlink error $i"
17884                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
17885                 [ $mtime2 -eq $mtime3 ] && error "mtime unchanged after unlink"
17886         done
17887         true
17888 }
17889 run_test 300b "check ctime/mtime for striped dir"
17890
17891 test_300c() {
17892         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17893                 skip "skipped for lustre < 2.7.0"
17894         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17895         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17896
17897         local file_count
17898
17899         mkdir -p $DIR/$tdir
17900         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
17901                 error "set striped dir error"
17902
17903         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
17904                 error "chown striped dir failed"
17905
17906         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
17907                 error "create 5k files failed"
17908
17909         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
17910
17911         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
17912
17913         rm -rf $DIR/$tdir
17914 }
17915 run_test 300c "chown && check ls under striped directory"
17916
17917 test_300d() {
17918         [ $MDS1_VERSION -lt $(version_code 2.7.0) ] &&
17919                 skip "skipped for lustre < 2.7.0"
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         $LFS setstripe -c 2 $DIR/$tdir
17928
17929         #local striped directory
17930         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17931                 error "set striped dir error"
17932         createmany -o $DIR/$tdir/striped_dir/f 10 ||
17933                 error "create 10 files failed"
17934
17935         #remote striped directory
17936         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
17937                 error "set striped dir error"
17938         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
17939                 error "create 10 files failed"
17940
17941         for file in $(find $DIR/$tdir); do
17942                 stripe_count=$($LFS getstripe -c $file)
17943                 [ $stripe_count -eq 2 ] ||
17944                         error "wrong stripe $stripe_count for $file"
17945         done
17946
17947         rm -rf $DIR/$tdir
17948 }
17949 run_test 300d "check default stripe under striped directory"
17950
17951 test_300e() {
17952         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
17953                 skip "Need MDS version at least 2.7.55"
17954         [ $PARALLEL == "yes" ] && skip "skip parallel run"
17955         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
17956
17957         local stripe_count
17958         local file
17959
17960         mkdir -p $DIR/$tdir
17961
17962         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
17963                 error "set striped dir error"
17964
17965         touch $DIR/$tdir/striped_dir/a
17966         touch $DIR/$tdir/striped_dir/b
17967         touch $DIR/$tdir/striped_dir/c
17968
17969         mkdir $DIR/$tdir/striped_dir/dir_a
17970         mkdir $DIR/$tdir/striped_dir/dir_b
17971         mkdir $DIR/$tdir/striped_dir/dir_c
17972
17973         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_a ||
17974                 error "set striped adir under striped dir error"
17975
17976         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
17977                 error "set striped bdir under striped dir error"
17978
17979         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_c ||
17980                 error "set striped cdir under striped dir error"
17981
17982         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
17983                 error "rename dir under striped dir fails"
17984
17985         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
17986                 error "rename dir under different stripes fails"
17987
17988         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
17989                 error "rename file under striped dir should succeed"
17990
17991         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
17992                 error "rename dir under striped dir should succeed"
17993
17994         rm -rf $DIR/$tdir
17995 }
17996 run_test 300e "check rename under striped directory"
17997
17998 test_300f() {
17999         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18000         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18001         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18002                 skip "Need MDS version at least 2.7.55"
18003
18004         local stripe_count
18005         local file
18006
18007         rm -rf $DIR/$tdir
18008         mkdir -p $DIR/$tdir
18009
18010         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir ||
18011                 error "set striped dir error"
18012
18013         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir1 ||
18014                 error "set striped dir error"
18015
18016         touch $DIR/$tdir/striped_dir/a
18017         mkdir $DIR/$tdir/striped_dir/dir_a
18018         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
18019                 error "create striped dir under striped dir fails"
18020
18021         touch $DIR/$tdir/striped_dir1/b
18022         mkdir $DIR/$tdir/striped_dir1/dir_b
18023         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
18024                 error "create striped dir under striped dir fails"
18025
18026         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
18027                 error "rename dir under different striped dir should fail"
18028
18029         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
18030                 error "rename striped dir under diff striped dir should fail"
18031
18032         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
18033                 error "rename file under diff striped dirs fails"
18034
18035         rm -rf $DIR/$tdir
18036 }
18037 run_test 300f "check rename cross striped directory"
18038
18039 test_300_check_default_striped_dir()
18040 {
18041         local dirname=$1
18042         local default_count=$2
18043         local default_index=$3
18044         local stripe_count
18045         local stripe_index
18046         local dir_stripe_index
18047         local dir
18048
18049         echo "checking $dirname $default_count $default_index"
18050         $LFS setdirstripe -D -c $default_count -i $default_index \
18051                                 -t all_char $DIR/$tdir/$dirname ||
18052                 error "set default stripe on striped dir error"
18053         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
18054         [ $stripe_count -eq $default_count ] ||
18055                 error "expect $default_count get $stripe_count for $dirname"
18056
18057         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
18058         [ $stripe_index -eq $default_index ] ||
18059                 error "expect $default_index get $stripe_index for $dirname"
18060
18061         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
18062                                                 error "create dirs failed"
18063
18064         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
18065         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
18066         for dir in $(find $DIR/$tdir/$dirname/*); do
18067                 stripe_count=$($LFS getdirstripe -c $dir)
18068                 [ $stripe_count -eq $default_count ] ||
18069                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
18070                 error "stripe count $default_count != $stripe_count for $dir"
18071
18072                 stripe_index=$($LFS getdirstripe -i $dir)
18073                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
18074                         error "$stripe_index != $default_index for $dir"
18075
18076                 #check default stripe
18077                 stripe_count=$($LFS getdirstripe -D -c $dir)
18078                 [ $stripe_count -eq $default_count ] ||
18079                 error "default count $default_count != $stripe_count for $dir"
18080
18081                 stripe_index=$($LFS getdirstripe -D -i $dir)
18082                 [ $stripe_index -eq $default_index ] ||
18083                 error "default index $default_index != $stripe_index for $dir"
18084         done
18085         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
18086 }
18087
18088 test_300g() {
18089         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18090         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18091                 skip "Need MDS version at least 2.7.55"
18092
18093         local dir
18094         local stripe_count
18095         local stripe_index
18096
18097         mkdir $DIR/$tdir
18098         mkdir $DIR/$tdir/normal_dir
18099
18100         #Checking when client cache stripe index
18101         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
18102         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
18103                 error "create striped_dir failed"
18104
18105         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
18106                 error "create dir0 fails"
18107         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
18108         [ $stripe_index -eq 0 ] ||
18109                 error "dir0 expect index 0 got $stripe_index"
18110
18111         mkdir $DIR/$tdir/striped_dir/dir1 ||
18112                 error "create dir1 fails"
18113         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
18114         [ $stripe_index -eq 1 ] ||
18115                 error "dir1 expect index 1 got $stripe_index"
18116
18117         #check default stripe count/stripe index
18118         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
18119         test_300_check_default_striped_dir normal_dir 1 0
18120         test_300_check_default_striped_dir normal_dir 2 1
18121         test_300_check_default_striped_dir normal_dir 2 -1
18122
18123         #delete default stripe information
18124         echo "delete default stripeEA"
18125         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
18126                 error "set default stripe on striped dir error"
18127
18128         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
18129         for dir in $(find $DIR/$tdir/normal_dir/*); do
18130                 stripe_count=$($LFS getdirstripe -c $dir)
18131                 [ $stripe_count -eq 0 ] ||
18132                         error "expect 1 get $stripe_count for $dir"
18133                 stripe_index=$($LFS getdirstripe -i $dir)
18134                 [ $stripe_index -eq 0 ] ||
18135                         error "expect 0 get $stripe_index for $dir"
18136         done
18137 }
18138 run_test 300g "check default striped directory for normal directory"
18139
18140 test_300h() {
18141         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18142         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18143                 skip "Need MDS version at least 2.7.55"
18144
18145         local dir
18146         local stripe_count
18147
18148         mkdir $DIR/$tdir
18149         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18150                 error "set striped dir error"
18151
18152         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
18153         test_300_check_default_striped_dir striped_dir 1 0
18154         test_300_check_default_striped_dir striped_dir 2 1
18155         test_300_check_default_striped_dir striped_dir 2 -1
18156
18157         #delete default stripe information
18158         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
18159                 error "set default stripe on striped dir error"
18160
18161         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
18162         for dir in $(find $DIR/$tdir/striped_dir/*); do
18163                 stripe_count=$($LFS getdirstripe -c $dir)
18164                 [ $stripe_count -eq 0 ] ||
18165                         error "expect 1 get $stripe_count for $dir"
18166         done
18167 }
18168 run_test 300h "check default striped directory for striped directory"
18169
18170 test_300i() {
18171         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18172         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18173         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18174                 skip "Need MDS version at least 2.7.55"
18175
18176         local stripe_count
18177         local file
18178
18179         mkdir $DIR/$tdir
18180
18181         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18182                 error "set striped dir error"
18183
18184         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18185                 error "create files under striped dir failed"
18186
18187         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
18188                 error "set striped hashdir error"
18189
18190         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
18191                 error "create dir0 under hash dir failed"
18192         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
18193                 error "create dir1 under hash dir failed"
18194
18195         # unfortunately, we need to umount to clear dir layout cache for now
18196         # once we fully implement dir layout, we can drop this
18197         umount_client $MOUNT || error "umount failed"
18198         mount_client $MOUNT || error "mount failed"
18199
18200         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
18201         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
18202         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
18203
18204         #set the stripe to be unknown hash type
18205         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
18206         $LCTL set_param fail_loc=0x1901
18207         for ((i = 0; i < 10; i++)); do
18208                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
18209                         error "stat f-$i failed"
18210                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
18211         done
18212
18213         touch $DIR/$tdir/striped_dir/f0 &&
18214                 error "create under striped dir with unknown hash should fail"
18215
18216         $LCTL set_param fail_loc=0
18217
18218         umount_client $MOUNT || error "umount failed"
18219         mount_client $MOUNT || error "mount failed"
18220
18221         return 0
18222 }
18223 run_test 300i "client handle unknown hash type striped directory"
18224
18225 test_300j() {
18226         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18227         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18228         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18229                 skip "Need MDS version at least 2.7.55"
18230
18231         local stripe_count
18232         local file
18233
18234         mkdir $DIR/$tdir
18235
18236         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
18237         $LCTL set_param fail_loc=0x1702
18238         $LFS setdirstripe -i 0 -c$MDSCOUNT -H all_char $DIR/$tdir/striped_dir ||
18239                 error "set striped dir error"
18240
18241         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
18242                 error "create files under striped dir failed"
18243
18244         $LCTL set_param fail_loc=0
18245
18246         rm -rf $DIR/$tdir || error "unlink striped dir fails"
18247
18248         return 0
18249 }
18250 run_test 300j "test large update record"
18251
18252 test_300k() {
18253         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18254         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18255         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18256                 skip "Need MDS version at least 2.7.55"
18257
18258         # this test needs a huge transaction
18259         local kb
18260         kb=$(do_facet $SINGLEMDS lctl get_param -n osd*.lustre-MDT0000.kbytestotal)
18261         [ $kb -lt $((1024*1024)) ] && skip "too small mds: $kb"
18262
18263         local stripe_count
18264         local file
18265
18266         mkdir $DIR/$tdir
18267
18268         #define OBD_FAIL_LARGE_STRIPE   0x1703
18269         $LCTL set_param fail_loc=0x1703
18270         $LFS setdirstripe -i 0 -c192 $DIR/$tdir/striped_dir ||
18271                 error "set striped dir error"
18272         $LCTL set_param fail_loc=0
18273
18274         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18275                 error "getstripeddir fails"
18276         rm -rf $DIR/$tdir/striped_dir ||
18277                 error "unlink striped dir fails"
18278
18279         return 0
18280 }
18281 run_test 300k "test large striped directory"
18282
18283 test_300l() {
18284         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18285         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18286         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18287                 skip "Need MDS version at least 2.7.55"
18288
18289         local stripe_index
18290
18291         test_mkdir -p $DIR/$tdir/striped_dir
18292         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
18293                         error "chown $RUNAS_ID failed"
18294         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
18295                 error "set default striped dir failed"
18296
18297         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
18298         $LCTL set_param fail_loc=0x80000158
18299         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
18300
18301         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
18302         [ $stripe_index -eq 1 ] ||
18303                 error "expect 1 get $stripe_index for $dir"
18304 }
18305 run_test 300l "non-root user to create dir under striped dir with stale layout"
18306
18307 test_300m() {
18308         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18309         [ $MDSCOUNT -ge 2 ] && skip_env "Only for single MDT"
18310         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18311                 skip "Need MDS version at least 2.7.55"
18312
18313         mkdir -p $DIR/$tdir/striped_dir
18314         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
18315                 error "set default stripes dir error"
18316
18317         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
18318
18319         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
18320         [ $stripe_count -eq 0 ] ||
18321                         error "expect 0 get $stripe_count for a"
18322
18323         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
18324                 error "set default stripes dir error"
18325
18326         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
18327
18328         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
18329         [ $stripe_count -eq 0 ] ||
18330                         error "expect 0 get $stripe_count for b"
18331
18332         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
18333                 error "set default stripes dir error"
18334
18335         mkdir $DIR/$tdir/striped_dir/c &&
18336                 error "default stripe_index is invalid, mkdir c should fails"
18337
18338         rm -rf $DIR/$tdir || error "rmdir fails"
18339 }
18340 run_test 300m "setstriped directory on single MDT FS"
18341
18342 cleanup_300n() {
18343         local list=$(comma_list $(mdts_nodes))
18344
18345         trap 0
18346         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18347 }
18348
18349 test_300n() {
18350         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18351         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18352         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18353                 skip "Need MDS version at least 2.7.55"
18354         remote_mds_nodsh && skip "remote MDS with nodsh"
18355
18356         local stripe_index
18357         local list=$(comma_list $(mdts_nodes))
18358
18359         trap cleanup_300n RETURN EXIT
18360         mkdir -p $DIR/$tdir
18361         chmod 777 $DIR/$tdir
18362         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
18363                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18364                 error "create striped dir succeeds with gid=0"
18365
18366         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18367         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
18368                 error "create striped dir fails with gid=-1"
18369
18370         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18371         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
18372                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
18373                 error "set default striped dir succeeds with gid=0"
18374
18375
18376         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
18377         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
18378                 error "set default striped dir fails with gid=-1"
18379
18380
18381         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
18382         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
18383                                         error "create test_dir fails"
18384         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
18385                                         error "create test_dir1 fails"
18386         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
18387                                         error "create test_dir2 fails"
18388         cleanup_300n
18389 }
18390 run_test 300n "non-root user to create dir under striped dir with default EA"
18391
18392 test_300o() {
18393         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18394         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18395         [ $MDS1_VERSION -lt $(version_code 2.7.55) ] &&
18396                 skip "Need MDS version at least 2.7.55"
18397
18398         local numfree1
18399         local numfree2
18400
18401         mkdir -p $DIR/$tdir
18402
18403         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
18404         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
18405         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
18406                 skip "not enough free inodes $numfree1 $numfree2"
18407         fi
18408
18409         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
18410         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
18411         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
18412                 skip "not enough free space $numfree1 $numfree2"
18413         fi
18414
18415         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
18416                 error "setdirstripe fails"
18417
18418         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
18419                 error "create dirs fails"
18420
18421         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
18422         ls $DIR/$tdir/striped_dir > /dev/null ||
18423                 error "ls striped dir fails"
18424         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
18425                 error "unlink big striped dir fails"
18426 }
18427 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
18428
18429 test_300p() {
18430         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18431         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18432         remote_mds_nodsh && skip "remote MDS with nodsh"
18433
18434         mkdir -p $DIR/$tdir
18435
18436         #define OBD_FAIL_OUT_ENOSPC     0x1704
18437         do_facet mds2 lctl set_param fail_loc=0x80001704
18438         $LFS setdirstripe -i 0 -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 \
18439                  && error "create striped directory should fail"
18440
18441         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
18442
18443         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
18444         true
18445 }
18446 run_test 300p "create striped directory without space"
18447
18448 test_300q() {
18449         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18450         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
18451
18452         local fd=$(free_fd)
18453         local cmd="exec $fd<$tdir"
18454         cd $DIR
18455         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
18456         eval $cmd
18457         cmd="exec $fd<&-"
18458         trap "eval $cmd" EXIT
18459         cd $tdir || error "cd $tdir fails"
18460         rmdir  ../$tdir || error "rmdir $tdir fails"
18461         mkdir local_dir && error "create dir succeeds"
18462         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
18463         eval $cmd
18464         return 0
18465 }
18466 run_test 300q "create remote directory under orphan directory"
18467
18468 test_300r() {
18469         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
18470                 skip "Need MDS version at least 2.7.55" && return
18471         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
18472
18473         mkdir $DIR/$tdir
18474
18475         $LFS setdirstripe -i 0 -c -1 $DIR/$tdir/striped_dir ||
18476                 error "set striped dir error"
18477
18478         $LFS getdirstripe $DIR/$tdir/striped_dir ||
18479                 error "getstripeddir fails"
18480
18481         local stripe_count
18482         stripe_count=$($LFS getdirstripe $DIR/$tdir/striped_dir |
18483                       awk '/lmv_stripe_count:/ { print $2 }')
18484
18485         [ $MDSCOUNT -ne $stripe_count ] &&
18486                 error "wrong stripe count $stripe_count expected $MDSCOUNT"
18487
18488         rm -rf $DIR/$tdir/striped_dir ||
18489                 error "unlink striped dir fails"
18490 }
18491 run_test 300r "test -1 striped directory"
18492
18493 prepare_remote_file() {
18494         mkdir $DIR/$tdir/src_dir ||
18495                 error "create remote source failed"
18496
18497         cp /etc/hosts $DIR/$tdir/src_dir/a ||
18498                  error "cp to remote source failed"
18499         touch $DIR/$tdir/src_dir/a
18500
18501         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
18502                 error "create remote target dir failed"
18503
18504         touch $DIR/$tdir/tgt_dir/b
18505
18506         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
18507                 error "rename dir cross MDT failed!"
18508
18509         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
18510                 error "src_child still exists after rename"
18511
18512         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
18513                 error "missing file(a) after rename"
18514
18515         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
18516                 error "diff after rename"
18517 }
18518
18519 test_310a() {
18520         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18521         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18522
18523         local remote_file=$DIR/$tdir/tgt_dir/b
18524
18525         mkdir -p $DIR/$tdir
18526
18527         prepare_remote_file || error "prepare remote file failed"
18528
18529         #open-unlink file
18530         $OPENUNLINK $remote_file $remote_file ||
18531                 error "openunlink $remote_file failed"
18532         $CHECKSTAT -a $remote_file || error "$remote_file exists"
18533 }
18534 run_test 310a "open unlink remote file"
18535
18536 test_310b() {
18537         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 4 MDTs"
18538         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18539
18540         local remote_file=$DIR/$tdir/tgt_dir/b
18541
18542         mkdir -p $DIR/$tdir
18543
18544         prepare_remote_file || error "prepare remote file failed"
18545
18546         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18547         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
18548         $CHECKSTAT -t file $remote_file || error "check file failed"
18549 }
18550 run_test 310b "unlink remote file with multiple links while open"
18551
18552 test_310c() {
18553         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18554         [[ $MDSCOUNT -lt 4 ]] && skip_env "needs >= 4 MDTs"
18555
18556         local remote_file=$DIR/$tdir/tgt_dir/b
18557
18558         mkdir -p $DIR/$tdir
18559
18560         prepare_remote_file || error "prepare remote file failed"
18561
18562         ln $remote_file $DIR/$tfile || error "link failed for remote file"
18563         multiop_bg_pause $remote_file O_uc ||
18564                         error "mulitop failed for remote file"
18565         MULTIPID=$!
18566         $MULTIOP $DIR/$tfile Ouc
18567         kill -USR1 $MULTIPID
18568         wait $MULTIPID
18569 }
18570 run_test 310c "open-unlink remote file with multiple links"
18571
18572 #LU-4825
18573 test_311() {
18574         [ $PARALLEL == "yes" ] && skip "skip parallel run"
18575         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18576         [ $MDS1_VERSION -lt $(version_code 2.8.54) ] &&
18577                 skip "lustre < 2.8.54 does not contain LU-4825 fix"
18578         remote_mds_nodsh && skip "remote MDS with nodsh"
18579
18580         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18581         local mdts=$(comma_list $(mdts_nodes))
18582
18583         mkdir -p $DIR/$tdir
18584         $LFS setstripe -i 0 -c 1 $DIR/$tdir
18585         createmany -o $DIR/$tdir/$tfile. 1000
18586
18587         # statfs data is not real time, let's just calculate it
18588         old_iused=$((old_iused + 1000))
18589
18590         local count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18591                         osp.*OST0000*MDT0000.create_count")
18592         local max_count=$(do_facet $SINGLEMDS "$LCTL get_param -n \
18593                                 osp.*OST0000*MDT0000.max_create_count")
18594         do_nodes $mdts "$LCTL set_param -n osp.*OST0000*.max_create_count=0"
18595
18596         $LFS setstripe -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
18597         local index=$($LFS getstripe -i $DIR/$tdir/$tfile)
18598         [ $index -ne 0 ] || error "$tfile stripe index is 0"
18599
18600         unlinkmany $DIR/$tdir/$tfile. 1000
18601
18602         do_nodes $mdts "$LCTL set_param -n \
18603                         osp.*OST0000*.max_create_count=$max_count"
18604         [ $MDS1_VERSION -lt $(version_code 2.12.51) ] &&
18605                 do_nodes $mdts "$LCTL set_param -n \
18606                                 osp.*OST0000*.create_count=$count"
18607         do_nodes $mdts "$LCTL get_param osp.*OST0000*.create_count" |
18608                         grep "=0" && error "create_count is zero"
18609
18610         local new_iused
18611         for i in $(seq 120); do
18612                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
18613                 # system may be too busy to destroy all objs in time, use
18614                 # a somewhat small value to not fail autotest
18615                 [ $((old_iused - new_iused)) -gt 400 ] && break
18616                 sleep 1
18617         done
18618
18619         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
18620         [ $((old_iused - new_iused)) -gt 400 ] ||
18621                 error "objs not destroyed after unlink"
18622 }
18623 run_test 311 "disable OSP precreate, and unlink should destroy objs"
18624
18625 zfs_oid_to_objid()
18626 {
18627         local ost=$1
18628         local objid=$2
18629
18630         local vdevdir=$(dirname $(facet_vdevice $ost))
18631         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
18632         local zfs_zapid=$(do_facet $ost $cmd |
18633                           grep -w "/O/0/d$((objid%32))" -C 5 |
18634                           awk '/Object/{getline; print $1}')
18635         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
18636                           awk "/$objid = /"'{printf $3}')
18637
18638         echo $zfs_objid
18639 }
18640
18641 zfs_object_blksz() {
18642         local ost=$1
18643         local objid=$2
18644
18645         local vdevdir=$(dirname $(facet_vdevice $ost))
18646         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
18647         local blksz=$(do_facet $ost $cmd $objid |
18648                       awk '/dblk/{getline; printf $4}')
18649
18650         case "${blksz: -1}" in
18651                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
18652                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
18653                 *) ;;
18654         esac
18655
18656         echo $blksz
18657 }
18658
18659 test_312() { # LU-4856
18660         remote_ost_nodsh && skip "remote OST with nodsh"
18661         [ "$ost1_FSTYPE" = "zfs" ] ||
18662                 skip_env "the test only applies to zfs"
18663
18664         local max_blksz=$(do_facet ost1 \
18665                           $ZFS get -p recordsize $(facet_device ost1) |
18666                           awk '!/VALUE/{print $3}')
18667
18668         # to make life a little bit easier
18669         $LFS mkdir -c 1 -i 0 $DIR/$tdir
18670         $LFS setstripe -c 1 -i 0 $DIR/$tdir
18671
18672         local tf=$DIR/$tdir/$tfile
18673         touch $tf
18674         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18675
18676         # Get ZFS object id
18677         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18678         # block size change by sequential overwrite
18679         local bs
18680
18681         for ((bs=$PAGE_SIZE; bs <= max_blksz; bs *= 4)) ; do
18682                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
18683
18684                 local blksz=$(zfs_object_blksz ost1 $zfs_objid)
18685                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
18686         done
18687         rm -f $tf
18688
18689         # block size change by sequential append write
18690         dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=1 oflag=sync conv=notrunc
18691         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18692         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18693         local count
18694
18695         for ((count = 1; count < $((max_blksz / PAGE_SIZE)); count *= 2)); do
18696                 dd if=/dev/zero of=$tf bs=$PAGE_SIZE count=$count seek=$count \
18697                         oflag=sync conv=notrunc
18698
18699                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
18700                 [ $blksz -eq $((2 * count * PAGE_SIZE)) ] ||
18701                         error "blksz error, actual $blksz, " \
18702                                 "expected: 2 * $count * $PAGE_SIZE"
18703         done
18704         rm -f $tf
18705
18706         # random write
18707         touch $tf
18708         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
18709         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
18710
18711         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
18712         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18713         [ $blksz -eq $PAGE_SIZE ] ||
18714                 error "blksz error: $blksz, expected: $PAGE_SIZE"
18715
18716         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
18717         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18718         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
18719
18720         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
18721         blksz=$(zfs_object_blksz ost1 $zfs_objid)
18722         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
18723 }
18724 run_test 312 "make sure ZFS adjusts its block size by write pattern"
18725
18726 test_313() {
18727         remote_ost_nodsh && skip "remote OST with nodsh"
18728
18729         local file=$DIR/$tfile
18730
18731         rm -f $file
18732         $LFS setstripe -c 1 -i 0 $file || error "setstripe failed"
18733
18734         # define OBD_FAIL_TGT_RCVD_EIO           0x720
18735         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18736         dd if=/dev/zero of=$file bs=$PAGE_SIZE oflag=direct count=1 &&
18737                 error "write should failed"
18738         do_facet ost1 "$LCTL set_param fail_loc=0"
18739         rm -f $file
18740 }
18741 run_test 313 "io should fail after last_rcvd update fail"
18742
18743 test_314() {
18744         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
18745
18746         $LFS setstripe -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
18747         do_facet ost1 "$LCTL set_param fail_loc=0x720"
18748         rm -f $DIR/$tfile
18749         wait_delete_completed
18750         do_facet ost1 "$LCTL set_param fail_loc=0"
18751 }
18752 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
18753
18754 test_315() { # LU-618
18755         [ -f /proc/$$/io ] || skip_env "no IO accounting in kernel"
18756
18757         local file=$DIR/$tfile
18758         rm -f $file
18759
18760         $MULTIOP $file oO_CREAT:O_DIRECT:O_RDWR:w4063232c ||
18761                 error "multiop file write failed"
18762         $MULTIOP $file oO_RDONLY:r4063232_c &
18763         PID=$!
18764
18765         sleep 2
18766
18767         local rbytes=$(awk '/read_bytes/ { print $2 }' /proc/$PID/io)
18768         kill -USR1 $PID
18769
18770         [ $rbytes -gt 4000000 ] || error "read is not accounted ($rbytes)"
18771         rm -f $file
18772 }
18773 run_test 315 "read should be accounted"
18774
18775 test_316() {
18776         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
18777         large_xattr_enabled || skip_env "ea_inode feature disabled"
18778
18779         rm -rf $DIR/$tdir/d
18780         mkdir -p $DIR/$tdir/d
18781         chown nobody $DIR/$tdir/d
18782         touch $DIR/$tdir/d/file
18783
18784         $LFS mv -M1 $DIR/$tdir/d || error "lfs mv failed"
18785 }
18786 run_test 316 "lfs mv"
18787
18788 test_317() {
18789         [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
18790                 skip "Need MDS version at least 2.11.53"
18791         local trunc_sz
18792         local grant_blk_size
18793
18794         if [ "$(facet_fstype $facet)" == "zfs" ]; then
18795                 skip "LU-10370: no implementation for ZFS" && return
18796         fi
18797
18798         stack_trap "rm -f $DIR/$tfile" EXIT
18799         grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
18800                         awk '/grant_block_size:/ { print $2; exit; }')
18801         #
18802         # Create File of size 5M. Truncate it to below size's and verify
18803         # blocks count.
18804         #
18805         dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
18806                 error "Create file : $DIR/$tfile"
18807
18808         for trunc_sz in 2097152 4097 4000 509 0; do
18809                 $TRUNCATE $DIR/$tfile $trunc_sz ||
18810                         error "truncate $tfile to $trunc_sz failed"
18811                 local sz=$(stat --format=%s $DIR/$tfile)
18812                 local blk=$(stat --format=%b $DIR/$tfile)
18813                 local trunc_blk=$((((trunc_sz + (grant_blk_size - 1) ) /
18814                                      grant_blk_size) * 8))
18815
18816                 if [[ $blk -ne $trunc_blk ]]; then
18817                         $(which stat) $DIR/$tfile
18818                         error "Expected Block $trunc_blk got $blk for $tfile"
18819                 fi
18820
18821                 $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18822                         error "Expected Size $trunc_sz got $sz for $tfile"
18823         done
18824
18825         #
18826         # sparse file test
18827         # Create file with a hole and write actual two blocks. Block count
18828         # must be 16.
18829         #
18830         dd if=/dev/zero of=$DIR/$tfile bs=$grant_blk_size count=2 seek=5 \
18831                 conv=fsync || error "Create file : $DIR/$tfile"
18832
18833         # Calculate the final truncate size.
18834         trunc_sz=$(($(stat --format=%s $DIR/$tfile) - (grant_blk_size + 1)))
18835
18836         #
18837         # truncate to size $trunc_sz bytes. Strip the last block
18838         # The block count must drop to 8
18839         #
18840         $TRUNCATE $DIR/$tfile $trunc_sz ||
18841                 error "truncate $tfile to $trunc_sz failed"
18842
18843         local trunc_bsz=$((grant_blk_size / $(stat --format=%B $DIR/$tfile)))
18844         sz=$(stat --format=%s $DIR/$tfile)
18845         blk=$(stat --format=%b $DIR/$tfile)
18846
18847         if [[ $blk -ne $trunc_bsz ]]; then
18848                 $(which stat) $DIR/$tfile
18849                 error "Expected Block $trunc_bsz got $blk for $tfile"
18850         fi
18851
18852         $CHECKSTAT -s $trunc_sz $DIR/$tfile ||
18853                 error "Expected Size $trunc_sz got $sz for $tfile"
18854 }
18855 run_test 317 "Verify blocks get correctly update after truncate"
18856
18857 test_319() {
18858         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
18859
18860         local before=$(date +%s)
18861         local evict
18862         local mdir=$DIR/$tdir
18863         local file=$mdir/xxx
18864
18865         $LFS mkdir -i0 $mdir || error "mkdir $mdir fails"
18866         touch $file
18867
18868 #define OBD_FAIL_LDLM_LOCAL_CANCEL_PAUSE 0x32c
18869         $LCTL set_param fail_val=5 fail_loc=0x8000032c
18870         $LFS mv -m1 $file &
18871
18872         sleep 1
18873         dd if=$file of=/dev/null
18874         wait
18875         evict=$($LCTL get_param mdc.$FSNAME-MDT*.state |
18876           awk -F"[ [,]" '/EVICTED ]$/ { if (mx<$5) {mx=$5;} } END { print mx }')
18877
18878         [ -z "$evict" ] || [[ $evict -le $before ]] || error "eviction happened"
18879 }
18880 run_test 319 "lost lease lock on migrate error"
18881
18882 test_fake_rw() {
18883         local read_write=$1
18884         if [ "$read_write" = "write" ]; then
18885                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
18886         elif [ "$read_write" = "read" ]; then
18887                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
18888         else
18889                 error "argument error"
18890         fi
18891
18892         # turn off debug for performance testing
18893         local saved_debug=$($LCTL get_param -n debug)
18894         $LCTL set_param debug=0
18895
18896         $LFS setstripe -c 1 -i 0 $DIR/$tfile
18897
18898         # get ost1 size - lustre-OST0000
18899         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
18900         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
18901         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
18902
18903         if [ "$read_write" = "read" ]; then
18904                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
18905         fi
18906
18907         local start_time=$(date +%s.%N)
18908         $dd_cmd bs=1M count=$blocks oflag=sync ||
18909                 error "real dd $read_write error"
18910         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
18911
18912         if [ "$read_write" = "write" ]; then
18913                 rm -f $DIR/$tfile
18914         fi
18915
18916         # define OBD_FAIL_OST_FAKE_RW           0x238
18917         do_facet ost1 $LCTL set_param fail_loc=0x238
18918
18919         local start_time=$(date +%s.%N)
18920         $dd_cmd bs=1M count=$blocks oflag=sync ||
18921                 error "fake dd $read_write error"
18922         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
18923
18924         if [ "$read_write" = "write" ]; then
18925                 # verify file size
18926                 cancel_lru_locks osc
18927                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
18928                         error "$tfile size not $blocks MB"
18929         fi
18930         do_facet ost1 $LCTL set_param fail_loc=0
18931
18932         echo "fake $read_write $duration_fake vs. normal $read_write" \
18933                 "$duration in seconds"
18934         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
18935                 error_not_in_vm "fake write is slower"
18936
18937         $LCTL set_param -n debug="$saved_debug"
18938         rm -f $DIR/$tfile
18939 }
18940 test_399a() { # LU-7655 for OST fake write
18941         remote_ost_nodsh && skip "remote OST with nodsh"
18942
18943         test_fake_rw write
18944 }
18945 run_test 399a "fake write should not be slower than normal write"
18946
18947 test_399b() { # LU-8726 for OST fake read
18948         remote_ost_nodsh && skip "remote OST with nodsh"
18949         if [ "$ost1_FSTYPE" != "ldiskfs" ]; then
18950                 skip_env "ldiskfs only test"
18951         fi
18952
18953         test_fake_rw read
18954 }
18955 run_test 399b "fake read should not be slower than normal read"
18956
18957 test_400a() { # LU-1606, was conf-sanity test_74
18958         if ! which $CC > /dev/null 2>&1; then
18959                 skip_env "$CC is not installed"
18960         fi
18961
18962         local extra_flags=''
18963         local out=$TMP/$tfile
18964         local prefix=/usr/include/lustre
18965         local prog
18966
18967         if ! [[ -d $prefix ]]; then
18968                 # Assume we're running in tree and fixup the include path.
18969                 extra_flags+=" -I$LUSTRE/../lnet/include/uapi -I$LUSTRE/include/uapi -I$LUSTRE/include"
18970                 extra_flags+=" -L$LUSTRE/utils/.lib"
18971         fi
18972
18973         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
18974                 $CC -Wall -Werror $extra_flags -o $out $prog -llustreapi ||
18975                         error "client api broken"
18976         done
18977         rm -f $out
18978 }
18979 run_test 400a "Lustre client api program can compile and link"
18980
18981 test_400b() { # LU-1606, LU-5011
18982         local header
18983         local out=$TMP/$tfile
18984         local prefix=/usr/include/linux/lustre
18985
18986         # We use a hard coded prefix so that this test will not fail
18987         # when run in tree. There are headers in lustre/include/lustre/
18988         # that are not packaged (like lustre_idl.h) and have more
18989         # complicated include dependencies (like config.h and lnet/types.h).
18990         # Since this test about correct packaging we just skip them when
18991         # they don't exist (see below) rather than try to fixup cppflags.
18992
18993         if ! which $CC > /dev/null 2>&1; then
18994                 skip_env "$CC is not installed"
18995         fi
18996
18997         for header in $prefix/*.h; do
18998                 if ! [[ -f "$header" ]]; then
18999                         continue
19000                 fi
19001
19002                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
19003                         continue # lustre_ioctl.h is internal header
19004                 fi
19005
19006                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
19007                         error "cannot compile '$header'"
19008         done
19009         rm -f $out
19010 }
19011 run_test 400b "packaged headers can be compiled"
19012
19013 test_401a() { #LU-7437
19014         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
19015         [ -n "$printf_arg" ] && skip_env "find does not support -printf"
19016
19017         #count the number of parameters by "list_param -R"
19018         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
19019         #count the number of parameters by listing proc files
19020         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
19021         echo "proc_dirs='$proc_dirs'"
19022         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
19023         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
19024                       sort -u | wc -l)
19025
19026         [ $params -eq $procs ] ||
19027                 error "found $params parameters vs. $procs proc files"
19028
19029         # test the list_param -D option only returns directories
19030         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
19031         #count the number of parameters by listing proc directories
19032         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
19033                 sort -u | wc -l)
19034
19035         [ $params -eq $procs ] ||
19036                 error "found $params parameters vs. $procs proc files"
19037 }
19038 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
19039
19040 test_401b() {
19041         local save=$($LCTL get_param -n jobid_var)
19042         local tmp=testing
19043
19044         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
19045                 error "no error returned when setting bad parameters"
19046
19047         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
19048         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
19049
19050         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
19051         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
19052         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
19053 }
19054 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
19055
19056 test_401c() {
19057         local jobid_var_old=$($LCTL get_param -n jobid_var)
19058         local jobid_var_new
19059
19060         $LCTL set_param jobid_var= &&
19061                 error "no error returned for 'set_param a='"
19062
19063         jobid_var_new=$($LCTL get_param -n jobid_var)
19064         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
19065                 error "jobid_var was changed by setting without value"
19066
19067         $LCTL set_param jobid_var &&
19068                 error "no error returned for 'set_param a'"
19069
19070         jobid_var_new=$($LCTL get_param -n jobid_var)
19071         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
19072                 error "jobid_var was changed by setting without value"
19073 }
19074 run_test 401c "Verify 'lctl set_param' without value fails in either format."
19075
19076 test_401d() {
19077         local jobid_var_old=$($LCTL get_param -n jobid_var)
19078         local jobid_var_new
19079         local new_value="foo=bar"
19080
19081         $LCTL set_param jobid_var=$new_value ||
19082                 error "'set_param a=b' did not accept a value containing '='"
19083
19084         jobid_var_new=$($LCTL get_param -n jobid_var)
19085         [[ "$jobid_var_new" == "$new_value" ]] ||
19086                 error "'set_param a=b' failed on a value containing '='"
19087
19088         # Reset the jobid_var to test the other format
19089         $LCTL set_param jobid_var=$jobid_var_old
19090         jobid_var_new=$($LCTL get_param -n jobid_var)
19091         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19092                 error "failed to reset jobid_var"
19093
19094         $LCTL set_param jobid_var $new_value ||
19095                 error "'set_param a b' did not accept a value containing '='"
19096
19097         jobid_var_new=$($LCTL get_param -n jobid_var)
19098         [[ "$jobid_var_new" == "$new_value" ]] ||
19099                 error "'set_param a b' failed on a value containing '='"
19100
19101         $LCTL set_param jobid_var $jobid_var_old
19102         jobid_var_new=$($LCTL get_param -n jobid_var)
19103         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
19104                 error "failed to reset jobid_var"
19105 }
19106 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
19107
19108 test_402() {
19109         [[ $MDS1_VERSION -ge $(version_code 2.7.66) ]] ||
19110         [[ $MDS1_VERSION -ge $(version_code 2.7.18.4) &&
19111                 $MDS1_VERSION -lt $(version_code 2.7.50) ]] ||
19112         [[ $MDS1_VERSION -ge $(version_code 2.7.2) &&
19113                 $MDS1_VERSION -lt $(version_code 2.7.11) ]] ||
19114                 skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+"
19115         remote_mds_nodsh && skip "remote MDS with nodsh"
19116
19117         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
19118 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
19119         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
19120         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
19121                 echo "Touch failed - OK"
19122 }
19123 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
19124
19125 test_403() {
19126         local file1=$DIR/$tfile.1
19127         local file2=$DIR/$tfile.2
19128         local tfile=$TMP/$tfile
19129
19130         rm -f $file1 $file2 $tfile
19131
19132         touch $file1
19133         ln $file1 $file2
19134
19135         # 30 sec OBD_TIMEOUT in ll_getattr()
19136         # right before populating st_nlink
19137         $LCTL set_param fail_loc=0x80001409
19138         stat -c %h $file1 > $tfile &
19139
19140         # create an alias, drop all locks and reclaim the dentry
19141         < $file2
19142         cancel_lru_locks mdc
19143         cancel_lru_locks osc
19144         sysctl -w vm.drop_caches=2
19145
19146         wait
19147
19148         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
19149
19150         rm -f $tfile $file1 $file2
19151 }
19152 run_test 403 "i_nlink should not drop to zero due to aliasing"
19153
19154 test_404() { # LU-6601
19155         [[ $MDS1_VERSION -ge $(version_code 2.8.53) ]] ||
19156                 skip "Need server version newer than 2.8.52"
19157         remote_mds_nodsh && skip "remote MDS with nodsh"
19158
19159         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
19160                 awk '/osp .*-osc-MDT/ { print $4}')
19161
19162         local osp
19163         for osp in $mosps; do
19164                 echo "Deactivate: " $osp
19165                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
19166                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19167                         awk -vp=$osp '$4 == p { print $2 }')
19168                 [ $stat = IN ] || {
19169                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19170                         error "deactivate error"
19171                 }
19172                 echo "Activate: " $osp
19173                 do_facet $SINGLEMDS $LCTL --device %$osp activate
19174                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
19175                         awk -vp=$osp '$4 == p { print $2 }')
19176                 [ $stat = UP ] || {
19177                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
19178                         error "activate error"
19179                 }
19180         done
19181 }
19182 run_test 404 "validate manual {de}activated works properly for OSPs"
19183
19184 test_405() {
19185         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
19186         [ $MDS1_VERSION -lt $(version_code 2.6.92) -o \
19187         [ $CLIENT_VERSION -lt $(version_code 2.6.99) ] &&
19188                 skip "Layout swap lock is not supported"
19189         check_swap_layouts_support
19190
19191         test_mkdir $DIR/$tdir
19192         swap_lock_test -d $DIR/$tdir ||
19193                 error "One layout swap locked test failed"
19194 }
19195 run_test 405 "Various layout swap lock tests"
19196
19197 test_406() {
19198         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19199         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
19200         [ -n "$FILESET" ] && skip "SKIP due to FILESET set"
19201         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19202         [ $MDS1_VERSION -lt $(version_code 2.8.50) ] &&
19203                 skip "Need MDS version at least 2.8.50"
19204
19205         local def_stripe_size=$($LFS getstripe -S $MOUNT)
19206         local test_pool=$TESTNAME
19207
19208         if ! combined_mgs_mds ; then
19209                 mount_mgs_client
19210         fi
19211         pool_add $test_pool || error "pool_add failed"
19212         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
19213                 error "pool_add_targets failed"
19214
19215         save_layout_restore_at_exit $MOUNT
19216
19217         # parent set default stripe count only, child will stripe from both
19218         # parent and fs default
19219         $LFS setstripe -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
19220                 error "setstripe $MOUNT failed"
19221         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
19222         $LFS setstripe -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
19223         for i in $(seq 10); do
19224                 local f=$DIR/$tdir/$tfile.$i
19225                 touch $f || error "touch failed"
19226                 local count=$($LFS getstripe -c $f)
19227                 [ $count -eq $OSTCOUNT ] ||
19228                         error "$f stripe count $count != $OSTCOUNT"
19229                 local offset=$($LFS getstripe -i $f)
19230                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
19231                 local size=$($LFS getstripe -S $f)
19232                 [ $size -eq $((def_stripe_size * 2)) ] ||
19233                         error "$f stripe size $size != $((def_stripe_size * 2))"
19234                 local pool=$($LFS getstripe -p $f)
19235                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
19236         done
19237
19238         # change fs default striping, delete parent default striping, now child
19239         # will stripe from new fs default striping only
19240         $LFS setstripe -c 1 -S $def_stripe_size -i 0 $MOUNT ||
19241                 error "change $MOUNT default stripe failed"
19242         $LFS setstripe -c 0 $DIR/$tdir ||
19243                 error "delete $tdir default stripe failed"
19244         for i in $(seq 11 20); do
19245                 local f=$DIR/$tdir/$tfile.$i
19246                 touch $f || error "touch $f failed"
19247                 local count=$($LFS getstripe -c $f)
19248                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
19249                 local offset=$($LFS getstripe -i $f)
19250                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
19251                 local size=$($LFS getstripe -S $f)
19252                 [ $size -eq $def_stripe_size ] ||
19253                         error "$f stripe size $size != $def_stripe_size"
19254                 local pool=$($LFS getstripe -p $f)
19255                 [ $pool == $test_pool ] || error "$f pool $pool isn't set"
19256         done
19257
19258         unlinkmany $DIR/$tdir/$tfile. 1 20
19259
19260         local f=$DIR/$tdir/$tfile
19261         pool_remove_all_targets $test_pool $f
19262         pool_remove $test_pool $f
19263
19264         if ! combined_mgs_mds ; then
19265                 umount_mgs_client
19266         fi
19267 }
19268 run_test 406 "DNE support fs default striping"
19269
19270 test_407() {
19271         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19272         [[ $MDS1_VERSION -lt $(version_code 2.8.55) ]] &&
19273                 skip "Need MDS version at least 2.8.55"
19274         remote_mds_nodsh && skip "remote MDS with nodsh"
19275
19276         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
19277                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
19278         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
19279                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
19280         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
19281
19282         #define OBD_FAIL_DT_TXN_STOP    0x2019
19283         for idx in $(seq $MDSCOUNT); do
19284                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
19285         done
19286         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
19287         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
19288                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
19289         true
19290 }
19291 run_test 407 "transaction fail should cause operation fail"
19292
19293 test_408() {
19294         dd if=/dev/zero of=$DIR/$tfile bs=$PAGE_SIZE count=1 oflag=direct
19295
19296         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
19297         lctl set_param fail_loc=0x8000040a
19298         # let ll_prepare_partial_page() fail
19299         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
19300
19301         rm -f $DIR/$tfile
19302
19303         # create at least 100 unused inodes so that
19304         # shrink_icache_memory(0) should not return 0
19305         touch $DIR/$tfile-{0..100}
19306         rm -f $DIR/$tfile-{0..100}
19307         sync
19308
19309         echo 2 > /proc/sys/vm/drop_caches
19310 }
19311 run_test 408 "drop_caches should not hang due to page leaks"
19312
19313 test_409()
19314 {
19315         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19316
19317         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
19318         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
19319         touch $DIR/$tdir/guard || error "(2) Fail to create"
19320
19321         local PREFIX=$(str_repeat 'A' 128)
19322         echo "Create 1K hard links start at $(date)"
19323         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19324                 error "(3) Fail to hard link"
19325
19326         echo "Links count should be right although linkEA overflow"
19327         stat $DIR/$tdir/guard || error "(4) Fail to stat"
19328         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
19329         [ $linkcount -eq 1001 ] ||
19330                 error "(5) Unexpected hard links count: $linkcount"
19331
19332         echo "List all links start at $(date)"
19333         ls -l $DIR/$tdir/foo > /dev/null ||
19334                 error "(6) Fail to list $DIR/$tdir/foo"
19335
19336         echo "Unlink hard links start at $(date)"
19337         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
19338                 error "(7) Fail to unlink"
19339         echo "Unlink hard links finished at $(date)"
19340 }
19341 run_test 409 "Large amount of cross-MDTs hard links on the same file"
19342
19343 test_410()
19344 {
19345         [[ $CLIENT_VERSION -lt $(version_code 2.9.59) ]] &&
19346                 skip "Need client version at least 2.9.59"
19347
19348         # Create a file, and stat it from the kernel
19349         local testfile=$DIR/$tfile
19350         touch $testfile
19351
19352         local run_id=$RANDOM
19353         local my_ino=$(stat --format "%i" $testfile)
19354
19355         # Try to insert the module. This will always fail as the
19356         # module is designed to not be inserted.
19357         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
19358             &> /dev/null
19359
19360         # Anything but success is a test failure
19361         dmesg | grep -q \
19362             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
19363             error "no inode match"
19364 }
19365 run_test 410 "Test inode number returned from kernel thread"
19366
19367 cleanup_test411_cgroup() {
19368         trap 0
19369         rmdir "$1"
19370 }
19371
19372 test_411() {
19373         local cg_basedir=/sys/fs/cgroup/memory
19374         # LU-9966
19375         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
19376                 skip "no setup for cgroup"
19377
19378         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
19379                 error "test file creation failed"
19380         cancel_lru_locks osc
19381
19382         # Create a very small memory cgroup to force a slab allocation error
19383         local cgdir=$cg_basedir/osc_slab_alloc
19384         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
19385         trap "cleanup_test411_cgroup $cgdir" EXIT
19386         echo 2M > $cgdir/memory.kmem.limit_in_bytes
19387         echo 1M > $cgdir/memory.limit_in_bytes
19388
19389         # Should not LBUG, just be killed by oom-killer
19390         # dd will return 0 even allocation failure in some environment.
19391         # So don't check return value
19392         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null"
19393         cleanup_test411_cgroup $cgdir
19394
19395         return 0
19396 }
19397 run_test 411 "Slab allocation error with cgroup does not LBUG"
19398
19399 test_412() {
19400         [ $MDSCOUNT -lt 2 ] && skip_env "needs >= 2 MDTs"
19401         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19402                 skip "Need server version at least 2.10.55"
19403         fi
19404
19405         $LFS mkdir -i $((MDSCOUNT - 1)),$((MDSCOUNT - 2)) $DIR/$tdir ||
19406                 error "mkdir failed"
19407         $LFS getdirstripe $DIR/$tdir
19408         local stripe_index=$($LFS getdirstripe -i $DIR/$tdir)
19409         [ $stripe_index -eq $((MDSCOUNT - 1)) ] ||
19410                 error "expect $((MDSCOUT - 1)) get $stripe_index"
19411         local stripe_count=$($LFS getdirstripe -T $DIR/$tdir)
19412         [ $stripe_count -eq 2 ] ||
19413                 error "expect 2 get $stripe_count"
19414 }
19415 run_test 412 "mkdir on specific MDTs"
19416
19417 test_413() {
19418         [ $MDSCOUNT -lt 2 ] &&
19419                 skip "We need at least 2 MDTs for this test"
19420
19421         if [ $(lustre_version_code mds1) -lt $(version_code 2.10.55) ]; then
19422                 skip "Need server version at least 2.10.55"
19423         fi
19424
19425         mkdir $DIR/$tdir || error "mkdir failed"
19426
19427         # find MDT that is the most full
19428         local max=$($LFS df | grep MDT |
19429                 awk 'BEGIN { a=0 }
19430                         { sub("%", "", $5)
19431                           if (0+$5 >= a)
19432                           {
19433                                 a = $5
19434                                 b = $6
19435                           }
19436                         }
19437                      END { split(b, c, ":")
19438                            sub("]", "", c[2])
19439                            print c[2]
19440                          }')
19441
19442         for i in $(seq $((MDSCOUNT - 1))); do
19443                 $LFS mkdir -c $i $DIR/$tdir/d$i ||
19444                         error "mkdir d$i failed"
19445                 $LFS getdirstripe $DIR/$tdir/d$i
19446                 local stripe_index=$($LFS getdirstripe -i $DIR/$tdir/d$i)
19447                 [ $stripe_index -ne $max ] ||
19448                         error "don't expect $max"
19449         done
19450 }
19451 run_test 413 "mkdir on less full MDTs"
19452
19453 test_414() {
19454 #define OBD_FAIL_PTLRPC_BULK_ATTACH      0x521
19455         $LCTL set_param fail_loc=0x80000521
19456         dd if=/dev/zero of=$DIR/$tfile bs=2M count=1 oflag=sync
19457         rm -f $DIR/$tfile
19458 }
19459 run_test 414 "simulate ENOMEM in ptlrpc_register_bulk()"
19460
19461 test_415() {
19462         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19463         [ $(lustre_version_code mds1) -lt $(version_code 2.11.52) ] &&
19464                 skip "Need server version at least 2.11.52"
19465
19466         # LU-11102
19467         local total
19468         local setattr_pid
19469         local start_time
19470         local end_time
19471         local duration
19472
19473         total=500
19474         # this test may be slow on ZFS
19475         [ "$mds1_FSTYPE" == "zfs" ] && total=100
19476
19477         # though this test is designed for striped directory, let's test normal
19478         # directory too since lock is always saved as CoS lock.
19479         test_mkdir $DIR/$tdir || error "mkdir $tdir"
19480         createmany -o $DIR/$tdir/$tfile. $total || error "createmany"
19481
19482         (
19483                 while true; do
19484                         touch $DIR/$tdir
19485                 done
19486         ) &
19487         setattr_pid=$!
19488
19489         start_time=$(date +%s)
19490         for i in $(seq $total); do
19491                 mrename $DIR/$tdir/$tfile.$i $DIR/$tdir/$tfile-new.$i \
19492                         > /dev/null
19493         done
19494         end_time=$(date +%s)
19495         duration=$((end_time - start_time))
19496
19497         kill -9 $setattr_pid
19498
19499         echo "rename $total files took $duration sec"
19500         [ $duration -lt 100 ] || error "rename took $duration sec"
19501 }
19502 run_test 415 "lock revoke is not missing"
19503
19504 test_416() {
19505         [ $(lustre_version_code mds1) -lt $(version_code 2.11.55) ] &&
19506                 skip "Need server version at least 2.11.55"
19507
19508         # define OBD_FAIL_OSD_TXN_START    0x19a
19509         do_facet mds1 lctl set_param fail_loc=0x19a
19510
19511         lfs mkdir -c $MDSCOUNT $DIR/$tdir
19512
19513         true
19514 }
19515 run_test 416 "transaction start failure won't cause system hung"
19516
19517 cleanup_417() {
19518         trap 0
19519         do_nodes $(comma_list $(mdts_nodes)) \
19520                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=1"
19521         do_nodes $(comma_list $(mdts_nodes)) \
19522                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=1"
19523         do_nodes $(comma_list $(mdts_nodes)) \
19524                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=1"
19525 }
19526
19527 test_417() {
19528         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
19529         [[ $MDS1_VERSION -lt $(version_code 2.11.56) ]] &&
19530                 skip "Need MDS version at least 2.11.56"
19531
19532         trap cleanup_417 RETURN EXIT
19533
19534         $LFS mkdir -i 1 $DIR/$tdir.1 || error "create remote dir $tdir.1 failed"
19535         do_nodes $(comma_list $(mdts_nodes)) \
19536                 "$LCTL set_param -n mdt.*MDT*.enable_dir_migration=0"
19537         $LFS migrate -m 0 $DIR/$tdir.1 &&
19538                 error "migrate dir $tdir.1 should fail"
19539
19540         do_nodes $(comma_list $(mdts_nodes)) \
19541                 "$LCTL set_param -n mdt.*MDT*.enable_remote_dir=0"
19542         $LFS mkdir -i 1 $DIR/$tdir.2 &&
19543                 error "create remote dir $tdir.2 should fail"
19544
19545         do_nodes $(comma_list $(mdts_nodes)) \
19546                 "$LCTL set_param -n mdt.*MDT*.enable_striped_dir=0"
19547         $LFS mkdir -c 2 $DIR/$tdir.3 &&
19548                 error "create striped dir $tdir.3 should fail"
19549         true
19550 }
19551 run_test 417 "disable remote dir, striped dir and dir migration"
19552
19553 # Checks that the outputs of df [-i] and lfs df [-i] match
19554 #
19555 # usage: check_lfs_df <blocks | inodes> <mountpoint>
19556 check_lfs_df() {
19557         local dir=$2
19558         local inodes
19559         local df_out
19560         local lfs_df_out
19561         local count
19562         local passed=false
19563
19564         # blocks or inodes
19565         [ "$1" == "blocks" ] && inodes= || inodes="-i"
19566
19567         for count in {1..100}; do
19568                 cancel_lru_locks
19569                 sync; sleep 0.2
19570
19571                 # read the lines of interest
19572                 df_out=($(df -P $inodes $dir | tail -n +2)) ||
19573                         error "df $inodes $dir | tail -n +2 failed"
19574                 lfs_df_out=($($LFS df $inodes $dir | grep summary:)) ||
19575                         error "lfs df $inodes $dir | grep summary: failed"
19576
19577                 # skip first substrings of each output as they are different
19578                 # "<NID>:/<fsname>" for df, "filesystem_summary:" for lfs df
19579                 # compare the two outputs
19580                 passed=true
19581                 for i in {1..5}; do
19582                         [ "${df_out[i]}" != "${lfs_df_out[i]}" ] && passed=false
19583                 done
19584                 $passed && break
19585         done
19586
19587         if ! $passed; then
19588                 df -P $inodes $dir
19589                 echo
19590                 lfs df $inodes $dir
19591                 error "df and lfs df $1 output mismatch: "      \
19592                       "df ${inodes}: ${df_out[*]}, "            \
19593                       "lfs df ${inodes}: ${lfs_df_out[*]}"
19594         fi
19595 }
19596
19597 test_418() {
19598         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19599
19600         local dir=$DIR/$tdir
19601         local numfiles=$((RANDOM % 4096 + 2))
19602         local numblocks=$((RANDOM % 256 + 1))
19603
19604         wait_delete_completed
19605         test_mkdir $dir
19606
19607         # check block output
19608         check_lfs_df blocks $dir
19609         # check inode output
19610         check_lfs_df inodes $dir
19611
19612         # create a single file and retest
19613         echo "Creating a single file and testing"
19614         createmany -o $dir/$tfile- 1 &>/dev/null ||
19615                 error "creating 1 file in $dir failed"
19616         check_lfs_df blocks $dir
19617         check_lfs_df inodes $dir
19618
19619         # create a random number of files
19620         echo "Creating $((numfiles - 1)) files and testing"
19621         createmany -o $dir/$tfile- 1 $((numfiles - 1)) &>/dev/null ||
19622                 error "creating $((numfiles - 1)) files in $dir failed"
19623
19624         # write a random number of blocks to the first test file
19625         echo "Writing $numblocks 4K blocks and testing"
19626         dd if=/dev/urandom of=$dir/${tfile}-0 bs=4K conv=fsync \
19627                 count=$numblocks &>/dev/null ||
19628                 error "dd to $dir/${tfile}-0 failed"
19629
19630         # retest
19631         check_lfs_df blocks $dir
19632         check_lfs_df inodes $dir
19633
19634         unlinkmany $dir/$tfile- $numfiles &>/dev/null ||
19635                 error "unlinking $numfiles files in $dir failed"
19636 }
19637 run_test 418 "df and lfs df outputs match"
19638
19639 prep_801() {
19640         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19641         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19642                 skip "Need server version at least 2.9.55"
19643
19644         start_full_debug_logging
19645 }
19646
19647 post_801() {
19648         stop_full_debug_logging
19649 }
19650
19651 barrier_stat() {
19652         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19653                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19654                            awk '/The barrier for/ { print $7 }')
19655                 echo $st
19656         else
19657                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
19658                 echo \'$st\'
19659         fi
19660 }
19661
19662 barrier_expired() {
19663         local expired
19664
19665         if [ $MGS_VERSION -le $(version_code 2.10.0) ]; then
19666                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
19667                           awk '/will be expired/ { print $7 }')
19668         else
19669                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
19670         fi
19671
19672         echo $expired
19673 }
19674
19675 test_801a() {
19676         prep_801
19677
19678         echo "Start barrier_freeze at: $(date)"
19679         #define OBD_FAIL_BARRIER_DELAY          0x2202
19680         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19681         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
19682
19683         sleep 2
19684         local b_status=$(barrier_stat)
19685         echo "Got barrier status at: $(date)"
19686         [ "$b_status" = "'freezing_p1'" ] ||
19687                 error "(1) unexpected barrier status $b_status"
19688
19689         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19690         wait
19691         b_status=$(barrier_stat)
19692         [ "$b_status" = "'frozen'" ] ||
19693                 error "(2) unexpected barrier status $b_status"
19694
19695         local expired=$(barrier_expired)
19696         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
19697         sleep $((expired + 3))
19698
19699         b_status=$(barrier_stat)
19700         [ "$b_status" = "'expired'" ] ||
19701                 error "(3) unexpected barrier status $b_status"
19702
19703         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
19704                 error "(4) fail to freeze barrier"
19705
19706         b_status=$(barrier_stat)
19707         [ "$b_status" = "'frozen'" ] ||
19708                 error "(5) unexpected barrier status $b_status"
19709
19710         echo "Start barrier_thaw at: $(date)"
19711         #define OBD_FAIL_BARRIER_DELAY          0x2202
19712         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
19713         do_facet mgs $LCTL barrier_thaw $FSNAME &
19714
19715         sleep 2
19716         b_status=$(barrier_stat)
19717         echo "Got barrier status at: $(date)"
19718         [ "$b_status" = "'thawing'" ] ||
19719                 error "(6) unexpected barrier status $b_status"
19720
19721         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
19722         wait
19723         b_status=$(barrier_stat)
19724         [ "$b_status" = "'thawed'" ] ||
19725                 error "(7) unexpected barrier status $b_status"
19726
19727         #define OBD_FAIL_BARRIER_FAILURE        0x2203
19728         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
19729         do_facet mgs $LCTL barrier_freeze $FSNAME
19730
19731         b_status=$(barrier_stat)
19732         [ "$b_status" = "'failed'" ] ||
19733                 error "(8) unexpected barrier status $b_status"
19734
19735         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
19736         do_facet mgs $LCTL barrier_thaw $FSNAME
19737
19738         post_801
19739 }
19740 run_test 801a "write barrier user interfaces and stat machine"
19741
19742 test_801b() {
19743         prep_801
19744
19745         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19746         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
19747         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
19748         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
19749         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
19750
19751         cancel_lru_locks mdc
19752
19753         # 180 seconds should be long enough
19754         do_facet mgs $LCTL barrier_freeze $FSNAME 180
19755
19756         local b_status=$(barrier_stat)
19757         [ "$b_status" = "'frozen'" ] ||
19758                 error "(6) unexpected barrier status $b_status"
19759
19760         mkdir $DIR/$tdir/d0/d10 &
19761         mkdir_pid=$!
19762
19763         touch $DIR/$tdir/d1/f13 &
19764         touch_pid=$!
19765
19766         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
19767         ln_pid=$!
19768
19769         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
19770         mv_pid=$!
19771
19772         rm -f $DIR/$tdir/d4/f12 &
19773         rm_pid=$!
19774
19775         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
19776
19777         # To guarantee taht the 'stat' is not blocked
19778         b_status=$(barrier_stat)
19779         [ "$b_status" = "'frozen'" ] ||
19780                 error "(8) unexpected barrier status $b_status"
19781
19782         # let above commands to run at background
19783         sleep 5
19784
19785         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
19786         ps -p $touch_pid || error "(10) touch should be blocked"
19787         ps -p $ln_pid || error "(11) link should be blocked"
19788         ps -p $mv_pid || error "(12) rename should be blocked"
19789         ps -p $rm_pid || error "(13) unlink should be blocked"
19790
19791         b_status=$(barrier_stat)
19792         [ "$b_status" = "'frozen'" ] ||
19793                 error "(14) unexpected barrier status $b_status"
19794
19795         do_facet mgs $LCTL barrier_thaw $FSNAME
19796         b_status=$(barrier_stat)
19797         [ "$b_status" = "'thawed'" ] ||
19798                 error "(15) unexpected barrier status $b_status"
19799
19800         wait $mkdir_pid || error "(16) mkdir should succeed"
19801         wait $touch_pid || error "(17) touch should succeed"
19802         wait $ln_pid || error "(18) link should succeed"
19803         wait $mv_pid || error "(19) rename should succeed"
19804         wait $rm_pid || error "(20) unlink should succeed"
19805
19806         post_801
19807 }
19808 run_test 801b "modification will be blocked by write barrier"
19809
19810 test_801c() {
19811         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19812
19813         prep_801
19814
19815         stop mds2 || error "(1) Fail to stop mds2"
19816
19817         do_facet mgs $LCTL barrier_freeze $FSNAME 30
19818
19819         local b_status=$(barrier_stat)
19820         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
19821                 do_facet mgs $LCTL barrier_thaw $FSNAME
19822                 error "(2) unexpected barrier status $b_status"
19823         }
19824
19825         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19826                 error "(3) Fail to rescan barrier bitmap"
19827
19828         do_facet mgs $LCTL barrier_freeze $FSNAME 10
19829
19830         b_status=$(barrier_stat)
19831         [ "$b_status" = "'frozen'" ] ||
19832                 error "(4) unexpected barrier status $b_status"
19833
19834         do_facet mgs $LCTL barrier_thaw $FSNAME
19835         b_status=$(barrier_stat)
19836         [ "$b_status" = "'thawed'" ] ||
19837                 error "(5) unexpected barrier status $b_status"
19838
19839         local devname=$(mdsdevname 2)
19840
19841         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
19842
19843         do_facet mgs $LCTL barrier_rescan $FSNAME ||
19844                 error "(7) Fail to rescan barrier bitmap"
19845
19846         post_801
19847 }
19848 run_test 801c "rescan barrier bitmap"
19849
19850 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
19851 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
19852 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
19853
19854 cleanup_802a() {
19855         trap 0
19856
19857         stopall
19858         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
19859         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
19860         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
19861         setupall
19862 }
19863
19864 test_802a() {
19865
19866         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
19867         [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
19868                 skip "Need server version at least 2.9.55"
19869
19870         [[ $ENABLE_QUOTA ]] && skip "Quota enabled for read-only test"
19871
19872         mkdir $DIR/$tdir || error "(1) fail to mkdir"
19873
19874         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19875                 error "(2) Fail to copy"
19876
19877         trap cleanup_802a EXIT
19878
19879         # sync by force before remount as readonly
19880         sync; sync_all_data; sleep 3; sync_all_data
19881
19882         stopall
19883
19884         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
19885         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
19886         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
19887
19888         echo "Mount the server as read only"
19889         setupall server_only || error "(3) Fail to start servers"
19890
19891         echo "Mount client without ro should fail"
19892         mount_client $MOUNT &&
19893                 error "(4) Mount client without 'ro' should fail"
19894
19895         echo "Mount client with ro should succeed"
19896         mount_client $MOUNT ro ||
19897                 error "(5) Mount client with 'ro' should succeed"
19898
19899         echo "Modify should be refused"
19900         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19901
19902         echo "Read should be allowed"
19903         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19904                 error "(7) Read should succeed under ro mode"
19905
19906         cleanup_802a
19907 }
19908 run_test 802a "simulate readonly device"
19909
19910 test_802b() {
19911         [ $PARALLEL == "yes" ] && skip "skip parallel run"
19912         remote_mds_nodsh && skip "remote MDS with nodsh"
19913
19914         do_facet $SINGLEMDS $LCTL get_param mdt.*.readonly ||
19915                 skip "readonly option not available"
19916
19917         $LFS mkdir -i 0 -c 1 $DIR/$tdir || error "(1) fail to mkdir"
19918
19919         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
19920                 error "(2) Fail to copy"
19921
19922         # write back all cached data before setting MDT to readonly
19923         cancel_lru_locks
19924         sync_all_data
19925
19926         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=1
19927         stack_trap "do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0" EXIT
19928
19929         echo "Modify should be refused"
19930         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
19931
19932         echo "Read should be allowed"
19933         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
19934                 error "(7) Read should succeed under ro mode"
19935
19936         # disable readonly
19937         do_facet $SINGLEMDS $LCTL set_param mdt.*.readonly=0
19938 }
19939 run_test 802b "be able to set MDTs to readonly"
19940
19941 test_803() {
19942         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19943         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19944                 skip "MDS needs to be newer than 2.10.54"
19945
19946         mkdir -p $DIR/$tdir
19947         # Create some objects on all MDTs to trigger related logs objects
19948         for idx in $(seq $MDSCOUNT); do
19949                 $LFS mkdir -c $MDSCOUNT -i $((idx % $MDSCOUNT)) \
19950                         $DIR/$tdir/dir${idx} ||
19951                         error "Fail to create $DIR/$tdir/dir${idx}"
19952         done
19953
19954         sync; sleep 3
19955         wait_delete_completed # ensure old test cleanups are finished
19956         echo "before create:"
19957         $LFS df -i $MOUNT
19958         local before_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19959
19960         for i in {1..10}; do
19961                 $LFS mkdir -c 1 -i 1 $DIR/$tdir/foo$i ||
19962                         error "Fail to create $DIR/$tdir/foo$i"
19963         done
19964
19965         sync; sleep 3
19966         echo "after create:"
19967         $LFS df -i $MOUNT
19968         local after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19969
19970         # allow for an llog to be cleaned up during the test
19971         [ $after_used -ge $((before_used + 10 - 1)) ] ||
19972                 error "before ($before_used) + 10 > after ($after_used)"
19973
19974         for i in {1..10}; do
19975                 rm -rf $DIR/$tdir/foo$i ||
19976                         error "Fail to remove $DIR/$tdir/foo$i"
19977         done
19978
19979         sleep 3 # avoid MDT return cached statfs
19980         wait_delete_completed
19981         echo "after unlink:"
19982         $LFS df -i $MOUNT
19983         after_used=$($LFS df -i | grep MDT0000_UUID | awk '{print $3}')
19984
19985         # allow for an llog to be created during the test
19986         [ $after_used -le $((before_used + 1)) ] ||
19987                 error "after ($after_used) > before ($before_used) + 1"
19988 }
19989 run_test 803 "verify agent object for remote object"
19990
19991 test_804() {
19992         [[ $MDSCOUNT -lt 2 ]] && skip_env "needs >= 2 MDTs"
19993         [ $MDS1_VERSION -lt $(version_code 2.10.54) ] &&
19994                 skip "MDS needs to be newer than 2.10.54"
19995         [ "$mds1_FSTYPE" != "ldiskfs" ] && skip_env "ldiskfs only test"
19996
19997         mkdir -p $DIR/$tdir
19998         $LFS mkdir -c 1 -i 1 $DIR/$tdir/dir0 ||
19999                 error "Fail to create $DIR/$tdir/dir0"
20000
20001         local fid=$($LFS path2fid $DIR/$tdir/dir0)
20002         local dev=$(mdsdevname 2)
20003
20004         do_facet mds2 "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20005                 grep ${fid} || error "NOT found agent entry for dir0"
20006
20007         $LFS mkdir -c $MDSCOUNT -i 0 $DIR/$tdir/dir1 ||
20008                 error "Fail to create $DIR/$tdir/dir1"
20009
20010         touch $DIR/$tdir/dir1/foo0 ||
20011                 error "Fail to create $DIR/$tdir/dir1/foo0"
20012         fid=$($LFS path2fid $DIR/$tdir/dir1/foo0)
20013         local rc=0
20014
20015         for idx in $(seq $MDSCOUNT); do
20016                 dev=$(mdsdevname $idx)
20017                 do_facet mds${idx} \
20018                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20019                         grep ${fid} && rc=$idx
20020         done
20021
20022         mv $DIR/$tdir/dir1/foo0 $DIR/$tdir/dir1/foo1 ||
20023                 error "Fail to rename foo0 to foo1"
20024         if [ $rc -eq 0 ]; then
20025                 for idx in $(seq $MDSCOUNT); do
20026                         dev=$(mdsdevname $idx)
20027                         do_facet mds${idx} \
20028                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20029                         grep ${fid} && rc=$idx
20030                 done
20031         fi
20032
20033         mv $DIR/$tdir/dir1/foo1 $DIR/$tdir/dir1/foo2 ||
20034                 error "Fail to rename foo1 to foo2"
20035         if [ $rc -eq 0 ]; then
20036                 for idx in $(seq $MDSCOUNT); do
20037                         dev=$(mdsdevname $idx)
20038                         do_facet mds${idx} \
20039                         "$DEBUGFS -c -R 'ls /REMOTE_PARENT_DIR' $dev" |
20040                         grep ${fid} && rc=$idx
20041                 done
20042         fi
20043
20044         [ $rc -ne 0 ] || error "NOT found agent entry for foo"
20045
20046         ln $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir0/guard ||
20047                 error "Fail to link to $DIR/$tdir/dir1/foo2"
20048         mv $DIR/$tdir/dir1/foo2 $DIR/$tdir/dir1/foo0 ||
20049                 error "Fail to rename foo2 to foo0"
20050         unlink $DIR/$tdir/dir1/foo0 ||
20051                 error "Fail to unlink $DIR/$tdir/dir1/foo0"
20052         rm -rf $DIR/$tdir/dir0 ||
20053                 error "Fail to rm $DIR/$tdir/dir0"
20054
20055         for idx in $(seq $MDSCOUNT); do
20056                 dev=$(mdsdevname $idx)
20057                 rc=0
20058
20059                 stop mds${idx}
20060                 run_e2fsck $(facet_active_host mds$idx) $dev -n ||
20061                         rc=$?
20062                 start mds${idx} $dev $MDS_MOUNT_OPTS ||
20063                         error "mount mds$idx failed"
20064                 df $MOUNT > /dev/null 2>&1
20065
20066                 # e2fsck should not return error
20067                 [ $rc -eq 0 ] ||
20068                         error "e2fsck detected error on MDT${idx}: rc=$rc"
20069         done
20070 }
20071 run_test 804 "verify agent entry for remote entry"
20072
20073 cleanup_805() {
20074         do_facet $SINGLEMDS zfs set quota=$old $fsset
20075         unlinkmany $DIR/$tdir/f- 1000000
20076         trap 0
20077 }
20078
20079 test_805() {
20080         local zfs_version=$(do_node $SINGLEMDS cat /sys/module/zfs/version)
20081         [ "$mds1_FSTYPE" != "zfs" ] && skip "ZFS specific test"
20082         [ $(version_code $zfs_version) -lt $(version_code 0.7.2) ] &&
20083                 skip "netfree not implemented before 0.7"
20084         [[ $MDS1_VERSION -ge $(version_code 2.10.57) ]] ||
20085                 skip "Need MDS version at least 2.10.57"
20086
20087         local fsset
20088         local freekb
20089         local usedkb
20090         local old
20091         local quota
20092         local pref="osd-zfs.lustre-MDT0000."
20093
20094         # limit available space on MDS dataset to meet nospace issue
20095         # quickly. then ZFS 0.7.2 can use reserved space if asked
20096         # properly (using netfree flag in osd_declare_destroy()
20097         fsset=$(do_facet $SINGLEMDS lctl get_param -n $pref.mntdev)
20098         old=$(do_facet $SINGLEMDS zfs get -H quota $fsset | \
20099                 gawk '{print $3}')
20100         freekb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytesfree)
20101         usedkb=$(do_facet $SINGLEMDS lctl get_param -n $pref.kbytestotal)
20102         let "usedkb=usedkb-freekb"
20103         let "freekb=freekb/2"
20104         if let "freekb > 5000"; then
20105                 let "freekb=5000"
20106         fi
20107         do_facet $SINGLEMDS zfs set quota=$(((usedkb+freekb)*1024)) $fsset
20108         trap cleanup_805 EXIT
20109         mkdir $DIR/$tdir
20110         $LFS setstripe -E 1M -L mdt $DIR/$tdir || error "DoM not working"
20111         createmany -m $DIR/$tdir/f- 1000000 && error "ENOSPC wasn't met"
20112         rm -rf $DIR/$tdir || error "not able to remove"
20113         do_facet $SINGLEMDS zfs set quota=$old $fsset
20114         trap 0
20115 }
20116 run_test 805 "ZFS can remove from full fs"
20117
20118 # Size-on-MDS test
20119 check_lsom_data()
20120 {
20121         local file=$1
20122         local size=$($LFS getsom -s $file)
20123         local expect=$(stat -c %s $file)
20124
20125         [[ $size == $expect ]] ||
20126                 error "$file expected size: $expect, got: $size"
20127
20128         local blocks=$($LFS getsom -b $file)
20129         expect=$(stat -c %b $file)
20130         [[ $blocks == $expect ]] ||
20131                 error "$file expected blocks: $expect, got: $blocks"
20132 }
20133
20134 check_lsom_size()
20135 {
20136         local size=$($LFS getsom -s $1)
20137         local expect=$2
20138
20139         [[ $size == $expect ]] ||
20140                 error "$file expected size: $expect, got: $size"
20141 }
20142
20143 test_806() {
20144         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20145                 skip "Need MDS version at least 2.11.52"
20146
20147         local bs=1048576
20148
20149         touch $DIR/$tfile || error "touch $tfile failed"
20150
20151         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20152         save_lustre_params client "llite.*.xattr_cache" > $save
20153         lctl set_param llite.*.xattr_cache=0
20154         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20155
20156         # single-threaded write
20157         echo "Test SOM for single-threaded write"
20158         dd if=/dev/zero of=$DIR/$tfile bs=$bs count=1 ||
20159                 error "write $tfile failed"
20160         check_lsom_size $DIR/$tfile $bs
20161
20162         local num=32
20163         local size=$(($num * $bs))
20164         local offset=0
20165         local i
20166
20167         echo "Test SOM for single client multi-threaded($num) write"
20168         $TRUNCATE $DIR/$tfile 0
20169         for ((i = 0; i < $num; i++)); do
20170                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20171                 local pids[$i]=$!
20172                 offset=$((offset + $bs))
20173         done
20174         for (( i=0; i < $num; i++ )); do
20175                 wait ${pids[$i]}
20176         done
20177         check_lsom_size $DIR/$tfile $size
20178
20179         $TRUNCATE $DIR/$tfile 0
20180         for ((i = 0; i < $num; i++)); do
20181                 offset=$((offset - $bs))
20182                 $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20183                 local pids[$i]=$!
20184         done
20185         for (( i=0; i < $num; i++ )); do
20186                 wait ${pids[$i]}
20187         done
20188         check_lsom_size $DIR/$tfile $size
20189
20190         # multi-client wirtes
20191         num=$(get_node_count ${CLIENTS//,/ })
20192         size=$(($num * $bs))
20193         offset=0
20194         i=0
20195
20196         echo "Test SOM for multi-client ($num) writes"
20197         $TRUNCATE $DIR/$tfile 0
20198         for client in ${CLIENTS//,/ }; do
20199                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20200                 local pids[$i]=$!
20201                 i=$((i + 1))
20202                 offset=$((offset + $bs))
20203         done
20204         for (( i=0; i < $num; i++ )); do
20205                 wait ${pids[$i]}
20206         done
20207         check_lsom_size $DIR/$tfile $offset
20208
20209         i=0
20210         $TRUNCATE $DIR/$tfile 0
20211         for client in ${CLIENTS//,/ }; do
20212                 offset=$((offset - $bs))
20213                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20214                 local pids[$i]=$!
20215                 i=$((i + 1))
20216         done
20217         for (( i=0; i < $num; i++ )); do
20218                 wait ${pids[$i]}
20219         done
20220         check_lsom_size $DIR/$tfile $size
20221
20222         # verify truncate
20223         echo "Test SOM for truncate"
20224         $TRUNCATE $DIR/$tfile 1048576
20225         check_lsom_size $DIR/$tfile 1048576
20226         $TRUNCATE $DIR/$tfile 1234
20227         check_lsom_size $DIR/$tfile 1234
20228
20229         # verify SOM blocks count
20230         echo "Verify SOM block count"
20231         $TRUNCATE $DIR/$tfile 0
20232         $MULTIOP $DIR/$tfile oO_TRUNC:O_RDWR:w1048576YSc ||
20233                 error "failed to write file $tfile"
20234         check_lsom_data $DIR/$tfile
20235 }
20236 run_test 806 "Verify Lazy Size on MDS"
20237
20238 test_807() {
20239         [ -n "$FILESET" ] && skip "Not functional for FILESET set"
20240         [ $MDS1_VERSION -lt $(version_code 2.11.52) ] &&
20241                 skip "Need MDS version at least 2.11.52"
20242
20243         # Registration step
20244         changelog_register || error "changelog_register failed"
20245         local cl_user="${CL_USERS[$SINGLEMDS]%% *}"
20246         changelog_users $SINGLEMDS | grep -q $cl_user ||
20247                 error "User $cl_user not found in changelog_users"
20248
20249         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
20250         save_lustre_params client "llite.*.xattr_cache" > $save
20251         lctl set_param llite.*.xattr_cache=0
20252         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
20253
20254         rm -rf $DIR/$tdir || error "rm $tdir failed"
20255         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
20256         touch $DIR/$tdir/trunc || error "touch $tdir/trunc failed"
20257         $TRUNCATE $DIR/$tdir/trunc 1024 || error "truncate $tdir/trunc failed"
20258         $TRUNCATE $DIR/$tdir/trunc 1048576 ||
20259                 error "truncate $tdir/trunc failed"
20260
20261         local bs=1048576
20262         dd if=/dev/zero of=$DIR/$tdir/single_dd bs=$bs count=1 ||
20263                 error "write $tfile failed"
20264
20265         # multi-client wirtes
20266         local num=$(get_node_count ${CLIENTS//,/ })
20267         local offset=0
20268         local i=0
20269
20270         echo "Test SOM for multi-client ($num) writes"
20271         touch $DIR/$tfile || error "touch $tfile failed"
20272         $TRUNCATE $DIR/$tfile 0
20273         for client in ${CLIENTS//,/ }; do
20274                 do_node $client $MULTIOP $DIR/$tfile Oz${offset}w${bs}c &
20275                 local pids[$i]=$!
20276                 i=$((i + 1))
20277                 offset=$((offset + $bs))
20278         done
20279         for (( i=0; i < $num; i++ )); do
20280                 wait ${pids[$i]}
20281         done
20282
20283         sleep 5
20284         $LSOM_SYNC -u $cl_user -m $FSNAME-MDT0000 $MOUNT
20285         check_lsom_data $DIR/$tdir/trunc
20286         check_lsom_data $DIR/$tdir/single_dd
20287         check_lsom_data $DIR/$tfile
20288
20289         rm -rf $DIR/$tdir
20290         # Deregistration step
20291         changelog_deregister || error "changelog_deregister failed"
20292 }
20293 run_test 807 "verify LSOM syncing tool"
20294
20295 check_som_nologged()
20296 {
20297         local lines=$($LFS changelog $FSNAME-MDT0000 |
20298                 grep 'x=trusted.som' | wc -l)
20299         [ $lines -ne 0 ] && error "trusted.som xattr is logged in Changelogs"
20300 }
20301
20302 test_808() {
20303         [ $MDS1_VERSION -lt $(version_code 2.11.55) ] &&
20304                 skip "Need MDS version at least 2.11.55"
20305
20306         # Registration step
20307         changelog_register || error "changelog_register failed"
20308
20309         touch $DIR/$tfile || error "touch $tfile failed"
20310         check_som_nologged
20311
20312         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=1 ||
20313                 error "write $tfile failed"
20314         check_som_nologged
20315
20316         $TRUNCATE $DIR/$tfile 1234
20317         check_som_nologged
20318
20319         $TRUNCATE $DIR/$tfile 1048576
20320         check_som_nologged
20321
20322         # Deregistration step
20323         changelog_deregister || error "changelog_deregister failed"
20324 }
20325 run_test 808 "Check trusted.som xattr not logged in Changelogs"
20326
20327 check_som_nodata()
20328 {
20329         $LFS getsom $1
20330         [[ $? -eq 61 ]] || error "DoM-only file $1 has SOM xattr"
20331 }
20332
20333 test_809() {
20334         [ $MDS1_VERSION -lt $(version_code 2.11.56) ] &&
20335                 skip "Need MDS version at least 2.11.56"
20336
20337         $LFS setstripe -E 1M -L mdt $DIR/$tfile ||
20338                 error "failed to create DoM-only file $DIR/$tfile"
20339         touch $DIR/$tfile || error "touch $tfile failed"
20340         check_som_nodata $DIR/$tfile
20341
20342         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 ||
20343                 error "write $tfile failed"
20344         check_som_nodata $DIR/$tfile
20345
20346         $TRUNCATE $DIR/$tfile 1234
20347         check_som_nodata $DIR/$tfile
20348
20349         $TRUNCATE $DIR/$tfile 4097
20350         check_som_nodata $DIR/$file
20351 }
20352 run_test 809 "Verify no SOM xattr store for DoM-only files"
20353
20354 test_810() {
20355         local ORIG
20356         local CSUM
20357
20358         # t10 seem to dislike partial pages
20359         lctl set_param osc.*.checksum_type=adler
20360         lctl set_param fail_loc=0x411
20361         dd if=/dev/urandom of=$DIR/$tfile bs=10240 count=2
20362         ORIG=$(md5sum $DIR/$tfile)
20363         lctl set_param ldlm.namespaces.*osc*.lru_size=clear
20364         CSUM=$(md5sum $DIR/$tfile)
20365         set_checksum_type adler
20366         if [ "$ORIG" != "$CSUM" ]; then
20367                 error "$ORIG != $CSUM"
20368         fi
20369 }
20370 run_test 810 "partial page writes on ZFS (LU-11663)"
20371
20372 test_811() {
20373         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.56) ] &&
20374                 skip "Need MDS version at least 2.11.56"
20375
20376         #define OBD_FAIL_MDS_ORPHAN_DELETE      0x165
20377         do_facet mds1 $LCTL set_param fail_loc=0x165
20378         $MULTIOP $DIR/$tfile Ouc || error "multiop failed"
20379
20380         stop mds1
20381         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
20382
20383         sleep 5
20384         [[ $(do_facet mds1 pgrep orph_.*-MDD | wc -l) -eq 0 ]] ||
20385                 error "MDD orphan cleanup thread not quit"
20386 }
20387 run_test 811 "orphan name stub can be cleaned up in startup"
20388
20389 test_812() {
20390         [ $OST1_VERSION -lt $(version_code 2.12.51) ] &&
20391                 skip "OST < 2.12.51 doesn't support this fail_loc"
20392
20393         $LFS setstripe -c 1 -i 0 $DIR/$tfile
20394         # ensure ost1 is connected
20395         stat $DIR/$tfile >/dev/null || error "can't stat"
20396         wait_osc_import_state client ost1 FULL
20397         # no locks, no reqs to let the connection idle
20398         cancel_lru_locks osc
20399
20400         # delay OST_DISCONNECT on OST1 to put OSC into intermediate state
20401 #define OBD_FAIL_OST_DISCONNECT_DELAY    0x245
20402         do_facet ost1 "$LCTL set_param fail_loc=0x245 fail_val=8"
20403         wait_osc_import_state client ost1 CONNECTING
20404         do_facet ost1 "$LCTL set_param fail_loc=0 fail_val=0"
20405
20406         stat $DIR/$tfile >/dev/null || error "can't stat file"
20407 }
20408 run_test 812 "do not drop reqs generated when imp is going to idle (LU-11951)"
20409
20410 #
20411 # tests that do cleanup/setup should be run at the end
20412 #
20413
20414 test_900() {
20415         [ $PARALLEL == "yes" ] && skip "skip parallel run"
20416         local ls
20417
20418         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
20419         $LCTL set_param fail_loc=0x903
20420
20421         cancel_lru_locks MGC
20422
20423         FAIL_ON_ERROR=true cleanup
20424         FAIL_ON_ERROR=true setup
20425 }
20426 run_test 900 "umount should not race with any mgc requeue thread"
20427
20428 complete $SECONDS
20429 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
20430 check_and_cleanup_lustre
20431 if [ "$I_MOUNTED" != "yes" ]; then
20432         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
20433 fi
20434 exit_status